/* variables css */
/* for common fonts */
/* mixins */
html {
  font-size: 10px;
}

@media (min-width: 1921px) {
  html {
    font-size: 11px;
  }
}

@media (max-width: 1920.98px) {
  html {
    font-size: 9.6px;
  }
}

@media (max-width: 1399.98px) {
  html {
    font-size: 8px;
  }
}

@media (max-width: 767.98px) {
  html {
    font-size: 9px;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: clamp(10px, 0.7142857vw - 0.2857px, 18px);
  }
}
:root {
  --navbar-spacing: 22rem;
  --header-spacing: 6rem;
  --footer-spacing: 3.4rem;
  --common-bg: #eff5ff;
  --common-border: #dae8ff;
  --background-image: linear-gradient(90deg, #8ab3ce 0%, #8ab3ce 100%);
  --background-image-opacity-07: linear-gradient(90deg, #0e3c5b 0%, #0e3c5b 100%);
  --background-image-opacity-05: linear-gradient(90deg, #e7f1f7 0%, #e7f1f7 100%);
  --background-image-opacity-02: linear-gradient(90deg, #628daa 0%, #628daa 100%);
  --background-image-opacity-03: linear-gradient(90deg, #1a5d8c 0%, #1a5d8c 100%);
  --background-opacity: #0e3c5b;
  --background-opacity-01: #ecf4e9;
  --border-color: #e7f1f7;
  --red-color: #ff0b00;
  --orange-color: #ff6400;
}

input:focus,
select:focus,
.form-control:focus,
button:focus,
.btn:focus {
  box-shadow: none;
  outline: none;
  /* border-color: inherit; */
}

img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
  text-transform: inherit;
}

body {
  font: 400 1.6rem/1.69 "poppins-regular";
  color: #323232;
  background-image: var(--background-image-opacity-05);
}

a,
a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.3s linear;
}

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

.py-80 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.pt-80 {
  padding-top: 8rem;
}

.pb-80 {
  padding-bottom: 8rem;
}

@media (max-width: 991.98px) {
  .py-80 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .pt-80 {
    padding-top: 6rem;
  }

  .pb-80 {
    padding-bottom: 6rem;
  }
}

.w-20 {
  width: 20px;
}

.w-40 {
  width: 40px;
}

.w-60 {
  width: 60px;
}

.w-80 {
  width: 80px;
}

@media (max-width: 575.98px) {
  .sec-ttl h2 {
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {

  .container,
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--common-bg);
  z-index: 11;
  font-size: 2.6rem;
  font-family: "poppins-bold";
  align-items: center;
  justify-content: center;
  display: none;
}

.loader.active {
  display: flex;
}

/*  buttons start  */
.btn {
  font: 500 1.4rem/1.21 "poppins-medium";
  border-radius: 4rem;
  padding: 0.4rem 1.2rem;
  border-color: transparent;
}

.badge {
  font-weight: 400;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
}

.theme-btn {
  font: 500 1.6rem/1.5 "poppins-medium";
  color: #ffffff;
  padding: 1.2rem 2.4rem 1.1rem;
  display: inline-block;
  background-color: var(--background-opacity);
  border: none;
  border-radius: 5rem;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.theme-btn.light {
  background-image: var(--background-image-opacity-05);
  color: var(--background-color);
}

.theme-btn.light:hover {
  background-image: var(--background-image-opacity-02);
  color: #ffffff;
}

.theme-btn.btn-warning,
.theme-btn.btn-warning:hover {
  background-color: #ffc107;
  background-image: none;
  color: #000;
}

.theme-btn.btn-primary,
.theme-btn.btn-primary:hover {
  background-color: #0d6efd;
  background-image: none;
}

.theme-btn.btn-dark,
.theme-btn.btn-dark:hover {
  background-color: #212529;
  background-image: none;
}

.theme-btn:hover {
  background-image: var(--background-image-opacity-03);
  color: #ffffff;
}


.theme-btn .load {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
}

.theme-btn .load::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid #fff;
  width: 30px;
  height: 30px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation: loading1 1s ease infinite;
  z-index: 10;
}

.theme-btn .load::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px dashed #fff;
  width: 30px;
  height: 30px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation: loading1 2s linear infinite;
  z-index: 5;
}

.theme-btn.activeLoading {
  pointer-events: none;
}

.theme-btn.activeLoading .loading {
  visibility: visible;
  opacity: 1;
}

.theme-btn .load {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
}

.btn {
  position: relative;
}

.btn .load {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
}

.btn .load::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid #fff;
  width: 20px;
  height: 20px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation: loading1 1s ease infinite;
  z-index: 10;
}

.btn .load::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px dashed #fff;
  width: 20px;
  height: 20px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation: loading1 2s linear infinite;
  z-index: 5;
}

.btn.activeLoading {
  pointer-events: none;
}

.btn.activeLoading .loading {
  visibility: visible;
  opacity: 1;
}

@keyframes loading1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .theme-btn {
    font-size: 1.6rem;
  }

  .theme-btn::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.modal .modal-content {
  border-radius: 2rem;
  padding: 2.6rem;
  border: 1px solid var(--border-color);
  background-image: var(--background-image-opacity-05);
}

.modal .modal-content .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  background-image: url("../images/cancel.svg");
  background-size: contain;
  opacity: 1;
  z-index: 1;
}

.modal .modal-content .modal-body {
  padding: 0;
}

.modal .modal-content .modal-body .modal-footer .btn {
  padding: 0.8rem 1.6rem;
  letter-spacing: 0.06rem;
}

/* common css */
.form-group {
  padding-bottom: 2.4rem;
  position: relative;
}

.form-group div.error {
  margin: 0.4rem 0 -1.2rem;
  font-size: 1.4rem;
  color: #dc3545;
  font-family: "poppins-medium";
  display: none;
}

.form-group div.error.active {
  display: block;
}

.form-group .password {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.2rem;
  height: 2.2rem;
  /* transform: translateY(-50%); */
  opacity: 0.5;
  background-image: url("../images/eye-slash.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-group .password.active {
  background-image: url("../images/eye.svg");
}

.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}



@media (max-width: 575.98px) {
  .form-group {
    padding-bottom: 2rem;
  }

  .form-group div.error {
    margin-top: 0.2rem;
  }
}

.form-label {
  font-size: 1.4rem;
  font-family: "poppins-medium";
  color: #fff;
}

.form-control,
.form-select {
  font: 500 1.4rem/1.2 "poppins-medium";
  width: 100%;
  background-color: #FAFAFC;
  padding: 1.2rem 1.2rem 1rem;
  border: 1px solid #D6D9E0;
  color: #323232;
  border-radius: 0.6rem;
  transition: all 0.3s ease-in-out;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--border-color);
}

.form-control ::-moz-placeholder, .form-select ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.56);
}

.form-control ::placeholder,
.form-select ::placeholder {
  color: rgba(0, 0, 0, 0.56);
}

@media (max-width: 575.98px) {

  .form-control,
  .form-select {
    padding: 1rem 1.6rem 1rem;
  }
}

textarea:focus {
  outline: none;
}

form .theme-btn {
  width: 100%;
  border-radius: 0.8rem;
}

@media (max-width: 991.98px) {
  .wpcf7-form-control {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .wpcf7-form-control {
    font-size: 1.8rem;
  }

  form .form p {
    font-size: 1.6rem;
  }
}

/* form css */
@media (max-width: 767.98px) {
  :root {
    --navbar-spacing: 0rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--background-image-opacity-05);
  padding-left: var(--navbar-spacing);
  border-bottom: 1px solid var(--border-color);
  z-index: 2;
}

header .header-wrapper .profile .profile-info {
  cursor: pointer;
}

header .header-wrapper .profile .profile-info .profile-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
}

header .header-wrapper .profile .profile-info .profile-name p {
  font: 500 1.4rem/1.2 "poppins-medium";
  padding-bottom: 0.5rem;
}

header .header-wrapper .profile .profile-info .profile-name h6 {
  font-size: 1.2rem;
  font-family: "poppins-regular";
}

header .header-wrapper .profile .nav {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  padding: 1.4rem 2rem;
  border-radius: 2rem;
  z-index: 2;
  background: var(--background-image);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

header .header-wrapper .profile .nav .nav-item .nav-link {
  font-size: 1.4rem;
  color: #ffffff;
  white-space: nowrap;
  padding: 0.2rem 0;
}

header .header-wrapper .profile:hover .nav {
  opacity: 1;
  visibility: visible;
}

header .header-wrapper .burger-menu img {
  width: 2.3rem;
  margin-left: 1rem;
}

.navbar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--navbar-spacing);
  height: 100vh;
  background: var(--background-image-opacity-05);
  z-index: 10;
  border-right: 1px solid var(--background-image-opacity-05);
  transition: all 0.5s linear;
}

.navbar-nav .navbar-head {
  border-bottom: 1px solid var(--border-color);
}

.navbar-nav .navbar-head .logo {
  height: 4rem;
  margin: 0.5rem;
  object-fit: contain;
  width: auto;
}

.navbar-nav .navbar-head h5 {
  font-weight: 700;
}

.navbar-nav .navbar-head .close {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  transform: translateY(-50%);
}

.navbar-nav .navbar-body {
  height: 100%;
  overflow: auto;
}

.navbar-nav .navbar-body .nav,
.navbar-nav .navbar-foot .nav {
  padding: 1rem;
  height: 100%;
}

.navbar-nav .navbar-body .nav .nav-item,
.navbar-nav .navbar-foot .nav .nav-item {
  padding: 0.4rem 0px;
}

.navbar-nav .navbar-body .nav .nav-item img {
  width: 1.8rem;
  height: 1.8rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar-nav .navbar-body .nav .nav-item .nav-link,
.navbar-nav .navbar-foot .nav .nav-item .nav-link {
  font: 500 1.4rem/1.2 "poppins-medium";
  color: #323232;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  border-radius: 3rem;
}

.navbar-nav .navbar-foot .nav .nav-item .nav-link {
  background-color: #0e3c5b;
  color: #fff;
  justify-content: center;
}

.navbar-nav .navbar-body .nav .nav-item .nav-link:has(+ .sub-menu) {
  position: relative;
}

.navbar-nav .navbar-body .nav .nav-item .nav-link:has(+ .sub-menu)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background-image: url("../images/down.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}

.navbar-nav .navbar-body .nav .nav-item .sub-menu {
  display: none;
  padding: 1rem 2rem;
}

.navbar-nav .navbar-body .nav .nav-item .sub-menu .nav-item {
  padding: 0.9rem 0 0.9rem 2.4rem;
  position: relative;
}

.navbar-nav .navbar-body .nav .nav-item .sub-menu .nav-item::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("../images/turn-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0);
}

.navbar-nav .navbar-body .nav .nav-item .sub-menu .nav-item .nav-link {
  color: #323232;
}

.navbar-nav .navbar-body .nav .nav-item .sub-menu .nav-item .nav-link.active {
  color: var(--border-color);
}

.navbar-nav .navbar-body .nav .nav-item .sub-menu .nav-item:has(> .nav-link.active)::before {
  filter: none;
}

.navbar-nav .navbar-body .nav .nav-item:has(> .nav-link.active) .sub-menu {
  display: block;
}

.navbar-nav .navbar-body .nav>.nav-item>.nav-link,
.navbar-nav .navbar-foot .nav>.nav-item>.nav-link {
  padding: 1rem 1.4rem;
}

.navbar-nav .navbar-body .nav>.nav-item>.nav-link.active {
  background: var(--background-image-opacity-07);
}

.navbar-nav .navbar-body .nav>.nav-item:has(> .nav-link.active)>.nav-link {
  color: #ffffff;
}

.navbar-nav .navbar-body .nav>.nav-item:has(> .nav-link.active)>.nav-link img {
  filter: invert(1);
}

.navbar-nav .navbar-body .nav>.nav-item:has(> .nav-link.active)>.nav-link::after {
  transform: translateY(-50%) rotate(180deg);
  filter: invert(1);
}

@media (max-width: 767.98px) {
  header {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 1.3rem 0.5rem 1.2rem 0.1rem;
    border-radius: 0 1rem 1rem 0;
    background-image: none;
    background-color: #1f4842;
  }

  header .header-wrapper .burger-menu img {
    width: 2rem;
    filter: brightness(0) invert(1);
  }

  header .header-wrapper .burger-menu .text-menu {
    color: #fff;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 1.6rem;
  }

  .navbar-nav {
    left: -100%;
    width: 24rem;
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .navbar-head {
    padding: 0.75rem 2rem;
  }

  .navbar-nav .navbar-head h1 {
    font-size: 3rem;
  }

  .navbar-nav.active {
    left: 0;
  }
}

.main-content {
  /* padding-top: var(--header-spacing); */
  padding-left: var(--navbar-spacing);
  /* padding-bottom: var(--footer-spacing); */
  /* border: 2rem solid #ffffff; */
  height: 100vh;
}

.main-content .content-wrapper {
  height: 100%;
  overflow: auto;
  /* border: 1px solid var(--border-color); */
  position: relative;
  border-radius: 2rem 0 0 0;
  background-color: #fff;
}

@media (max-width: 767.98px) {
  .main-content {
    border-width: 1rem;
  }
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: var(--navbar-spacing);
  background: var(--background-image-opacity-05);
  border-top: 1px solid var(--border-color);
}

footer h6 {
  line-height: 1;
}

.navbar-nav .navbar-body::-webkit-scrollbar,
.main-content .content-wrapper::-webkit-scrollbar {
  width: 0.4rem;
}

.navbar-nav .navbar-body::-webkit-scrollbar-track,
.main-content .content-wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.navbar-nav .navbar-body::-webkit-scrollbar-thumb,
.main-content .content-wrapper::-webkit-scrollbar-thumb {
  background-image: var(--background-image-opacity-07);
  border-radius: 3px;
}

/* header css */
@font-face {
  font-family: "poppins-bold";
  src: url("../fonts/poppins-bold.woff2") format("woff2"), url("../fonts/poppins-bold.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

@font-face {
  font-family: "poppins-semibold";
  src: url("../fonts/poppins-semibold.woff2") format("woff2"), url("../fonts/poppins-semibold.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}

@font-face {
  font-family: "poppins-medium";
  src: url("../fonts/poppins-medium.woff2") format("woff2"), url("../fonts/poppins-medium.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}

@font-face {
  font-family: "poppins-regular";
  src: url("../fonts/poppins-regular.woff2") format("woff2"), url("../fonts/poppins-regular.ttf") format("ttf");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

h1 {
  font-family: "poppins-bold";
  font-style: normal;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
  color: #162055;
}

h2 {
  font-family: "poppins-bold";
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #000000;
}

h3 {
  font-family: "poppins-bold";
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.21;
  color: #323232;
}

h4 {
  font-family: "poppins-semibold";
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  color: #323232;
}

h5 {
  font-family: "poppins-regular";
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #323232;
}

h6 {
  font-family: "poppins-medium";
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.21;
  color: #323232;
}

p {
  font-family: "poppins-regular";
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.69;
  color: #323232;
}

@media (max-width: 767.98px) {
  p {
    font-size: 1.75rem;
    line-height: 1.86;
  }
}

span {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: inheritrem;
  line-height: inherit;
  color: inherit;
}

a {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: inheritrem;
  line-height: inherit;
  color: inherit;
}

/* typography css */
/* layout css */
.login-wrapper {
  height: 100vh;
  background: var(--background-image-opacity-02);
}

.login-wrapper .login {
  max-width: 47rem;
  width: 100%;
  padding: 3.2rem 4rem;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 0 52px rgba(50, 50, 50, 0.1);
}

.login-wrapper .login .login-head {
  padding-bottom: 3.7rem;
}

@media (max-width: 575.98px) {
  .login-wrapper .login {
    padding: 3.2rem 3rem;
  }
}

.main-content .content-wrapper .content-head {
  position: sticky;
  top: 0.8rem;
  background: var(--background-image-opacity-05);
  padding: 1.2rem 2rem;
  z-index: 1;
  margin: 0.8rem;
  outline: 1rem solid #fff;
  border-radius: 1.5rem 0 0 0;
}

.main-content .content-wrapper .content-head .theme-btn,
.main-content .content-wrapper .modal .theme-btn {
  padding: 0.6rem 1.5rem 0.4rem;
  font-size: 1.4rem;
}

.main-content .content-wrapper .content-body .theme-btn {
  font-size: 1.4rem;
  padding: 1rem 2rem 0.8rem;
}

.main-content .content-wrapper .content-body form.medium-form {
  max-width: 575px;
  margin: 2rem auto;
  padding: 2.2rem 2.6rem 2.6rem;
  background-color: #0e3c5b;
  border-radius: 15px;
}

.main-content .content-wrapper .content-body form.large-form {
  max-width: 100%;
  margin: 2rem auto;
  padding: 2.2rem 2.6rem 2.6rem;
  background-color: #0e3c5b;
  border-radius: 15px;
}

.main-content .content-wrapper.content-center {
  display: flex;
  flex-direction: column;
}

.modal .data-table .dt-search .dt-input {
  background-color: #fff;
}

.data-table thead th {
  color: #ffffff;
  text-align: start;
}

.main-content .content-wrapper .content-body {
  margin: 0 1.5rem;
}

.main-content .content-wrapper.content-center .content-body {
  /* margin: 0 auto; */
}

.data-table .dt-layout-table {
  padding: 0.8rem 0 1.4rem;
}

.data-table .dt-layout-table .dt-layout-cell {
  overflow: auto;
}

.data-table .dt-layout-table table {
  font-size: 1.4rem;
  line-height: 1.3;
}

.data-table .dt-layout-table table .theme-btn {
  font-size: 1.4rem;
  padding: 0.4rem 1.2rem;
}

.data-table .dt-layout-table table thead {
  font-family: "poppins-semibold";
  background: var(--background-opacity);
}

.data-table .dt-layout-table table tr th, .data-table .dt-layout-table table tr td {
  padding: 1rem 1.4rem;
  border-color: var(--background-opacity);
}

.data-table .dt-layout-table table tbody>tr:last-child>* {
  border-color: var(--background-opacity);
}

.data-table .dt-layout-table table tr td {
  box-shadow: none !important;
}

.data-table .dt-length select {
  font-size: 1.4rem;
  font-family: "poppins-semibold";
  padding: 0;
  margin-right: 0.8rem;
  border-color: var(--border-color);
}

.data-table .dt-length label {
  font-size: 1.4rem;
  font-family: "poppins-semibold";
}

.data-table .dt-search label {
  font-family: "poppins-medium";
}

.data-table .dt-search .dt-input {
  font: 500 1.4rem/1.5 "poppins-medium";
  background-color: var(--background-opacity-01);
  padding: 1rem 1.2rem 0.9rem;
  border: none;
  color: #323232;
  border-radius: 1rem;
  margin-left: 1rem;
}

.data-table .dt-info {
  font-size: 1.4rem;
  font-family: "poppins-semibold";
}

.data-table .dt-paging {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.data-table .dt-paging button.dt-paging-button {
  font: 600 1.4rem/1 "poppins-semibold";
  width: 3rem;
  height: 3rem;
  padding: 0;
}

.data-table .dt-paging button.dt-paging-button.previous, .data-table .dt-paging button.dt-paging-button.next, .data-table .dt-paging button.dt-paging-button.first, .data-table .dt-paging button.dt-paging-button.last {
  font-size: 2.2rem;
  padding: 0;
}

@media (max-width: 767.98px) {
  .data-table .dt-container .dt-layout-row:first-child {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .data-table .dt-container .dt-layout-row:first-child .dt-layout-cell.dt-start {
    text-align: left;
  }

  .data-table .dt-container .dt-layout-row:first-child .dt-layout-cell.dt-end {
    text-align: right;
  }

  .data-table .dt-length {
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .data-table .dt-length select {
    order: 1;
    margin-right: 0;
    margin-top: 0.5rem;
  }

  .data-table .dt-search {
    margin-top: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .data-table .dt-search label {
    font-family: "poppins-semibold";
    font-size: 1.4rem;
  }

  .data-table .dt-search .dt-input {
    margin-left: 0;
    margin-top: 0.4rem;
    padding: 0.5rem 1.2rem 0.4rem;
  }

  .data-table .dt-paging {
    justify-content: center;
  }
}

.dashboard form ul li {
  padding: 1rem 0;
}

.dashboard form ul li h6 {
  width: 40%;
  color: #000;
}

.dashboard form ul li input,
.dashboard form ul li textarea {
  width: 60%;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.3;
  height: 100%;
}

.dropdown-menu {
  font-size: 14px;
  width: 100%;
  border-radius: 8px;
  padding: 20px;
}

.dropdown-menu li {
  padding-bottom: 6px;
}

.dropdown-menu li:first-child,
.dropdown-menu li:last-child {
  padding-bottom: 0;
}

.dropdown-menu li input {
  margin: 0;
  vertical-align: middle;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  margin-top: -1px;
}

.dropdown-menu li label {
  line-height: 1;
}

.counter-badge {
  padding: 0.4rem 1rem 0.3rem;
  border-color: var(--bs-btn-color);
  margin-bottom: -0.5rem;
  pointer-events: none;
}

.counter-badge:hover {
  background-color: transparent;
}

.counter-badge .badge {
  padding: 0.5rem 0.6rem 0.4rem;
  top: -0.6rem;
}

.counter-badge:nth-of-type(1) {
  margin-right: 3.4rem;
  margin-left: 2rem;
}

.counter-badge:nth-of-type(2) {
  margin-right: 3.4rem;
}

.qr-image {
  width: 5rem;
}

.dashboard-card {
  max-width: 22rem;
}

.dashboard-card .card-title {
  position: absolute;
  top: 0;
  left: 0;
  writing-mode: sideways-lr;
  height: 100%;
  margin-bottom: 0;
  background-color: #1f4842;
  color: #fff;
}

@media (max-width: 400px) {
  .main-content .content-wrapper .content-head .theme-btn, .main-content .content-wrapper .modal .theme-btn {
    padding: 0.4rem 1.2rem 0.3rem;
  }
}

.form-group:has(> select) {
  display: flex;
  flex-direction: column;
}

.form-group:has(> select)>label.error {
  order: 1;
}

.form-group .select2-container .select2-selection--single {
  height: auto;
}

.form-group .select2-container--default .select2-selection--single {
  border: none;
}

.form-group .select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default.select2-container--open .select2-search--dropdown .select2-search__field {
  font: 500 1.4rem / 1.2 "poppins-medium";
  width: 100%;
  background-color: #FAFAFC;
  padding: 1.2rem 1.2rem 1rem;
  border: 1px solid #D6D9E0;
  color: #323232;
  border-radius: 0.6rem;
  transition: all 0.3s ease-in-out;
}

.select2-container--default.select2-container--open .select2-search--dropdown .select2-search__field {
  padding: 0.9rem 1rem 0.8rem;
}

.form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
}

.select2-container--default.select2-container--open .select2-results>.select2-results__options {
  font: 500 1.4rem / 1.2 "poppins-medium";
}

/* KBG Presentation CSS */
/* Outfit 300 - Light */
@font-face {
  font-family: "outfit-300";
  src: url("../fonts/Outfit-Light.woff2") format("woff2"), url("../fonts/Outfit-Light.ttf") format("truetype");
  font-display: auto;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
}

/* Outfit 400 - Regular */
@font-face {
  font-family: "outfit-400";
  src: url("../fonts/Outfit-Regular.woff2") format("woff2"), url("../fonts/Outfit-Regular.ttf") format("truetype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

/* Outfit 500 - Medium */
@font-face {
  font-family: "outfit-500";
  src: url("../fonts/Outfit-Medium.woff2") format("woff2"), url("../fonts/Outfit-Medium.ttf") format("truetype");
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}

/* Outfit 600 - SemiBold */
@font-face {
  font-family: "outfit-600";
  src: url("../fonts/Outfit-SemiBold.woff2") format("woff2"), url("../fonts/Outfit-SemiBold.ttf") format("truetype");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}

/* Outfit 700 - Bold */
@font-face {
  font-family: "outfit-700";
  src: url("../fonts/Outfit-Bold.woff2") format("woff2"), url("../fonts/Outfit-Bold.ttf") format("truetype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

/* Outfit 800 - ExtraBold */
@font-face {
  font-family: "outfit-800";
  src: url("../fonts/Outfit-ExtraBold.woff2") format("woff2"), url("../fonts/Outfit-ExtraBold.ttf") format("truetype");
  font-display: auto;
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
}

.ppt-wrapper {
  width: 100%;
  min-height: 100vh;
}

.ppt-wrapper.member {
  min-height: unset;
}

.ppt-wrapper.member .ppt-header .logo-wrapper img {
  max-height: 6rem;
}

.ppt-wrapper.member .profile-card .profile-pic {
  max-width: 18rem;
}

.ppt-wrapper .ppt-header {
  background: linear-gradient(180deg, rgba(24, 25, 255, 0.12) 25%, rgba(68, 7, 134, 0.12) 50%, rgba(255, 62, 63, 0.12) 100%);
}

.ppt-wrapper .ppt-header .logo-wrapper {
  height: 100%;
  padding: 1.6rem 0;
  width: -moz-fit-content;
  width: fit-content;
}

.ppt-wrapper .ppt-header .logo-wrapper img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 8rem;
}

.ppt-wrapper .ppt-header .ppt-timer {
  padding: 0.8rem 1rem;
  background-color: #ffffff;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "outfit-600";
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  vertical-align: middle;
}

.ppt-wrapper .ppt-card {
  background-color: rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0 0.4rem 2rem 0 rgba(91, 91, 91, 0.2509803922);
}

.ppt-wrapper .ppt-card .card-header {
  background: #1819ff;
  padding: 1.5rem;
  font-size: 2.4rem;
  font-family: "outfit-600";
  font-weight: 600;
}

.ppt-wrapper .ppt-card .card-body {
  padding: 2.6rem;
}

.ppt-wrapper .ppt-card .card-body ul {
  list-style-type: disc;
  padding-left: 2.6rem;
}

.ppt-wrapper .ppt-card .card-body ul li {
  margin-bottom: 1.7rem;
  color: rgba(9, 9, 9, 0.8);
  font-size: 2rem;
}

.ppt-wrapper .ppt-card .card-body ul li:last-child {
  margin-bottom: 0;
}

.ppt-wrapper .ppt-card .card-body p {
  color: rgba(9, 9, 9, 0.8);
  font-size: 2rem;
}

.ppt-wrapper .profile-card {
  background-color: rgba(255, 255, 255, 0.5019607843);
  box-shadow: 0 0.4rem 2rem 0 rgba(91, 91, 91, 0.2509803922);
  padding: 1.6rem;
  margin: 0 3rem;
}

.ppt-wrapper .profile-card .profile-pic {
  width: 63%;
  max-width: 23.1rem;
  aspect-ratio: 1/1;
  margin-left: auto;
  margin-right: auto;
  padding: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff3e3f 0%, #440786 50%, #1819ff 75%);
}

.ppt-wrapper .profile-card .profile-pic img {
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: contain;
  background: #e1e1e1;
}

.ppt-wrapper .profile-card h4 {
  font-family: "outfit-500";
  font-weight: 500;
  font-size: 4rem;
  text-align: center;
  vertical-align: middle;
}

.ppt-wrapper .profile-card h5 {
  font-family: "outfit-400";
  font-weight: 400;
  font-size: 2.8rem;
  text-align: center;
  color: rgba(9, 9, 9, 0.6);
}

.ppt-wrapper .profile-card .contact-num {
  font-family: "outfit-600";
  font-weight: 600;
  font-size: 3.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  vertical-align: middle;
  color: #C00000;
  margin-top: 1.2rem;
  line-height: 1.26;
}

.ppt-wrapper .profile-card p {
  color: rgba(9, 9, 9, 0.6);
  margin-top: 0.5rem;
  line-height: 1.11;
}

.ppt-wrapper .stats-row {
  --bs-gutter-x: 0.4rem;
}

.ppt-wrapper .stat-box {
  background: #1819ff;
  box-shadow: 0 0.4rem 2rem 0 rgba(91, 91, 91, 0.2509803922);
  padding: 1.5rem;
  border-radius: 0.4rem;
  margin-top: 1.2rem;
}

.ppt-wrapper .stat-box .counter {
  color: #ffffff;
  font-family: "outfit-800";
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  vertical-align: middle;
  line-height: 1.25;
}

.ppt-wrapper .stat-box p {
  font-family: "outfit-500";
  font-weight: 500;
  line-height: 1.28;
}

.ppt-wrapper .slider-wrapper {
  box-shadow: 0 0.4rem 1.8rem 0.1rem rgba(121, 121, 121, 0.3019607843);
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
}

.ppt-wrapper .slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 77.78%, rgba(24, 25, 255, 0.2) 86%);
  pointer-events: none;
}

.ppt-wrapper .slider-wrapper .img-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ppt-wrapper .slider-wrapper .img-slider .slick-track,
.ppt-wrapper .slider-wrapper .img-slider .slick-list,
.ppt-wrapper .slider-wrapper .img-slider .slick-slide {
  height: 100%;
}

.ppt-wrapper .slider-wrapper .img-slider img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ppt-wrapper .slider-wrapper .img-slider .slick-dots {
  bottom: 3rem;
  z-index: 2;
}

.ppt-wrapper .slider-wrapper .img-slider .slick-dots li button {
  width: 0.9rem;
  height: 0.9rem;
  background-color: rgba(255, 255, 255, 0.4);
}

.ppt-wrapper .slider-wrapper .img-slider .slick-dots li.slick-active button {
  background: #ffffff;
}
.ppt-wrapper .next-profile .profile-pic {
  max-width: 7.7rem;
  aspect-ratio: 1/1;
  padding: 0.1rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff3e3f 0%, #440786 50%, #1819ff 75%);
  box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.2509803922);
  margin-right: 1.2rem;
}

.ppt-wrapper .next-profile .profile-pic img {
  border-radius: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  background: #e1e1e1;
}

.ppt-wrapper .next-profile .img-wrapper {
  width: 12.3rem;
}

.ppt-wrapper .next-profile .img-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.ppt-wrapper .next-profile .profile-info{
  padding-right: 2rem;
}
.ppt-wrapper .next-profile .profile-info h6 {
  font-family: "outfit-500";
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.27;
  color: rgba(9, 9, 9, 0.8);
}

.ppt-wrapper .next-profile .profile-info p {
  color: rgba(9, 9, 9, 0.4392156863);
  font-size: 1.8rem;
}

.ppt-wrapper .custom-grid {
  display: flex;
  gap: 1.7rem;
  margin: 2rem 0;
}

.ppt-wrapper .custom-grid .left {
  width: 31%;
  flex-shrink: 0;
}

.ppt-wrapper .custom-grid .right {
  flex-grow: 1;
}

.ppt-wrapper .custom-grid .right .profile-wrapper {
  --gap: 1.7rem;
  gap: var(--gap);
}

.ppt-wrapper .custom-grid .right .profile-wrapper .profile-card-wrapper {
  width: calc(56% - var(--gap) / 2);
}

.ppt-wrapper .custom-grid .right .profile-wrapper .slider-wrapper {
  width: calc(44% - var(--gap) / 2);
}

.ppt-wrapper .custom-grid .right .profile-wrapper .slider-wrapper,
.ppt-wrapper .custom-grid .right .profile-wrapper .profile-card-wrapper {
  flex-shrink: 0;
  flex-grow: 1;
}

.ppt-wrapper .custom-grid .right .bottom-wrapper {
  --gap: 1.7rem;
  gap: var(--gap);
}

.ppt-wrapper .custom-grid .right .bottom-wrapper .next-profile {
  width: calc(44% - var(--gap) / 2);
  flex-shrink: 0;
  flex-grow: 1;
  align-items: center;
}

.ppt-wrapper .custom-grid .right .bottom-wrapper .stats-row {
  display: flex;
  width: calc(56% - var(--gap) / 2);
  --stat-gap: 0.8rem;
  gap: var(--stat-gap);
}

.ppt-wrapper .custom-grid .right .bottom-wrapper .stats-row .stat-box {
  width: calc((100% - 3 * var(--stat-gap)) / 4);
}

.ppt-wrapper.adjusted .right {
  display: flex;
}

.ppt-wrapper.adjusted .right .bottom-wrapper {
  flex-direction: column;
}

.ppt-wrapper.adjusted .right .bottom-wrapper .stats-row {
  width: 100%;
  flex-wrap: wrap;
}

.ppt-wrapper.adjusted .right .bottom-wrapper .stats-row .stat-box {
  width: calc((100% - var(--stat-gap)) / 2);
}

.ppt-wrapper.adjusted .right .bottom-wrapper .next-profile {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  flex-grow: 0;
}

.ppt-wrapper.adjusted .right .profile-card {
  height: calc(100vh - 15.2rem);
}


.custom-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.custom-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* pages css */
/*# sourceMappingURL=application.css.map */