.header {
     position: relative;
     z-index: 99;
     height: 60px;
     width: 100%;
     color: lightgray;
     max-width: 100%;
     margin: 0 auto;
     background: #fff;
     display: flex;
     box-shadow: 0px -2px 8px 1px rgba(0, 0, 0, 0.35);
 }
 .logout {
     font-size: 14px;
 }

 .header-bottom {
     width: 100%;
     display: flex;
     padding: 0 40px;
     align-items: center;
     justify-content: space-between;
 }
.header-left{
    max-width: 33.333%;
    flex: 0 0 33.333%;
    display: flex;
    align-items: center;
}
.header-left .logo {
    margin-right: 40px;
 }
.header-left .logo img {
    height: 45px;
 }
 .header-left .search{
     width: 50%;
     position: relative;
 }
  .header-left .search input{
    border: 0;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 40px;
    border-radius: 25px;
    padding: 0 50px;
    box-shadow: none;
    color: #000;
    outline: none;
    position: relative;
  }
.header-left .search .search_submit{
     position: absolute;
     background: none;
     border: 0;
     left: 10px;
     top: 8px;
     font-size: 16px;
     outline: none;
}

 .header-items {
     display: flex;
     max-width: 33.333%;
     flex: 0 0 33.333%;
     justify-content: center;
     align-items: center;
 }

 .header-items ul {
     list-style-type: none;
     padding: 0;
     margin: 0;
     display: flex;
     height: 40px;
     align-items: center;
     justify-content: center;
 }

 .header-items ul li {
    /* padding: 0 30px; */
}
.header-items ul li:not(:last-child) {
    padding-right: 20px;
}

.header-items ul li a {
    font-size: 12px;
    font-weight: 600;
    font-family: var(--head-font);
    text-transform: uppercase;
    color: var(--theme-color);
    text-align: center;
    transition: all 300ms linear;
}

.header-items ul li svg {
    display: block;
    transition: all 300ms linear;
    width: 22px;
    height: 22px;
    margin: 0 auto;
}
.header-items ul li svg path {
    fill: var(--theme-color);
}

.header-items ul li i {
    font-size: 22px;
    display: block;
    color: var(--theme-color);
    transition: all 300ms linear;
}

.header-items ul li:hover a,
.header-items ul li:hover i {
    color: var(--theme-color);
}

 .header-right {
     display: flex;
     max-width: 33.333%;
     flex: 0 0 33.333%;
     align-items: center;
     justify-content: flex-end;
     position: relative;
 }

 .header-right label {
     color: #000;
     margin: 0 20px;
 }

 .header-right .profile-icon i {
     color: #000;
     font-size: 16px;
 }
.user-counter p{
     color: rgba(0, 0, 0, 0.8);
     font-size: 12px;
     font-family: var(--head-font);
     font-weight: 500;
     margin: -10px 0;
     text-align: right;
}
.user-counter p a{
     font-weight: 600;
     text-decoration: underline;
}
.user-counter p a:hover{
     color: var(--theme-color);
}
.header-nav{
     position: relative;
     border-left: 1px solid rgba(0, 0, 0, 0.2);
     padding-left: 40px;
     display: flex;
}
.header-nav ul{
    list-style-type: none;
    padding: 0;
    margin:0;
    display: flex;
    flex-wrap: wrap;
}
.header-nav ul li a{
     background: rgba(0, 0, 0, 0.1);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     text-align: center;
     color: #000;
     line-height: 40px;
     font-size: 18px;
     transition: all 300ms linear;
     position: relative;
     display: block;
}
.header-nav ul li a.setting{
     margin-left: 30px;
}
.header-nav ul li a.leaderboard{
     margin-right: 30px;
}
.header-nav>ul>li>a:hover{
     background: var(--theme-color);
     color: white;
 }
 .header-nav .user-status .status{
    position: absolute;
    right: -3px;
    bottom: 2px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
 }
.header-nav .user-status .status i{
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
}
.header-dropdown{
    position: absolute;
    top: 50px;
    right: -10px;
    width: 180px;
    background: #fff;
    display: none;
    box-shadow: 1px 3px 10px 1px rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 5px;
}
.header-dropdown ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;  
}
.header-dropdown ul li{
    width: 100%;
}
.header-dropdown ul li a{
    font-size: 14px;
    color: #333;
    background: none;
    border-radius: 0;
    width: 100%;  
    line-height: 15px;
    display: block;
    height: auto;
    text-align: left;
    padding: 8px 15px;
}
.header-dropdown ul li:hover a{
    background: rgba(0, 0, 0, 0.1);
}
.header-dropdown.user-dropdown li a i{
    margin-right: 5px;
}
.header-nav a i.fa-check-circle{
    color: #219653;
}
.header-nav a i.fa-clock{
    color: #B68F11;
}
.header-nav a i.fa-minus-circle{
    color: #C31C1C;
}
.footer {
    position: fixed;
    background: linear-gradient(180deg, rgba(221, 221, 221, 0) 5.98%, rgba(255, 255, 255, 0.5) 25.24%, rgba(255, 255, 255, 0.95) 59.38%, #ffffff 90%,  #ffffff 90%);
    z-index: 99;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    bottom: 0;
    padding-top: 40px;
 }
.footer .footer-top{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

 .footer .footer-nav {
     list-style-type: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
 }

 .footer .footer-nav .footer-link {
     margin: 0 15px;
     position: relative;
 }
 .footer .footer-nav .footer-link a {
     font-size: 12px;
     color: #080808;
     font-weight: 600;
     text-align: center;
     vertical-align: sub;
     display: block;
 }
.footer .footer-nav .footer-link a .footer-icon{
    width: 28px;
    height: 28px;
  
} 
.footer .footer-nav .footer-link a .footer-icon.chat{
    width: 24px;
    height: 24px;
}
 .footer .footer-nav .footer-link a .footer-icon path{
    /*stroke: #f00;*/
    fill:var(--theme-color);
    stroke-width: 0;
 }
 .footer .footer-nav .footer-link a .footer-icon path defs {
     display: none;
 }
  .footer .footer-nav .footer-link a span {
    margin-top: 5px;
    display: block;
    text-align: center;
}

 .footer .footer-nav .footer-link a i, .footer .footer-nav .footer-link a img, .footer .footer-nav .footer-link a svg {
     font-size: 20px;
     margin-bottom: 5px;
     vertical-align: middle;
     display: block;
     margin:0 auto;
     width: 28px;
     height: 28px;
     transition: transform 300ms linear;
 }
  .footer .footer-nav .footer-link a:hover img, .footer .footer-nav .footer-link a:hover svg {
    transform: scale(1.2);
  }
 .footer .footer-nav .footer-link.attendee img,  .footer .footer-nav .footer-link.briefcase_btn img, .footer .footer-nav .footer-link.conference-link img{
    width: 24px;
 }
.footer .footer-nav .footer-link.chat-btn img{
    width: 26px;
}
 .footer-dropdown {
     position: absolute;
     padding: 0;
     width: 350px;
     border-radius: 4px;
     -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.18);
     box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.18);
     background: rgba(255, 255, 255, 0.9);
     display: flex;
     bottom: 60px;
     flex-wrap: wrap;
     flex-direction: column;
     list-style-type: none;
     left: 0px;


 }

 .footer .footer-nav .footer-link.navigation-link .footer-dropdown {
     /* height: 240px; */
 }

 .footer-dropdown li {
     padding: 9px 12px 9px 24px;
     border-bottom: 1px solid #e2e4e7;
     cursor: pointer;
     border-left: 4px solid transparent;
 }

 .footer-dropdown li.footer-drop-header {
     background-color: rgba(0, 0, 0, 0.1);
     cursor: inherit;
 }
 .footer-dropdown li.footer-drop-header:first-child{
    border-radius: 4px 4px 0px 0px;
 }
 .footer-dropdown li.footer-drop-header span {
     font-weight: bold;
     color: #000;
     font-size: 14px;
     line-height: 21px;
     text-transform: uppercase;
 }

 .footer .footer-nav .footer-link .footer-dropdown li a {
     line-height: 21px;
     color: black;
     font-size: 13px;
     text-align: left;
     display: block;
     transition: all .3s ease;
 }

 .footer .footer-nav .footer-link .footer-dropdown li:not(.footer-drop-header):hover {
    border-left: 4px solid var(--theme-color);
}

.footer .footer-nav .footer-link .footer-dropdown li:not(.footer-drop-header):hover a {
    color: var(--theme-color);
}

 .footer .footer-nav .footer-link .footer-dropdown li.footer-drop-header:hover {
     background-color: rgba(0, 0, 0, 0.1);
 }

 .footer-dropdown .mCSB_inside>.mCSB_container {
     margin-right: 0;
 }

 .footer-dropdown .mCSB_scrollTools {
     width: 12px;
 }

 .footer-dropdown .mCSB_scrollTools .mCSB_draggerRail {
     background-color: transparent;
 }

 .footer-dropdown .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
     background-color: rgba(0, 0, 0, 0.5);
     width: 7px;
 }

 .footer .footer-nav .footer-link .footer-dropdown li a i {
     float: right;
     font-size: 16px;
     color: #f00;
     margin: 3px 0 0 0;
 }
 
 .footer .footer-nav.chat-nav{
    border-left: 1px solid #000;
    margin-left: 30px;
    padding-left: 30px;
 }
 .footer-bottom{
    display: flex;
    padding: 5px 40px;
    border-top: 1px solid rgb(0, 0, 0, 0.1);
    justify-content: space-between;
    color: rgba(0, 0, 0, 0.7);
 }
  .footer-bottom p{
    font-weight: 500;
    margin-bottom: 0;
    line-height: 20px;
    font-size: 10px;
  }
  .menu-icon, .menu-icon-close, .mobile-info{
     display: none;
}
.organisedby {
    position: absolute;
    left: 50px;
}
.organisedby .logo img {
    height: 45px;
    margin-left: 10px;
}
@media (max-width: 1366px){

    .header-left .search{
        width: 80%;
    }
    .organisedby .logo img {
        height: 40px;
    }
}
@media (max-width: 1024px) and (min-width: 768px) and (orientation: landscape){
   .organisedby
   {
    left: 0;
   } 
  .header-bottom .logo img {
        height: 40px;
    }
}
 @media screen and (max-width: 900px) and (orientation: landscape) {
    .header{
        height: 50px;
    }

    .header-bottom {
        padding: 0 10px;
    }
  /*  .header-bottom .logo {
        width: 115px;
    }  */   
   .header-bottom .logo img{
        height: 20px;
    }
    .header-left{
        max-width: 60%;
        flex: 0 0 60%;
    }
    .header-left .logo {
        margin-right: 20px;
    }  
    .header-left .search {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
    .header-left .search input{
        padding: 0 20px;
        position: absolute;
        display: none;
    }
    .header-left .search .search_submit{
        width: 32px;
        height: 32px;
        left:0px;
        top: 0px;
        font-size: 14px;
        outline: none;
        background: rgba(0,0,0,0.1);
        border-radius: 50%;
    }
    .header-items {
        display: none;
    }
    .header-right{
        max-width: 40%;
        flex: 0 0 40%;
    }
    .header-nav{
        padding-left: 10px;
        margin-left: 10px;
    }
    .header-nav ul li a.setting {
        margin-left: 10px;
    }
    .header-nav ul li a.leaderboard{
        margin-right: 10px;
    }
    .header-dropdown{
        top:45px;
    }
    .header-dropdown ul li a{
        line-height: 20px;
        font-size: 12px;
        padding: 5px 15px;
    }

    .footer {
       
		  position: fixed;
    background: linear-gradient(180deg, rgba(221, 221, 221, 0) 5.98%, rgba(255, 255, 255, 0.5) 25.24%, rgba(255, 255, 255, 0.95) 59.38%, #ffffff 90%,  #ffffff 90%);
    z-index: 99;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    bottom: 0;
    padding-top: 40px;
		
		
    }
    .footer .footer-top {
          display: flex;
    justify-content: center;
    margin-bottom: 10px;
    }
    .footer .footer-nav {
       list-style-type: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
    }

    .footer .footer-nav .footer-link {
        margin: 0 15px;
     position: relative;
    }

    .footer .footer-nav .footer-link a {
        padding: 10px 5px;
        width: 100%;
        text-align: left;
        font-size: 13px;
    }
    .footer .footer-nav .footer-link a i, .footer .footer-nav .footer-link a img{
        width: 24px;
        height: 24px;
        margin: 0 7px 0 0;
        display: inline-block;
    }

    .footer-dropdown {
        position: relative;
        padding: 0;
        width: 100%;
        left: 0;
        bottom: 0;
        margin-top: 0px;
        border-radius: 0;
        box-shadow: none;
        
    }

    .footer-dropdown li {
        padding: 5px 15px 5px 20px;
    }

    .footer .footer-nav .footer-link.navigation-link .footer-dropdown {
        height: auto;
    }

    .footer-dropdown li.footer-drop-header {
        border-radius: 0 !important;
        padding: 5px 15px 5px 15px;
        background: transparent;
    }
    .footer-dropdown li.footer-drop-header span{
        font-size: 13px;
    }

    .footer .footer-nav .footer-link .footer-dropdown li a {
        padding: 0;
    }
    .footer .footer-nav.chat-nav{
        margin-left: 0;
        padding-left: 0;
        border-left:0;
    }
    .footer-bottom{
        padding: 5px 15px;
        border-top: 0;
        justify-content: flex-start;
        flex-direction: column;
    }

    .header.openMenu,
    .footer.openMenu {
        transform: translateX(0%);
    }

    body.menu_overlay:before {
        background: rgba(0, 0, 0, 0.75);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: hidden;
        z-index: 1;
        content: "";
    }

    .menu-icon {
        display: block;
        background: rgba(0, 0, 0, 0.1);
        width: 32px;
        height: 32px;
        text-align: center;
        border-radius: 50%;
        line-height: 33px;
        color: #000;
    }
    .menu-icon i{
        font-size: 14px;
    }
    .menu-icon-close {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        display: none;
        z-index: 1;
    }

    .menu-icon-close svg path {
        fill: currentColor;
        stroke-width: 4;
    }
   
} 

@media (max-width: 350px) {
    .header-right {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .header-left {
        max-width: 50%;
        flex: 0 0 50%;
    }
}