.range-select {
    position: relative;
}

.range-select .overflow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
}
.range-select .overflow.hidden {
    display: none;
}

.range-property-container{
    position: absolute;
    width: 100%;
    height: 300px;
    background-color: #fff;
    left: 0;
    top: calc(100% + 60px);
    opacity: 0;
    box-shadow: 0 11px 22px 0 rgba(0,0,0,.12);
    border-radius: 0 0 8px 8px;
    display: flex;
    visibility: hidden;
    padding: 10px;
    z-index: 10;
    transition: all 0.3s ease-out;
}
.range-property-container.open {
    top: calc(100% + 1px);
    opacity: 1;
    visibility: visible;
}

.min-value__list.hide, .max-value__list.hide {
    display: none;
}

.range-min-container, .range-max-container {
    padding: 5px;
}
.range-property-list li {
    height: 39px;
    display: flex;
    align-items: center;
    padding: 0 5px;
}
.range-property-list li:hover {
    background-color: #e7e7e7;
    border-radius: 3px;
    transition: all 0.3s;
}
.range-property-list {
    height: 210px;
}
.range-select.property-name-top.formDropdown {
    padding: 0;
}
.range-select .property-button {
    width: 100%;
    height: 100%;
    padding: 8px;
}