.dropdown {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid;
    border-color: transparent transparent #63a809 transparent;
}
@media (max-width: 768px) {
    .dropdown{
        position: static;
    }
}


.dropdown--border {
    border-color: transparent;
}

.dropdown__toggler {
    position: relative;
    z-index: 11;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    background-color: transparent;
    border: none;
    color: #8e8e8d;
    font-family: inherit;
    /* font-weight: inherit; */
    /*font-size: inherit;*/
    font-weight: 300;
    outline: none;
}

.dropdown__toggler span{
    margin-right: 5px;
}

.dropdown__toggler:hover {
    cursor: pointer;
}

.dropdown__toggler-icon {
    -webkit-transition: 0s;
    transition: 0s;
    fill:none;
    stroke:#62a70a;
    stroke-miterlimit:10;
    stroke-width: 4px;
}

.dropdown__toggler-icon--middle {
    width: 20px;
    height: 20px;
    margin-bottom: -3px;
}

.dropdown__toggler-icon--small {
    width: 10px;
    height: 10px;
}

.dropdown__toggler span span {
    text-transform: lowercase;
    text-decoration: underline;
}

.dropdown--active {
    border-color: #63a809;
    box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    .dropdown--active {
        border: none;
        box-shadow: none;
    }
}

.dropdown--active .dropdown__toggler {
    background-color: #fff;
}

.dropdown--active .dropdown__toggler-icon {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.dropdown--active .dropdown__toggler::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 4px;
    right: 4px;
    height: 1px;
    background-color: #e8e8e8;
}

.dropdown--active .dropdown__list {
    max-height: 650px;
    border: 1px solid #63a809;
    -webkit-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
    padding-top: 5px;
    box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.3);
}

.dropdown__list {
    position: absolute;
    top: calc(100% - 7px);
    left: -1px;
    right: -1px;
    z-index: 10;
    max-height: 0;
    background-color: #fff;
    overflow: hidden;
    -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}


.dropdown-list {
    /* display: flex; */
    color: #000;
    margin: 0;
    padding: 0;
    list-style-type: none;
}


.dropdown-list__item {
    display: flex;
    margin: 0 4px;
    color: #000;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.dropdown-list__item-link {
    flex-grow: 1;
    padding: 15px;
    text-decoration: none;
    font-size: 14px;
    color: inherit;
    font-weight: 300;
}

.dropdown-list__item:hover {
    color: #8e8e8d;
    cursor: pointer;
}

@media (max-width: 768px) {
    .dropdown--border{
        border: none;
    }
    .dropdown--active .dropdown__list {
        width: 100%;
        top: 38px;
        border: none;
    }
    .dropdown--active .dropdown__toggler::after {
        display:none;
    }
}



.filter__item {
    position: relative;
    z-index: 2;
}



@media (max-width: 768px) {
    .filter .filter__item::after {
        content: '';
        position: absolute;
        bottom: 0;
        margin: 0 15px;
        width: calc(100% - 30px);
        border-bottom: 1px solid #ebebeb;
    }
}

.filter__controls {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 2;
    background-color: #fff;
    -webkit-transition: .2s;
    transition: .2s;
    opacity: 1;
}

@media (max-width: 768px) {
    .filter__controls {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
    }
}

.filter__controls--fixed {
    position: fixed;
    bottom: 0;
    width: 250px;
}

@media (max-width: 768px) {
    .filter__controls--fixed {
        width: 100%;
    }
}

.filter__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    width: 100%;
    border: 1px solid #63a70a;
    background-color: transparent;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    -webkit-transition: 0s;
    transition: 0s;
}

.filter__submit:hover {
    cursor: pointer;
    background-color: #63a70a;
    color: #fff;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.filter__submit-fly {
    position: absolute;
    left: 0;
    z-index: 0;
    padding: 15px;
    width: auto;
    white-space: nowrap;
    color: #fff;
    text-decoration: underline;
    background-color: #63a70a;
    -webkit-transition: 0s;
    transition: 0s;
    box-shadow: 0px 7px 15px 0px rgba(99, 167, 10, 0.3);
    -webkit-animation: hideFlyButton 0.5s ease-out;
            animation: hideFlyButton 0.5s ease-out;
    -webkit-animation: moveToTopFlyButton 0s ease-out 0.1s;
            animation: moveToTopFlyButton 0s ease-out 0.1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.filter__submit-fly:hover {
    text-decoration: none;
    box-shadow: 0px 7px 25px 0px rgba(99, 167, 10, 0.8);
}

.filter__submit-fly--show {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-animation: showFlyButton 0.5s ease-out;
            animation: showFlyButton 0.5s ease-out;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@media (max-width: 768px) {
    .filter__submit-fly {
        display:none;
    }
}

.filter__button{
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    width: 100%;
    border: none;
    color: gray;
    background-color: transparent;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: underline;
    -webkit-transition: 0s;
    transition: 0s;
    cursor: pointer;
}

.filter__clear {
    display:flex;
    color: gray;
}

.filter__submit--fixed{
    color: #62a70a;
}



@media (max-width: 768px) {
    .filter__submit--fixed{
        display: flex;

    }
    .filter__back{
        display:flex;
    }
}

.filter__clear:hover {
    cursor: pointer;
    color: #000;
    text-decoration: none;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}



@-webkit-keyframes showFlyButton {
    0% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}



@keyframes showFlyButton {
    0% {
        left: 0%;
    }
    100% {
        left: 100%;
    }
}

@-webkit-keyframes hideFlyButton {
    0% {
        left: 100%;
    }
    100% {
        left: 0%;
    }
}

@keyframes hideFlyButton {
    0% {
        left: 100%;
    }
    100% {
        left: 0%;
    }
}

@-webkit-keyframes moveToTopFlyButton {
    100% {
        top: 0;
    }
}

@keyframes moveToTopFlyButton {
    100% {
        top: 0;
    }
}
.dropdown-collapse {
    width: 100%;
    height: 100%;
}

.dropdown-collapse__toggler {
    display: flex;    
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: #fff;
    border: none;
    color: #000;
    font-family: inherit;
    font-size: inherit;
    font-weight: 300;
    outline: none;      
}

@media (max-width: 768px) {
    .dropdown-collapse__toggler {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

.dropdown-collapse__toggler:hover {
    cursor: pointer;
}

.dropdown-collapse__toggler-icon {
    width: 15px;
    height: 15px;
    margin-right: 15px;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    fill:none;
    stroke:#62a70a;
    stroke-miterlimit:10;
    stroke-width: 4px;
}

.dropdown-collapse--active .dropdown-collapse__toggler-icon {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.dropdown-collapse--active .dropdown-collapse__list {
    max-height: 1000px;
    -webkit-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
}

.dropdown-collapse__list {
    max-height: 0;
    background-color: #f8f8f8;
    overflow: hidden;
    -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    box-shadow: inset 0px 5px 7px 0px rgba(28, 28, 27, 0.015);
}

.dropdown-collapse__list-wrap {
    padding: 15px 27px 15px 15px;
}

.help-box {
    position: relative;
    margin-left: auto;
}

.help-box__toggler {
    position: absolute;
    top: calc(50% - 10px);
    right: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 50%;
    opacity: 0.3;
}

.help-box__toggler:hover {
    cursor: pointer;
    opacity: 1;
    background-color: #62a730;
    border-color: transparent;
}

.help-box__toggler:focus {
    outline: none;
}

.help-box__toggler:hover .help-box__toggler-icon {
    fill: #fff;
}

.help-box__toggler-icon {
    width: 100%;
    height: 100%;
    fill: #000;
}

.help-box__toggler--open {
    opacity: 1 !important;
    background-color: #62a730;
    border-color: transparent;
}

.help-box__toggler--open .help-box__toggler-icon {
    fill: #fff;
}

.help-box__block {
    position: absolute;
    left: 9px;
    top: -20px;
    display: none;
    padding: 15px;
    width: 250px;
    color: #fff;
    background-color: rgba(28, 28, 27, 0.95);
    box-shadow: 0px 7px 15px 0px rgba(99, 167, 10, 0.3);
    cursor: default;
}

.help-box__block--open {
    display: block;
    -webkit-animation: fade-in .2s linear, move-up .2s linear;
            animation: fade-in .2s linear, move-up .2s linear;
}

.help-box__block::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 100%;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-right: 10px solid rgba(28, 28, 27, 0.95)
}

.help-box__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 400;
}

.help-box__close {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: none;
}

.help-box__close:hover {
    cursor: pointer;
}

.help-box__close:hover .help-box__close-icon {
    fill: rgba(255, 255, 255, 0.7);
}

.help-box__close-icon {
    width: 10px;
    height: 10px;
    fill: #fff;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.help-box__item {
    margin-bottom: 10px;
    font-size: 14px;
}

.help-box__item:last-child {
    margin-bottom: 0;
}

.help-box__item-name {
    color: #62a730;
    font-weight: 500;
}

@-webkit-keyframes fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@-webkit-keyframes move-up {
	from { left: 0px; }
	to { left: 9px; }
}
@keyframes move-up {
	from { left: 0px; }
	to { left: 9px; }
}
.checkbox-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.checkbox-block:not(.checkbox-block--disabled):hover {
    cursor: pointer;
}

.checkbox-block--disabled:hover {
    cursor: default;
}

.checkbox-block:not(:first-child):not(:last-child) {
    padding: 6px 0;
}

.checkbox-block:first-child {
    padding: 0 0 6px;
}

.checkbox-block:last-child {
    padding: 6px 0 0;
}

.checkbox-block__input {
    display: none;
}

.checkbox-block:not(.checkbox-block--disabled):hover .checkbox-block__input:not(:checked) ~ .checkbox-block__picture .checkbox-block__icon {
    opacity: 1;
    stroke-width: 1px;
    stroke: #b1b1b1;
}

.checkbox-block__input:checked ~ .checkbox-block__picture {
    -webkit-animation: activeCheckbox 0.5s ease;
            animation: activeCheckbox 0.5s ease;
}

.checkbox-block__input:checked ~ .checkbox-block__picture .checkbox-block__icon {
    opacity: 1;
    stroke:#62a70a;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.checkbox-block__picture {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 1px solid #000;
}

.checkbox-block__icon {
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    left: calc(50% - 9px);
    opacity: 0;
    fill:none;
    stroke-miterlimit:10;
    stroke-width: 4px;
    -webkit-transition: 0s ease-out;
    transition: 0s ease-out;
}
.checkbox-block__text{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
}

@-webkit-keyframes activeCheckbox {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
    25% {
        box-shadow: 0px 0px 5px 3px rgba(99, 167, 10, 0.3);
    }
    100% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
}

@keyframes activeCheckbox {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
    25% {
        box-shadow: 0px 0px 5px 3px rgba(99, 167, 10, 0.3);
    }
    100% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
}
.radio-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.radio-block:not(.radio-block--disabled):hover {
    cursor: pointer;
}

.radio-block--disabled:hover {
    cursor: default;
}

.radio-block:not(:first-child):not(:last-child) {
    padding: 6px 0;
}

.radio-block:first-child {
    padding: 0 0 6px;
}

.radio-block:last-child {
    padding: 6px 0 0;
}

.radio-block__input {
    display: none;
}

.radio-block:not(.radio-block--disabled):hover .radio-block__input:not(:checked) ~ .radio-block__picture .radio-block__icon {
    opacity: 0.5;
    background-color: #b1b1b1;
}

.radio-block__input:checked ~ .radio-block__picture {
    -webkit-animation: activeRadio 0.5s ease;
            animation: activeRadio 0.5s ease;
}

.radio-block__input:checked ~ .radio-block__picture .radio-block__icon {
    opacity: 1;
    background-color: #62a70a;
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.radio-block__picture {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 50%;
}

.radio-block__icon {
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: 0s ease-out;
    transition: 0s ease-out;
}

@-webkit-keyframes activeRadio {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
    25% {
        box-shadow: 0px 0px 5px 3px rgba(99, 167, 10, 0.3);
    }
    100% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
}

@keyframes activeRadio {
    0% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
    25% {
        box-shadow: 0px 0px 5px 3px rgba(99, 167, 10, 0.3);
    }
    100% {
        box-shadow: 0px 0px 0px 0px rgba(99, 167, 10, 1);
    }
}
.range-block__inputs {
    display: flex;
    justify-content: space-between;
}

.range-input {
    position: relative;
    width: 46%;
}

.range-input__input {
    width: 100%;
    padding: 0 6px;
    height: 24px;
    border: none;
    font-size: 14px;
    font-weight: 300;
}

.range-input__input:focus {
    outline: none;
}

.range-input__bar { 
    position: relative; 
    display: block; 
    width: 100%; 
}

.range-input__bar::before, 
.range-input__bar::after {
    content: '';
    height: 1px; 
    width: 0;
    bottom: 1px; 
    position: absolute;
    background: #63a70a; 
    -webkit-transition: 0.2s ease all; 
    transition: 0.2s ease all;
}

.range-input__bar::before {
    left: 50%;
}

.range-input__bar::after {
    right: 50%; 
}

.range-input__input:focus ~ .range-input__bar::before, 
.range-input__input:focus ~ .range-input__bar::after {
    width: 50%;
}

.range-input__label {
    color: #8d8d8d; 
    font-size: 14px;
    font-weight: 300;
    position: absolute;
    pointer-events: none;
    left: 6px;
    top: 4px;
    -webkit-transition: 0.2s ease all;
    transition: 0.2s ease all; 
    opacity: 1;
    visibility: visible;
}

.range-input__input:focus ~ .range-input__label, 
.range-input__input:valid ~ .range-input__label	{
    opacity: 0;
    visibility: hidden;
}

.range-block__slider {
    margin: 25px 0 10px;
    padding: 0 15px;
}

.range-slider {
    position: relative;
    height: 11px;
}

.range-slider__rail {
    margin-left: -15px;
    width: calc(100% + 30px);
    height: 100%;
    background-color: #efefef;
}

.range-slider__track {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-color: #b1d384;
    /* transition: 0.5s ease-out; */
}

.range-slider__handle {
    position: absolute;
    top: calc(50% - 7.5px);
    z-index: 1;
    width: 15px;
    height: 15px;
    border: 1px solid #8d8d8d;
    background-color: #fff;
    /* transition: 0s; */
}

.range-slider__handle:hover {
    cursor: pointer;
    border-color: #000;
    box-shadow: 0px 0px 4px 0px #63a70a;
    /* transition: 0.5s ease-out; */
}

.range-slider__handle:hover span {
    background-color: #000;
    /* transition: 0.5s ease-out; */
}

.range-slider__handle span {
    position: absolute;
    height: 7px;
    width: 1px;
    top: calc(50% - 3.5px);
    background-color: #8d8d8d;
    /* transition: 0s; */
}

.range-slider__handle span:nth-child(1) {
    left: calc(50% - 3.5px);
}

.range-slider__handle span:nth-child(2) {
    left: calc(50% - 0.5px);
}

.range-slider__handle span:nth-child(3) {
    left: calc(50% + 2.5px);
}

