/* d:/Arafat/html/CSN Extra/css/style.css */
:root {
  --white: #FFFFFF;
  --black: #000000;
  --primary-color: #6A6FF9;
  --secondary-color: #334155;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #475569;
  --gray-900: #111827;
  --lime-500: #84CC16;
  --amber-400: #FFE64A;
  --amber-500: #F59E0B;
  --red-500: #EF4444;
  --primary-font: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

body {
  font-family: var(--primary-font);
  font-weight: 500;
  background-color: var(--gray-100);
  margin: 0 auto !important;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3019607843);
  border-radius: 20px;
  border: 3px solid #e0e0e0;
}

a {
  text-decoration: none;
}

.row {
  margin: 0;
}

ul {
  list-style: none;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=file]:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
}

::-moz-placeholder {
  color: var(--gray-300) !important;
}

::placeholder {
  color: var(--gray-300) !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-gray-100 {
  color: var(--gray-100) !important;
}

.text-gray-300 {
  color: var(--gray-300) !important;
}

.text-gray-400 {
  color: var(--gray-400) !important;
}

.text-gray-500 {
  color: var(--gray-500) !important;
}

.text-gray-600 {
  color: var(--gray-600) !important;
}

.text-gray-900 {
  color: var(--gray-900) !important;
}

.text-lime-500 {
  color: var(--lime-500) !important;
}

.text-amber-400 {
  color: var(--amber-400) !important;
}

.text-amber-500 {
  color: var(--amber-500) !important;
}

.text-red-500 {
  color: var(--red-500) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
}

.bg-gray-400 {
  background-color: var(--gray-400);
}

.bg-gray-500 {
  background-color: var(--gray-500) !important;
}

.bg-gray-600 {
  background-color: var(--gray-600) !important;
}

.bg-gray-900 {
  background-color: var(--gray-900) !important;
}

.btn-primary:hover {
  opacity: 0.8;
  transition: 0.3s all;
}

.error-message {
  color: var(--red-500);
  font-size: 12px;
  font-weight: 600;
}

.login {
  overflow: hidden;
  background-color: var(--white);
  height: 100%;
}
.login .login-img {
  background-image: url("../assets/images/login.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  padding-top: 120px;
  text-align: center;
  color: var(--amber-400);
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.login .login-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  border-right: 1px solid var(--gray-300);
}
.login .login-form form input {
  padding: 12px;
}

.sidebar {
  display: inline-flex;
  /* height: 100vh; */
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  flex-shrink: 0;
  background-color: var(--white);
}

.sidebar ul {
  padding: 0;
}

.sidebar ul .nav-li {
  width: 240px;
  margin: 17px 0px;
}

.sidebar ul li a {
  color: var(--gray-400);
}

.sidebar ul .nav-li a {
  display: flex;
  width: 100%;
  padding: 12px 0px;
  align-items: center;
}

.sidebar ul .nav-li a:hover {
  background-color: var(--gray-100);
  cursor: pointer;
  border-radius: 10px;
}

.sidebar ul .nav-li.active a {
  padding: 12px 10px;
  background-color: var(--gray-100);
  border-radius: 10px;
}

.sidebar ul .nav-li a img {
  background-color: var(--gray-100);
  padding: 8px;
  border-radius: 12px;
}

.sidebar ul .nav-li.active a img {
  background-color: var(--primary-color);
  padding: 8px;
  border-radius: 12px;
  filter: saturate(20);
}

.sidebar ul .nav-li a span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-left: 12px;
}

.sidebar ul .nav-li a .arrow {
  background-color: transparent;
  padding-left: 100px;
}

.sidebar ul .nav-li.active a span {
  color: var(--primary-color);
  font-weight: 600;
}

.sidebar ul li:not(.nav-li) {
  display: flex;
  justify-content: space-between;
  width: 240px;
  align-items: center;
  margin: 17px 0px;
}

.info-table ul li {
  width: 100%;
}
.info-table ul li:hover {
  background-color: var(--gray-100);
  cursor: pointer;
}
.info-table .tabs .tab a {
  display: block;
  color: var(--gray-500);
  padding-bottom: 15px;
  border-bottom: 2px solid transparent;
}
.info-table .tabs .tab a:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
.info-table .tabs .tab .active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.wallet .wallet-header a {
  color: var(--gray-500);
}
.wallet .wallet-header .active {
  background-color: #DEE6FF !important;
  color: var(--primary-color) !important;
}
.wallet .wallet-balance {
  background-image: url(../assets/images/wallet.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 250px;
  border-radius: 10px;
}/*# sourceMappingURL=style.css.map */
