.select-dropdown {
    width: 100%;
    position: relative;
    user-select: none;
}

.select-dropdown .select-dropdown-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px;
    padding: 6px 8px 8px 12px;
    gap: 6px;
    background-color: #FF874A;
    cursor: pointer;
    color: #fff;
    transition: background-color .2s linear;
}

.select-dropdown .select-dropdown-head:hover:not(body.is-touched .select-dropdown-head) {
    background-color: #F26016;
}

.select-dropdown__toggle {
    width: 32px;
    height: 32px;
    transition: rotate .2s linear;
}

.select-dropdown.active .select-dropdown__toggle,
.select-dropdown.active-mob .select-dropdown__toggle {
    rotate: -180deg;
}

.select-dropdown-container {
    width: 100%;
    height: 0;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    border-radius: 20px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: hidden;
    transition: all .2s linear;
    z-index: 10;
}

.select-dropdown.active .select-dropdown-container {
    background-color: #fff;
    box-shadow: 0px 11px 33px 0px #A0A2B617, 0px 0px 44px 0px #A0A2B60D;
    padding-top: 12px;
    padding-bottom: 12px;
}

.select-dropdown-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 2px;
    scrollbar-gutter: stable;
}

.select-dropdown-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 12px 4px 2px;
    cursor: pointer;
}

.select-dropdown-list__item * {
    transition: color .2s linear;
}

.select-dropdown-list__item:hover *:not(body.is-touched .select-dropdown-list__item *),
.select-dropdown-list__item.active * {
    color: #FF874A
}

.item-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-title .item-title__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.select-dropdown__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.items-amount {
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16.5px;
    font-weight: 800;
    color: #7b7b7b;
}

.item-amount {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.button-accept {
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    background-color: #FF874A;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color .2s linear
}

.button-accept:disabled {
   background-color: #FECEB5;
}

.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
}

.chip {
    width: fit-content;
    user-select: none;
    background-color: #F4F5F7;
    color: #7B7B7B;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    border: none;
    outline: none;
    transition: color .2s linear;
}

.chip svg {
    cursor: pointer;
}

.chip path {
    transition: fill .2s linear;
}

.chip:hover:not(body.is-touched .chip),
.chip:hover path:not(body.is-touched .chip path) {
    color: #343444;
    fill: #FF874A;
}

.chip > div {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.chip > button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

.main-filter-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.select-dropdown-list__item .checkbox .checkmark {
    border: 2px solid var(--MAIN_DARK_0);
    outline: none;
}

.select-dropdown-list__item .checkbox input:checked ~ .checkmark {
    border-color: var(--MAIN_ORANGE);
    outline: none;
}

.select-dropdown-list__item:hover .checkbox .checkmark:not(body.is-touched .checkmark),
.checkbox .checkmark:not(body.is-touched .checkmark):hover {
    border-color: var(--MAIN_ORANGE);
    transition: border-color .2s linear;
}