  body {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }
  
  .profile_info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .sidebar .profile_info .profile_image {
      width: 150px;
      height: 150px;
      border-radius: 100px;
      margin-bottom: 10px;
  }

  .sidebar .profile_info h4 {
      color: #ccc;
      margin-top: 0;
      margin-bottom: 4px;
  }
  
  #toTopBtn {
      position: fixed;
      bottom: 40px;
      right: 40px;
      width: 50px;
      height: 50px;
      background: #fff url(https://fitrahxstore.my.id/img/up.png);
      border-radius: 50%;
      background-size: 30px;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer;
      z-index: 100000;
      visibility: hidden;
      opacity: 0;
      transition: 0.5s;
  }
  
  #toTopBtn.active {
      visibility: visible;
      opacity: 1;
  }
  
  ::-webkit-scrollbar {
      width: 4px;
  }

  ::-webkit-scrollbar-track {
    border: 4px solid transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: #ccc;
  }