@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html,
body {
    touch-action: manipulation;
    overscroll-behavior: none;
}

body,
* {
    padding: 0;
    margin: 0;
}

body {
    padding-bottom: 11px;
}

@font-face {
    font-family: 'SF-Pro';
    src: local('SF-Pro-Display-Bold'), url(/admin/static/fonts/SF-Pro-Display-Bold.otf) format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'SF-Pro';
    src: local('SF-Pro-semi-bold'), url(/admin/static/fonts/SF-Pro-Display-Semibold.otf) format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'SF-Pro';
    src: local('SF-Pro-light'), url(/admin/static/fonts/SF-Pro-Display-Regular.otf) format('truetype');
    font-weight: 510;
}

body,
* {
    font-family: 'SF-Pro', sans-serif !important;
}

.black__text {
    color: #222222
}

.gray__text {
    color: #9299A2
}

.red__bttn {
    background: #ED0028;
    color: #FFFFFF;
    outline: none;
    border: none;
}

.element__title {
    font-weight: 400;
    color: #9299A2;
}

.isEmpty {
    color: #ED0028 !important;
    text-transform: uppercase;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
}

button.disabled {
    opacity: 60%;
    pointer-events: none;
}

button:disabled {
    opacity: 40%;
    cursor: default !important;
}

@media (min-width: 1025px) {
    .element__title {
        font-size: 16px;
        line-height: 19.2px;
    }

    button {
        cursor: pointer;
    }

    .adaptive {
        display: none !important;
    }
}

@media (max-width: 1025px) {
    .element__title {
        font-size: 11px;
        line-height: 13px;
    }

    .desktop {
        display: none !important;
    }
}

.column {
    display: flex;
    flex-direction: column;
}

.section__title {
    font-weight: 700;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #222222
}

@media (min-width: 1025px) {
    .section__title {
        font-size: 36px;
        line-height: 43.2px;
    }
}

@media (max-width: 1025px) {
    .section__title {
        font-size: 20px;
        line-height: 21.6px;
    }
}

section {
    position: relative;
}

@media (min-width: 1025px) {
    main {
        margin-top: 40px;
        margin-left: 96px;
        margin-right: 96px;
        margin-bottom: 131px;
    }
}

@media (max-width: 1025px) {
    main {
        margin-top: 9px;
        margin-left: 24px;
        margin-right: 24px;
    }
}

.popup__overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -100;
    display: flex;
    opacity: 0;
    transition: all .4s;
}

.popup__overlay:not(.closing, .visible) .popup {
    position: relative;
    display: none
}

.popup__overlay.closing {
    opacity: 0;
    z-index: 999;
}

.popup__overlay.visible {
    opacity: 1;
    z-index: 999;
}

.popup__overlay.closing .popup {
    z-index: 111;
}

.popup__overlay.visible .popup {
    z-index: 100;
}

.popup {
    position: relative;
    background: rgba(255, 255, 255, 1);
}

.payment__popup__overlay .payment__popup {
    padding: 18px;
    gap: 18px;
    border-radius: 24px;
    box-shadow: 0px 0px 13px 0px rgba(26, 0, 49, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.payment__popup .popup__text__container {
    align-items: flex-start !important;
}

@media (min-width: 1025px) {
    .payment__popup__overlay .payment__popup {
        padding: 28px 24px 24px 24px;
        height: calc(355px - (26px * 2));
        border-radius: 32px;
        width: calc(594px - 48px);
        gap: 24px;
    }
}

@media (max-width: 1025px) {
    .payment__popup__overlay .payment__popup {
        padding: 24px 18px 18px 18px;
        border-radius: 24px;
        width: 75vw;
    }
}

.payment__popup__overlay .payment__popup .popup__etaps__wrapper {
    display: flex;
    width: 100%;
    height: fit-content;
    overflow: hidden;
}

.popup__etap__card {
    min-width: 100%;
    max-width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    display: none;
}

.popup__etap__card.active {
    display: flex;
}


.popup__etap__card:not(.active) {
    opacity: 0;
    display: none;
}

.payment__popup__overlay .payment__popup .popup__text__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment__popup__overlay .payment__popup .popup__text__container .payment__popup__title {
    font-weight: 700;
    color: #222222;
}

.payment__popup__overlay .payment__popup .popup__text__container .payment__popup__title:not(.no__inter) {
    font-family: "Inter", serif !important;
}

@media (min-width: 1025px) {
    .payment__popup__overlay .payment__popup .popup__text__container .payment__popup__title {
        font-size: 36px;
        line-height: 33.6px;
    }
}

@media (max-width: 1025px) {
    .payment__popup__overlay .payment__popup .popup__text__container .payment__popup__title {
        font-size: 19px;
        line-height: 22.8px;
    }
}

.payment__popup__overlay .payment__popup .popup__text__container .payment__popup__description {
    font-weight: 400;
    color: rgba(34, 34, 34, 0.5);
}

@media (min-width: 1025px) {
    .payment__popup__overlay .payment__popup .popup__text__container .payment__popup__description {
        font-size: 19px;
        line-height: 26.6px;
        letter-spacing: .5px;
    }
}

@media (max-width: 1025px) {
    .payment__popup__overlay .payment__popup .popup__text__container .payment__popup__description {
        font-size: 14px;
        line-height: 19.6px;
    }
}

.payment__popup__overlay .payment__popup .popup__text__container .payment__popup__description .payment__amount,
.payment__popup__overlay .payment__popup .popup__text__container .payment__popup__description .payment__total__sum {
    font-weight: 600;
}

.payment__popup__overlay .payment__popup .popup__text__container .payment__popup__description .payment__amount {
    color: rgba(34, 34, 34, 1);
}

.payment__popup__overlay .payment__popup .popup__text__container .payment__popup__description .payment__total__sum {
    color: #ED0028
}

.payment__popup__overlay .payment__popup .popup__ui__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    align-items: center;
}

.payment__popup__overlay .payment__popup .popup__ui__container button {
    width: 100%;
    height: 100%;
    padding: 8px 24px 8px 24px;
    gap: 8px;
    border-radius: 1000px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    cursor: pointer;
}

.popup .popup__ui__container button.cancel__bttn {
    color: #222222;
    background: #F5F5F5;
    outline: none;
    border: none;
}

.payment__popup__overlay .payment__popup .popup__ui__container .named__input__container {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1025px) {
    .payment__popup__overlay .payment__popup .popup__ui__container:not(.row) {
        margin-top: 32px;
        gap: 32px;
    }

    .payment__popup__overlay .payment__popup .popup__ui__container button {
        font-size: 18px;
        line-height: 25.2px;
        height: 56px;
    }

    .payment__popup__overlay .payment__popup .popup__ui__container .named__input__container {
        gap: 8px;
    }
}

@media (max-width: 1025px) {
    .row {
        display: flex;
        flex-direction: row !important;
    }

    .payment__popup__overlay .payment__popup .popup__ui__container {
        margin-top: 20px;
    }

    .payment__popup__overlay .payment__popup .popup__ui__container button {
        font-size: 14px;
        line-height: 19.6px;
        height: 46px;
    }
}

#client__personal__address_section .page__search__ui__container,
#client__personal__address_section .page__search__ui__container .client__personal__container,
#client__personal__address_section .page__search__ui__container .client__personal__container .client__personal__content,
.client__personal__get__orders__container {
    display: flex;
    align-items: center;
}

#client__personal__address_section .page__search__ui__container .client__personal__container .client__personal__content .client__personal__fullname .client__personal__fullname__title {
    text-transform: uppercase;
}

#client__personal__address_section .page__search__ui__container .client__personal__container .client__personal__content .client__personal__fullname .client__personal__fullname__value {
    color: #222222;
}

@media (min-width: 1025px) {
    #client__personal__address_section .page__search__ui__container .client__personal__container .client__personal__content .client__personal__fullname {
        border-radius: 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2px
    }

    .client__personal__fullname__value {
        max-width: 344px;
        height: fit-content;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .client__personal__address__card.client__personal__fullname {
        padding: 0px 18px !important;
        height: 64px !important;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__container .client__personal__content {
        gap: 16px;
    }

    #client__personal__address_section .page__search__ui__container {
        justify-content: space-between;
    }

    .client__personal__get__orders__container {
        gap: 6px;
        margin-left: 16px;
    }
}

@media (max-width: 1024px) {
    #client__personal__address_section {
        margin-top: 8px;
    }

    #client__personal__address_section .page__search__ui__container {
        flex-direction: column;
        gap: 32px 0px;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__container {
        flex-direction: column;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__container,
    #client__personal__address_section .page__search__ui__container .client__personal__container .client__personal__content {
        width: 100%;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__container .client__personal__content {
        gap: 8px;
        justify-content: space-between;
    }
}

#client__personal__address_section .page__search__ui__container .client__personal__address__card {
    height: fit-content;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 13px 0px #1A00311A;
    gap: 0px 16px;
    outline: none;
    border: none;
}

#client__personal__address_section .page__search__ui__container .client__personal__address__card .client__personal__address__value {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    color: #222222;
}

#client__personal__address_section .page__search__ui__container .client__personal__address__card .client__personal__address__title {
    font-size: 17px;
    font-weight: 510;
    line-height: 20.4px;
    text-align: start;
}

.client__personal__address__card:nth-child(2) .client__personal__fullname__value {
    white-space: nowrap;
}

@media (min-width: 1025px) {
    #client__personal__address_section .page__search__ui__container .client__personal__address__card {
        padding: 18px 24px 18px 18px;
        height: calc(64px - (18px * 2))
    }

    .client__personal__address__card:nth-child(1) {
        height: 64px !important;
    }

    .client__personal__address__card:nth-child(1) .client__personal__address__value {
        font-size: 32px;
        font-weight: 700;
        line-height: 38.4px;
        font-family: "Inter", serif !important;
    }

    .client__personal__address__card:nth-child(1) .client__personal__address__title {
        font-size: 17px;
        font-weight: 510;
        line-height: 20.4px;
    }

    .client__personal__address__card:nth-child(2) .client__personal__fullname__title {
        font-size: 16px;
        font-weight: 400;
        line-height: 19.2px;
    }

    .client__personal__address__card:nth-child(2) .client__personal__fullname__value {
        font-size: 19px;
        font-weight: 510;
        line-height: 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1142px) {
    #client__personal__address_section .page__search__ui__container .client__personal__address__card {
        padding: 18px 10px 18px 10px;
    }
}

@media (max-width: 1024px) {
    #client__personal__address_section .page__search__ui__container .client__personal__address__card {
        padding: 18px;
        width: fit-content;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__address__card:nth-child(1) {
        max-width: 116px;
        height: 66px;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__address__card:nth-child(2) {
        height: calc(68px - (18px * 2));
    }

    #client__personal__address_section .page__search__ui__container .client__personal__address__card .client__personal__address__value {
        order: 2;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__address__card:nth-child(1) {
        gap: 4px;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__address__card:nth-child(2) {
        gap: 0px;
    }

    #client__personal__address_section .page__search__ui__container .client__personal__address__card .client__personal__address__title {
        font-size: 12px;
        font-weight: 400;
        line-height: 14.4px;
    }

    .client__personal__address__card:nth-child(1) .client__personal__address__value {
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    .client__personal__address__card:nth-child(1) .client__personal__address__title,
    .client__personal__address__card:nth-child(2) .client__personal__fullname__title {
        font-size: 12px;
        font-weight: 400;
        line-height: 14.4px;
    }

    .client__personal__address__card:nth-child(2) .client__personal__fullname__value {
        font-size: 15px;
        font-weight: 510;
        white-space: nowrap;
    }
}

.header__authorization__page {
    position: fixed;
    top: 40px;
    right: 156px;
}

.search__input__with__button__container {
    display: flex;
    gap: 0px 4px;
}

@media (min-width:1025px) {
    #header__search__orders__input {
        width: calc(279px - 16px);
    }

    #no__client__found__overlay .popup .popup__title {
        letter-spacing: -0.925px;
    }
}



.search__input__with__button__container input {
    background: #F5F5F5;
    font-weight: 510;
    line-height: 24px;
    border: none;
    outline: none;
    width: 100%;
    height: calc(48px - (14px * 2))
}

@media (min-width: 1025px) {
    .search__orders__ui__container {
        margin-left: 17px;
    }

    .search__orders__ui__container input {
        width: 339px;
        padding: 14px 16px 14px 16px;
        border-radius: 16px;
        font-size: 19px;
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {
    .search__orders__ui__container input {
        width: 200px;
    }
}

@media (min-width: 1025px) and (max-width: 1220px) {
    .search__orders__ui__container input {
        width: 100px;
    }
}

@media (max-width: 1024px) {
    .search__input__with__button__container {
        width: 100%;
    }

    .search__input__with__button__container input {
        padding: 14px;
        border-radius: 14px;
        font-size: 14px;
    }
}

.search__input__with__button__container input::placeholder {
    color: #9299A2
}

.search__input__with__button__container .search__orders__button {
    padding: 8px 24px;
    border-radius: 14px;
    background: #ED0028;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search__orders__button {
    position: relative;
}

button.is__loading svg {
    display: none !important
}

button.is__loading::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ED0028;
    border-radius: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 1025px) {
    .search__input__with__button__container .search__orders__button {
        width: 56px;
        height: 56px;
    }

    .search__input__with__button__container .search__orders__button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 1024px) {
    .search__input__with__button__container .search__orders__button {
        width: 48px;
        height: 48px;
    }
}

#orders__section:not(.visible),
#no__found__container:not(.visible) {
    display: none;
}

@media (min-width: 1025px) {
    #orders__section {
        margin-top: 128px;
    }
}

@media (max-width: 1024px) {
    #orders__section {
        margin-top: 24px;
    }
}

#orders__section .orders__block__container {
    display: flex;
    flex-direction: column;
    gap: 40px 0px;
}

#orders__section .orders__block__container .orders__block.hidden {
    display: none;
}

#orders__section .orders__block__container .orders__block .orders__container {
    display: flex;
    gap: 24px 0px;
    margin-top: 24px;
}

@media (min-width: 1025px) {
    #orders__section .orders__block__container .orders__block .orders__container {
        margin-top: 40px;
        gap: 24px;
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    #orders__section .orders__block__container .orders__block .orders__container {
        margin-top: 24px;
        flex-direction: column;
    }
}

.order__card {
    height: fit-content;
    padding: 18px;
    gap: 16px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 13px 0px #1A00311A;
}

.order__card.hidden {
    display: none !important;
}

.order__card .order__card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    color: #222222;
}

.order__card .order__card__about__container {
    display: flex;
    flex-direction: column;
    gap: 16px 0px;
}

.order__card .order__card__about__container .order__card__about__content {
    display: flex;
    flex-direction: column;
}

.order__card .order__card__about__container .order__card__about__content .order__card__about__value {
    font-size: 15px;
    font-weight: 510;
    line-height: 24px;
    color: #222222;
    max-width: calc(100% - 20px);
}

.order__card .get__order__button {
    width: 100%;
    height: 46px;
    padding: 8px 24px 8px 24px;
    border-radius: 1000px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
}

@media (min-width: 1025px) {
    .order__card {
        height: fit-content;
        padding: 20px;
        gap: 32px;
        border-radius: 28px;
        width: calc(400px - 20px * 2);
        word-wrap: break-word;
    }

    .order__card .order__card__title {
        font-size: 24px;
        line-height: 28.8px;
    }

    .order__card .order__card__about__container {
        gap: 24px 0px;
        max-height: 276px;
    }

    .order__card .order__card__about__container .order__card__about__content {
        gap: 8px
    }

    .order__card .order__card__about__container .order__card__about__content .order__card__about__value {
        font-size: 19px;
    }

    .order__card .get__order__button {
        height: 56px;
        font-size: 18px;
        line-height: 25.2px;
        cursor: pointer;
    }
}

@media (max-width: 1024px) {
    .order__card {
        height: fit-content;
        padding: 18px;
        gap: 16px;
        border-radius: 24px;
    }

    .order__card .order__card__title {
        font-size: 18px;
        line-height: 21.6px;
    }

    .order__card .order__card__about__container {
        gap: 16px 0px;
        max-height: 196px;
    }

    .order__card .order__card__about__container .order__card__about__content .order__card__about__value {
        font-size: 15px;
    }

    .order__card .get__order__button {
        height: 46px;
        font-size: 14px;
        line-height: 19.6px;
    }
}

.authorization__page__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.authorization__page__container .authorization__form__container {
    height: fit-content;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1025px) {
    .authorization__page__container {
        justify-content: center;
        height: 100vh;
    }

    .authorization__page__container .authorization__form__container {
        width: calc(594px - 48px);
        padding: 24px;
        gap: 32px;
        height: calc(403px - 48px);
        border-radius: 36px;
        box-shadow: 0px 0px 18.9px 0px #1A00311A;
    }
}

@media (max-width: 1024px) {
    .authorization__form__container {
        width: calc(100% - 24px * 2);
        margin-top: 25px;
    }
}

.authorization__page__container .authorization__form__container .authorization__form__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 43.2px;
    color: #222222;
}

@media (min-width: 1025px) {
    .authorization__page__container .authorization__form__container .authorization__form__title {
        font-size: 36px;
        line-height: 43.2px;
    }
}

@media (max-width: 1024px) {
    .authorization__page__container .authorization__form__container .authorization__form__title {
        font-size: 24px;
        line-height: 28.8px;
    }
}

.authorization__page__container .authorization__form__container .authorization__form .inputs__container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px 0px;
}

.authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1025px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input {
        gap: 8px 0px;
    }

    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input:nth-child(2) {
        width: calc(100% - 10px);
    }
}

@media (max-width: 1024px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container {
        margin-top: 24px;
    }

    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input {
        gap: 6px 0px;
    }

    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input:nth-child(2) {
        width: calc(100% - 4px);
    }
}

.authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input .input__name {
    font-size: 16px;
    font-weight: 510;
    line-height: 24px;
    color: #222222
}

.authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input input {
    position: relative;
    width: auto;
    border-radius: 16px;
    background: #F5F5F5;
    font-weight: 510;
    line-height: 24px;
    border: none;
    outline: none;
}

@media (min-width: 1025px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input .input__name {
        font-size: 16px;
        line-height: 24px;
    }

    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input input {
        padding: 14px 16px 14px 16px;
        height: calc(56px - 28px);
        border-radius: 16px;
        background: #F5F5F5;
        font-size: 19px;
        line-height: 24px;
    }
}

@media (max-width: 1024px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input .input__name {
        font-size: 12px;
    }

    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input:nth-child(2) input {
        width: calc(100% - 40px);
    }

    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .authorization__named__input input {
        padding: 14px;
        height: calc(48px - 14px * 2);
        background: #F5F5F5;
        font-size: 14px;
    }
}

.authorization__page__container .authorization__form__container .authorization__form .inputs__container .get__code__to__login__button {
    position: absolute;
    width: 162px;
    height: 56px;
    padding: 8px 24px 8px 24px;
    border-radius: 1000px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all .7s;
}

@media (min-width: 1025px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .get__code__to__login__button {
        bottom: 0px;
        right: 2px;
    }
}

@media (max-width: 1024px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .get__code__to__login__button {
        bottom: 0px;
        right: -1px;
    }
}


.authorization__page__container .authorization__form__container .authorization__form .authorization__named__input input::placeholder {
    color: #9299A2
}

.authorization__page__container .authorization__form__container .login__button {
    position: relative;
    width: 100%;
    height: 56px;
    cursor: pointer;
    padding: 8px 24px 8px 24px;
    border-radius: 1000px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    margin-top: 32px;
}

@media (min-width: 1025px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .get__code__to__login__button {
        width: 162px;
        padding: 8px 24px 8px 24px;
        font-size: 18px;
        line-height: 25.2px;
    }

    .authorization__page__container .authorization__form__container .login__button {
        height: 56px;
        font-size: 18px;
        line-height: 25.2px;
    }
}

@media (max-width: 1024px) {
    .authorization__page__container .authorization__form__container .authorization__form .inputs__container .get__code__to__login__button {
        width: 128px;
        height: 48px;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 24px;
    }

    .authorization__page__container .authorization__form__container .login__button {
        height: 46px;
        font-size: 14px;
        line-height: 19.6px;
    }
}

.authorization__page__container .authorization__form__container .login__button.saved,
.authorization__page__container .authorization__form__container .authorization__form .inputs__container .get__code__to__login__button.saved {
    background: rgba(237, 0, 40, 20%);
    color: #FFFFFF;
    cursor: default;
}

.authorization__page__container .authorization__form__container .login__button.success,
.authorization__page__container .authorization__form__container .authorization__form .inputs__container .get__code__to__login__button.success,
.get__order__button.success {
    background: rgba(49, 215, 37, 1);
    color: white;
    cursor: default;
}

#scan__order__popup__default__etap {
    align-items: center;
}

.named__input__container {
    display: flex;
    flex-direction: column;
}

#payment__popup__empty__address__etap .popup__heading__container .close__popup__button {
    position: absolute;
    background: none;
    border: none;
    outline: none;
}

.no__found__container {
    position: absolute;
    left: 50%;
    top: 250px;
    height: 100vh;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.no__found__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 43.2px;
    letter-spacing: -3%;
    color: #222222
}

@media (min-width: 1025px) {
    .header__get__order__button {
        width: 72px;
        height: 56px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
    }

    .get__all__orders__button {
        width: 146px;
        height: 56px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        font-size: 18px;
        font-weight: 510;
        line-height: 25.2px;
    }

    .scan__order__popup {
        min-width: 40vw;
        width: fit-content;
        height: fit-content;
        padding: 32px;
        border-radius: 40px;
    }

    .scan__order__popup .popup__etap__card {
        gap: 40px;
    }

    .scan__order__popup .default__etap {
        min-width: calc(481px - 64px) !important;
        width: calc(481px - 64px) !important
    }

    .scan__order__popup .scan__popup__title {
        letter-spacing: -1.329px;
        font-size: 36px;
        font-weight: 700;
        line-height: 43px;
        color: #222222;
    }

    .popup__ui__container:not(.row) {
        gap: 12px;
        display: flex;
        flex-direction: column;
    }

    .verify__get__order__popup {
        width: calc(456px - 48px) !important;
        height: fit-content !important;
    }

    .verify__get__order__popup .payment__popup__title {
        font-size: 28px !important;
        height: 34px;
    }

    .verify__get__order__popup .payment__popup__description {
        height: 54px;
    }

    .scan__order__popup .data__etap {
        gap: 32px !important;
        min-width: 201px;
    }

    .verify__get__order__popup .popup__ui__container {
        gap: 6px !important;
        margin-top: 24px;
    }

    .payment__popup .popup__stage:nth-child(2) .popup__ui__container {
        flex-direction: row !important;
    }

    .scan__order__popup .popup__ui__container .search__input__with__button__container button {
        position: absolute;
        right: 0;
    }

    .scan__order__popup .popup__ui__container,
    .scan__order__popup .popup__ui__container .search__input__with__button__container,
    .scan__order__popup .popup__ui__container .search__input__with__button__container input,
    .scan__order__popup .popup__ui__container .cancel__bttn {
        width: 100%;
    }

    .scan__order__popup .cancel__bttn {
        width: 100%;
        height: 56px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        font-size: 18px;
        font-weight: 510;
        line-height: 25.2px;
    }

    .search__input__with__button__container {
        position: relative;
    }

    .search__input__with__button__container input {
        padding: 14px 0px 14px 16px;
        border-radius: 14px;
        font-size: 19px;
        font-weight: 510;
        line-height: 24px;
        height: calc(56px - (14px * 2));
    }

    #payment__popup__empty__address__etap .popup__heading__container .close__popup__button {
        right: 24px;
        top: 24px;
    }

    .scan__stage .popup__heading__container {
        display: flex;
        align-items: center;
    }

    .popup__text__container {
        gap: 16px;
        display: flex;
        align-items: flex-end;
    }

    .popup__etap__card .scan__popup__order__name {
        padding: 7px 17.5px !important;
        border-radius: 16px !important;
        font-family: "Inter", serif !important;
        font-size: 25px !important;
        font-weight: 700 !important;
        line-height: 30px !important;
        height: fit-content !important;
    }

    .scanned__order__data__container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .scanned__order__data__card {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .scanned__order__data__card .scanned__order__property__name {
        font-size: 16px;
        font-weight: 400;
        line-height: 19.2px;
        color: #9299A2;
    }

    .scanned__order__data__card .scanned__order__property__value {
        font-size: 19px;
        font-weight: 510;
        line-height: 24px;
        color: #222222
    }

    .scan__order__popup .red__bttn {
        height: 56px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        font-size: 18px;
        font-weight: 400;
        line-height: 25.2px;
    }

    .named__input__container {
        width: 100%;
    }

    .named__input__container .named__input__name {
        font-size: 16px;
        font-weight: 510;
        line-height: 24px;
        color: #222222;
    }

    .named__input__container .named__input {
        height: calc(56px - (14px * 2));
        padding: 14px 16px 14px 16px;
        border-radius: 16px;
        background: #F5F5F5;
        color: #222222;
        outline: none;
        border: none;
        font-size: 19px;
        font-weight: 510;
        line-height: 24px;
    }

    #except__orders__popup__overlay .popup,
    #no__client__found__overlay .popup {
        width: 437px;
        padding: 32px;
        gap: 40px;
        border-radius: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0px 0px 18.9px 0px #1A00311A;
    }

    #no__client__found__overlay .popup {
        gap: 24px !important;
        width: fit-content !important;
    }

    #except__orders__popup__overlay .popup .popup__title,
    #no__client__found__overlay .popup .popup__title {
        font-size: 36px;
        font-weight: 700;
        line-height: 43.2px;
        color: #222222 !important;
    }

    #except__orders__popup__overlay .popup .close__popup__button,
    #no__client__found__overlay .popup .close__popup__button {
        width: 100%;
        border: none;
        height: 56px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        background: #F5F5F5;
        font-size: 18px;
        font-weight: 510;
        line-height: 25.2px;
        color: #222222
    }

    .no__found__preview,
    .no__found__preview img {
        width: 225px;
        height: 225px;
    }

    .scan__data__popup {
        min-width: fit-content;
        padding: 0px;
    }

    .scan__data__popup .default__etap {
        margin: 32px;
        min-width: fit-content;
        max-width: fit-content;
    }

    .scan__data__popup .data__etap {
        min-width: calc(594px - 48px);
        min-height: calc(413px - 48px);
        margin: 24px;
    }

    #scan__order__popup {
        min-width: fit-content;
        max-width: fit-content;
    }

    .other__block .additionally__details__form {
        gap: 20px;
    }

    .other__block .additionally__details__form .named__input__container:nth-child(1),
    .other__block .additionally__details__form .named__input__container:nth-child(2),
    .other__block .additionally__details__form .named__input__container:nth-child(3),
    .other__block .additionally__details__form .named__input__container:nth-child(4) {
        width: calc(50% - 10px)
    }

    .named__input__container {
        gap: 6px;
    }

    #delivery__orders__section .order__cards__container .order__card {
        min-height: 404px !important;
    }
}

@media (min-width: 1025px) and (max-width: 1220px) {
    .search__input__with__button__container input {
        font-size: 14px;
    }

    .get__all__orders__button {
        width: 86px;
        height: 56px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        font-size: 14px;
        font-weight: 510;
        white-space: nowrap;
        line-height: 25.2px;
    }
}

@media (max-width: 1025px) {
    #delivery__orders__section {
        padding-top: 9px;
    }

    .client__personal__get__orders__container {
        gap: 8px;
        justify-content: space-between;
        width: 100%;
        margin-top: 8px;
    }

    .client__personal__get__orders__container button {
        width: 100%;
    }

    .header__get__order__button {
        height: 46px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        background: rgba(237, 0, 40, 0.2);
        max-width: 118px;
    }

    .header__get__order__button svg path {
        fill: #ED0028;
    }

    .get__all__orders__button {
        height: 46px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        font-size: 14px;
        font-weight: 510;
        line-height: 19.6px;
    }

    .scan__order__popup {
        width: 100%;
        margin-right: 31px;
        margin-left: 31px;
        padding: 24px 18px 18px 18px;
        border-radius: 24px;
    }

    #scan__order__popup__data__etap .close__popup__button {
        position: absolute;
        right: 0px;
        top: -7px;
        border: none;
        outline: none;
        background: none;
    }

    .scan__order__popup .popup__etap__card {
        gap: 24px;
    }

    .scan__order__popup .scan__popup__title {
        font-size: 19px;
        font-weight: 700;
        line-height: 23px;
        color: #222222;
        font-family: "Inter", serif !important;
    }

    .popup__ui__container {
        gap: 8px;
        display: flex;
        flex-direction: column;
    }

    .scan__order__popup .popup__ui__container,
    .scan__order__popup .popup__ui__container .search__input__with__button__container,
    .scan__order__popup .popup__ui__container .search__input__with__button__container input,
    .scan__order__popup .popup__ui__container .cancel__bttn {
        width: 100%;
    }

    .scan__order__popup .cancel__bttn {
        width: 100%;
        height: 46px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        font-size: 14px;
        font-weight: 510;
        line-height: 19.6px;
    }

    .search__input__with__button__container input {
        padding: 14px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 510;
        line-height: 24px;
    }

    .scan__stage .popup__heading__container {
        display: flex;
        align-items: center;
    }

    .popup__text__container {
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .popup__etap__card .scan__popup__order__name {
        padding: 2.5px 8.5px !important;
        border-radius: 8px !important;
        font-family: "Inter", serif !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 19.2px !important;
        height: fit-content !important;
    }

    .scanned__order__data__container {
        display: flex;
        flex-direction: column;
        max-height: 226px;
        gap: 16px;
    }

    .scanned__order__data__card {
        display: flex;
        flex-direction: column;
    }

    .scanned__order__data__card .scanned__order__property__name {
        font-size: 11px;
        font-weight: 400;
        line-height: 13.2px;
        color: #9299A2;
    }

    .scanned__order__data__card .scanned__order__property__value {
        font-size: 15px;
        font-weight: 510;
        line-height: 24px;
        color: #222222
    }

    .scan__order__popup .red__bttn {
        height: 46px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        font-size: 14px;
        font-weight: 400;
        line-height: 19.6px;
    }

    #except__orders__popup__overlay .popup,
    #no__client__found__overlay .popup {
        width: 100%;
        margin-right: 31px;
        margin-left: 31px;
        padding: 24px 18px 18px 18px;
        gap: 24px;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0px 0px 13px 0px #1A00311A;
    }

    #except__orders__popup__overlay .popup .popup__title,
    #no__client__found__overlay .popup .popup__title {
        font-family: "Inter", serif !important;
        font-size: 19px;
        font-weight: 700;
        line-height: 22.8px;
        color: #222222 !important;
    }

    #except__orders__popup__overlay .popup .close__popup__button,
    #no__client__found__overlay .popup .close__popup__button {
        width: 100%;
        border: none;
        height: 46px;
        padding: 8px 24px 8px 24px;
        border-radius: 1000px;
        background: #F5F5F5;
        font-size: 14px;
        font-weight: 510;
        line-height: 19.6px;
        color: #222222
    }

    #payment__popup__empty__address__etap .popup__heading__container .close__popup__button {
        right: 18px;
        top: 18px;
    }

    .named__input__container {
        width: 100%;
    }

    .popup .named__input__name {
        display: none;
    }

    .named__input__container .named__input {
        height: calc(48px - (14px * 2));
        padding: 14px;
        border-radius: 14px;
        background: #F5F5F5;
        color: #222222;
        outline: none;
        border: none;
        font-size: 14px;
        font-weight: 510;
        line-height: 24px;
    }

    .no__found__preview,
    .no__found__preview img {
        width: 171px;
        height: 171px;
    }

    .no__found__title {
        font-size: 24px;
        font-weight: 700;
        line-height: 28.8px;
        color: #222222 !important;
    }

    .scan__data__popup .default__etap {
        min-height: calc(317px - (24px + 18px));
    }

    .client__address__popup {
        min-height: calc(233px - (24px + 18px)) !important;
    }

    .client__personal__fullname__value {
        display: block !important;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 176px;
        white-space: nowrap;
    }

    .verify__get__order__popup .row {
        margin-top: 24px !important;
    }

    .verify__get__order__popup {
        width: calc(342px - calc(24px + 12px)) !important;
        height: calc(183px - 42px) !important;
    }

    #delivery__orders__section .order__cards__container {
        flex-direction: column;
        margin-top: 12px !important;
        gap: 12px;
    }

    #delivery__orders__section .order__cards__container .order__card {
        min-height: fit-content !important;
        height: fit-content !important;
        width: auto !important;
        max-height: 294px !important;
    }

    #delivery__orders__section .order__cards__container .order__card .get__delivery__address__button,
    #delivery__orders__section .order__card .change__order__button {
        height: 46px !important;
        border-radius: 1000px;
        font-weight: 400;
        font-size: 14px !important;
        line-height: 140%;
        margin-top: auto;
        color: white;
    }


    .filter__block:not(.active) {
        display: none !important;
    }

    .order__card__select__checkbox {
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        width: 32px;
        height: 32px;
        border-radius: 10px;
        border: 2px solid #E0E0E0;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: white;
    }

    .order__card__select__checkbox:checked {
        border: 2px solid #1976d2;
        background-color: #1976d2;
        background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 18px 18px;
        border-radius: 10px;
    }

    .delivery__orders__heading__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .select__order__buttons__ui {
        gap: 8px;
        display: flex;
    }

    .select__order__buttons__ui:not(.active) {
        display: none !important;
    }

    .select__order__buttons__ui:not(.get__orders__ui) button {
        height: 36px !important;
        width: 36px;
        font-weight: 510;
        font-size: 14px;
        color: white;
    }

    .get__orders__ui button {
        font-size: 14px !important;
        height: 36px !important;
        width: fit-content !important;
        padding: 0px 10px !important;
    }

    .select__order__buttons__ui button svg {
        width: 16px;
        height: 16px;
    }

    .get__selected__orders__button {
        width: 121px;
        border-radius: 1000px;
    }

    .cancel__select__orders__button {
        border-radius: 14px;
        width: 56px;
        outline: none;
        border: none;
        background: #F5F5F5;
    }

    #delivery__orders__section .order__card .order__card__about__content:not(:first-child) .order__card__about__value {
        color: black !important;
    }

    .scan_popup__order__first__inputs__container {
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-grow: 1;
    }

    .scanned__order__named__input__container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex-grow: 1;
    }

    .scanned__order__named__input__container input {
        width: auto !important;
    }

    .scan_popup__order__first__inputs__container .scanned__order__named__input__container:nth-child(1),
    .scan_popup__order__first__inputs__container .scanned__order__named__input__container:nth-child(2) {
        width: calc(50% - 4px);
    }

    .scanned__order__name__input {
        font-weight: 510;
        font-size: 12px !important;
        line-height: 120% !important;
        color: #222222;
    }

    .scanned__order__named__input {
        height: 48px !important;
        border-radius: 14px !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
        background: #F5F5F5;
        font-weight: 510;
        font-size: 14px !important;
        line-height: 24px;
        color: #222222;
        outline: none;
        border: none;
    }

    .scanned__order__data__container {
        gap: 8px !important;
    }

    .scan__order__popup:not(.scan__data__popup, #scan__order__popup) {
        min-width: calc(437px - 64px) !important;
        max-width: calc(594px - 64px) !important;
    }

    .saved__etap {
        display: flex;
        flex-direction: column;
        /*align-items: center;*/
        width: 437px !important;
        max-width: 437px !important;
        min-width: 437px !important;
        gap: 40px !important;
    }

    .saved__etap .popup__title {
        font-weight: 700;
        font-size: 19px !important;
        line-height: 120%;
        color: #222222;
    }

    .saved__etap button {
        outline: none;
        border: none;
        height: 46px !important;
        border-radius: 1000px;
        font-weight: 510;
        font-size: 14px !important;
        line-height: 140%;
        color: #222222;
    }

    .popup__orders__container {
        font-weight: 510;
        font-size: 19px;
        line-height: 24px;
        color: #222222;
        margin-bottom: 4px;
    }

    .orders__value,
    .popup__orders__value {
        color: #ED0028;
    }

    .get__navbar__button {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: #F5F5F5;
        cursor: pointer;
        outline: none;
        border: none;
    }

    .delivery__tracker__popup {
        border-radius: 32px;
        padding: 0px !important;
        max-height: calc(100vh - 59.5px) !important;
        margin: -33.5px 24px 0px 24px !important;
        overflow: hidden;
        margin-right: 32px;
        max-width: fit-content !important;
        height: 100%;
        gap: 32px;
        display: flex;
        flex-direction: column;
    }

    .delivery__tracker__popup .wrapper {
        overflow: hidden auto !important;
        gap: 16px !important;
        margin: 24px;
        display: flex;
        flex-direction: column;
    }

    .delivery__tracker__popup .popup__title {
        font-weight: 700;
        font-size: 20px !important;
        line-height: 120%;
        color: #222222;
    }

    .package__travel__information__container {
        width: 525px;
        display: flex;
        flex-direction: column;
        gap: 40px
    }

    .package__travel__block {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .package__travel__block__heading__container {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .package__travel__block__heading__container svg {
        width: 20px !important;
        height: 20px !important;
    }

    .package__travel__block__title {
        font-weight: 590;
        font-size: 16px;
        margin-top: 3px !important;
        color: #222222;
    }

    .package__travel__block__text__container {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .package__travel__etap {
        font-weight: 510;
        font-size: 14px !important;
        line-height: 24px;
        display: flex;
        align-items: center;
        color: #222222;
        position: relative;
    }

    .package__travel__etap::before {
        content: '';
        display: inline-block;
        margin-right: 12px;
    }

    .package__travel__etap.line__etap::before {
        width: 3px !important;
        height: 20px !important;
        background: #9299A2;
        opacity: .4;
        border-radius: 1000px;
        margin-left: 28px;
    }

    .package__travel__etap.circle__etap::before {
        width: 8px !important;
        height: 8px !important;
        border-radius: 1000px;
        background: #D3D6DA;
        margin-left: 24px;
    }

    .package__travel__etap.is__marked::before {
        background: #ED0028;
    }

    .is__marked {
        color: #ED0028;
    }

    .to__editable__form__button {
        height: 46px !important;
        font-weight: 400;
        font-size: 14px;
        border-radius: 1000px;
        line-height: 140%;
        margin-right: 0px !important;
    }

    .about__package__popup .popup__stage:not(.active) {
        display: none !important;
    }

    .passport__details__form,
    .address__details__form,
    .additionally__details__form {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 8px;
    }

    .edit__order__popup__blocks__container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin: 24px !important;
        width: fit-content !important;
    }

    .edit__order__stage {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .edit__order__popup .named__input__container {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .passport__details__form .named__input__container:not(:nth-child(3)),
    .address__details__form .named__input__container:nth-child(2),
    .address__details__form .named__input__container:nth-child(3),
    .additionally__details__form .named__input__container:nth-child(1),
    .additionally__details__form .named__input__container:nth-child(2),
    .additionally__details__form .named__input__container:nth-child(3),
    .additionally__details__form .named__input__container:nth-child(4) {
        width: calc(50% - 4px);
    }

    .additionally__details__form .named__input__container:last-child,
    .additionally__details__form .named__input__container:last-child textarea {
        min-height: calc(152px - 16px);
        width: calc(100% - 14px);
        min-width: calc(100% - 14px);
        max-width: calc(100% - 14px);
    }


    .edit__order__popup .named__input__container input,
    .edit__order__popup .named__input__container textarea {
        outline: none;
        border: none;
        height: 48px !important;
        border-radius: 14px;
        padding: 0px 14px;
        background: #F5F5F5;
        font-weight: 510;
        font-size: 14px !important;
        line-height: 24px;
        color: black;
        flex-grow: 1;
    }

    .edit__order__popup .named__input__container textarea {
        padding-top: 16px;
        max-width: calc(100% - 14px);
        flex-grow: 1;
    }

    .edit__order__popup {
        max-height: calc(100vh - 59.5px) !important;
        padding: 0px;
        border-radius: 32px;
        margin: -33.5px 24px 0px 24px;
        overflow: hidden;
    }

    .edit__order__popup .default__etap {
        overflow-y: auto;
        overflow-x: hidden;
        width: 100%;
        max-height: 92vh !important;
        padding-right: 10px;
    }

    .edit__order__popup .save__order__data__button {
        margin-left: 24px !important;
        margin-right: 24px !important;
        margin-bottom: 32px !important;
    }

    .edit__order__stage__block {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .save__order__data__button {
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        height: 56px;
        padding: 16px 0px;
        border-radius: 1000px;
        margin-top: 24px;
    }

    .tracks__page__container {
        align-items: center;
        margin-top: 134px !important;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .tracks__page__container .page__text__container {
        gap: 2px !important;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .tracks__page__container .page__title {
        font-weight: 700;
        font-size: 22px !important;
        letter-spacing: normal;
        line-height: 120%;
        color: #222222;
    }

    .tracks__page__container .page__description {
        font-weight: 400;
        font-size: 12px !important;
        line-height: 120% !important;
        color: #9299A2;
        width: 241px;
        text-align: center;
    }

    .tracks__page__container .search__input__container {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-top: 32px !important;
    }

    .tracks__page__container .search__input__container.searched {
        width: calc(100% - 47px);
    }

    .tracks__page__container .search__input__container .search__input {
        width: fit-content !important;
        flex-grow: 1;
        height: 48px !important;
        border-radius: 14px !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
        outline: none;
        border: none;
        background: #F5F5F5;
        font-weight: 510;
        font-size: 14px !important;
        line-height: 24px;
        color: #222222;
    }

    .tracks__page__container .search__input__container .search__input::placeholder {
        color: #9299A2;
    }

    .tracks__page__container .search__input__container .search__button {
        width: 48px !important;
        height: 48px !important;
        border-radius: 14px !important;
        outline: none;
        border: none;
        background: #ED0028;
    }

    .tracks__page__container .search__input__container .search__button svg {
        width: 20px !important;
        height: 20px !important;
    }

    .tracks__page__container .no__tracks__found__container,
    .delivery__page__container .no__tracks__found__container {
        margin-top: 56px !important;
        display: flex;
        flex-direction: column;
        width: fit-content;
        gap: 8px;
    }

    .tracks__page__container .no__tracks__found__container:not(.active),
    .delivery__page__container .no__tracks__found__container:not(.active),
    .tracks__page__container .order__cards__container:not(.active) {
        display: none;
    }

    .delivery__page__container .tracks__page__container {
        margin-top: 0px;
    }

    .tracks__page__container .no__tracks__found__preview {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: column;
    }

    .tracks__page__container .no__tracks__found__preview img {
        width: 116px !important;
        height: 116px !important;
    }

    .tracks__page__container .no__tracks__found__title {
        font-weight: 510;
        font-size: 18px !important;
        letter-spacing: normal !important;
        white-space: nowrap;
        height: 22px !important;
        color: #222222;
        opacity: .3;
    }

    .tracks__page__container .order__cards__container {
        margin-top: 24px !important;
        display: flex;
        width: calc(100% - 47px);
        flex-direction: column;
        gap: 8px !important;
    }

    .tracks__page__container .order__card {
        width: auto !important;
        height: fit-content;
        min-height: calc(113px - 32px) !important;
        padding: 16px !important;
        border-radius: 20px;
        background: #FFFFFF;
        box-shadow: 0px 0px 18.9px 0px #1A00311A;
        gap: 8px !important;
    }

    .tracks__page__container .order__card__status__container {
        display: flex;
        align-items: center;
        gap: 4px !important;
    }

    .tracks__page__container .status__value {
        position: relative;
        font-weight: 510;
        font-size: 12px !important;
        line-height: 120% !important;
        color: #9299A2;
    }

    .tracks__page__container .status__value.red__status::before {
        content: '';
        display: inline-block;
        width: 8px !important;
        height: 8px !important;
        background: #ED0028;
        border-radius: 1000px;
    }

    .tracks__page__container .track__number__value {
        font-weight: 590;
        font-size: 16px !important;
        line-height: 120% !important;
        color: #222222;
    }

    .tracks__page__container .order__description__container {
        display: flex;
        flex-direction: column;
    }

    .tracks__page__container .order__description {
        font-weight: 510;
        font-size: 12px !important;
        line-height: 120% !important;
        color: #9299A2;
    }

    .track__number__page__heading {
        position: absolute;
        right: 96px;
        top: 44px;
    }

    .navbar__popup__overlay {
        background: none;
    }

    .navbar__popup {
        position: fixed;
        width: fit-content !important;
        right: 16px !important;
        top: 60px !important;
        padding: 20px;
        border-radius: 24px;
        gap: 24px;
        background: #FFFFFF;
        box-shadow: 0px 0px 18.9px 0px #1A00311A;
        display: flex;
        flex-direction: column;
    }

    .navbar__popup a {
        font-weight: 510;
        font-size: 16px;
        line-height: 24px;
        color: #333333;
        text-decoration: none;
    }

    .navbar__popup a:not(.active) {
        opacity: .5;
    }

    .delivery__scan__order__popup {
        max-width: fit-content !important;

        padding: 0px !important;
    }

    .delivery__scan__order__popup .default__etap {
        min-width: fit-content;
        gap: 40px;
        padding: 32px;
        max-height: calc(517px - 64px);
        height: calc(517px - 64px);
    }

    .delivery__scan__order__popup .scan__stage {
        margin: 24px 18px 18px 18px !important;
        min-width: fit-content !important;
        max-width: fit-content !important;

    }

    .delivery__scan__order__popup .popup__heading__container {
        position: relative;
        justify-content: space-between;
    }

    .delivery__scan__order__popup .cancel__bttn {
        height: 46px !important;
        font-size: 14px !important;
    }

    .delivery__scan__order__popup .scan__stage {
        gap: 20px !important;
    }

    .delivery__scan__order__popup .close__popup__button {
        width: 26px;
        height: 26px;
        border-radius: 1000px;
        background: none;
        outline: none;
        border: none;
    }

    .delivery__scan__order__popup .close__popup__button svg {
        width: 26px !important;
        height: 26px !important;
    }

    .delivery__scan__order__popup .saved__etap {
        margin: 24px 18px 18px 18px !important;
        gap: 24px !important;
        align-items: center;
        min-width: calc(328px - 36px) !important;
        max-width: calc(328px - 36px) !important;
    }

    .delivery__scan__order__popup .saved__etap .cancel__bttn {
        height: 56px;
        background: #F5F5F5;
        border-radius: 1000px;
        font-weight: 510;
        width: 100%;
        font-size: 18px;
    }
}

#delivery__orders__section .order__cards__container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 24px;
}

#delivery__orders__section .order__cards__container .order__card {
    width: calc(100% / 3 - (12px * 4.666));
    position: relative;
    max-height: fit-content;
}

#delivery__orders__section .order__cards__container .order__card .get__delivery__address__button,
#delivery__orders__section .order__card .change__order__button {
    border-radius: 1000px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    margin-top: auto;
    color: white;
}

@media (min-width:1025px) {

    #delivery__orders__section .order__cards__container .order__card .get__delivery__address__button,
    #delivery__orders__section .order__card .change__order__button {
        height: 56px !important;
    }
}

@media (max-width:1024px) {

    #delivery__orders__section .order__cards__container .order__card .get__delivery__address__button,
    #delivery__orders__section .order__card .change__order__button {
        height: 46px !important;
    }
}


.filter__block:not(.active) {
    display: none !important;
}

.order__card__select__checkbox {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 2px solid #E0E0E0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
}

@media (max-width:1024px) {
    .order__card__select__checkbox {
        width: 28px;
        height: 28px;
    }
}

.order__card__select__checkbox:checked {
    border: 2px solid #1976d2;
    background-color: #1976d2;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    border-radius: 10px;
}

.delivery__orders__heading__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select__order__buttons__ui {
    gap: 8px;
    display: flex;
}

.select__order__buttons__ui:not(.active) {
    display: none !important;
}

.select__order__buttons__ui button {
    height: 56px;
    font-weight: 510;
    font-size: 18px;
    color: white;
}

.get__selected__orders__button {
    width: 121px;
    border-radius: 1000px;
}

.cancel__select__orders__button {
    border-radius: 14px;
    width: 56px;
    outline: none;
    border: none;
    background: #F5F5F5;
}

#delivery__orders__section .order__card .order__card__about__content:not(:first-child) .order__card__about__value {
    color: black !important;
}

.scan_popup__order__first__inputs__container {
    gap: 8px;
    display: flex;
    align-items: center;
}

.scan_popup__order__first__inputs__container input {
    width: calc(100% - 32px);
}

.scanned__order__named__input__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scanned__order__name__input {
    font-weight: 510;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
}

.scanned__order__named__input {
    height: 56px;
    border-radius: 16px;
    padding-right: 16px;
    padding-left: 16px;
    background: #F5F5F5;
    font-weight: 510;
    font-size: 19px;
    line-height: 24px;
    color: #222222;
    outline: none;
    border: none;
}

.scanned__order__data__container {
    gap: 16px;
}

.scan__order__popup:not(.scan__data__popup, #scan__order__popup) {
    min-width: calc(437px - 64px) !important;
    max-width: calc(594px - 64px) !important;
}

.saved__etap {
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    width: 437px !important;
    max-width: 437px !important;
    min-width: 437px !important;
    gap: 40px !important;
}

.saved__etap .popup__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #222222;
}

.saved__etap button {
    outline: none;
    border: none;
    height: 56px;
    border-radius: 1000px;
    font-weight: 510;
    font-size: 18px;
    line-height: 140%;
    color: #222222;
}

.popup__orders__container {
    font-weight: 510;
    font-size: 19px;
    line-height: 24px;
    color: #222222;
    margin-bottom: 4px;
}

.orders__value,
.popup__orders__value {
    color: #ED0028;
}

.get__navbar__button {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #F5F5F5;
    cursor: pointer;
    outline: none;
    border: none;
}

.delivery__tracker__popup {
    border-radius: 32px;
    padding: 32px;
    max-height: 80vh;
    overflow: hidden;
    margin-right: 32px;
    max-width: 70vw;
    height: 100%;
    padding-right: 5px;
    gap: 32px;
    display: flex;
    flex-direction: column;
}

.delivery__tracker__popup .wrapper {
    overflow: auto;
    gap: 32px;
    display: flex;
    flex-direction: column;
}

.delivery__tracker__popup .popup__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: #222222;
}

.package__travel__information__container {
    width: 525px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.package__travel__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package__travel__block__heading__container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package__travel__block__title {
    font-weight: 590;
    font-size: 19px;
    margin-top: 2px;
    color: #222222;
}

.package__travel__block__text__container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package__travel__etap {
    font-weight: 510;
    font-size: 17px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #222222;
    position: relative;
}

.package__travel__etap::before {
    content: '';
    display: inline-block;
    margin-right: 12px;
}

.package__travel__etap.line__etap::before {
    width: 4px;
    height: 32px;
    background: #9299A2;
    opacity: .4;
    border-radius: 1000px;
    margin-left: 28px;
}

.package__travel__etap.circle__etap::before {
    width: 12px;
    height: 12px;
    border-radius: 1000px;
    background: #D3D6DA;
    margin-left: 24px;
}

.package__travel__etap.is__marked::before {
    background: #ED0028;
}

.is__marked {
    color: #ED0028;
}

.to__editable__form__button {
    height: 56px;
    font-weight: 400;
    font-size: 18px;
    padding: 16px 0px;
    border-radius: 1000px;
    line-height: 140%;
    margin-right: 24px;
}

.about__package__popup .popup__stage:not(.active) {
    display: none !important;
}

.passport__details__form,
.address__details__form,
.additionally__details__form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
}

.edit__order__popup__blocks__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 32px;
    width: 968px;
}

.edit__order__stage {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.edit__order__stage .named__input__container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.passport__details__form .named__input__container:not(:nth-child(3)),
.address__details__form .named__input__container:nth-child(2),
.address__details__form .named__input__container:nth-child(3),
.additionally__details__form .named__input__container:nth-child(1),
.additionally__details__form .named__input__container:nth-child(2),
.additionally__details__form .named__input__container:nth-child(3),
.additionally__details__form .named__input__container:nth-child(4) {
    width: calc(50% - 4px);
}

.additionally__details__form .named__input__container:last-child,
.additionally__details__form .named__input__container:last-child textarea {
    min-height: calc(152px - 16px);
    width: calc(100% - 14px);
    min-width: calc(100% - 14px);
    max-width: calc(100% - 14px);
}


.edit__order__popup .named__input__container input,
.edit__order__popup .named__input__container textarea {
    outline: none;
    border: none;
    height: 56px;
    border-radius: 14px;
    padding: 0px 14px;
    background: #F5F5F5;
    font-weight: 510;
    font-size: 19px;
    line-height: 24px;
    color: black;
}

.edit__order__popup .named__input__container textarea {
    padding-top: 16px;
    max-width: calc(100% - 14px);
}

.edit__order__popup {
    width: 1032px;
    max-height: 70vh;
    padding: 0px;
    border-radius: 32px;
    overflow: hidden;
}

.edit__order__popup .default__etap {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    max-height: 70vh;
    padding-right: 10px;
}

.edit__order__popup .save__order__data__button {
    margin-left: 32px;
    margin-right: 17px;
    margin-bottom: 32px;
}

.edit__order__stage__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.save__order__data__button {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    height: 56px;
    padding: 16px 0px;
    border-radius: 1000px;
    margin-top: 24px;
}

.tracks__page__container {
    align-items: center;
    margin-top: 237px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.tracks__page__container .page__text__container {
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.tracks__page__container .page__title {
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -1.065px;
    line-height: 120%;
    color: #222222;
}

.tracks__page__container .page__description {
    font-weight: 400;
    font-size: 19px;
    line-height: 24px;
    color: #9299A2;
}

.tracks__page__container .search__input__container {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 56px;
}

.tracks__page__container .search__input__container .search__input {
    width: calc(488px - 48px);
    height: 72px;
    border-radius: 20px;
    padding-right: 24px;
    padding-left: 24px;
    outline: none;
    border: none;
    background: #F5F5F5;
    font-weight: 510;
    font-size: 19px;
    line-height: 24px;
    color: #222222;
}

.tracks__page__container .search__input__container .search__input::placeholder {
    color: #9299A2;
}

.tracks__page__container .search__input__container .search__button {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    outline: none;
    border: none;
    background: #ED0028;
}

.tracks__page__container .no__tracks__found__container,
.delivery__page__container .no__tracks__found__container {
    margin-top: 96px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 8px;
}

.tracks__page__container .no__tracks__found__container:not(.active),
.delivery__page__container .no__tracks__found__container:not(.active),
.tracks__page__container .order__cards__container:not(.active) {
    display: none;
}

.delivery__page__container .tracks__page__container {
    margin-top: 0px;
}

.tracks__page__container .no__tracks__found__preview {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
}

.tracks__page__container .no__tracks__found__preview img {
    width: 186px;
    height: 186px;
}

.tracks__page__container .no__tracks__found__title {
    font-weight: 510;
    font-size: 32px;
    letter-spacing: -.992px;
    white-space: nowrap;
    height: 38px;
    color: #222222;
    opacity: .3;
}

.tracks__page__container .order__cards__container {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tracks__page__container .order__card {
    width: calc(688px - 40px);
    height: fit-content;
    min-height: calc(160px - 40px);
    padding: 20px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 18.9px 0px #1A00311A;
    gap: 12px;
}

.tracks__page__container .order__card__status__container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tracks__page__container .status__value {
    position: relative;
    font-weight: 510;
    font-size: 16px;
    line-height: 24px;
    color: #9299A2;
}

.tracks__page__container .status__value.red__status::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ED0028;
    border-radius: 1000px;
}

.tracks__page__container .track__number__value {
    font-weight: 590;
    font-size: 19px;
    line-height: 24px;
    color: #222222;
}

.tracks__page__container .order__description__container {
    display: flex;
    flex-direction: column;
}

.tracks__page__container .order__description {
    font-weight: 510;
    font-size: 16px;
    line-height: 24px;
    color: #9299A2;
}

.track__number__page__heading {
    position: absolute;
    right: 96px;
    top: 44px;
}

.navbar__popup__overlay {
    background: none;
}

.navbar__popup {
    position: fixed;
    width: calc(248px - 40px);
    right: 96px;
    top: 44px;
    padding: 20px;
    border-radius: 24px;
    gap: 24px;
    background: #FFFFFF;
    box-shadow: 0px 0px 18.9px 0px #1A00311A;
    display: flex;
    flex-direction: column;
}

.navbar__popup a {
    font-weight: 510;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    text-decoration: none;
}

.navbar__popup a:not(.active) {
    opacity: .5;
}

.delivery__scan__order__popup {
    max-width: fit-content !important;

    padding: 0px !important;
}

.delivery__scan__order__popup .default__etap {
    min-width: fit-content;
    gap: 40px;
    padding: 32px;
    max-height: calc(517px - 64px);
    height: calc(517px - 64px);
}

.delivery__scan__order__popup .scan__stage {
    margin: 24px;
    min-width: 546px;
    max-width: 546px;

}

.delivery__scan__order__popup .popup__heading__container {
    position: relative;
    justify-content: space-between;
}

.delivery__scan__order__popup .cancel__bttn {
    height: 56px !important;
}

.delivery__scan__order__popup .scan__stage {
    gap: 32px;
}

.delivery__scan__order__popup .close__popup__button {
    width: 36px;
    height: 36px;
    border-radius: 1000px;
    background: none;
    outline: none;
    border: none;
}

.delivery__scan__order__popup .close__popup__button svg {
    width: 36px;
    height: 36px;
}

.delivery__scan__order__popup .saved__etap {
    margin: 32px;
}

@media (min-width:1025px) {
    .delivery__scan__order__popup .saved__etap {
        max-width: 373px !important;
        min-width: 373px !important;
    }
}

.delivery__scan__order__popup .saved__etap .cancel__bttn {
    height: 56px;
    background: #F5F5F5;
    border-radius: 1000px;
    font-weight: 510;
    width: 100%;
    font-size: 18px;
}

.hidden {
    display: none !important;
}