
  .wrapper .header{
    z-index: 999;
    background: #fff;
    position: relative;
    width: calc(100% - 0%);
    height: 96px;
    display: flex;
    justify-content: flex-start;
    top: 0;
  }

  .wrapper .header .member-menu,
  .wrapper .header .notification-menu{
    height: 0;
    position: absolute;
    width: 175px;
    z-index: 999;
    background-color: #fff;
    color: #000;
    top: 71px;
    right: 0;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.5); 
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: all .3s;
  }

  .wrapper .header .member-menu ul{
    width: 100%;
    height: 100%;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
  }

  .wrapper .header .member-menu li{
    margin: 5px 0;
  }

  .wrapper .header .member-menu li:first-child{
    border-bottom: 1px solid #00afaa;
  }

  .wrapper .header .member-menu a{
    width: 100%;
    background-color: transparent;
    height: fit-content;
    padding: 0;
    line-height: normal;
    color: #939498;
    display: block;
    text-align: center;
  }

    .wrapper .header .notification-menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 10px;
    overflow-y: auto;
    width: 250px;
  }

  .wrapper .header .notification-menu h3{
    width: 100%;
    margin: 10px 0;
    color: #00afaa;
    font-size: 16px;
  }

  .wrapper .header .notification-menu li{
    width: 100%;
    border-top: 1px solid #cacaca;
    padding: 5px 0;
  }

  .wrapper .header .notification-menu li a{
    width: 100%;
    background-color: transparent;
    height: fit-content;
    padding: 0;
    line-height: normal;
    color: #939498;
    display: block;
  }

  .wrapper .header .notification-menu li a h4{
    font-size: 14px;
    color: #313131;
  }

  .wrapper .header .notification-menu li a p{
    font-size: 12px;
    margin: 0;
  }
  
  .wrapper .header .header-menu{
    width: calc(100% - 0%);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .wrapper .header .header-menu .title{
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 900;
  }
  
  .wrapper .header .header-menu .title span{
    color: #4CCEE8;
  }
  
  .wrapper .header .header-menu .sidebar-btn{
    color: #fff;
    position: absolute;
    margin-left: 240px;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
    transition-property: color;
  }
  
  .wrapper .header .header-menu .sidebar-btn:hover{
    color: #4CCEE8;
  }
  
  .wrapper .header .header-menu ul{
    display: flex;
  }
  
  .wrapper .header .header-menu ul li a{
    background: #fff;
    color: #000;
    display: block;
    margin: 0 10px;
    font-size: 18px;
    width: 34px;
    height: 34px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    transition-property: background, color;
  }
  
  .wrapper .header .header-menu ul li a:hover{
    background: #4CCEE8;
    color: #fff;
  }
  
  .wrapper .header #profile_area{
    display: none;
    position: absolute;
    z-index: 99;
    right: 0px;
    top: 61px;
    background: #fff;
  }
  .wrapper .header #profile_area.active{ 
    display: block;
  }

  .wrapper .header #profile_area ul { width: 225px; padding: 8px;}
  .wrapper .header #profile_area ul li{ text-align: left; width: 100%; display: flex; justify-content: start; }
  .wrapper .header #profile_area ul li a{ padding: 0; height: 31px; line-height: normal; font-size: 1.3rem; font-weight: 600; }
  .wrapper .header #profile_area ul li a:hover{ background-color:unset; color:var(--color-text-base); }

  .wrapper .header .mobile-menu{
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
    justify-content: space-around;
    background-color: #fff;
    border: 2px solid #939498;
    border-bottom: transparent;
    padding: 10px 0;
    z-index: 999;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-bottom: 20px;
  }

  .wrapper .header .mobile-menu img{
    opacity: .3;
  }

  .wrapper .header .mobile-menu a,
  .wrapper .header .mobile-menu button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 10px;
    color: #000;
    font-weight: 500;
  }

  .wrapper .header .mobile-menu span{
    margin-top: 5px;
  }

  .wrapper .header .mobile-menu a:hover,
  .wrapper .header .mobile-menu button:hover {
    text-decoration: underline;
  }

  @media (max-width: 960px){
    body nav.container{
      height: fit-content !important;
    }
    .wrapper .header .mobile-menu{
      display: flex;
    }
    .wrapper .header .mobile-menu img{
      width: 25px;
    }
    .wrapper .header{
      height: 70px;
      border-bottom: 2px solid #20a2a0;
    }
    .wrapper .header .logo-img{
      width: 100px;
    }
  }