* {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

.avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    /*background-color: #00249c;*/
    background-color: #FF4805;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 23px;
    /*font-family: "Onest-Regular", sans-serif;*/
    font-weight: 700;
}

/*.choices {*/
/*    z-index: 6 !important;*/
/*}*/
/*.choices .choices__list {*/
/*    z-index: 999 !important;*/
/*}*/
.choices[data-type*=select-one]::after {
    content: unset !important;
}
.c2hoices .choices__inner {
    /*align-items: center !important;*/
    /*align-content: center !important;*/
}
.choices__list--dropdown, .choices__list[aria-expanded] {
    z-index: 2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
    opacity: 0;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
    border: 0;
    filter: invert(1);
    margin-right: 0;
}

.choices .choices__list--single {
    /*height: -moz-fit-content;*/
    /*height: fit-content;*/
    height: 47px;
}

.choices .choices__list--single .choices__item {
    height: 100%;
    align-content: center;
    padding: 4px 11px;
    /*margin-bottom: 4px;*/
    font-size: 13px;
    color: rgba(0, 0, 0, .6980392157);
    /*border-radius: 6px;*/
    /*border: 1px solid rgba(0, 0, 0, .1019607843);*/
    background-color: rgba(0, 0, 0, 0);
    text-justify: auto;
}

.choices .choices__list--single .choices__item.is-highlighted {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, .1019607843)
}

@media (max-width: 992px) {
    body:has(.dropdown-menu.show) {
        overflow-y: hidden;
    }

    body:has(.dropdown-menu.show)::after {
        content: "";
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: .3s;
    }
}

.dropdown {position: relative;}
.dropdown-menu {
    display: none;

    background-color: #fff;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .15);
    z-index: 3;
}
.dropdown-menu.show {
    display: flex;
}
.dropdown-left {
    left: auto;
    right: 0;
}

.dropdown-menu ~ .dropdown-backdrop {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

/* кастомные элементы с визуалом для dropdown */
.header__profileDropdown {
    right: 0;
    top: 50px;
    width: 232px;
    border-radius: 8px;
    background-color: #fff;
    /*padding: 0 20px;*/
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .15);
}
.header__profileDropdown > .list > * {
    padding: 12px 16px !important;
}

/* dropdown - визуал вложенных элементов */
.dropdown-list {
    position: absolute;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #fff;
    border-radius: 10px;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .15);
    transition: .38s ease-in-out;
    flex-direction: column;

    left: auto;
    right: 0;
}

.dropdown-list > .list {}

.dropdown-list > .list > * {
    cursor: pointer;
    padding: 4px 12px;
    font-size: 15px;
    line-height: 20px;
    border-radius: 6px;
    color: rgba(0, 0, 0, .85);
    display: flex; flex-direction: row;
}
.dropdown-list > .list > *:hover, .dropdown-list > .list > *.active {
    background-color: rgba(255, 72, 5, .3019607843)
}
.dropdown-list > .list > *.disable {
    color: rgba(0, 0, 0, .3019607843);
    pointer-events: none
}

@media (max-width: 992px) {
    .dropdown-list {
        display: block;
        /*padding: 16px 20px 14px 20px;*/
        position: fixed;
        max-height: 80vh;
        width: 100vw;
        border-radius: 16px 16px 0 0;
        bottom: 0;
        top: unset;
        transform: translateY(100%);
        transition: .38s ease-in-out;
        left: auto;
        right: 0;
    }
    .dropdown-list::before {
        content: attr(data-title);
        text-align: center;
        width: 100%;
        height: 4px;
        color: rgba(0,0,0,0.85);
        font-size: 15px;
        /*font-family: "Onest-Bold", sans-serif;*/
        font-weight: 700;
        margin-top: 7px;
        padding-top: 7px;
        padding-bottom: 41px;
        justify-self: center;
        justify-content: center;
        display: flex;
        box-sizing: border-box;
        background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)) center top / 100px 4px no-repeat;
    }

    .dropdown-list > .list {
        overflow-y: scroll;
        max-height: calc(60vh);
    }

    .dropdown-list > .list > * {
        cursor: pointer;
        padding: 12px 16px;
        font-size: 15px;
        line-height: 20px;
        border-radius: 6px
    }
    .dropdown-list > .list > *:hover, .dropdown-list > .list > *.active {
        background-color: rgba(255, 72, 5, .3019607843)
    }
    .dropdown-list > .list > *.disable {
        color: rgba(0, 0, 0, .3019607843);
        pointer-events: none
    }
}

.catalogCards__info {
    cursor: pointer;
}

/* форма - select */
.form-select {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    margin-left: auto;
    width: 100%;
    transition: .38s ease-in-out;
    cursor: pointer;
}
.form-select.show {border-color: rgba(0, 0, 0, .3)}
.form-select > img {rotate: 90deg}

.chat__toolsListDropdown {
    /*position: absolute;*/
    right: 0;
    top: 30px;
    width: 172px;
    border-radius: 6px;
    background-color: #fff;
    /*padding: 4px 4px;*/
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, .15);
    /*z-index: 1050;*/
}
.chat__toolsListDropdown > * {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 12px 16px;
    transition: .18s ease-in-out;
    cursor: pointer;
}

.marketplace__title {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.marketplace__titleSearch {
    position: relative;
    /*left: 20px;*/
}
.marketplace__titleSearch input {
    width: 291px;
    border-radius: 10px;
    padding: 8px 8px 8px 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    font-size: 13px;
    line-height: 18px;
    color: rgba(0,0,0,0.5);
    font-weight: 400;
}
.marketplace__titleSearch input:focus {
    color: rgba(0,0,0,0.85);
    border: 1px solid rgba(0, 0, 0, .5);
}
.marketplace__titleSearch img {
    position: absolute;
    top: 50%;
    left: 10px;
    translate: 0 -40%
}

.contentTabs__mobile {
    display: flex; flex-direction: row; overflow-x: scroll; gap: 28px;
}
.contentTabs__mobile span {
    font-size: 15px;
    line-height: 20px;
    color: rgba(0,0,0,.5);
    text-wrap: nowrap;
    cursor: pointer;
}
.contentTabs__mobile span.active {
    color: rgba(0,0,0,.85);
    padding-bottom: 10px;
    border-bottom: 2px var(#D23800) solid;
}
.contentTabs__mobile span:hover {
    color: rgba(0,0,0,.85);
}

input.formSearch {
    border-radius: 10px;
    padding: 4px 4px 4px 30px;
    border: 1px solid rgba(0,0,0,.1);
    background-image: url("../img/icon/find.svg");
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 16px 16px;
}
input.formSearch:focus:hover {
    border: 1px solid rgba(0,0,0,.5);
}

/* фикс отступов навигации */
.navigation {
    margin-top: -10px !important;
    /*margin-bottom: 48px*/
}
@media (max-width: 992px) {
    .navigation {
        margin-top: 0 !important;
        /*margin-bottom: 48px*/
    }
}

.choise > .choise__item {
    /*background-color: #E9033A;*/
    /*justify-content: center;*/
    /*text-align: center;*/
    /*justify-items: center;*/
}

@media (max-width: 992px) {
    .choise .choise__item::before {
        content: unset;
    }
}

.choise > .choise__item > .choise__title {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    /*padding: 0;*/
    /*margin: 0;*/
    /*position: relative;*/
    /*justify-content: space-between;*/
    /*border-radius: 16px;*/
    width: 100%;
    /*transition: .38s ease-in-out;*/
    /*border: 1px solid rgba(0, 0, 0, 0);*/
    /*cursor: pointer;*/
}

@media (max-width: 992px) {
    .choise .choise__item .choise__title {
        justify-content: start;
        /*padding-left: 8px;*/
        /*padding-right: 8px;*/
    }
}

@media (max-width: 428px) {
    .choise .choise__item .choise__title::before {
        content: unset;
    }
}

.choise > .choise__item > .choise__title .choise__item-txt {
    white-space: nowrap;
    margin-right: 8px;
}
.choise > .choise__item > .choise__title .choise__add {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /*width: 10ch;*/
    /*max-width: 500px;*/
    /*min-width: 10px;*/
}
.choise > .choise__item > .choise__title .choise__add p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0; /* критически важно для flex */
    flex: 1 1 auto; /* или 0 1 auto */
    margin-right: auto;
}

@media (max-width: 992px) {
    .choise--catalog .choise__add {
        width: calc(100% - 16px - 8px) !important;
    }
}

@media (max-width: 575px) {
    .choise--catalog .choise__item {
        min-width: 5px;
        /*max-width: 100%*/
    }
    .choise--catalog .choise__item:nth-child(3) {
        max-width: fit-content;
        justify-content: space-between;

    }
}

@media (max-width: 428px) {
    .choise--catalog .choise__item .choise__add {
        width: 100% !important;
    }
    .choise--catalog .choise__item:nth-child(3) {
        max-width: fit-content;
        justify-content: space-between;
    }
    .choise--catalog .choise__item:nth-child(3) .choise__title {
        justify-content: center !important;
        /*width: fit-content;*/
    }
}

.choise > .choise__item > .choise__title .choise__add img {
    /*margin-left: 8px;*/
}

p[data-date-desktop]::before {
    content: attr(data-date-desktop);
}

.lol::before {
    content: attr(data-test);
}

@media (max-width: 992px) {
    p[data-date-mobile]::before {
        content: attr(data-date-mobile);
    }

    .choise--catalog .choise__title {
        /*display: flex;          !* Включаем flex-распределение *!*/
        /*align-items: center;    !* Вертикальное выравнивание по центру *!*/
        justify-content: center; /* Горизонтальное центрирование содержимого */
        /*white-space: nowrap;    !* Запрещаем перенос текста *!*/
        gap: 8px;              /* Отступ между элементами (опционально) */
        /*margin-left: -20px;*/
    }
    /*.choise--catalog .choise__add {*/
    /*    !*display: flex;*!*/
    /*    !*align-items: center;*!*/
    /*    !*justify-content: space-between;*!*/
    /*    flex-grow: 1;          !* Растягиваем на доступное пространство *!*/
    /*    max-width: max-content; !* Не растягивать шире содержимого *!*/
    /*}*/
    .choise--catalog .choise__title::before {
        content: "";
        flex-shrink: 0;
        background-repeat: no-repeat;
        background-size: 16px 16px;
        background-position: center;
        width: 16px;
        height: 16px;
    }
    .choise--catalog .choise__title-menu::before {
        background-image: url("/assets/img/icon/menu.svg");
    }
    .choise--catalog .choise__title-location::before {
        background-image: url("/assets/img/icon/loc.svg")
    }
    .choise--catalog .choise__title-date::before {
        background-image: url("/assets/img/icon/pickWhite.svg")
    }
}

/*@media (max-width: 380px) {*/
@media (max-width: 428px) {
    .choise > .choise__item > .choise__title {
        justify-content: start;
        /*padding-left: 8px;*/
        /*padding-right: 8px;*/
    }
    .choise--catalog .choise__title::before {
        content: unset;
    }
}

.swiper-wrapper {
    transition-property: unset;
    transition-timing-function: unset;
    box-sizing: unset;
}

@media (max-width: 992px) {
    .modal .swiper {
        max-width: 90vw;
        height: auto;
        object-fit: contain;

        margin-left: auto;
        margin-right: auto;
        position: unset;
        overflow: hidden;
        list-style: none;
        padding: 0;
        /* Fix of Webkit flickering */
        z-index: 1;
        display: block;
    }
}

.pageHeader {
    display: flex; flex-direction: column; g2ap: 8px; m2argin-bottom:20px; p2adding-bottom: 20px; b2order-bottom: 1px solid rgba(0,0,0,0.05);
}
.pageHeader .pageHeader__title {
    display: flex; flex-direction: row; gap: 8px; justify-content: space-between;
}
.pageHeader .pageHeader__title .pageHeader__titleText {
    display: flex; flex-direction: row; gap: 8px;
}
.pageHeader .pageHeader__title .pageHeader__titleText span {
    font-size: 28px;
    line-height: 36px;
}

@media (max-width: 992px) {
    .pageHeader .pageHeader__title {
        display: flex; flex-direction: column; gap: 10px; justify-content: space-between;
    }
    .pageHeader .pageHeader__title .pageHeader__titleText span {
        font-size: 24px;
        line-height: 28px;
    }
}
@media (max-width: 390px) {
    .pageHeader .pageHeader__title .pageHeader__titleText span {
        font-size: 20px;
        line-height: 24px;
    }
}

.createAdt__no.checkList {
    display: flex; gap: 8px;
}
.createAdt__no.checkList label {
    display: flex; gap: 7px;
}
.createAdt__no.checkList label input[type="checkbox"] {
    width: 17px; height: 17px;
    position: absolute; opacity: 0;
}
.createAdt__no.checkList label span {
    font-size: 15px;
    line-height: 20px;
    position: relative;
    padding-left: 27px;
    cursor: pointer;
    display: inline-block;
}
.createAdt__no.checkList label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius:4px;
    background: white;
    box-sizing: border-box;
}
.createAdt__no.checkList label input[type="checkbox"]:checked + span::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 4px;
    width: 11px;
    height: 9px;
    background-image: url('../img/icon/check.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.createAdt__no.checkList label input[type="checkbox"]:checked + span::before {
    background: #FF4805;
    border-color: #FF4805;
}

.createAdt__no.radioList {
    display: flex; gap: 20px;
}
.createAdt__no.radioList label {
    display: flex; gap: 7px;
}
.createAdt__no.radioList label input[type="radio"] {
    width: 17px; height: 17px;
    position: absolute; opacity: 0;
}
.createAdt__no.radioList label span {
    font-size: 15px;
    line-height: 20px;
    position: relative;
    padding-left: 27px;
    cursor: pointer;
    display: inline-block;
}
.createAdt__no.radioList label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    background: white;
    box-sizing: border-box;
}
.createAdt__no.radioList label input[type="radio"]:checked + span::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
}
.createAdt__no.radioList label input[type="radio"]:checked + span::before {
    background: #FF4805;
    border-color: #FF4805;
}

@media (max-width: 992px) {
    .dropdown-menu {display: block;transform: translateY(100vh);opacity: 0;}
    .dropdown-menu.show {display: block;transform: translateY(0);opacity: 100;}
    .dropdown-menu.show ~ .dropdown-backdrop {opacity: 1;visibility: visible;}

    .offcanvas-menu {display: none;transform: translateY(100vh);}
    .offcanvas-menu.show {display: block;transform: translateY(0);}
    .offcanvas-menu.show ~ .dropdown-backdrop {opacity: 1;visibility: visible;}
}

@media (max-width: 992px) {
    .marketplace__title {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .announcementCard__dropdownMenu {
        display: block;
        padding: 16px 20px 14px 20px;
        position: fixed;
        width: 100%;
        border-radius: 16px 16px 0 0;
        bottom: 0;
        top: unset;
        transform: translateY(100%);
        transition: .38s ease-in-out
    }
    .announcementCard__dropdownMenu::before {
        content: "Объявление";
        display: flex;
        justify-content: center;
        font-size: 15px;
        /*font-family: "Onest-Bold", sans-serif;*/
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
        color: rgba(0, 0, 0, 0.8509803922)
    }
    .announcementCard__dropdownMenu.opacity {
        transform: translateY(0%)
    }
    .announcementCard__dropdownMenu .dropdown-item {
        padding: 12px 0
    }
    .announcementCard__dropdownMenu .dropdown-item {
        display: flex;
        align-items: center;
        color: rgba(0, 0, 0, .8509803922);
        padding: 12px 0;
        transition: .18s ease-in-out
    }
    .announcementCard__dropdownMenu .dropdown-item:hover {
        color: #ff4805
    }
    .announcementCard__dropdownMenu .dropdown-item:has(.counter) {
        padding: 14px 0
    }
}


.header__hidden-list { display: none; }

.choise__select { display: none; }
.choise__select.show { display: block; }

.marketplace__product-item {
    width: calc(25%)
}

/*.dropdown-menu {*/
/*    display: none;*/
/*    opacity: 1;*/
/*}*/
/*.dropdown-menu.show {*/
/*    display: block;*/
/*    opacity: 1;*/
/*}*/


.logIn__label.invalid > .logIn__labelToolTip {
    display: grid;
}

.logIn__labelToolTip {
    /*display: grid;*/
    display: none;

    width: 100%;
    left: calc(50% - 22px);
    z-index: 6;

    position: absolute;
    flex-direction: column;
    grid-template-rows: 1fr auto;
    align-items: end;
    justify-items: center;
    bottom: 100%;

    color: black;
    font-size: 13px;
    /*font-family: "Onest-Regular", sans-serif;*/
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}
.logIn__labelToolTip::before {
    white-space: pre-line;
    content: attr(data-content);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    background: white;
    border-radius: 8px;

    grid-row: 1;
}
.logIn__labelToolTip::after {
    content: "";
    position: absolute;
    grid-row: 1;
    width: 19px;
    height: 18px;
    background-image: url("/assets/img/icon/tooltipArr.svg");
    background-repeat: no-repeat;
    top: calc(100%);
}
.logIn__labelToolTip:not([data-content])::before,
.logIn__labelToolTip[data-content=""]::before {
    content: "Поле обязательно для заполнения";
}

.logIn__subText {
    font-size: 13px;
    color: rgba(0, 0, 0, .5019607843);
    margin-top: 10px
}

.logIn__subText a {
    color: rgba(0, 0, 0, .8);
}

.logIn__labelFIO {
    margin-top: 4px;
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.logIn__labelFIO input {
    width: 50%;
}

.invalid {
    border-color: #FF003D;
}

input.invalid {
    border-color: #FF003D;
}

.announcement>.announcement__wrapper>.announcement__top {
    border-bottom: 1px solid rgba(0, 0, 0, .0509803922);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .announcement>.announcement__wrapper>.announcement__top {
        border-bottom: 0;
    }
}

.announcementContent__wrapper {
    display: flex;
    flex-direction: row;
}

@media (max-width: 992px) {
    .announcementContent__wrapper {
        display: flex;
        flex-direction: column;
    }
}

.announcementContent__tabsMenu {
    margin-top: -20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .0509803922);
    /*margin-bottom: 10px;*/
    padding-bottom: 20px;
    /*border-bottom: 1px solid rgba(0, 0, 0, .0509803922);*/
}

.announcementContent__tabs {
    display: inline-flex;
    width: 300px;
    padding-right: 60px;
    /*width: 240px; */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.announcementContent__tabs > .announcementContent__tabsItem {
    align-self: stretch;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    display: flex;
}

.announcementContent__tabs > .announcementContent__tabsItem.active {
    border-bottom: 2px var(--Branding-Line-Brand, #D23800) solid;
}

.announcementContent__tabs > .announcementContent__tabsItem .item__wrapper {
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: inline-flex;
}

.announcementContent__tabs > .announcementContent__tabsItem.active .item__wrapper {
    justify-content: space-between;
}

.announcementContent__tabs > .announcementContent__tabsItem .item__counter {
    color: var(--Text-Hint, rgba(0, 0, 0, 0.30));
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.announcementContent__tabs > .announcementContent__tabsItem .item__title {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: var(--Text-Primary, rgba(0, 0, 0, 0.5));
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.announcementContent__tabs > .announcementContent__tabsItem:not(.active):hover * {
    color: var(--Text-Primary, rgba(0, 0, 0, 0.85)) !important;
}

.announcementContent__tabs > .announcementContent__tabsItem.active .item__title {
    color: var(--Text-Primary, rgba(0, 0, 0, 0.85));
}

.announcementContent__tabs > .announcementContent__tabsItem.active .item__counter {
    width: 24px;
    height: 24px;
    background: var(--Text-Danger, #E9033A);
    border-radius: 37.50px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    color: white;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    word-wrap: break-word;
}

.announcement__list {
    display: flex;
    flex-direction: column;
    flex-grow: calc(100);
}

.announcementCard__img {
    width: 122px;
    height: 122px;
}

.announcementCard__jobprice {
    color: rgba(0, 0, 0, .85);
    font-size: 17px;
    margin-bottom: 10px
}

.announcementCard__dropdown {
    position: relative;
    margin-left: auto;
    margin-right: 4px;
}

.announcementCard__dropdownMenu {
    position: absolute;
    left: auto;
    right: 0;
    display: none;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #fff;
    border-radius: 10px;
    padding: 4px;
    overflow: hidden;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, .15);
    transition: .38s ease-in-out;
    z-index: 100;
}

.announcementCard__dropdownMenu .dropdown-item {
    font-size: 15px;
    line-height: 20px;
    color: rgba(0,0,0,.85);
    padding: 4px 12px;
    border-radius: 6px;
    width: fit-content(125px);
}

.announcementCard__dropdownMenu > *:hover, .announcementCard__dropdownMenu > *.active {
    background-color: rgba(255, 72, 5, .3)
}

.announcementCard__dropdownMenu > *.disable {
    color: rgba(0, 0, 0, .3);
    pointer-events: none
}

@media (max-width: 992px) {
    .header__hidden-list { display: block; }
    .header__hidden-list.show { transform: translateY(0); }

    .choise__select { display: block; }
    .choise__select.show { transform: translate(0); }

    .marketplace__product-item {
        padding-top: 24px;
        width: calc(33%)
    }

    .announcementContent__tabs {
        display: none;
    }

    .announcementCard__dropdownMenu {
        display: block;
        padding: 16px 20px 14px 20px;
        position: fixed;
        width: 100%;
        border-radius: 16px 16px 0 0;
        bottom: 0;
        top: unset;
        transform: translateY(100%);
        transition: .38s ease-in-out
    }

    .announcementCard__dropdownMenu::before {
        content: "Объявление";
        display: flex;
        justify-content: center;
        font-size: 15px;
        /*font-family: "Onest", sans-serif;*/
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
        color: rgba(0, 0, 0, 0.8509803922)
    }

    .announcementCard__dropdownMenu.opacity {
        transform: translateY(0%)
    }

    .announcementCard__dropdownMenu .dropdown-item {
        padding: 12px 0
    }

    .announcementCard__dropdownMenu .dropdown-item {
        display: flex;
        align-items: center;
        color: rgba(0, 0, 0, .8509803922);
        padding: 12px 0;
        transition: .18s ease-in-out
    }

    .announcementCard__dropdownMenu .dropdown-item:hover {
        color: #ff4805
    }

    .announcementCard__dropdownMenu .dropdown-item:has(.counter) {
        padding: 14px 0
    }

}
@media (max-width: 768px) {
    .marketplace__product-item {
        width: calc(50%)
    }

    .logIn__wrapper > *:not(.logIn__title) {
        padding: 0 36px
    }
}

@media (max-width: 576px) {
    .marketplace__product-item {
        width: calc(100%)
    }
}

.accordion-collapse { display: none; }
.accordion-collapse.show { display: block; }

/*choices__inner*/
/* ### ВАЛИДАЦИЯ */
/* Визуал */
/*.createAdt__char .choices__inner { height: 47px; }*/

.createAdt__addName .form-control { width: 70%; }
.createAdt__addName .valid-feedback, .createAdt__char .valid-feedback {
    position: absolute;
    left: 34%;
    bottom: -20px;
    font-size: 13px;
    margin-top: 4px;
}
.createAdt__addName .invalid-feedback, .createAdt__char .invalid-feedback {
    position: absolute;
    left: 34%;
    bottom: -20px;
    font-size: 13px;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .createAdt__addName .form-control { width: 100%; }
    .createAdt__addName .valid-feedback { left: 0; }
    .createAdt__addName .invalid-feedback { left: 0; }
}

/* Логика */
.input-group {}
.input-group .form-label {}
.input-group .form-control {}
.input-group .form-select {}
.input-group .form-check {}

.input-group .valid-feedback {display: none;}
.input-group:has(.is-valid) .valid-feedback { display: inherit; }
.input-group:has(.is-valid) .form-control { border-color: darkgreen; }

.input-group .invalid-feedback {display: none;}
.input-group:has(.is-invalid) .invalid-feedback { display: inherit; }
.input-group:has(.is-invalid) .form-control { border-color: #E9033A; }

.input-group:has(.is-invalid)::before {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 14px;
    background-image: url("/assets/img/icon/triangle.svg");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px
}
.input-group:has(.is-invalid)::after {
    content: attr(data-after);
    position: absolute;
    left: 34%;
    bottom: -20px;
    color: #e9033a;
    font-size: 13px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .input-group:has(.is-invalid)::before {
        top: 70%;
    }
    .input-group:has(.is-invalid)::after {
        left: 0;
    }
}

.reviewCard {
    cursor: pointer;
}

.cho2ise__select::before {
    content: "";
    background-color: #1a1d20;
    width: 84px;
    height: 4px;
}

.choise__item .air-datepicker {
    display: block;
    position: relative !important;
    top: 0;
    border: 0;
    transform: translateY(0%) !important
}

.choise__item:has(.choise__datepicker)::after {
    background-image: url();
}
.choise__item:has(>.show) {
    border-color: #ff4805;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    justify-items: center;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: none;
}

.modal-dialog {
    background-color: white;
    padding: 36px;
    border-radius: 16px;
    max-width: 1120px;
    overflow-x: hidden;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal__types {
    align-self: stretch;
    border: 0;
    border-radius: 0;
    border-bottom: 1px var(--Line-Generic, rgba(0, 0, 0, 0.10) solid);
    justify-content: flex-start;
    align-items: flex-start;
    gap: 28px;
    display: inline-flex;
    width: 100%;
    margin-bottom: 16px;
}

.modal__types .typeLine {
    height: 40px;
    /*border-bottom: 2px var(--Branding-Line-Brand, #D23800) solid;*/
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 9px;
    display: inline-flex;
}

.modal__types .typeLine.active {
    border-bottom: 2px var(--Branding-Line-Brand, #D23800) solid;
}

.modal__types .typeLine .typeInner {
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: inline-flex;
}

.modal__types .typeLine .typeInner .typeTitle {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: rgba(0,0,0,0.50);
    font-size: 15px;
    /*font-family: "Onest", sans-serif;*/
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.modal__types .typeLine.active .typeInner .typeTitle {
    color: rgba(0,0,0,0.85);
}

/* Responsive breakpoints */
/*@media (min-width: 576px) {*/
/*    .modal-dialog {*/
/*        max-width: 500px;*/
/*        margin: 1.75rem auto;*/
/*    }*/
/*}*/

/*.border-1-top {}*/
.border-1-bottom {
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.border-2-bottom {
    border-bottom: 2px solid rgba(0,0,0,.05);
}
.border-brand {
    border-color: #D23800;
}
.border-black {
    border-color: rgba(0,0,0,1)
}
.border-black-5 {
    border-color: rgba(0,0,0,.05)
}

.w-25 {width: 25%}
.w-50 {width: 50%}
.w-75 {width: 75%}
.w-100 {width: 100%}

.p-0 {padding: 0;}
.py-0 {padding-top: 0; padding-bottom: 0;}
.pt-0 {padding-top: 0;}
.pb-0 {padding-bottom: 0;}
.px-0 {padding-left: 0; padding-right: 0;}
.ps-0 {padding-left: 0;}
.pe-0 {padding-right: 0;}

.p-10 {padding: 10px;}
.py-10 {padding-top: 10px; padding-bottom: 10px;}
.pt-10 {padding-top: 10px;}
.pb-10 {padding-bottom: 10px;}
.px-10 {padding-left: 10px; padding-right: 10px;}
.ps-10 {padding-left: 10px;}
.pe-10 {padding-right: 10px;}

.p-20 {padding: 20px;}
.py-20 {padding-top: 20px; padding-bottom: 20px;}
.pt-20 {padding-top: 20px;}
.pb-20 {padding-bottom: 20px;}
.px-20 {padding-left: 20px; padding-right: 20px;}
.ps-20 {padding-left: 20px;}
.pe-20 {padding-right: 20px;}

.m-0 {margin: 0;}
.my-0 {margin-top: 0; margin-bottom: 0;}
.mt-0 {margin-top: 0;}
.mb-0 {margin-bottom: 0;}
.mx-0 {margin-left: 0; margin-right: 0;}
.ms-0 {margin-left: 0;}
.me-0 {margin-right: 0;}

.m-10 {margin: 10px;}
.my-10 {margin-top: 10px; margin-bottom: 10px;}
.mt-10 {margin-top: 10px;}
.mb-10 {margin-bottom: 10px;}
.mx-10 {margin-left: 10px; margin-right: 10px;}
.ms-10 {margin-left: 10px;}
.me-10 {margin-right: 10px;}

.m-20 {margin: 20px;}
.my-20 {margin-top: 20px; margin-bottom: 20px;}
.mt-20 {margin-top: 20px;}
.mb-20 {margin-bottom: 20px;}
.mx-20 {margin-left: 20px; margin-right: 20px;}
.ms-20 {margin-left: 20px;}
.me-20 {margin-right: 20px;}

.m-40 {margin: 40px;}
.my-40 {margin-top: 40px; margin-bottom: 40px;}
.mt-40 {margin-top: 40px;}
.mb-40 {margin-bottom: 40px;}
.mx-40 {margin-left: 40px; margin-right: 40px;}
.ms-40 {margin-left: 40px;}
.me-40 {margin-right: 40px;}

.rotate-90 {rotate: 90deg;}
.rotate-180 {rotate: 180deg;}
.rotate-270 {rotate: 270deg;}

.z-1 {z-index: 1;}
.z-2 {z-index: 2;}
.z-3 {z-index: 3;}
.z-4 {z-index: 4;}
.z-5 {z-index: 5;}

.text-danger {color: #E9033A;}

.fw-400 {font-weight: 400 !important;}
.fw-700 {font-weight: 700 !important;}

.fs-15-20 {font-size: 15px !important;line-height: 20px !important;}
.fs-17-24 {font-size: 17px !important;line-height: 24px !important;}
.fs-28-36 {font-size: 28px !important;line-height: 36px !important;}

.fc-black-30 {color: rgba(0, 0, 0, 0.3) !important;}
.fc-black-70 {color: rgba(0, 0, 0, 0.7) !important;}
.fc-black-85 {color: rgba(0, 0, 0, 0.85) !important;}

.d-none {display: none !important;}
.d-flex {display: flex !important;}
.d-block {display: block !important;}
@media (min-width: 992px) {
    .d-none-lg {display: none !important;}
    .d-flex-lg {display: flex !important;}
    .d-block-lg {display: block !important;}
}
@media (min-width: 768px) {
    .d-none-md {display: none !important}
    .d-flex-md {display: flex !important;}
    .d-block-md {display: block !important;}
}
@media (min-width: 576px) {
    .d-none-sm {display: none !important}
    .d-flex-sm {display: flex !important;}
    .d-block-sm {display: block !important;}
}
@media (min-width: 340px) {
    .d-none-xs {display: none !important}
    .d-flex-xs {display: flex !important;}
    .d-block-xs {display: block !important;}
}

.tag {
    font-size: 13px;
    padding: 3px 9px;
    color: rgba(0, 0, 0, .6980392157);
    background-color: rgba(0, 0, 0, .0509803922);
    border-radius: 6px;
    flex-shrink: 0;
    width: -moz-fit-content;
    width: fit-content
}
.tag--pay {
    color: #BD5C0A;
    background-color: rgba(254, 177, 75, .3)
}
.tag--paid {
    color: #2d8b5d;
    background-color: rgba(50, 186, 118, .1490196078)
}
.tag--new {
    color: #3072b3;
    background-color: rgba(54, 151, 241, .1490196078)
}
.tag--archive {
    color: #6e4299;
    background-color: rgba(143, 82, 204, .1490196078)
}
.tag--canceled {
    color: #bd0935;
    background-color: rgba(255, 0, 61, .1490196078)
}
.tag--opacity {
    opacity: .5;
    z-index: -1
}

/* TOASTS */
/* ============ */
/* like toasts */
#likeToasts.toast-container {
    z-index: 5;
}
#likeToasts.toast-container > .toast {
    position: fixed;
    width: 25%;
    bottom: 12px;
    left: 50%;
    translate: -50% 0;
    font-size: 15px;
    height: -moz-fit-content;
    height: fit-content;
    top: unset;
    padding: 17px 16px;
    border-radius: 12px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .05), 0px 0px 15px 0px rgba(0, 0, 0, .15);
    display: flex;
    gap: 4px;
    align-items: center;
    /*font-family: "Onest", sans-serif;*/
    font-weight: 400;
    color: #000;
    background-color: #fff;
    min-width: 170px;
    transition: .38s ease-in-out;
    z-index: 5;
}
@media (max-width: 576px) {
    #likeToasts.toast-container > .toast {
        width: 91%;
    }
}
#likeToasts.toast-container > .toast .close {
    width: 20px;
    height: 20px;
    background-image: url("../img/icon/close.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: auto;
    filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(12%) hue-rotate(56deg) brightness(99%) contrast(102%)
}
#likeToasts.toast-container > .toast span {
    display: block;
    flex-shrink: 0;
    color: #ff4805;
}
#likeToasts.toast-container > .toast.showing {
    opacity: 0;
}
#likeToasts.toast-container > .toast:not(.show) {
    opacity: 0;
}
#likeToasts.toast-container > .toast.show {
}
#likeToasts.toast-container > .toast.fade {
    animation: translateYDown .4s;
    /*transition: none;*/
}
#likeToasts.toast-container > .toast.hide {
    display: none;
}

/* default toasts */
.toasts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 25px 20px;
    gap: 7px;
    pointer-events: none;
    z-index: 1050;
}
.toasts-container > .toast {
    pointer-events: auto;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    padding: 16px 20px;
    gap: 12px;
    max-width: 487px;
    /*width: 487px;*/
    /*height: 74px;*/
    background: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}
@media (max-width: 992px) {
    .toasts-container > .toast {
        width: 100%;
    }
}

.toasts-container > .toast > .toast-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 10px;
    isolation: isolate;
    width: 18px;
    height: 10px;
    flex: none;
    order: 0;
    flex-grow: 0;

}
.toasts-container > .toast > .toast-icon::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    flex: none;
    order: 0;
    flex-grow: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.toasts-container .toast-success {
    background: #D4EAE2;
}
.toasts-container .toast-success > .toast-icon::before {
    background-image: url('/assets/img/icon/toast-check.svg');
}
.toasts-container .toast-danger {
    background: #FFD9E2;
}
.toasts-container .toast-danger > .toast-icon::before {
    background-image: url('/assets/img/icon/toast-cross.svg');
}
.toasts-container>.toast>.toast-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 4px;

    width: 10%;
    flex: none;
    order: 1;
    flex-grow: 1;
}
.toasts-container>.toast>.toast-content>.toast-title {
    /*font-family: "Onest-Bold", sans-serif;*/
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    line-height: 20px;

    color: rgba(0, 0, 0, 0.85);

    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}
.toasts-container > .toast > .toast-content > .toast-text:empty {
    display: none;
}

.toasts-container > .toast > .toast-content > .toast-text {
    /*font-family: "Onest-Regular", sans-serif;*/
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.7);

    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 417px;
    max-width: 99%;
}
.toasts-container > .toast.showing {
    opacity: 0;
}
.toasts-container > .toast:not(.show) {
    opacity: 0;
}
.toasts-container > .toast.show {
}
.toasts-container > .toast.fade {
    animation: translateYDown .4s;
    /*transition: none;*/
}
.toasts-container > .toast.hide {
    display: none;
}

.tab-pane:not(.show){
    display: none;
    opacity: 0;
}
.tab-pane.show{}
.tab-pane.fade{}
.tab-pane.hide{}

.catalogCards__img {
    width: 100%;
    height: auto;
    /*align-self: stretch;*/
    -o-object-fit: contain;
    object-fit: contain;
    background-color: #000000;
    border-radius: 10px;
    object-position: center; /* Центрирует изображение */
    justify-items: center;
    z-index: 2;
    aspect-ratio: 1/1;
}

.catalogCards__img img {
    max-width: 100%;
    /*height: 100%;*/
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: unset;
    justify-content: center;
    object-position: center; /* Центрирует изображение */
}

.catalogCards__img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

/* Стили для модального окна карусели */
.carouselModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6;
    overflow: hidden;
}

.carouselModal .modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carouselModal .swiper-container {
    width: 100%;
    height: 100%;
}

.carouselModal .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.5);
}

.carouselModal .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carouselModal .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgba(255,255,255,0.8);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.carouselModal .swiper-button-prev {
    color: rgba(255,255,255,0.8);

}
.carouselModal .swiper-button-next {
    color: rgba(255,255,255,0.8);
}

/* Стили для миниатюр */
.carouselModal .thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.carouselModal .thumbnail {
    width: 100px;
    height: 100px;
    cursor: pointer;
    object-fit: cover;
}

@media (max-width: 992px) {
    /*.choise.choise--catalog {*/
    /*    position: sticky;*/
    /*    top: 0;*/
    /*    !*background: #f8f9fa;*!*/
    /*    z-index: 100;*/
    /*}*/
    .filter .filter__fixedButtons {
        position: sticky;
        bottom: 0;
        z-index: 6;
        /*background-color: rgba(24,255,255,1);*/
        /*z-index: 1030; !* Чтобы было поверх других элементов *!*/
        background: white;
        /*padding: 1rem;*/
        /*box-shadow: 0 -2px 10px rgba(0,0,0,0.1);*/
    }
}

/* Анимации для общего контейнера страницы */
/*#content {*/
/*    transition: opacity 0.3s ease;*/
/*}*/

/*#content.page-transition {*/
/*    animation: pageTransition 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*@keyframes pageTransition {*/
/*    0% {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*    50% {*/
/*        opacity: 0.3;*/
/*        transform: translateY(-10px);*/
/*    }*/
/*    100% {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/* Улучшенные анимации для форм входа */
/*.logIn {*/
/*    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*@keyframes fadeInUp {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(30px) scale(0.98);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0) scale(1);*/
/*    }*/
/*}*/

/*!* Плавное исчезновение формы при отправке *!*/
/*.logIn.fade-out {*/
/*    animation: fadeOutUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;*/
/*    pointer-events: none;*/
/*}*/

/*@keyframes fadeOutUp {*/
/*    from {*/
/*        opacity: 1;*/
/*        transform: translateY(0) scale(1);*/
/*    }*/
/*    to {*/
/*        opacity: 0;*/
/*        transform: translateY(-30px) scale(0.98);*/
/*    }*/
/*}*/

/*!* Плавное появление новой формы *!*/
/*.logIn.fade-in {*/
/*    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/* Индикатор загрузки */
.logIn__loading {
    position: relative;
    pointer-events: none;
    overflow: hidden;
}

.logIn__loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fadeIn 0.2s ease-out;
}

.logIn__loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255, 72, 5, 0.2);
    border-top: 3px solid #ff4805;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 11;
}

/*@keyframes spin {*/
/*    0% { transform: rotate(0deg); }*/
/*    100% { transform: rotate(360deg); }*/
/*}*/

/*@keyframes fadeIn {*/
/*    from { opacity: 0; }*/
/*    to { opacity: 1; }*/
/*}*/

/*!* Дополнительные улучшения для плавности *!*/
/*.logIn__wrapper {*/
/*    transition: transform 0.3s ease, opacity 0.3s ease;*/
/*}*/

/*.logIn__form {*/
/*    transition: all 0.3s ease;*/
/*}*/

/* Анимация для кнопки при загрузке */
.logIn__btn.loading {
    position: relative;
    color: transparent;
}

.logIn__btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Стили для кнопки повторной отправки СМС */
.logIn__change.btn--link {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logIn__change.btn--link:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, .1);
    transform: translateY(-1px);
}

.logIn__change.btn--link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, .03);
}

.logIn__change.btn--link:disabled:hover {
    transform: none;
    background-color: rgba(0, 0, 0, .03);
}

/* Стили для таймера ожидания на форме ввода номера */
.logIn__timer {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(233, 3, 58, 0.1);
    border: 1px solid rgba(233, 3, 58, 0.2);
    border-radius: 8px;
    text-align: center;
}

.logIn__timer p {
    margin: 0;
    color: #e9033a;
    font-size: 14px;
    font-weight: 500;
}

.logIn__timer #timerCounter {
    font-weight: bold;
    font-size: 16px;
    color: #e9033a;
}

/* Стили для заблокированного состояния формы */
.logIn__form input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, 0.05);
}

.logIn__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: rgba(255, 72, 5, 0.6);
}