/**
 *  2022 Invitadisima
 *
 *  @author    Hugo Herreros <hugoherreros93@gmail.com>
 *  @copyright 2022 Hugo Herreros
 *  @license   Licencia Comercial
 */

#mobile-sidebar-menu{
    position: fixed;
    width: 85%;
    height: 100%;
    max-width: 340px;
    background: #fff;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    padding-top: 55px;
    z-index: 3500;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transition: all 0.350s ease;
}

body.open-mobile-sidebar-menu #mobile-sidebar-menu{
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

#btn-mobile-menu a{
    font-size: 2rem;
}

#btn-mobile-menu a i{
    font-weight: 100;
}


#btn-mobile-menu{
    margin-right: 10px;
    padding: .375rem .625rem;
}

#mobile-sidebar-cross{
	font-size: 2rem;
    position: absolute;
    right: 0;
    top: 0px;
    padding: 10px 15px;
    color: #000000;
}

#mobile-sidebar-overlay{
	position: fixed;
    background: #000 none repeat scroll 0% 0%;
    opacity: 0.4;
    display: none;
    top: 0;
    z-index: 1499;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    transition: opacity 150ms ease;
    
}

body.open-mobile-sidebar-menu #mobile-sidebar-overlay{
	display: block;
}


#mobile-sidebar-user a,
#mobile-sidebar-lang a.expand-more{
    display: block;
	color: #111111;
    font-size: 1.2rem;
    font-weight: 600;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
}

#mobile-sidebar-lang{

}

#mobile-sidebar-search{
	padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 20px;
}

#mobile-sidebar-search .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-color: #757a84;
    color: #000000;
    font-size: 1.1rem;
}

#mobile-sidebar-search .search-widget .search-btn{
	font-size: 1.3rem;
}

#mobile-sidebar-megamenu{
    margin-bottom: 2rem;
}