.mobile-menu-container {
    padding: 0 !important;
    display: none;
}

@media (max-width: 1366px) {
    .mobile-menu-container {
        display: block;
    }
    header .logo img {
        width: 102px !important;
    }
    header .logo {
        padding: 0 !important;
    }
}

.mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 1rem 1.1rem 1rem 1.6rem;
    background-color: #fff;
    position: relative;
}

#menu-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    z-index: 495; /* Just below the menu */
    display: none; /* Hidden by default */
}

.mobile-menu .burger-button {
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    top: 1px;
    font-size: 2rem;
}

.small-header .mobile-menu .burger-button {
    top: -1px;
}

.mobile-menu-close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -80%;
    color: #fff;
    z-index: 1000;
    font-size: 5rem;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    top: 25px;
    pointer-events: none;
}
.mobile-menu-close:hover {
    opacity: 1;
}
.mobile-menu-close:before,
.mobile-menu-close:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 20px;
    width: 2px;
    background-color: #fff;
}
.mobile-menu-close:before {
    transform: rotate(45deg);
}
.mobile-menu-close:after {
    transform: rotate(-45deg);
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -78%;
    width: 78%;
    height: 100vh;
    background-color: #fff;
    color: #000;
    overflow-y: auto;
    transition: all 0.5s ease-in-out;
    z-index: 500;
}

.mobile-menu-close.open {
    right: 82%;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}

.mobile-menu .mobile-search {
    position: relative;
    padding: 20px;
}

.mobile-menu .mobile-search .form-control {
    border: 0 none;
    box-shadow: none;
    font-size: 16px;
    line-height: 20px;
    color: #999999;
    border-radius: 4px !important;
    background: #e8e8e8;
    padding-right: 33px;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 25px;
    top: 27px;
    border: none;
    background: transparent;
}

.mobile-menu .mobile-search button i {
    font-size: 16px;
    color: #999999;
}

.mobile-menu-content.open {
    right: 0;
    transition: all 0.5s ease-in-out;
    transform: translateX(0);
}

.mobile-menu .titleToCategory {
    padding: 18px;
    background: #f4f4f4;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 15px;
}

.mobile-menu .get-back {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    margin-right: 16px;
}

.mobile-menu .get-back i {
    color: #393939;
    font-size: 14px;
}

.mobile-menu .titleToCategory a {
    width: 100%;
}

.mobile-menu .titleToCategory .backTitle {
    color: #393939;
    font-size: 16px;
    font-weight: 600;
    display: block;
    text-align: left;
}

.mobile-menu .titleToCategory .backToCategory {
    color: #393939;
    font-size: 13px;
    font-weight: 300;
    display: block;
    text-align: left;
}

.mobile-menu .dxmenu-item-children {
    position: absolute;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    color: #000;
    transition: all 0.5s ease-in-out;
    z-index: 10;
    top: 75px;
}

.mobile-menu .dxmenu-item-children.sub {
    top: 0;
}

.mobile-menu .dxmenu-item-children.open {
    right: 0;
    transition: all 0.5s ease-in-out;
}

.mobile-menu .dxmenu-item {
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-menu .dxmenu-item a {
    color: #393939;
}

.mobile-menu .dxmenu-item .title {
    color: #393939;
    font-size: 16px;
    font-weight: 300;
}
