@media screen and (max-width: 1199px) {
   
    .top-header,
    .main-menu,
    .sub-menu {
        display: none;
    }
    .header-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-content: space-between;
        padding: 24px;
        background-color: var(--secondary-theme-color);
        align-items: center;
        background: #ffffff;
    }
	.header-mobile button {
        z-index: 1;
    }
    .header-mobile-logo {
        right: 0px;
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu label {
        height: 30px;
        bottom: -15px;
        width: 30px;
        position: absolute;
        z-index: 1500;
    }
    .mobile-menu-icon span {
        content: '';
        position: absolute;
        width: 35px;
        height: 3px;
        background-color: #000000;
        border-radius: 50px;
        bottom: 1px;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }
    .mobile-menu-icon::before {
        bottom: 8px;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }
    .mobile-menu-icon::after {
        top: 3px;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }
    .mobile-menu-icon::before,
    .mobile-menu-icon::after {
        content: '';
        position: absolute;
        width: 35px;
        height: 3px;
        background-color: #000000;
        border-radius: 50px;
    }
    .header-mobile-icons {
        justify-self: flex-end;
    }
    .header-mobile-icons a {
        margin: 0 6px;
    }
    .sub-header-mobile {
        margin: 16px 23px;
    }
   
    .overlay-menu {
        height: 100vh;
        overflow: hidden;
        width: 100%;
        position: fixed;
        z-index: 999999999;
        display: none;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .side-menu-mb {
        position: absolute;
        z-index: 999999999;
        background-color: #fff;
        width: 90vw;
        /* height: 100vh; */
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
        color: #008155;
    }
    .box {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 12px;
        padding-right: 12px;
        border-top: .5px solid #DEE4E4;
    }
    .box.gray {
        background: #DEE4E4;
    }
    .side-menu-title {
        display: block;
    }
    .side-menu-title p {
        color: #8A9595;
    }
    .side-menu-title-category {
        align-items: center;
        gap: .5rem;
    }
    .menu-categorie {
        align-items: center;
        justify-content: space-between;
    }
    .side-menu-categories {
        flex-direction: column;
    }
    .side-menu-top-head {
        padding: 22px;
        justify-content: end;
        align-items: center;
        background-color: #fff;
        justify-content: space-between;
    }
    .side-menu-top-head a {
        color: #FFF;
    }
    .side-menu-top-head button {
        background-color: transparent;
    }
    .side-menu-head {
        padding: 22px;
        justify-content: space-between;
    }
    .side-menu-navigation {
        padding: 22px;
        border-top: 1px solid #E0E2E3;
    }
    .side-menu-navigation>h4 {
        color: var(--secondary-theme-color);
        margin-bottom: 24px;
    }
    .side-menu-navigation ul li {
        color: #7C878E;
        margin-bottom: 16px;
    }
    .side-menu-whats {
        color: #0FAF1F;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 24px;
        background: white;
        border-top: 1px solid #E0E2E3;
    }
    .side-menu-blocks {
        justify-content: space-around;
        padding: 24px;
        border-top: 1px solid #E0E2E3;
    }
    .side-menu-block {
        padding: 16px;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-basis: 97px;
        height: 97px;
        text-align: center;
        border: 0.5px solid #CED7DC;
        border-radius: 2px;
    }
}

@media screen and (max-width: 767px) {
   
    .header-mobile-logo img {
        width: 100px;
    }
    #user-icon>svg {
        width: 24px;
    }
    .mobile-menu-icon::before,
    .mobile-menu-icon::after,
    .mobile-menu-icon span {
        width: 25px;
    }
}

@media screen and (max-width: 320px) {
    .header-mobile {
        grid-template-columns: .75fr 1fr 1fr;
    }
}