  /*CSS MENU*/
  .sidebar{
    position: fixed;
    z-index: 999;
  }
  .sidebarMenu {
    height: 100vh;
    /* overflow-y: overlay; */
    position: fixed;
    /* background: #F1F4F9; */
    background: #fff;
    top: 0;
    left: 0;
    width: 90px;
    /* box-shadow: 1px 0px 20px rgb(0 0 0 / 7%); */
  }
  .sidebarLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
    height: 72px;
  }
  .sidebarLinks{
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px;
  }
  .sidebarLink{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 38px;
    border-radius: 10px;
    border: 1px solid rgb(241 244 249 / 15%);
    background-color: #F1F4F9;
    color: #4e4b54;
    position: relative;
    
    /*
      border: 1px solid rgba(0, 143, 255, 15%);
      color: #008FFF;
      border: 1px solid rgba(0, 143, 255, 0.15);
      border: 1px solid rgba(109, 7, 131, 0.15);
      color: ##008FFF;
    */
  }
  .sidebarLink:hover{
    background: #0131ff;
    color: #fff!important;
    border: 1px solid transparent;
    transition: opacity 1s ease-in-out;
  }
  .sidebarLink i{
    font-size: 16px;
  }
  .sidebarLink span{
    font-size: 12px
  }

  .sidebarLink:before {
    content: attr(data-hover);
    visibility: hidden;
    opacity: 0;
    /* width: 140px; */
    background-color: rgb(255 255 255 / 70%);
    color: #4e4b54;
    text-align: center;
    border-radius: 5px;
    padding: 4px 8px;

    margin-bottom: 4px;

    /* transition: opacity 1s ease-in-out; */
    font-size: 12px;
  
    position: absolute;
    z-index: 1;
    
    top: -75%;
    /* bottom: 0; */
    /* left: 28px; */
  }

  .sidebarLink:hover:before {
    opacity: 1;
    visibility: visible;
  }

  .sidebarWhats{
    display: inline-block;
    background: #009649;
    position: absolute;
    bottom: 0;
    margin-bottom: 16px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / 1%);
    
  }
  .sidebarWhats i{
    font-size: 24px;
    color: #fff;
    padding: 8px 10px;
  }


  .mainMenu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 36px;
    padding: 24px 0 0;
  }


  .mainShare{
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgb(0 0 0 / 1%);
  }
  
  .mainShareLink{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    cursor: pointer;
  }

  .mainShareTitle h1{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  
  .mainShareTitle h3{
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    margin: 2px 0 0;
    padding: 0;
  }

  .mainShareButton{
    display: flex;
    flex-direction: row;
    width: fit-content;
    align-items: center;
    padding: 0.775rem 1.175rem;
    color: #fff;
    background: #0131ff;
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }
  
  .mainShareButton i {
    margin-right: 8px;
    font-size: 16px;
  }


  .mainCountdown{
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }

  .mainCountdownTitle{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
  }


  .mainCountdownTitle h1{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  .mainCountdownTitle h2{
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
  }

  /*COUNTDOWM*/
  #timer {
    display: flex;
    gap: 8px;      
  }
  #timer .timerDashboard{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #timer .timerBox {
    display: flex;
    min-width: 40px;
    padding: 8px 0;
    background: #0131ff;
    border-radius: 10px;
    /* border: 2px solid #030d52; */
    /* margin-bottom: 15px; */
    font-size: 16px;
    font-weight: 400;
    color: white;
    justify-content: center;
    align-items: center;
  }
  

  #timer .timerDate {
    color: #4e4b54;
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
  }
  /**/

  .mainMenuUser{
    display: flex;
    flex-direction: row;
    align-items: center
  }

  .mainNotifications{
    margin-right: 24px;
    cursor: pointer;
    font-size: 24px;
    color: #ff0000ab;
  }

  .mainUser{
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .mainUser a {
    color: #4e4b54;
  }

  .mainUserIcon{
    /* margin-right: 16px;
    font-size: 24px; */
    margin-right: 8px;
    display: inline-block;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    vertical-align: middle;
    overflow: hidden;
  }

  .mainUser h2 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
  }

  .mainUser h1 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0 0 4px 0; 
  }

  .mainUserSettings{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 2px;
  }

  .mainUserSettingsLicense{
    display: flex;
    flex-direction: row;
    gap: 4px;
  }

  .mainUpdate{
    display: flex;
    gap: 24px
  }
  
  .mainMenuAccount {
    margin: 0 24px;
    text-transform: uppercase;
  }

  .mainMenu h2 {
    font-size: 14px;
    font-weight: 400;
    padding: 0;
  }

  .mainMenu h1 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 2px 0;
  }

  .menuMobile{
    display: none;
  }


@media only screen and (max-width: 600px) {
    .sidebar{
      display: none!important;;
    }

    .main{
      width: 100%!important;;
      padding: 0!important;;
    }

    .mainMenu{
      display: none!important;;
    }

    .menuMobile{
      display: flex!important;
      flex-direction: column;
    }

    .menuMobileHeader{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0px;
      z-index: 9900;
      background-color: #fff;
      padding: 8px 16px;
    }

    .menuMobileHeader i {
      color: #4E4B54;
      font-size: 24px;
    }
}