.bg_base_top {
	height: 100%;
}

.selecter{
    display: flex;
    place-content: center;
    gap: 1ch;
}

.pick_result{
    display: flex;
    place-content: center;
    gap: 5vw;
    flex-wrap: wrap;
}

/*Modal*/
.modal_style{
    overflow-y:hidden;
}

.modal__inner {
    max-height: 90vh;
    object-fit: cover;
}

.modal__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fade-enter {
    opacity: 0;
}

.fade-enter-to {
    opacity: 1;
}

.fade-enter-active {
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.fade-leave {
    opacity: 1;
}

.fade-leave-to {
    opacity: 0;
}

.fade-leave-active {
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.select_item{
    margin-top: auto;
    margin-bottom: auto;
}

select {
    font-family: 'Klee One';
    appearance: none;
    text-align: center;
    width: 150px;
    background-color: tan;
    background-image: url("../img/gallery-arrow_drop_down.svg");
    padding: 7px;
    border-radius: 10px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    cursor: pointer;
}

select:focus {
    /*outline: none;*/
    outline-color: rgba(226, 132, 132, 0.137);
}
