@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0%;
  padding: 0%;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #2e067e;
  --white-color: #FFFFFF;
  --black-color: #000000;
  --secondary-color: #4634ff;
}

.in_heading h3 {
  color: #2e067e;
  font-weight: 700;
}
.in_heading h4 {
  color: #2e067e;
  font-weight: 700;
}

.invoice_inputs label {
  font-weight: 600;
  color: #2e067e;
}

.item-table {
  overflow-X: scroll;
  width: 100%;
}
.item-table table {
  white-space: nowrap;
}
.item-table table th {
  text-transform: capitalize;
  color: #2e067e;
  font-weight: 600;
}

.dash-box {
  width: 100%;
  min-height: 140px;
  background: linear-gradient(280deg, #8E2DE2 0%, #4A00E0 100%);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.dash-box .text h2,
.dash-box .text h4 {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
}
.dash-box canvas {
  height: 6rem;
}

.nav .nav-down-arrow {
  border: 2px solid #707683;
  height: 30px;
  width: 30px;
  border-radius: 5px;
}
.nav .nav-down-arrow i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #707683;
}
.nav .others-btn {
  background: linear-gradient(180deg, #8E2DE2 0%, #4A00E0 100%);
  box-shadow: 0px 4px 10px rgba(16, 156, 241, 0.06);
  border-radius: 5px;
  height: 35px;
  width: 35px;
  border: none;
}
.nav .others-btn img {
  width: 25px;
  height: 25px;
}
.nav .admin-name a {
  text-decoration: none;
}
.nav .admin-name p {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}
.nav .admin-name p span {
  font-size: 12px;
  float: right;
  font-weight: 500;
  line-height: 12px;
  color: #ACADAE;
}

.logouts-icons {
  min-width: 50px;
  text-align: center;
  border-radius: 12px;
}

.sidebar.open .logouts {
  opacity: 1;
}

.logouts {
  opacity: 0;
  position: absolute;
  color: #fff;
}

.sidebar {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80px;
  padding: 0.3rem 0.7rem;
  transition: all 0.5s ease;
  background: white;
  z-index: 0;
  background: linear-gradient(270deg, #4361EE 11.96%, #3A0CA3 100%);
}
.sidebar #btntog {
  position: absolute;
  color: var(--white-color);
  color: var(--dark-color);
  top: 0.4rem;
  font-size: 1.8rem;
  left: 50%;
  line-height: 50px;
  transform: translateX(-50%);
  cursor: pointer;
}

.user-details {
  display: flex;
  align-items: center;
  margin-left: 1rem 0;
}
.user-details p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: white;
  line-height: 0;
  align-items: center;
}
.user-details p.mail {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #c4ccd7;
}
.user-details img {
  display: inline;
  width: 50px;
  border-radius: 100%;
  border: 1px solid black;
  margin-bottom: 20px;
  height: 50px;
}

.side-bar-radius {
  position: relative;
  top: 0;
  left: 70px;
  transition: all 0.5s ease;
  width: calc(100% - 70px);
}

.main-con {
  position: relative;
  top: 0;
  left: 80px;
  transition: all 0.5s ease;
  width: calc(100% - 80px);
  background-color: white;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  min-height: 100vh;
}

.sidebar.open ~ .main-con {
  left: 250px;
  width: calc(100% - 250px);
}

.sidebar.open ~ .main-con {
  left: 230px;
  width: calc(100% - 240px);
}

.sidebar.open {
  background: linear-gradient(270deg, #4361EE 11.96%, #3A0CA3 100%) !important;
  width: 250px;
}
.sidebar.open p {
  opacity: 1;
}

.sidebar.open #btntog {
  left: 80%;
  color: var(--white-color);
}

.sidebar p {
  opacity: 0;
}

.logos {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
}

.sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar ul li {
  position: relative;
  height: 40px;
  width: 90%;
  margin: 0.8rem auto;
  line-height: 50px;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 0.8rem;
}
.sidebar ul li a:hover {
  color: black;
  background: linear-gradient(180deg, #8E2DE2 0%, #4A00E0 100%);
}

.sidebar ul li a i {
  font-size: 22px;
  min-width: 50px;
  text-align: center;
  border-radius: 12px;
}

.sidebar.open ul li a {
  color: white;
}

.sidebar .nav-links {
  opacity: 0;
  position: static;
  white-space: nowrap;
}

.sidebar.open .nav-links {
  opacity: 1;
}

.form-card {
  background-color: var(--white-color);
  box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  border-radius: 5px;
}
.form-card .input-con label {
  font-size: 0.9375rem;
  font-weight: 500;
}
.form-card .input-con label span {
  color: rgb(187, 20, 20);
  font-size: 1.0625rem;
}
.form-card .input-con input {
  font-size: 0.875rem;
  border: 1px solid rgba(128, 128, 128, 0.5137254902);
  padding: 10px 20px;
  border-radius: 3px;
}
.form-card .input-con input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0px 0px 10px 4px rgba(196, 196, 196, 0.251);
}
.form-card .savebtn button {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px;
  border-radius: 3px;
  font-weight: 600;
}

.select2 {
  width: 100% !important;
}

.select2-container .select2-selection--single {
  height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
  padding-top: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  padding-top: 40px;
}

.card-1 {
  position: relative;
  background-color: #127681;
  border-radius: 3px;
  padding: 12px;
}
.card-1 #icons {
  height: 70px;
  width: 70px;
  background-color: #2A848E;
  position: relative;
}
.card-1 #icons i {
  top: 50%;
  left: 50%;
  color: var(--white-color);
  position: absolute;
  font-size: 40px;
  transform: translate(-50%, -50%);
}
.card-1::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.05;
  z-index: 999;
}
.card-1 .content {
  color: white;
}

.add_inv {
  background: linear-gradient(180deg, #4361EE 0%, #3A0CA3 100%) !important;
  border-radius: 5px !important;
  color: #fff !important;
  border: none;
}

.enroll-btn {
  background: linear-gradient(180deg, #4361EE 0%, #3A0CA3 100%) !important;
  color: var(--white-color);
  padding: 8px 22px;
  border: none;
  border-radius: 2px;
}/*# sourceMappingURL=main.css.map */
.enroll-btn:hover{
  color: var(--white-color);
  box-shadow: 1px 1px 5px 1px black;
}
.enrolled {
  background: linear-gradient(180deg, #1dae4a 0%, #0ca363 100%) !important;
  color: var(--white-color);
  padding: 8px 22px;
  border: none;
  border-radius: 2px;
}