
  


.price-dropdown-container {
    margin: 0;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.select-btn{
    font-size: 1.2vw;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    height: 6vh;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 1vh;
    cursor: pointer;
    background-color: #fff;
    font-weight: bold;
    border-radius: 1vh;
    border: 1px solid var(--bt-gray);
}

.select-btn.open .arrow-dwn{
    transform: rotate(180deg);
}

.select-btn .btn-text {
    font-weight: 400;
    color: #333;
}

.select-btn .arrow-dwn {
    display: flex;
    color: #fff;
    border-radius: 50%;
    background: var(--bt-blue);
    align-items: center;
    justify-content: center;
    transition: .5s;
    width: 1.1vw;
    height: 1.1vw;
    font-size: 1.1vw;
    padding: .3vh;
}

.select-btn.open ~ .double-slider-box {
    display: block;
}

.select-btn.open {
    border-bottom: none;
    border-radius: 1vh 1vh 0 0;

}

.double-slider-box {
    position: absolute;
    box-sizing: border-box;
    height: auto;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 1vh 1vh;
    display: none;
    z-index: 5;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: .5vh solid var(--bt-gray);
    border: 1px solid var(--bt-gray);
    border-top: none;
    padding: 1vh;   
}

.range-header {
    margin-bottom: 2.6rem;
    display: none;
}

h3.range-title {
    margin: 0;
}

.range-instruction {
    text-align: center;
    font-size: 0.675rem;
    color: #464646;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    margin: 3vh 0;
    background-color: var(--bt-gray);
    border-radius: 2.5px;
}

.slider-track {
    height: 100%;
    position: absolute;
    background-color: var(--bt-blue);
    border-radius: 3px;
}

.range-slider input {
    position: absolute;
    width: 100%;
    background: none;
    pointer-events: none;
    left: 0;
    transform: translateY(-50%);
    appearance: none;
}



input[type="range"]::-webkit-slider-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 3px solid #333;
    background: #fff;
    pointer-events: auto;
    appearance: none;
    cursor: pointer;
    box-shadow: 0 .125rem .5625rem -0.125rem rgba(0, 0, 0, .25);
}

input[type="range"]::-moz-range-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 3px solid #333;
    background: #fff;
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
    box-shadow: 0 .125rem .5625rem -0.125rem rgba(0, 0, 0, .25);
}

.min-val, .max-val {
    z-index: 2;
    margin: 2px 0;
}

.min-val.active, .max-val.active{
    z-index: 3;
}

.min-val.active ~ .min-tooltip, 
.max-val.active ~ .max-tooltip {
    z-index: 3;
}

.tooltip{
    padding: .15rem .23rem;
    border: 0;
    background: #373f50;
    color: #fff;
    font-size: .55rem;
    line-height: 1.2;
    border-radius: .25rem;
    bottom: 120%;
    display: block;
    position: absolute;
    text-align: center;
    white-space: nowrap;
    z-index: 0;
}

.min-tooltip {
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
}

.max-tooltip {
    right: 50%;
    transform: translateX(50%) translateY(-100%);
}

.dropdown-container.user.ownage .max-tooltip.single {
    font-size: 1vw;
    transform: translateY(-75%);
}

.input-box {
    display: flex;
    width: 13rem;
    justify-content: center;
    margin: auto;
}

.min-box,
.max-box {
    width: 50%;
}

.max-box.single{
    width: 50%;
    margin: auto;
}

.input-wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-addon{
    display: flex;
    align-items: center;
    padding: .625rem 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4b566b;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #d4d7e5;
    border-radius: .25rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.hyfen {
    display: flex;
    text-align: center;
    margin: auto .5rem;
}

.input-field {
    margin-left: -1px;
    padding: .425rem .75rem;
    font-size: 0.8125rem;
    border-radius: .25rem;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    color: 4b566b;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d4d7e5;
    text-align: center;

}

.input-field:focus {
    outline: none;
}

@media screen and (min-width: 2000px) {
    .select-btn .arrow-dwn {
        font-size: 20px;
        padding: 10px;
        height: 8px;
        width: 8px;
    }
    
}

@media screen and (max-width: 1200px) {
    .select-btn {
        height: 5vw;
        border-radius: 1vw;
    }

    .select-btn .arrow-dwn {
        font-size: 1vw;
        padding: .3vw;
        height: 1.3vw;
        width: 1.3vw;
    }    
}

@media screen and (max-width: 800px) {
    .btn-text {
        margin-left: .4vh;
    }

    .btn-text strong {
        margin-right: .4vh;
    }

    .select-btn .arrow-dwn {
        font-size: 1.2vw;
        padding: .3vw;
        
    }   

    .input-box {
        width: 100%;
        align-items: center;
    }

    .input-field {
        padding: .3rem .1rem;
        font-size: 1.7vw;
    }

    input[type="range"]::-webkit-slider-thumb {
        height: 4.5vw;
        width: 4.5vw;
        border: 2px solid #333;

    }
    
    input[type="range"]::-moz-range-thumb {
        height: 4.5vw;
        width: 4.5vw;
        border: 2px solid #333;
    }

    .dropdown-container.user.ownage .max-tooltip.single {
        font-size: 2vw;
    }


}