body {
    background-color: #F6F9FE;
    color: #555;
    font-family: "SF Pro Display", sans-serif;
}
* {
    font-family: "SF Pro Display", sans-serif;
    /*line-height: 100%;*/
}
.header {
    /*margin-top: 20px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 72px;
}

.header-right {
    display: flex;
    gap: 10px;
}

.main {
    margin: 20px 0;
}
.padding-unset {
    padding-top: unset;
    padding-right: unset;
    padding-bottom: unset;
    padding-left: unset;
}
.fixed-add-btn {
    position: fixed;
    bottom: 20px;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: center;
}
.fixed-add-btn .add-btn {
    width: fit-content;
    white-space: nowrap;
    padding: 8px 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    background: #1565C0;
    background: #41A51E!important;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.filter-selection-container {
    background: #fff;
    padding: 0 15px;
    border-radius: 10px;
}

.filter-selection-container .hidden {
    display: none;
    min-width: 52px;
}

.filter-selection-item, .filter-item {
    padding: 10px 0;
    border-bottom: 1px solid #D7E0EA;
    display: flex;
    align-items: center;
    justify-content: space-between;


    &>span, &>div>span {
        color: #000;
        &[data-selected]:not([data-selected=""]) {
            color: #9d9d9d;
            font-size: 13px;
        }
        &::after {
            content: attr(data-selected);
            display: flex;
            color: #333;
            font-size: 16px;
        }
    }

}

.selector, .filter, .filter-specification {
    background: #fff;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100vw;
    transition: 333ms;
    z-index: 1003;
    &.active {
        left: 0;
    }
}
.selector, .filter-specification {
    z-index: 1004;
}

.selector-header, .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;

    &>span:first-of-type {
        width: 25px;
    }

    & .selector-header-back, & .filter-header-back, & .filter-specification-header-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    & .selector-header-reset, & .filter-header-reset, & .filter-header-hamburger {
          position: absolute;
          top: 50%;
          right: 15px;
            transform: translateY(-50%);
          width: min-content;
    }

    .filter-header-hamburger {
        width: 28px;
        height: 28px;
        margin-left: unset;
    }

    span:first-of-type {
        width: 100%;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        color: #000;
    }

    &>span:last-child {
        font-size: 14px;
        color: #007BFF;
    }
}


.selector-header-search-container {
    width: calc(100% - 30px);
    height: 40px;
    margin: 10px auto 0;
    background: rgb(238, 238, 238);
    font-size: 13px;
    color: rgb(116, 116, 116);
    position: relative;
    border: 1px solid #eef2f8;
    border-radius: 4px;
    i {
        position: absolute;
        font-size: 13px;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}
.search-input {
    width: 100%;
    height: 100%;
    font-size: 13px;
    outline: none;
    padding-left: 32px;
    /*color: #555;*/
    background: transparent;
    color: rgb(116, 116, 116);
    border: unset!important;
    &:focus {
         border: unset!important;
        outline: none;
        box-shadow: none;
        color: #555;
    }
    &::placeholder {
        color: #9a9a9a;
    }
}

.selector-selections {
    height: calc(100vh - 105px);
    overflow: auto;
    padding: 0 15px 150px;
}

.filter-items {
    height: calc(100vh - 65px);
    overflow: auto;
    padding-bottom: 150px;
}
.filter-items-wrap {
    width: 100%;
    position: relative;
    &:last-child > .filter-selection-item {
        border-bottom: none;
    }
}
.clear-selector {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    span {
        width: 26px !important;
        height: 26px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ccc;
        border-radius: 50%;
        &:hover {
             background: rgba(5, 24, 46, 1);
         }
    }
}
.filter-selection-item + .clear-selector {
    right: 0;
}
.filter-specification .filter-item-input {
    &>span {
         font-size: 20px;
         font-weight: 700;
     }
}
.filter-item-input__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    .filter-item-selectize__content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .filter-item-selectize {
        display: flex;
        align-items: center;
        position: relative;
    }
    .filter-item-selectize__list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: 0px;
        overflow: hidden;
        .filter-item-input__item, .filter-item-input__item .filter-item-input__item__label {
            border-bottom: unset!important;
        }
        .filter-item-input__item:last-child .filter-item-input__item__label {
            border-bottom: 1px solid #D7E0EA!important;
        }
    }
    .filter-item-selectize__arrow {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(calc(-50% - 5px));
        img {
            color: #000;
            transition: transform .3s;
            transform: rotate(180deg);
            will-change: transform;
        }
    }
    .opened {
        .filter-item-selectize__list {
            height: max-content;
        }
        .filter-item-selectize__arrow img {
            transform: rotate(90deg);
        }
    }
    .filter-item-input__item {
        padding-left: 30px;
        position: relative;
        &.filter-item-input__item--selectize {

         }
        input {
            width: 0!important;
            height: 0!important;
            outline: unset!important;
            border: unset!important;
            background: unset!important;
            visibility: hidden!important;
            padding: unset!important;
        }
        &:last-child .filter-item-input__item__label {
            border-bottom: unset;
         }
        .filter-item-input__item__label {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            padding-bottom: 10px;
            border-bottom: 1px solid #D7E0EA;
            &>span:first-child {
                flex: 1;
             }
             .counter {
                 padding: 0 30px 0 10px;
                 display: none;
                 padding: 5px;
                 background: rgba(21, 101, 192, 1);
                 color: #fff;
                 font-size: 10px;
                 &.show {
                     display: block;
                 }
             }
            &:has(input):before {
                content: "";
                position: absolute;
                display: block;
                width: 20px;
                height: 20px;
                right: 0;
                top: 50%;
                transform: translateY(calc(-50% - 5px));
                background: rgba(255, 255, 255, 1);
                border: 1px solid rgb(238, 242, 247);
            }
            &:has(input:checked):after {
                content: "";
                position: absolute;
                display: block;
                width: 16px;
                height: 16px;
                right: 2px;
                top: 50%;
                transform: translate(0, calc(-50% - 5px));
                background: rgba(21, 101, 192, 1);
                border: 1px solid rgb(238, 242, 247);
            }
        }
    }
}
.filter-item-input {
    padding: 10px 0;
    transition: 300ms;

    span {
        color: #9d9d9d;
        font-size: 16px;
        display: block;
        color: rgba(5, 24, 46, 1);
        border-radius: 0.375rem;
        & + div {
          padding-top: 10px;
        }
    }

    div {
        display: flex;
        gap: 10px;
        span:has(input, select) {
            border-bottom: 1px solid #eef2f8!important;
        }
        input, select {
            width: 100%;
            outline: none;
            box-shadow: none;
            color: #666;
            font-size: 14px;
            height: 39px;
            line-height: 17px;
            border: 0!important;
            border-radius: 0!important;
            background: #fff;
            padding: 6px 0 6px 10px;

            &::placeholder {
                color: #777;
                font-size: 14px;
            }
        }
        .price-select {
            width: 70px!important;
        }
        select {
            height: 100%;
            -webkit-border-radius: 0;
            -webkit-tap-highlight-color: rgba(0,0,0,0);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
        span:has(input, select) {
            width: 100%;
            height: 41px;
            position: relative;
            padding-right: 28px;
        }
        span[data-value] {
            position: relative;
            /*padding-right: 28px;*/
            input, select {
                position: relative;
                z-index: 1001;
            }
            .clear-input {
                width: 40px;
                height: 39px;
                display: block;
                position: absolute;
                top: 50%;
                right: 2px;
                transform: translateY(-50%);
                cursor: pointer;
                z-index: 1003;
                span {
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    background: #cccccc;
                    display: block;
                    position: absolute;
                    top: 50%;
                    right: 2px;
                    transform: translateY(-50%);
                    cursor: pointer;
                    color: #fff;
                    font-size: 14px;
                    line-height: 22px;
                    text-align: center;
                    z-index: 1003;
                    &:hover {
                         background: rgba(5, 24, 46, 1);
                     }
                }
            }
        }
    }
}
.filter-item-label {
    width: 117px;
    padding-right: 10px;
}
.filter-item-label + div {
    padding-top: 0;
}
.filter-item-inputs {
    flex: 1;
    padding-top: unset!important;
}
.filter-item-checkbox-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start!important;
    gap: 10px;
    position: relative;
    .filter-item-checkbox {
        width: fit-content;
        padding: 10px 15px;
    }
    .filter-item-checkbox__circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    .clear-selected-checkbox {
        visibility: hidden;
        position: absolute;
        top: -3px;
        right: 0;
        transform: translateY(-100%);
        color: #777;
        font-size: 14px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    &:has(.filter-item-checkbox input:checked) {
        .clear-selected-checkbox {
            visibility: visible;
        }
    }
}
.filter-item-checkbox {
    width: 100%;
    border: 1px solid #eef2f8;
    border-radius: 0.375rem;
    background: #fff;
    background: #eef2f8;
    padding: 10px;
    transition: all .3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    span {
        color: #666;
        font-size: 14px;
        line-height: 17px;
    }
}
.filter-item-checkbox:has(input:checked) {
    background: rgba(21, 101, 192, 1);
    border-color: rgba(21, 101, 192, 1);
    span {
        color: #fff;
    }
}
.filter-item-checkbox.whatsapp-checkbox:has(input:checked) {
    background: #41A51E;
    border-color: #41A51E;
    span {
        color: #fff;
    }
}
.filter-item-checkbox input {
    width: 0!important;
    height: 0!important;
    outline: unset!important;
    border: unset!important;
    background: unset!important;
    visibility: hidden!important;
    padding: unset!important;
}
.number-selector .selector-selections-item div {
    flex: 1;
}
.filter-desc-item {
    padding: 20px 20px;
    border-bottom: 1px solid #eef2f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 300ms;
}
.selector-selections-item, .filter-item {
    /*padding: 20px 20px;*/
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    border-bottom: 1px solid #eef2f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 300ms;
    &.selector-selections-group-item {
        div {
            color: #777;
            font-weight: 600;
            /*opacity: 0.5;*/
        }
    }
    &.disabled *{
        opacity: 0.5;
        pointer-events: none;
    }

    &:last-child {
        border-bottom: none;
    }

    .color {
        width: 22.05px !important;
        height: 20px !important;
        border-radius: 3px;
        margin-right: 10px;
        border: 1px solid #eeeeee;
    }

    &.selected div {
        color: #555;
        i {
            color: #0d6efd;
            opacity: 1;
        }
    }

    div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #000;
        border-radius: 0.375rem;

        i {
            color: #aeaeae;
            transition: 300ms;
            opacity: 0.3;
        }
    }
}

.brand-logo {
    width: 26px !important;
    height: 26px !important;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.front-brand-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 13px;
    -webkit-box-shadow: 0 4px 21px 2px rgba(0,0,0,0.04);
    box-shadow: 0 4px 21px 2px rgba(0,0,0,0.04);
    background-color: #fff;
    position: relative;
    margin: 10px 15px;
    border-bottom: 1px solid #D7E0EA;
    &.hidden {
        display: none;
     }
}
.front-brand-list-container {
    &.hidden {
         display: none;
     }
}
.front-brand-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start!important;
    align-items: flex-start!important;
    flex-wrap: wrap;
    gap: 15px;
    height: 190px;
    max-width: 100%;
    margin-top: 20px;
    &.hidden {
         display: none;
     }

    .front-brand-list__item {
        width: calc((100% - 15px) / 2);
        justify-content: flex-start!important;
        &:last-child {
             color: rgba(21, 101, 192, 1);
         }
        div:first-child {
            width: 25px !important;
            height: 25px !important;
            margin-right: 10px;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }
        div:last-child {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            span {
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
                text-align: left;
            }
            span:first-child {
                flex: 1;
             }
            span:last-child {
                width: min-content;
                font-size: 10px;
                font-weight: 500;
                line-height: 26px;
                color: rgba(128, 128, 128, 1);
            }
        }
    }
}
.mobile-advertisement-filter {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    overflow: auto;
    padding-bottom: 5px;
    padding-left: 5px;
}
.mobile-advertisement-filter::-webkit-scrollbar {
    display: none;
     height: 4px;
     background-color: #e5e5e5; /* or add it to the track */
 }
.mobile-advertisement-filter::-webkit-scrollbar-thumb {
    background: #666;
}
.mobile-advertisement-filter_item {
    background: #fff;
    color: #324153;
    font-size: 12px;
    padding: 6px 10px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    white-space: nowrap;
}

.selector-button, .filter-button {
    padding: 12px 15px;
    /*border-top: 1px solid #e5e5e5;*/
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    /*background: #fff;*/
    z-index: 1005;
    display: none;
}
.active {
    .selector-button, .filter-button {
        display: block;
    }
}

.slider-section-container {
    margin-top: 20px;
    .ar_slier {
        display: none !important;
    }
    .auto-store_slider-element {
        height: 110px;

    }
}

.disable-text {
    color: #666;
}

.filter-item-checkbox-basic {
    position: relative;
    border: unset!important;
    width: 100%;
    border-radius: 4px;
    /*background: #fff;*/
    /*background: #eef2f8;*/
    padding: 0 0 0 30px;
    margin-bottom: 10px;
    transition: all .3s linear;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    span {
        color: #666;
        font-size: 14px;
        text-align: left;
        line-height: 17px;
    }
}

.filter-item-checkbox-basic input {
    width: 0!important;
    height: 0!important;
    outline: unset!important;
    border: unset!important;
    background: unset!important;
    visibility: hidden!important;
    padding: unset!important;
}
.filter-item-checkbox-basic:before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgb(238, 242, 247);
}
.filter-item-checkbox-basic:has(input:checked):after {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    left: 2px;
    top: 50%;
    transform: translate(0, -50%);
    background: rgba(21, 101, 192, 1);
    border: 1px solid rgb(238, 242, 247);
}
.filter-item .main-search__radio-element {
    gap: unset!important;
}
.main-search__radio-element input {
    width: 0!important;
    height: 0!important;
    outline: unset!important;
    border: unset!important;
    background: unset!important;
    visibility: hidden!important;
    padding: unset!important;
}

.filter-item-hr {
    height: 10px;
    background: #eef2f8;
    margin: unset;
    border: unset;
}


.select2-container .select2-dropdown {
    border: 1px solid rgb(238, 242, 247);
    box-shadow: 0px 2px 16px 0px rgba(59, 59, 72, 0.1);
    top: -39px;
}

/*.select2-container .select2-dropdown .select2-search--dropdown .select2-search__field {*/
/*    border: unset!important;*/
/*}*/


/* Cars single page carousel */
.modal[data-modal] {
    display: block;
    transition: all .3s linear;
    transform: translateX(120%);
}

.salon_card {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(118, 138, 158, 1);

    .salon_card__logo {
        display: block;
        width: 45px;
        height: 45px;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .salon_card__content {
        flex: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        span {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .small {
            font-size: 12px;
            font-weight: 400;
            svg {
                width: 12px;
                height: 12px;
            }
        }
    }
}
