.header_mobile__catalog-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 75px;
    background-color: #ededed;
    padding-left: 3%;
    padding-right: 3%;
}

.header_mobile__catalog-window-outer-circle {
    position: relative;
    min-height: 34px;
    min-width: 34px;
    border-radius: 100%;
    background-color: var(--primary-color);
    /* border: 1px solid white; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_mobile__catalog-window-header-catalog-wrapper {
    display: flex;
    align-items: center;
}

.header_mobile__catalog-section {
    margin-bottom: -1px;
    margin-top: -1px;
    padding-top: 27px;
    /* height: calc(100% - 154px); */
    height: calc(100% - 75px);
    width: 100%;
    overflow-y: auto;
    background-color: white;
}


.header_mobile__links-section {
    margin-bottom: -1px;
    margin-top: -1px;
    padding-top: 27px;
    /* height: calc(100% - 154px); */
    height: calc(100% - 75px);
    width: 100%;
    overflow-y: auto;
    background-color: white;
}

.header_mobile__category-tab-wrapper {
    /* background-color: black; */
    padding: 15px 0 15px 0;
    border-bottom: 1px solid rgba(30, 43, 101, 0.25);
}

.header_mobile__inner-category {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 3%;
    padding-right: 3%;
}

.header_mobile__parent-category-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: black; */
    padding-left: 3%;
    padding-right: 3%;
    transition: all 0.17s ease-in;

    &.active {
        padding-bottom: 25px;
    }

    &.active .header_mobile__parent-category-arrow {
        transform: rotate(315deg);
    }
}

.header_mobile__category-text {
    color: var(--primary-color);
    word-break: break-word;
    font-size: 18px;
    font-weight: 700;
}

.header_mobile__parent-category-arrow-wrapper {
    padding-right: 2px;
}

.header_mobile__parent-category-arrow {
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    width: 11px;
    height: 11px;
    transform: rotate(135deg);
    transition: all 0.17s ease-in;
}

.header_mobile__child-category {
    height: 0;
    overflow-y: hidden;
    transition: all 0.17s ease-in;
    padding: 0 3% 0 3%;

    &.active {
        transition: all 0.17s ease-in;
        /* height: unset; */
    }
}

.header_mobile__child-content-wrapper {
    display: flex;
    padding: 0px 15px 10px 15px;
}

.header_mobile__child-content {
    width: 100%;
    height: 87px;
    background-color: rgba(30, 43, 101, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;

    padding: 15px 20px 15px 20px;
}

.header_mobile__child-image {
    margin: auto;
    width: 57px;
    height: 57px;
    overflow: hidden;
}

.header_mobile__child-image img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(21%) saturate(2666%) hue-rotate(197deg) brightness(92%) contrast(99%);
}

.header_mobile__child-info {
    width: 85%;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--primary-color);
    position: relative;
}

.header_mobile__child-arrow-wrapper {
    width: 100%;
}

.header_mobile__child-arrow {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 0;
    right: 0;
}




.header_mobile__child-name-wrapper {
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
}

.header_mobile__child-name {
    margin-right: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header_mobile__child-quantity-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: start;
    gap: 6px;
    padding-top: 7px;
    /* padding-top: 7px; */
}

.header_mobile__child-quantity {
    width: 29px;
    height: 14px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 8.5px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_mobile__child-quantity-text {
    color: white;
    font-size: 11px;
    font-weight: 500;
}

.header_mobile__child-models-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_mobile__child-models {
    font-size: 11px;
    font-weight: 300;
}

.header_mobile__inner-category-box {
    padding-top: 27px;
    height: calc(100% - 75px);
    top: 75px;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 300;
    /* overflow-y: scroll; */
    background-color: white;

    transform: translateX(-100%) translateY(0);
    transition: all 0.17s ease-in;

    &.active {
        visibility: visible;
        transform: translateX(0) translateY(0);
    }
}

.header_mobile__inner-child-category {
    max-height: calc(100% - 57px);
    height: 100%;
    overflow-y: auto;
    padding: 20px 3% 0 3%;
}

.header_mobile__inner-category-tab {
    /* padding-left: 3%;
    padding-right: 3%; */
    display: flex;
    justify-content: start;
    align-items: baseline;
}

.header_mobile__inner-child-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--primary-color);
    position: relative;
}

.header_mobile__category-back-button {
    max-width: 16px;
    max-height: 13px;

    min-width: 16px;
    min-height: 13px;
    margin-right: 10px;

    &>img {
        pointer-events: none;
    }
}

.header_mobile__buttons-section {
    width: 100%;
    height: 79px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-top: 1px solid rgba(30, 43, 101, 0.25);
    background-color: white;
    padding-left: 3%;
    padding-right: 3%;
}

.header_mobile__select-button,
.header_mobile__cancel-button {
    width: 220px;
    height: 48px;
    border-radius: 24px;

    /* background-color: #ededed; */
    background-color: var(--primary-color);

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.12s ease-in;
    /* text-decoration: underline;
    text-underline-offset: 3px; */

    /* &:hover {
        background-color: var(--primary-color);
    }

    &:hover .header_mobile__cancel-button-text {
        color: white;

    }

    &:hover .header_mobile__select-button-text {
        color: white;
    } */

    & .header_mobile__select-button-text {
        color: white;
    }

}

.header_mobile__background .header_mobile__catalog-burger-wrapper .ital_header_mobile_catalog_link {
    color: inherit;
    text-decoration: inherit;
}

.header_mobile__catalog-button-text {
    padding-left: 11px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

@media(max-width: 929px) {
    body .header__main-wrapper {
        display: none;
    }

    .header_mobile__catalog-window {
        display: block;
        width: 100%;
        height: 100%;
        /* background-color: black; */
        position: fixed;
        visibility: hidden;
        top: 0;
        z-index: 300;
        transform: translateX(-100%) translateY(0);
        transition: all 0.17s ease-in;
        visibility: hidden;

        &.active {
            visibility: visible;
            transform: translateX(0) translateY(0);
        }
    }

    .header_mobile__catalog-links-window {
        display: block;
        width: 100%;
        height: 100%;
        /* background-color: black; */
        position: fixed;
        visibility: hidden;
        top: 0;
        z-index: 300;
        transform: translateX(100%) translateY(0);
        transition: all 0.17s ease-in;
        visibility: hidden;

        &.active {
            visibility: visible;
            transform: translateX(0) translateY(0);
        }


        & .header_mobile__lang-switch {
            color: var(--primary-color);
            font-size: 16px;
        }


        & .header_mobile__all-links {
            color: var(--primary-color);
            font-size: 18px;
            font-weight: 600;


            & .header_mobile__link {
                display: flex;
                flex-direction: column;
                border-bottom: 1px solid rgba(30, 43, 101, 0.25);
                padding: 15px;

                & a {
                    width: 100%;
                    word-break: break-word;
                }
            }
        }
    }

    body .header_mobile__main-wrapper {
        width: 100%;
        height: 75px;
    }

    .header_mobile__background {
        display: flex;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        align-items: center;
        justify-content: space-between;
        padding-left: 3.2%;
        padding-right: 3.2%;
    }

    .header_mobile__catalog-burger-wrapper {
        width: 43%;
        /* width: auto; */
        gap: 1%;
        display: flex;
        justify-content: space-between;

    }

    .header_mobile__outer-circle {
        /* background-color: white; */
        min-height: 40px;
        min-width: 40px;
        border-radius: 100%;
        border: 1px solid white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header_mobile__inner-lines {
        border-top: 2px solid white;
        border-bottom: 2px solid white;
        width: 21px;
        height: 8px;
    }
}



/* exit header cross */
.header_mobile__catalog-window-close:before,
.header_mobile__catalog-window-close:after {
    position: absolute;
    left: 45%;
    top: 30%;
    content: ' ';
    height: 14px;
    width: 2px;
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 1);
}

.header_mobile__catalog-window-close:before {
    transform: rotate(45deg);
}

.header_mobile__catalog-window-close:after {
    transform: rotate(-45deg);
}



@media(max-width:420px) {
    body .header_mobile__catalog-button .header_mobile__catalog-button-text {
        font-size: 10px !important;
    }

    .header_mobile__background {
        justify-content: space-evenly;
    }

    body .header_mobile__catalog-button {
        width: 100px;
        height: 40px;
    }

    body .ital-header-logo {
        max-width: 180px;
        max-height: 48px;
    }
}
