#goToTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 99;
    font-size: 18px;
    outline: none;
    cursor: pointer;
    width:50px;
    height:50px;
    padding: 0px;
    border-radius: 50%;
    background-color:var(--mh-color-red) !important;
    border: 2px solid rgb(255,255,255) !important;
    color: rgb(255,255,255);
}
#goToTop:hover {
    background-color: rgb(255,255,255) !important;
    border: 2px solid var(--mh-color-red) !important;
    color: var(--mh-color-red) !important;
}
/***************************************************/
#loader {
    position: absolute;
    left: 46%;
    top: 40%;
    z-index: 1;
    width: 200px;
    height: 200px;
    margin: -76px 0 0 -76px;
    border: 25px solid #f3f3f3;
    border-radius: 50%;
    border-top: 25px solid var(--mh-color-red);
    border-right: 25px solid rgb(255,26,0);
    border-bottom: 25px solid var(--mh-color-red);
    border-left: 25px solid rgb(255,26,0) ;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    background-color:rgb(0,0,0);
  }
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Add animation to "page content" *
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 2s;
    animation-name: animatebottom;
    animation-duration: 2s
  }
  */
  
  @-webkit-keyframes animatebottom {
    from { bottom:-30px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-30px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }
  
  #page-wrapper {
    display: none;
  }
/***************************************************/
/*logout pages*/
        .logout-container {
          margin-top: 100px;
        }
    
        .logout-message {
          background-color: #f8d7da;
          color: #721c24;
          padding: 20px;
          border-radius: 5px;
          border: 1px solid #f5c6cb;
        }
    
        .logout-header {
          font-size: 2rem;
          font-weight: bold;
          color: #333;
        }
    
        .logout-description {
          font-size: 1.1rem;
          color: #555;
        }
    
        .btn-back {
          margin-top: 20px;
          background-color: #007bff;
          color: #fff;
          padding: 10px 20px;
          border-radius: 5px;
          cursor: pointer;
        }
    
        .btn-back:hover {
          background-color: #0056b3;
        }