.sections-filter-wrapper {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    margin-top: 15px;
}
@media (max-width: 767px) {
    .sections-filter-wrapper_desktop {
        display: none;
    }
}
.sections-filter {
    padding: 30px;
    position: relative;
}
.sections-filter-section {
    display: block;
    position: relative;
    color: initial;
    font-size: initial;
    margin-bottom: 15px;
    cursor: pointer;
    white-space: nowrap;
}
.sections-filter-section__checkbox {
    display: none;
}
.sections-filter-section__fake-checkbox {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    line-height: 1;
    margin-right: 10px;
}
.sections-filter-section__fake-checkbox:before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .25);
    border: 1px solid #d4d4d4;
    border-color: #a6a6a6;
    position: absolute;
    top: 0;
    left: 0;
}
.sections-filter-section__checkbox:checked + .sections-filter-section__fake-checkbox:before {
    border-color: #7e0e2f;
    background-color: #ffffff;
}
.sections-filter-section__fake-checkbox:after {
    content: '';
    width: 13px;
    height: 12px;
    opacity: 0;
    visibility: hidden;
    background-image: url('/local/components/adinadin/catalog.smart.filter.with.region/templates/vino/images/checkbox-mark-red.svg');
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.sections-filter-section__checkbox:checked + .sections-filter-section__fake-checkbox:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.sections-filter-section__name {
    font-size: 14px;
    color: #464646;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}
.sections-filter__btn {
    margin: 0 0 15px;
    color: #fff;
    background-color: #c71d3e;
    border-radius: 5px;
    display: block;
    padding: 15px 22px;
    text-align: center;
    width: 100%;
    transition: background-color .3s;
    cursor: pointer;
    border: none;
}
.sections-filter__btn:hover {
    background-color: #a01740;
    color: #fff;
}
.sections-filter__btn:active,
.sections-filter__btn:link {
    color: #fff;
    background-color: #c71d3e;
}