.mob_nav_container,
.smart_menu_caller {
    display: none;
}

@media screen and (min-width: 768px) {
    .mob_nav_container,
    a.smart_menu_caller {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .mob_nav_container {
        display: block !important;
    }
    
    a.smart_menu_caller {
        display: inline-flex !important;
    }
}

.mob_nav_container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 999999 !important;
    background: #fff;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

body.mob_menu_opened .mob_nav_container {
    transform: translateX(0);
}

body.mob_menu_opened a.logo {
    pointer-events: none;
    opacity: 0;
}

a.logo {
    transition: opacity 0.3s ease;
}

.close-nav {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000000;
    width: 60px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.close-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.mob-nav-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999998;
}

.contact-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: 100%;
}

.contact-icon {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    min-width: 60px;
}

.contact-icon:hover {
    opacity: 0.8;
}

.contact-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mobile-navigation {
    margin-top: 70px;
    padding: 0;
}

.mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu-link, .submenu-link {
    display: block;
    padding: 20px 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    letter-spacing: 0;
    line-height: 1.4;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.submenu {
    display: none;
    background: #f8f9fa;
    width: 100%;
}

.submenu .submenu-link {
    font-size: 13px;
    font-weight: 400;
    padding: 15px 25px;
}

a.smart_menu_caller {
    z-index: 999997;
    font-size: 24px;
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

body.mob_menu_opened a.smart_menu_caller {
    display: none;
}

@media screen and (max-width: 360px) {
    .contact-icons {
        padding: 0 10px;
    }
    .contact-icon {
        min-width: 50px;
    }
} 