/* :root{
    --menu-base-bg: #31B5C4;
    --menu-base-color: #FFF;
    --menu-sarface: #FFF;
    --menu-text-color: #212529;
    --menu-item-min-height: 35px;
    --menu-item-min-expand-height: 60px;
} */
/****************************
    HORIZONTAL MENU
****************************/
.fix{
    position: fixed;
    bottom: 100%;
    margin-bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    animation-name: bousceNav;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

@keyframes bousceNav {
    0% {margin-bottom: 0;}
    100% {margin-bottom: -57px;}
}
@-webkit-keyframes bousceNav {
    0% {margin-bottom: 0;}
    100% {margin-bottom: -57px;}
}

.navigation > ul{
    display: flex;
    flex-wrap: wrap;
}
.navigation ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.navigation > ul > li{
    position: relative;
    z-index: 1;  
}
.navigation > ul > li:not(:last-child){
    margin-right: 1px;   
}
/* .navigation > ul > li.active::after,
.navigation > ul > li:hover::after {
	position: absolute;
	content: "";
	top: 3px;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--headerTopbarBgColor);
	z-index: -2;
	border-radius: 8px 8px 0 0;
} */
.navigation > ul > li > a {
	padding: 12px 12px;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* font-weight: 600; */
	text-transform: uppercase;
	font-size: 16px;
	color: var(--textDarkColor);    
}
/* .navigation > ul > li.active > a,
.navigation > ul > li:hover > a{
    color: var(--baseBgTextColor);
} */
.fix .navigation > ul > li > a{
    padding: 16px 12px;
}
/* .navigation > ul > li > a::after{
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: -1;
    width: 0;
    margin: 0 auto;
    background-color: var(--baseBgDeepColor);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
} */
/* .navigation ul > li:hover > a::after,
.navigation ul > li.active > a::after,
.navigation ul > li > a.active::after{
    width: 100%;
} */


/****************************
    VERTICAL DROPDOWN
****************************/
.navigation > ul li > ul{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    white-space: nowrap;
    background-color: var(--menu-sarface);
    z-index: 10;
    display: none;  
    /* border-bottom: 3px solid var(--menu-base-bg); */
}
.navigation > ul li:hover > ul{
    display: block;
}
.navigation.drop-shadow > ul li > ul{
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.2);
}
.navigation > ul > li > ul li{
    position: relative;
}
.navigation > ul li > ul > li > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    text-decoration: none;
    min-height: var(--menu-item-min-height);
    color: var(--textDarkColor);
    font-size: 14px;
    /* font-weight: 600; */
}
.navigation > ul li > ul > li:last-child > a{
    margin-bottom: 15px;
}
.navigation > ul li > ul > li:hover > a,
.navigation > ul li > ul > li > a.active,
.navigation > ul li > ul > li.active > a{
    color: var(--baseBgColor);
}
.navigation > ul li > ul > li.active > a,
.navigation > ul li > ul > li > a.active{
    font-weight: bold;
}
.navigation ul > li > ul a{
    opacity: 0;
    height: 0;
    min-height: 0;
    -webkit-animation: drop_bounce 0.5s forwards ease-in-out;
    animation: drop_bounce 0.5s forwards ease-in-out;
}
@keyframes drop_bounce {
    0% { opacity: 0; min-height: 0;}
    50% { opacity: 1; min-height: var(--menu-item-min-expand-height);}
    100% { opacity: 1; min-height: var(--menu-item-min-height);}
}
.navigation > ul > li > ul ul{
    top: 0;
    left: 100%;
}
.navigation > ul > li:last-child > ul ul{
    left: auto;
    right: 100%;
}
.nav-arrow{
    margin-left: 3px;
}
.submenu > a::before{
    position: absolute;
    content: "\f107";
    font-family: 'FontAwesome';
    right: 9px;
    font-size: 14px;
    font-weight: normal;
}
.submenu:hover > a::before,
.submenu.active > a::before,
.submenu > a.active::before{
    content: "\f106";
}
.navigation > ul > li.submenu > a {
	padding-right: 20px !important;
}
.navigation > ul > li ul > li.submenu > a{
    padding-right: 25px;
}
.navigation > ul > li ul > li.submenu > a::before{
    right: 10px;
}
.navigation > ul > li ul > li.submenu > a::before{
    content: "\f105";
}

/******************************
    MOBILE NAV
******************************/
.nav-mobile-toggler {
	display: none;
	justify-content: space-between;
	align-items: center;
}
.nav-mobile-title {
	font-size: 14px;
	margin: 0;
	font-weight: 600;
}
.nav-box-mobile{
    position: fixed;
    width: 250px;
    height: 100%;
    left: -400px;
    top: 0;
    background-color: #FFF;
    z-index: 15;
    box-shadow: 0 0 60px 0 rgba(0,0,0,0.7);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.nav-backdrop{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 14;
    display: none;
}
.menu-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: none;
	z-index: 2;
    opacity: 0.5;
}
.menu-close:hover{
    opacity: 1;
}
.menu-close:active{
    top: 1px;
}
.logo-mobile {
	width: 160px;
    height: 45px;
    display: block;
    margin: 20px auto;
    text-align: center;
}
.logo-mobile img{
    max-width: 100%;
    max-height: 100%;
}
.nav-menu-small,
.nav-menu-small ul{
    list-style-type: none;
    margin: 0;
    padding: 0;    
}
.nav-menu-small{
    border-top: 1px solid #f5f5f5;
    padding-top: 10px;
}
.nav-menu-small li a{
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    font-size: 14px;
    color: var(--textColor);
    font-weight: bold;
    text-decoration: none;
}
.nav-menu-small li a > i{
    margin-top: 2px;
}
.nav-menu-small ul{
    padding-left: 15px;
    display: none;
}
.nav-menu-small > li > ul{
    background-color: #f5f5f5;
}
.action-group-m {
	display: flex;
	justify-content: center;
	border-top: 1px solid #f5f5f5;
	padding: 20px;
	margin-top: 10px;
}
.action-group-m .button-nav{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
.menu-mobile-open {
	border: none;
	background-color: transparent;
	display: none;
	font-size: 21px;
	padding-right: 0;
	padding-left: 20px;
    color: var(--textDarkColor);
}
.action-group-m > .menu-mobile-open{
    display: none;
}
.nav-mobile .submenu > a::before {
	right: 10px;
}
/******************************
    END MOBILE NAV
******************************/