* {
  font-family: "Poppins", sans-serif;
}

body,
html {
  background-color: #1e1d25;
  height: 100vh;
  color: white;
}

/* header */
.logo {
  width: 65px;
  height: 65px;
}

.language-holder {
  border-radius: 10px;
  background: linear-gradient(180deg, #4b0da2 0%, #68268b 100%);
  width: 250px;
  height: 45px;
}

.avatar {
  height: 45px;
  width: 45px;
  display: inline-block;
}

option {
  background-color: #1e1d24;
  color: white;
}

.menu-item {
  height: 48px;
}

.menu-item:hover,
.menu-item.active {
  border-radius: 0px 16px 16px 0px;
  background: linear-gradient(180deg, #4b0da2 0%, #68268b 100%);
}

.menu-item.active::before,
.menu-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 0px 4px 4px 0px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(123, 66, 255, 0.7);
}

*::-webkit-scrollbar {
  display: none;
}

* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.contents {
  background-color: #fff;
}

.table-holder {
  border-radius: 16px;
  background: rgba(33, 32, 41, 0.6);
  backdrop-filter: blur(10px);
}

.grad-bg {
  background: linear-gradient(180deg, #4b0da2 0%, #68268b 100%);
}

svg.w-full {
  width: 100%;
}

.main-body {
  height: 100vh;
  overflow-y: auto;
}

.header {
  position: sticky;
  top: -10px;
  z-index: 100;
  background-color: #1e1d25;
}

.tab-holder {
  background-color: #19191d;
  border-radius: 10px;
}

.btn-grad.active,
.btn-grad:hover {
  background: linear-gradient(180deg, #4b0da2 0%, #68268b 100%);
  border-radius: 10px;
}

.op-50 {
  background-color: rgba(255, 255, 255, 0.05);
}


input.border-white.op-50 {
  border: 1px solid #FFFFFF0D;
}

.fs-24 {
  font-size: 24px;
}


/* login wrapper */
.login-wrapper {
  background-color: #1e1d25;
  /*background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%), url("../img/login-bg.png");*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form {
  border-radius: 20px;
  border: 1px solid #AFAFAF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 100%), rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(25px);
  padding: 35px;
  max-width: 95%;
  width: 530px;
  overflow-y: auto;
}

.inp {
  border-radius: 12px;
  border: 1px solid #FFF;
  width: 100%;
  height: 50px;
}

.or::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #FFFFFF66;
}


@media screen and (max-width: 992px) {
  .sidebar {
    display: none;
  }

  header.header {
    display: none;
  }

  h1.font-bold.text-\[34px\].text-white {
    text-align: center;
  }

  .py-\[50px\] {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .px-\[40px\] {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-sm {
    font-size: 12px;
  }

  .text-lg {
    font-size: 14px;
  }

  .hide {
    display: none;
  }

  .refresh {
    width: 20px;
  }

  .mob-text {
    font-size: 12px;
  }

  .mob-overflow {
    overflow-x: scroll;
  }

  .mobile-menu {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(22px);
    width: 210px;
    position: absolute;
    top: 80px;
    padding: 12px;
    right: 30px;
    z-index: 1000;
    display: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  .qr.border.rounded-\[10px\].p-\[10px\] {
    width: 75%;
  }


}

@media screen and (max-width: 767px) {
  .login-form {
    overflow-y: scroll;
    height: 90vh;
  }
}