.placeholder::after {
    padding-left: 115px;
}

.drop,
.dropdown,
.custom-checkbox,
.input-placeholder {
    cursor: pointer;
}

.double-range {
    position: relative;
    border-radius: 10px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px 0 0 0;
}

.double-range__container {
    position: relative;
    width: 100%;
    height: 34px;
    margin: 6px 0 0 0;
}

.double-range input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    pointer-events: none;
}

.double-range .slider-track {
    width: 100%;
    height: 2px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 2px;
    background-color: #d6d9de;
}

.double-range input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 2px;
}

.double-range input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 2px;
}

.double-range input[type="range"]::-ms-track {
    appearance: none;
    height: 2px;
}

.double-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 17px;
    width: 17px;
    background-color: white;
    cursor: pointer;
    margin-top: -7px;
    pointer-events: auto;
    border-radius: 50%;
    border: 2px solid #EE2D38;
}

.double-range input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 17px;
    width: 17px;
    background-color: white;
    cursor: pointer;
    margin-top: -7px;
    pointer-events: auto;
    border-radius: 50%;
    border: 2px solid #EE2D38;
}

.double-range input[type="range"]::-ms-thumb {
    -webkit-appearance: none;
    height: 17px;
    width: 17px;
    background-color: white;
    cursor: pointer;
    margin-top: -7px;
    pointer-events: auto;
    border-radius: 50%;
    border: 2px solid #EE2D38;
}

/*.double-range input[type="range"]:active::-webkit-slider-thumb {*/
/*    background-color: #ffffff;*/
/*    border: 2px solid #01A215;*/
/*}*/

.double-range__values {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.double-range__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    height: auto;
    background: #EE2D38;
    border-radius: 5px;
    padding: 5px 10px;
}

.double-range__value span {
    border: none;
    background: transparent;
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.double-range__extreme {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    color: #091638;
}

.quiz-form-textarea {
    position: relative;
}

.textarea_label {
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
}

.textarea_text:focus ~ .textarea_text,
.textarea_text:not(:placeholder-shown) ~ .textarea_text {
    padding-top: 1px;
    font-size: 8px;
}

.textarea_text:focus::placeholder {
    color: transparent;
}

.custom-checkbox .checkbox {
    min-width: 21px;
}

.custom-checkbox-step-two {
    max-width: inherit;
}

.placeholder.dropbtn,
.placeholder.placeholder-mb {
    max-width: 321px;
    overflow: hidden;
}

.placeholder.placeholder-mb,
.placeholder.dropbtn {
    display: block;
    position: relative;
}

.placeholder.dropbtn:after,
.placeholder.placeholder-mb:after {
    padding: 0;
    position: absolute;
    right: 12px;
}

.drop-parent {
    display: block;
}

@media screen and (min-width: 576px) {
    .drop:hover .dropdown_block,
    .dropdown_block:hover,
    .drop-two:hover .dropdown_block,
    .dropdown_block:hover {
        display: block;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .drop {
        display: block;
    }

    .block.active .dropdown_block,
    .block.active .dropdown-content {
        display: block;
    }

}