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

body,
html {
  overflow: hidden;
  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;
}



/* chart */
.donut-chart {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 100%
}

p.center {
  background: #394264;
  position: absolute;
  text-align: center;
  font-size: 28px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 130px;
  height: 130px;
  margin: auto;
  border-radius: 50%;
  line-height: 35px;
  padding: 15% 0 0;
}


.portion-block {
  border-radius: 50%;
  clip: rect(0px, 200px, 200px, 100px);
  height: 100%;
  position: absolute;
  width: 100%;
}

.circle {
  border-radius: 50%;
  clip: rect(0px, 100px, 200px, 0px);
  height: 100%;
  position: absolute;
  width: 100%;
  font-family: monospace;
  font-size: 1.5rem;
}


#part1 {
  transform: rotate(0deg);
}

#part1 .circle {
  background-color: #E64C65;
  /*transform: rotate(76deg);*/
  animation: first 1s 1 forwards;
}


#part2 {
  transform: rotate(100deg);
}

#part2 .circle {
  background-color: #11A8AB;
  animation: second 1s 1 forwards 1s;
}

#part3 {
  transform: rotate(250deg);
}

#part3 .circle {
  background-color: #4FC4F6;
  animation: third 0.5s 1 forwards 2s;
}

#part4 {
  transform: rotate(250deg);
}

#part4 .circle {
  background-color: #ff0000;
  animation: fourth 0.5s 1 forwards 2s;
}

.chart-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  height: 300px;
  width: 300px;
  background: transparent;
  border-radius: 50%;
  border: 2px dashed #A367DC;
  transform: translate(-50%, -50%);
}


/* Animation */
@keyframes first {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(100deg);
  }
}

@keyframes second {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(150deg);
  }
}

@keyframes third {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(111deg);
  }
}

@keyframes fourth {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(111deg);
  }
}


@media screen and (max-width: 1460px) {
  .chart-inner {
    border: unset !important;
  }
}

@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);*/
    background: #000000;
    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: auto;
    padding: 20px;
    max-height: 90vh;
  }

  .main-body {
    padding-bottom: 65px !important;
  }

  .tab-holder button {
    min-width: 150px;
    padding: 5px 0;
  }

  .tab-holder button:nth-child(3) {
    min-width: 225px;
    padding: 5px 0;
  }

  .qr,
  .qr img {
    width: 100% !important;
  }

  .chart-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    height: 185px;
    width: 185px;
    background: transparent;
    border-radius: 50%;
    border: 2px dashed #A367DC;
    transform: translate(-50%, -50%);
  }
}





.product__pagination,
.blog__pagination {
	padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #b2b2b2;
	font-size: 14px;
	color: #b2b2b2;
	font-weight: 600;
	line-height: 28px;
	text-align: center;
	margin-right: 16px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
	background: #0084ff;
	border-color: #0084ff;
	color: #ffffff;
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
	margin-right: 0;
}





.web{  }
.mob{ display: none; }

@media (max-width:991px) {
	.web{ display: none; }
	.mob{ display: block; }
}