﻿#blockingLayer {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1003;
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    -moz-transition: left 0.4s;
    -o-transition: left 0.4s;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    z-index: 1004;
}

.menu-fixed.exhibitor-menu {
    left: -270px;
}

.menu-fixed.loaded {
    left: 0px;
}

.menu-fixed.loaded + #blockingLayer {
    display: block;
}

.menu-fixed.disabled-trasition {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
}

#bodyMainContainer {
    position: relative;
    min-height: 100%;
}

#bodyMainContainer.list {
    margin-left: 240px;
}

#bodyMainContainer.exhibitor {
    margin-left: 270px;
}

.menu-container {
    position: absolute;
    top: 0;
    bottom: 0;
    padding-top: 0px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.menu-fixed.loaded.menu-container {
    -moz-box-shadow: 3px 0 8px rgba(0,0,0,0.3);
    -webkit-box-shadow: 3px 0 8px rgba(0,0,0,0.3);
    box-shadow: 3px 0 8px rgba(0,0,0,0.3);
}

.menu-fixed.loaded .menu-container {
    -moz-box-shadow: 3px 0px 15px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 3px 0px 15px 0px rgba(0,0,0,0.4);
    box-shadow: 3px 0px 15px 0px rgba(0,0,0,0.4);
}

/*This are the div containing menu elements*/
.menu-items-container {
    position: relative;
    height: calc(100% - 100px); /*Heigh will be a result of substracting the height of the header and the footer elements from the total 100%*/
    width: 300px;
    overflow-y: auto;
    background-color: #FFFFFF;
    overflow:hidden;
}

.menu-header {
    position: relative;
    display: block;
    height: 50px;
    vertical-align: middle;
    background-color: #FFFFFF;
    -moz-transition: height 0.3s;
    -o-transition: height 0.3s;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
}

.menu-header img {
    height: 26px;
    margin: 12px;
}

.menu-header .mobile-hide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 19px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-left: 1px;
    color: var(--primary-color);
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: background-color 0.3s;
    transition: all 0.2s;
    border-radius:6px;
    border:2px dotted transparent;
}

.menu-header .mobile-hide:hover {
    background:var(--secondary-color-shade-04);
    border:2px dotted var(--secondary-color-shade-07);
}

.alignment-container {
    position: relative;
    height: 100%;
}

.mobile-hide-exhibitor i.fa-chevron-right {
    position: absolute;
    top: 50%;
    right: -4px;
}

a.navigation-item,
a.navigation-item:focus {
    font-family: var(--primary-font-family);
    color: var(--primary-color);
    background-color: #ffffff;
    text-decoration: none;
    display: flex;
    padding: 0;
    height: 56px;
    align-items: center;
    padding-left: 20px;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
    border-bottom: 1px dashed var(--primary-color-shade-02);
    font-weight: 300;
}

a.navigation-item:hover,
a.navigation-item:active {
    text-decoration: none;
    background-color: #f7f7f7;
    padding-left: 20px;
    font-weight: 300;
}

.navigation-item.expanded {
    background-color: #EA5042;
    padding-left: 20px;
}

.navigation-item.home-action {
    padding-top: 12px;
    padding-bottom: 12px;
}

.navigation-item i.fad {
    font-size: 26px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.navigation-item i.fa-home {
    flex: 0 0 40px;
    font-size: 25px;
    justify-content: flex-start;
}

.navigation-item span {
    font-size: 1em;
    line-height: 1.25em;
    flex: 1 1 100%;
}

.navigation-item i.fa-chevron-right {
    flex: 0 0 30px;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navigation-item.expanded i.fa-chevron-right {
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.submenu-navigation {
    position: absolute;
    top: 0;
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 100%;
    z-index: 10;
}

.submenu-navigation.expanded {
    position: absolute;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 10;
}

.submenu-navigation a.navigation-item {
    padding-left: 10px;
}

.submenu-header {
    font-family: var(--secondary-font-family);
    font-size: 18px;
    font-weight: 500;
    padding: 25px 10px 10px 10px;
    color: var(--primary-color);
   /* text-transform:uppercase;*/
}

.go-back-navigation-item,
a.go-back-navigation-item {
    color: var(--secondary-color);
    font-weight: 300;
    font-family: var(--secondary-font-family);
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    text-decoration:none;
}

.go-back-navigation-item i {
    margin-right: 10px;
    font-size: 12px;
}

.menu-ctas {
    position: absolute;
    display:flex;
    align-items:center;
    bottom: 0;
    width: 100%;
    height:50px;
    padding-top:3px;
    background: #f7f7f7;
    border-top: 1px solid #dfe1e1;
}

.menu-container .navbar-popup-subscribe {
    font-size: 14px;
    line-height: 17px;
    display: block;
    background-color: #f49700;
    width: 250px;
    margin: 15px auto;
}

.menu-container .navbar-popup-subscribe a {
    color: #FFFFFF;
    font-weight: 300;
    font-size: 15px;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.menu-container .navbar-popup-subscribe a:hover {
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.menu-container .navbar-popup-subscribe a i{
    width:4%;
}

.menu-container .navbar-popup-subscribe:hover i, 
.menu-container .navbar-popup-subscribe:hover div {
    color: #FFFFFF;
}
    
.menu-social {
    text-align: center;
    padding: 4px;
    bottom: 0;
    width: 100%;
    display:flex;
    align-items:center;
    justify-content:center;

}

.menu-social a {
    display: inline-block;
    color: var(--primary-color);
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-flex;
    width: 36px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    height: 36px;
    text-decoration:none;
    border: 1px solid transparent;
}

.menu-social a:hover{
    border-color:#dfe1e1;
    background:#FFFFFF;
    border-radius:4px;
}

