@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Titillium";
  src: url("fonts/Titillium-Light.woff2") format("woff2"), url("fonts/Titillium-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium";
  src: url("fonts/Titillium-Bold.woff2") format("woff2"), url("fonts/Titillium-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium";
  src: url("fonts/Titillium-Semibold.woff2") format("woff2"), url("fonts/Titillium-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Titillium";
  src: url("fonts/Titillium-Regular.woff2") format("woff2"), url("fonts/Titillium-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #16171B;
}

.notifications {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99;
  padding-left: 20px;
}
.notifications .top-notification {
  padding: 15px;
  gap: 20px;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  max-width: 385px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
  position: relative;
}
.notifications .top-notification .close-notification {
  position: absolute;
  top: 2px;
  right: 7px;
}
.notifications .top-notification .close-notification svg {
  height: 8px;
  width: auto;
}
.notifications .success-n {
  border: solid 3px #00DD63;
  background: radial-gradient(circle at 10% 20%, rgba(0, 221, 99, 0.15), transparent 60%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.notifications .success-n h4 {
  color: #00DD63;
  font-weight: bold;
  margin-bottom: 8px;
}
.notifications .success-n p {
  color: #ffffff;
  font-size: 14px;
}
.notifications .success-n svg {
  height: 16px;
  width: auto;
}
.notifications .danger-n {
  border: solid 3px #FF0048;
  background: radial-gradient(circle at 10% 20%, rgba(255, 0, 22, 0.15), transparent 60%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.notifications .danger-n h4 {
  color: #FF0048;
  font-weight: bold;
  margin-bottom: 8px;
}
.notifications .danger-n p {
  color: #ffffff;
  font-size: 14px;
}
.notifications .danger-n svg {
  height: 20px;
  width: auto;
}
.notifications .alert-n {
  border: solid 3px #FFB747;
  background: radial-gradient(circle at 10% 20%, rgba(255, 183, 71, 0.15), transparent 60%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.notifications .alert-n h4 {
  color: #FFB747;
  font-weight: bold;
  margin-bottom: 8px;
}
.notifications .alert-n p {
  color: #ffffff;
  font-size: 14px;
}
.notifications .alert-n svg {
  height: 20px;
  width: auto;
}

.page-body {
  padding: 20px;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #16171B;
  color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.popup .close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: transparent;
  border: none;
  font-size: 21px;
  color: #000000;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 999;
}

button {
  background-color: #00DCFD;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #FF00BB;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  scale: 0.7;
}
.switch__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.switch__track {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #424242;
  position: relative;
  transition: background 0.2s ease;
  flex: 0 0 auto;
}
.switch__thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
}
.switch__label {
  font-size: 14px;
}
.switch__input:checked + .switch__track {
  background: #00DCFD;
}
.switch__input:checked + .switch__track .switch__thumb {
  transform: translateX(20px);
}
.switch__input:focus-visible + .switch__track {
  outline: 2px solid #00DCFD;
  outline-offset: 3px;
}
.switch__input:disabled + .switch__track {
  opacity: 0.5;
  cursor: not-allowed;
}

.dashboard-counts {
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
}
.dashboard-counts__grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.dashboard-counts__main-card {
  background-color: #1B1C20;
  background-image: radial-gradient(rgba(0, 220, 253, 0.4) -33%, rgba(0, 220, 253, 0) 71%);
  background-size: cover;
  background-position: 0px 164px;
  background-repeat: no-repeat;
  border-radius: 18px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-card__time {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 4px;
  font-size: 70px;
  font-weight: bold;
}
.main-card__time-period {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-left: 6px;
  margin-top: 15px;
  font-weight: 300;
}
.main-card__date {
  font-size: 18px;
  margin: 0 0 24px;
  color: #00DCFD;
  text-align: center;
}
.main-card__center {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.main-card__qr-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #00DCFD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000000;
  text-align: center;
  cursor: pointer;
}
.main-card__qr-circle:hover {
  background: #FF00BB;
  color: #ffffff;
}
.main-card__qr-circle:hover svg path {
  fill: #ffffff;
}
.main-card__qr-icon {
  font-size: 28px;
  line-height: 1;
}
.main-card__qr-text {
  font-size: 14px;
  font-weight: 600;
}
.main-card__footer {
  display: flex;
  justify-content: center;
}
.main-card__button {
  width: 80%;
  max-width: 260px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgb(14.35, 14.35, 14.35);
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
  text-align: center;
  transition: background 0.15s ease;
}
.main-card__button:hover {
  background: rgb(18.4, 224.1391304348, 255);
  color: #16171B;
}

.dashboard-counts__stats {
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .dashboard-counts__stats {
    padding-bottom: 30px !important;
  }
}
.dashboard-counts__stats .swiper-slide {
  height: auto;
}
.dashboard-counts__stats .swiper-pagination {
  margin-top: 10px;
  position: static;
  text-align: center;
}
.dashboard-counts__stats .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.dashboard-counts__stats .swiper-pagination .swiper-pagination-bullet-active {
  background: #00DCFD;
}

.count-card {
  background-color: #1B1C20;
  background-image: radial-gradient(rgba(0, 220, 253, 0.4) -33%, rgba(0, 220, 253, 0) 71%);
  background-size: cover;
  background-position: 0px 50px;
  background-repeat: no-repeat;
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-width: 75vw;
}
.count-card__value {
  font-size: 50px;
  font-weight: 700;
  color: #00DCFD;
  margin-bottom: 6px;
}
.count-card__label {
  font-size: 16px;
}
.count-card--highlight {
  background-image: radial-gradient(rgba(255, 0, 187, 0.55) 0%, rgba(255, 0, 187, 0) 65%);
}
.count-card--highlight .count-card__value {
  color: #FF00BB;
}
@media (min-width: 768px) {
  .dashboard-counts__grid {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1.4fr);
  }
  .dashboard-counts__stats .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 14px;
    transform: none !important;
  }
  .dashboard-counts__stats .swiper-slide {
    width: 100% !important;
  }
  .dashboard-counts__stats .swiper-pagination {
    display: none;
  }
  .count-card {
    min-width: 0;
  }
  .count-card--wide {
    grid-column: 1/-1;
  }
}
/* ------------------------
   Generic Section Wrapper
-------------------------*/
.data-section {
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  padding: 20px 0px;
}
.data-section__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.data-section__title {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.data-section .add-icon {
  width: 28px;
  height: 28px;
  background: #00DCFD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.data-section .add-icon:hover {
  background: #FF00BB;
}
.data-section .add-icon:hover svg path {
  fill: #ffffff !important;
}

.primary-label {
  background: #00DCFD;
  color: #16171B;
  font-size: 12px;
  padding: 3px 10px 4px 10px;
  font-weight: bold;
  border-radius: 30px;
  margin-bottom: 1px;
  display: inline-block;
}

.secondary-label {
  background: #FF00BB;
  color: #ffffff;
  font-size: 12px;
  padding: 3px 10px 4px 10px;
  font-weight: bold;
  border-radius: 30px;
  margin-bottom: 1px;
  display: inline-block;
}

/* ------------------------
   Tabs (Generic)
-------------------------*/
.data-tabs {
  display: flex;
  gap: 8px;
}

.data-tab {
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 4px 14px;
  font-size: 13px;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
}
.data-tab--active {
  background: transparent;
  color: #FF00BB;
  border-color: #FF00BB;
}
.data-tab:hover {
  background: #FF00BB;
  color: #ffffff;
}

/* ------------------------
   Table Wrapper
-------------------------*/
.data-table__wrapper {
  background: #1B1C20;
  border-radius: 14px;
  overflow: auto;
}

/* ------------------------
   Main Table
-------------------------*/
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead {
  background: rgba(0, 0, 0, 0.3);
}
.data-table thead th {
  padding: 10px 18px;
  font-weight: 500;
  text-align: left;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.data-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.data-table tbody tr:last-child {
  border-bottom: none;
}
.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.data-table tbody td {
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
}
.data-table tbody td a {
  color: #00DCFD;
}
.data-table tbody td:first-child {
  text-align: left;
}
.data-table input[type=checkbox] {
  width: 14px;
  height: 14px;
  accent-color: #00DCFD;
  cursor: pointer;
}

/* ------------------------
   RESPONSIVE TABLE
-------------------------*/
@media (max-width: 768px) {
  .data-table__wrapper {
    background: transparent;
  }
  .data-table thead {
    display: none;
  }
  .data-table tbody {
    display: block;
  }
  .data-table tbody tr {
    display: block;
    margin: 0 0px 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgb(16.9, 16.9, 16.9);
  }
  .data-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    align-items: center;
  }
  .data-table tbody td::before {
    content: attr(data-label);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0px;
  }
}
/* ------------------------
   Mobile Tweaks
-------------------------*/
@media (max-width: 480px) {
  .data-section__title {
    font-size: 18px;
  }
  .data-tab {
    font-size: 12px;
    padding: 3px 10px;
  }
}
.table-icon {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.table-icon svg path {
  transition: all 0.15s ease;
}
.table-icon:hover {
  background: #00DCFD;
  border-radius: 50%;
}
.table-icon:hover svg path {
  fill: #16171B;
}

.table-header-icon {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  background: #00DCFD;
  border-radius: 50%;
}
.table-header-icon svg path {
  transition: all 0.15s ease;
}
.table-header-icon:hover {
  background: #FF00BB;
}
.table-header-icon:hover svg path {
  fill: #ffffff;
}

.filter-icon {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #00DCFD;
  text-decoration: none;
}
.filter-icon span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  background: #00DCFD;
  border-radius: 50%;
}
.filter-icon span svg path {
  transition: all 0.15s ease;
}
.filter-icon:hover {
  color: #FF00BB;
}
.filter-icon:hover span {
  background: #FF00BB;
}
.filter-icon:hover span svg path {
  fill: #ffffff;
}

.table-pagination {
  text-align: center;
  margin-top: 20px;
}
.table-pagination ul {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.table-pagination ul li a {
  color: #ffffff;
  text-decoration: none;
}
.table-pagination ul li a:hover {
  color: #00DCFD;
}
.table-pagination ul li:not(:first-child):not(:last-child) a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-pagination ul li:not(:first-child):not(:last-child) a:hover {
  background: #00DCFD;
  color: #16171B;
}
.table-pagination ul .active a {
  background: #FF00BB;
  color: #ffffff;
}

.search-box {
  position: relative;
}
.search-box svg {
  position: absolute;
  top: 8px;
  right: 10px;
}
.search-box .form-input {
  padding: 4px 26px 4px 8px;
}

.page-wrapper {
  display: flex;
  min-height: 100vh;
  height: 100%;
}
.page-wrapper .page-left {
  width: 65px;
  border-right: solid 1px #242424;
  text-align: center;
}
.page-wrapper .page-right {
  width: calc(100% - 65px);
}
.page-wrapper .logo-dashboard {
  padding: 12px 0px 0px 0px;
  background: radial-gradient(circle at top, rgba(0, 220, 253, 0.5) -50%, rgb(5, 50, 61) 25%, rgb(22, 23, 27) 50%, rgb(22, 23, 27) 100%);
}
.page-wrapper .logo-dashboard img {
  max-width: 100%;
}

.nav-dashboard {
  padding: 12px 0 0 0;
  background: radial-gradient(circle at left center, rgb(12, 111, 131) 0%, rgba(5, 50, 61, 0.85) 25%, rgba(22, 23, 27, 0.7) 55%, rgb(22, 23, 27) 100%);
}

.page-left ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}
.page-left ul li {
  position: relative;
}
.page-left ul li a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: all 0.15s ease;
  border-radius: 10%;
  position: relative;
}
.page-left ul li a:hover {
  background: #00DCFD;
  border-radius: 50%;
  opacity: 1;
}
.page-left ul li a:hover svg path {
  fill: #16171B;
}
.page-left ul .active a {
  opacity: 1;
}
.page-left ul .active a:hover {
  background: transparent;
  border-radius: 50%;
  opacity: 1;
}
.page-left ul .active a:hover svg path {
  fill: #ffffff;
}
.page-left ul .active:before {
  content: "";
  position: absolute;
  background: radial-gradient(circle at left center, rgba(0, 220, 253, 0.45) 0%, rgba(0, 110, 130, 0.35) 36%, rgb(22, 23, 27) 60%, rgb(22, 23, 27) 1000%);
  left: -14px;
  width: 64px;
  height: 150%;
  top: -7px;
}

.topbar {
  background: linear-gradient(to right, #16171B, rgb(28.8693877551, 30.1816326531, 35.4306122449));
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-bottom: solid 1px #242424;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar .page-title {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  padding: 10px;
}
.topbar .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  background: radial-gradient(circle at bottom center, rgba(0, 220, 253, 0.35) 0%, rgba(0, 110, 130, 0.25) 30%, rgba(22, 23, 27, 0.6) 65%, rgba(22, 23, 27, 0) 100%);
  padding: 10px 20px;
}
.topbar .notif-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.topbar .notif-wrap svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}
.topbar .notif-wrap .notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF00BB;
  box-shadow: 0 0 6px rgba(255, 0, 187, 0.9);
}
.topbar .date-pill {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #16171B;
  font-size: 14px;
  color: #ffffff;
}
.topbar .user-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
}
.topbar .user-menu .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.topbar .user-menu .user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.topbar .user-menu .user-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.topbar .user-menu .user-text .studio {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.topbar .user-menu .user-text .name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.topbar .user-menu .user-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  width: 200px;
  padding: 12px 0;
  background: #161616;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 20;
}
.topbar .user-menu .user-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 34px;
  width: 12px;
  height: 12px;
  background: #161616;
  transform: rotate(45deg);
}
.topbar .user-menu .user-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.15s ease;
}
.topbar .user-menu .user-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.topbar .user-menu .user-dropdown .dropdown-item svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}
.topbar .user-menu:hover .user-dropdown, .topbar .user-menu:focus-within .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}

.menu-overlay {
  display: none;
}

@media (max-width: 768px) {
  .page-title,
  .notif-wrap,
  .date-pill {
    display: none !important;
  }
  .hamburger-menu {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hamburger-menu img {
    height: 38px;
  }
  .page-wrapper .page-left {
    left: -65px;
    position: absolute;
  }
  .page-wrapper .page-right {
    width: calc(100% - 0px);
  }
  .show-nav .page-left {
    left: 0px;
    position: absolute;
    top: 61px;
    z-index: 2;
    background: rgba(22, 23, 27, 0.2588235294);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    height: calc(100vh - 61px);
  }
  .show-nav .logo-dashboard {
    display: none;
  }
  .show-nav .menu-overlay {
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.62);
    width: 100%;
    height: calc(100vh - 61px);
    top: 61px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 1;
  }
}
.default-btn {
  padding: 10px 50px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  background: #00DCFD;
  color: #000000;
  box-shadow: 0 0 14px rgba(0, 220, 253, 0.6);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.default-btn:hover {
  box-shadow: 0 0 18px rgba(0, 220, 253, 0.8);
  transform: translateY(-1px);
  background: #00DCFD;
}
.default-btn:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(255, 0, 187, 0.7);
  background: #FF00BB;
  color: #ffffff;
}
@media (max-width: 767px) {
  .default-btn {
    width: 100%;
  }
}

.form-group {
  position: relative;
}

.form-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  background: #161616;
  border: 2px solid #2E3537;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-input::-moz-placeholder {
  color: #ffffff;
}
.form-input::placeholder {
  color: #ffffff;
}
.form-input:focus {
  border-color: #00DCFD;
  box-shadow: 0 0 0 1px rgba(0, 220, 253, 0.45);
  background: #070707;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 27px;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.custom-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}
.custom-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-control .control-shape {
  min-width: 18px;
  height: 18px;
  background: #161616;
  border: 2px solid #2E3537;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.custom-control .control-shape::after {
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}
.custom-control.radio .control-shape {
  border-radius: 50%;
}
.custom-control.radio .control-shape::after {
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
}
.custom-control.checkbox .control-shape::after {
  width: 7px;
  height: 3px;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(-50deg);
  margin-top: -2px;
}
.custom-control input:checked + .control-shape {
  background: #00DCFD;
  border-color: #00DCFD;
}
.custom-control input:checked + .control-shape::after {
  opacity: 1;
}

input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 1;
  cursor: pointer;
}

input[type=date]::-webkit-calendar-picker-indicator:hover {
  filter: brightness(0) invert(1);
}

.red-text {
  color: #FF0048;
  text-align: left;
  width: 100%;
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 4px;
  border: 2px solid #444;
}

::-webkit-scrollbar-track {
  background: #222;
  border-radius: 4px;
}

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

.login-wrapper {
  text-align: center;
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../../images/brick-bg.jpg) no-repeat center center #000000;
  background-size: cover;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}
.login-wrapper .default-btn {
  width: 100%;
}
.login-wrapper .login-card {
  max-width: 485px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 32px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.login-wrapper .login-card:before {
  content: "";
  border-radius: 1003px;
  background: #000000;
  filter: blur(60px);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  scale: 2;
}
.login-wrapper .login-inner {
  position: relative;
}
.login-wrapper .logo {
  margin-bottom: 20px;
  text-align: center;
}
.login-wrapper .logo img {
  max-width: 100%;
}
.login-wrapper .login-title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #ffffff;
}
.login-wrapper .login-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 28px;
  color: #00DCFD;
}
.login-wrapper form {
  max-width: 375px;
  margin: 0 auto;
}
.login-wrapper form .form-group {
  margin-bottom: 15px;
}
.login-wrapper form .form-group .form-input {
  padding: 14px 12px;
  padding-left: 40px;
  font-size: 15px;
  padding-left: 40px;
}
.login-wrapper .remember-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 20px;
  font-size: 13px;
}
.login-wrapper .remember-row label {
  color: white;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}
.login-wrapper .remember-row input[type=checkbox] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: #00DCFD;
}
.login-wrapper .forgot-wrap {
  margin-top: 14px;
  text-align: center;
}
.login-wrapper .forgot-link {
  font-size: 13px;
  color: #00DCFD;
  text-decoration: none;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  text-decoration: underline;
}
.login-wrapper .forgot-link:hover {
  text-decoration: none;
}
@media (max-width: 480px) {
  .login-wrapper .login-card {
    padding: 30px 20px 24px;
  }
  .login-wrapper .login-title {
    font-size: 30px;
  }
  .login-wrapper .login-subtitle {
    font-size: 16px;
  }
}
.login-wrapper .red-text {
  color: #FF0048;
  text-align: left;
  width: 100%;
  display: block;
  font-size: 12px;
  margin-top: 8px;
}
.login-wrapper .twoFA-card {
  max-width: 830px;
}
.login-wrapper .twoFA-card .two-f-a {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.login-wrapper .twoFA-card .two-f-a input {
  width: 52px;
  text-align: center;
  padding: 14px 7px;
}
@media (max-width: 767px) {
  .login-wrapper .twoFA-card .two-f-a input {
    width: 41px;
    padding: 10px;
  }
}

.age-form-section {
  background: url(../../images/brick-bg.jpg) no-repeat center center #000000;
  background-size: cover;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  height: 100%;
  color: #ffffff;
}
.age-form-section div {
  position: relative;
}
.age-form-section .age-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px;
  position: relative;
}
.age-form-section .age-form-container:before {
  content: "";
  border-radius: 1003px;
  background: #000000;
  filter: blur(60px);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  scale: 2;
  z-index: 0;
}
.age-form-section .logo {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 30px;
}
.age-form-section .logo img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .age-form-section .logo img {
    max-width: 80%;
  }
}
.age-form-section h2 {
  font-size: 30px;
  text-align: center;
  padding: 30px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.age-form-section .back-link {
  color: #00DCFD;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 767px) {
  .age-form-section .back-link {
    position: relative;
  }
}
.age-form-section .age-question-wrapper {
  position: relative;
}
.age-form-section .age-question-wrapper .age-question-title {
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: 600;
}
.age-form-section .age-question-wrapper .age-options {
  display: flex;
  align-items: center;
  gap: 16px;
}
.age-form-section .age-forms {
  margin-top: 24px;
  position: relative;
}
.age-form-section .age-forms .age-form {
  display: none;
}
.age-form-section .age-forms .age-form.is-active {
  display: block;
}
.age-form-section .age-forms .age-form .form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.age-form-section .age-forms .age-form .form-grid .form-group {
  width: 100%;
}
.age-form-section .age-forms .age-form .form-grid .form-input {
  width: 100%;
}
.age-form-section .age-forms .age-form .sub-heading {
  margin: 24px 0 12px;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .age-form-section .age-forms .age-form .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .age-form-section .age-question-wrapper {
    align-items: flex-start;
  }
  .age-form-section .age-question-wrapper .age-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .age-form-section .age-forms .age-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.participant-form-actions {
  margin-top: 20px;
}

.participant-form-section {
  color: #ffffff;
  margin-top: 24px;
  /* Generic form grid */
  /* Inline radio / checkbox rows */
  /* Actions wrapper – no direct button styling here */
}
.participant-form-section .participant-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.participant-form-section .form-section {
  margin-bottom: 12px;
}
.participant-form-section .form-section .section-title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}
.participant-form-section .form-section .section-subtitle {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.participant-form-section .form-section .helper-text {
  margin: 0 0 8px;
  font-size: 12px;
  font-style: italic;
  color: #00DCFD;
}
.participant-form-section .form-grid {
  display: grid;
  gap: 12px;
}
.participant-form-section .form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.participant-form-section .form-grid--address {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.participant-form-section .form-group {
  width: 100%;
}
.participant-form-section .form-group--full {
  grid-column: 1/-1;
}
.participant-form-section .form-group--stretch-2 {
  grid-column: span 2;
}
.participant-form-section .form-input {
  width: 100%;
  /* your existing input styles will apply here */
}
.participant-form-section .inline-options {
  display: flex;
  align-items: center;
  gap: 16px;
}
.participant-form-section .inline-options--wrap {
  flex-wrap: wrap;
  row-gap: 8px;
}
.participant-form-section .inline-options .custom-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* your existing custom-control styles handle the visuals */
}
.participant-form-section .participant-form-actions {
  margin-top: 16px;
  /* layout only – button visual styles are in your own SCSS */
}

/* Breakpoints */
@media (max-width: 900px) {
  .participant-form-section .form-grid--3, .participant-form-section .form-grid--address {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .participant-form-section .form-grid .form-group--stretch-2 {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .participant-form-section .form-grid--3, .participant-form-section .form-grid--address {
    grid-template-columns: 1fr;
  }
  .participant-form-section .form-grid .form-group--full,
  .participant-form-section .form-grid .form-group--stretch-2 {
    grid-column: 1/-1;
  }
  .participant-form-section .inline-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.signature-consent-row a {
  color: #00DCFD;
}

.form-group .kbw-signature {
  display: block;
  width: 400px;
  max-width: 100%;
  height: 220px;
  margin-bottom: 40px;
  padding: 0;
  position: relative;
  touch-action: none;
  -ms-touch-action: none;
}
/* DO NOT set width/height on the inner canvas — jquery.signature snapshots
   element.width()/height() at init. Any CSS scaling of the canvas breaks
   pointer→pixel mapping on mobile and causes offset / unresponsive strokes. */
.form-group .kbw-signature canvas {
  display: block;
  margin-bottom: 20px;
  width: auto;
  height: auto;
  touch-action: none;
  -ms-touch-action: none;
}

.agreement-form-section {
  background: url(../../images/brick-bg.jpg) no-repeat center center #000000;
  background-size: cover;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  height: 100%;
  color: #ffffff;
}
.agreement-form-section div {
  position: relative;
}
.agreement-form-section .agreement-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px;
  position: relative;
}
.agreement-form-section .agreement-form-container:before {
  content: "";
  border-radius: 1003px;
  background: #000000;
  filter: blur(60px);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  scale: 2;
  z-index: 0;
}
.agreement-form-section .logo {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 30px;
}
.agreement-form-section .logo img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .agreement-form-section .logo img {
    max-width: 80%;
  }
}
.agreement-form-section h2 {
  font-size: 30px;
  text-align: center;
  padding: 30px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.agreement-form-section .back-link {
  color: #00DCFD;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 767px) {
  .agreement-form-section .back-link {
    position: relative;
  }
}
.agreement-form-section .agreement-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agreement-form-section .form-section .section-title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}
.agreement-form-section .form-section .section-subtitle {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}
.agreement-form-section .form-section .helper-text {
  margin: 0 0 8px;
  font-size: 12px;
  font-style: italic;
  color: #00DCFD;
}
.agreement-form-section .form-section .helper-text--small {
  margin-top: 8px;
  font-size: 11px;
}
.agreement-form-section .form-grid {
  display: grid;
  gap: 12px;
}
.agreement-form-section .form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.agreement-form-section .form-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.agreement-form-section .form-grid--address {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.agreement-form-section .form-group {
  width: 100%;
}
.agreement-form-section .form-group--full {
  grid-column: 1/-1;
}
.agreement-form-section .form-group--stretch-2 {
  grid-column: span 2;
}
.agreement-form-section .form-input {
  width: 100%;
}
.agreement-form-section .form-textarea {
  min-height: 180px;
  resize: vertical;
}
.agreement-form-section .inline-options {
  display: flex;
  align-items: center;
  gap: 16px;
}
.agreement-form-section .inline-options--wrap {
  flex-wrap: wrap;
  row-gap: 8px;
}
.agreement-form-section .inline-options .custom-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.agreement-form-section .signature-consent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.agreement-form-section .signature-consent-row .signature-consent {
  flex: 1;
}
.agreement-form-section .signature-consent-row .signature-date {
  max-width: 200px;
  width: 100%;
}
.agreement-form-section .terms-link {
  display: inline-block;
  font-size: 13px;
  text-decoration: underline;
  color: #00DCFD;
  margin: 6px 0px 0px 29px;
}
.agreement-form-section .file-upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.agreement-form-section .agreement-form-actions {
  margin-top: 8px;
  /* no styling for .btn-submit here – you already have it */
}

/* Breakpoints */
@media (max-width: 900px) {
  .agreement-form-section .form-grid--3, .agreement-form-section .form-grid--4, .agreement-form-section .form-grid--address {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .agreement-form-section .form-grid .form-group--stretch-2 {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .agreement-form-section .form-grid--3, .agreement-form-section .form-grid--address {
    grid-template-columns: 1fr;
  }
  .agreement-form-section .form-grid .form-group--full,
  .agreement-form-section .form-grid .form-group--stretch-2 {
    grid-column: 1/-1;
  }
  .agreement-form-section .inline-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .agreement-form-section .signature-consent-row {
    flex-direction: column;
  }
  .agreement-form-section .signature-consent-row .signature-date {
    max-width: 100%;
  }
  .agreement-form-section .file-upload-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}
.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: #1e1e1e;
  color: white;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 10px;
  position: relative;
  padding: 30px 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.popup-box h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
}
.popup-box .popup-content {
  margin-top: 15px;
  overflow-y: auto;
  padding-right: 10px;
  max-height: calc(80vh - 80px);
}
.popup-box .popup-content p {
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #dcdcdc;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
}
.close-btn:hover {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .popup-box {
    padding: 20px;
  }
  .popup-box h2 {
    font-size: 18px;
  }
}
.dashboard-table {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}
.dashboard-table th:first-child {
  width: 36px;
}

.QR-code-popup {
  max-width: 345px;
  width: 100%;
  text-align: center;
}
.QR-code-popup h2 {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
}
.QR-code-popup .instruction {
  font-size: 14px;
  font-style: italic;
  color: #00DCFD;
  margin-bottom: 20px;
}
.QR-code-popup .qr-img {
  border-radius: 20px;
  max-width: 100%;
}
.QR-code-popup h3 {
  font-size: 30px;
  margin-top: 20px;
  color: #00DCFD;
}
.QR-code-popup label {
  font-size: 16px;
  color: #727272;
  margin-bottom: 10px;
}
.QR-code-popup .more-details {
  font-size: 14px;
  color: #ffffff;
}

.check-in-admin {
  max-width: 430px;
  width: 90%;
  background-image: radial-gradient(rgba(0, 220, 253, 0.4) -33%, rgba(0, 220, 253, 0) 71%);
  background-position: -130px 276px;
  background-repeat: no-repeat;
  background-size: 158%;
}
.check-in-admin h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.check-in-admin .admin-time-details {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.check-in-admin .admin-time-details img {
  border-radius: 50%;
  max-width: 100%;
}
.check-in-admin .admin-time-details > div {
  width: 33.3333333333%;
}
.check-in-admin .admin-time-details .time-running-box {
  text-align: right;
  font-size: 30px;
  color: #ffffff;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
}
.check-in-admin .admin-time-details .time-running-box span {
  font-size: 10px;
  margin-left: 4px;
}
.check-in-admin .admin-time-details .day-month-box {
  font-size: 14px;
  color: #00DCFD;
}
.check-in-admin h4 {
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}
.check-in-admin .studio-name {
  font-size: 14px;
  color: #FF00BB;
  text-align: center;
  margin-top: 5px;
}
.check-in-admin .check-in-btns-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.check-in-admin .check-in-btns-links a {
  width: 140px;
  height: 140px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707070;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
}
.check-in-admin .check-in-btns-links a.active:nth-child(1) {
  color: #00DCFD;
  background: rgba(0, 0, 0, 0.6);
}
.check-in-admin .check-in-btns-links a.active:nth-child(1) svg path {
  fill: #00DCFD;
}
.check-in-admin .check-in-btns-links a.active:nth-child(2) {
  color: #FF00BB;
  background: rgba(0, 0, 0, 0.6);
}
.check-in-admin .check-in-btns-links a.active:nth-child(2) svg path {
  fill: #FF00BB;
}

.manual-check-in-out {
  max-width: 430px;
  width: 90%;
  background-image: radial-gradient(rgba(0, 220, 253, 0.4) -33%, rgba(0, 220, 253, 0) 71%);
  background-position: -130px 276px;
  background-repeat: no-repeat;
  background-size: 158%;
}
.manual-check-in-out h3 {
  font-weight: bold;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 10px;
}
.manual-check-in-out ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
}
.manual-check-in-out ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.manual-check-in-out ul .admin-detal-manual {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #ffffff;
}
.manual-check-in-out ul .admin-detal-manual img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.manual-check-in-out ul .manual-links-box {
  display: flex;
  gap: 5px;
}
.manual-check-in-out ul .manual-links-box a {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}
.manual-check-in-out ul .manual-links-box a.manual-check-in-btn {
  color: #00DCFD;
  border: solid 1px #00DCFD;
}
.manual-check-in-out ul .manual-links-box a.manual-check-in-btn:hover {
  background: #00DCFD;
  color: #000000;
}
.manual-check-in-out ul .manual-links-box a.manual-check-out-btn {
  color: #FF00BB;
  border: solid 1px #FF00BB;
}
.manual-check-in-out ul .manual-links-box a.manual-check-out-btn:hover {
  background: #FF00BB;
  color: #ffffff;
}

.students-links {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.students-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.students-conts .swiper-wrapper {
  height: auto;
}

.reports-container {
  display: flex;
}
@media (min-width: 1023px) {
  .reports-container {
    min-height: calc(100vh - 62px);
  }
}
.reports-container .reports-left {
  border-right: solid 1px #242424;
  width: 200px;
}
.reports-container .reports-left ul {
  padding-top: 20px;
}
.reports-container .reports-left ul li {
  padding: 5px 0px;
}
.reports-container .reports-left ul li a {
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-size: 14px;
  position: relative;
}
.reports-container .reports-left ul li a:hover {
  color: #00DCFD;
}
.reports-container .reports-left ul .active a {
  color: #00DCFD;
}
.reports-container .reports-left ul .active a:before {
  content: "";
  position: absolute;
  background: radial-gradient(circle at left center, rgba(0, 220, 253, 0.45) 10%, rgba(0, 110, 130, 0.35) 36%, rgba(22, 23, 27, 0) 60%, rgba(22, 23, 27, 0) 1000%);
  left: 0px;
  width: 58px;
  height: 120%;
  top: -3px;
  z-index: 0;
}
.reports-container .reports-body {
  display: flex;
  padding: 20px;
  justify-content: center;
  width: calc(100% - 200px);
}

.reports-header {
  justify-content: space-between;
}

.reports-table {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

.reports-right {
  background: #16171B;
  border-left: solid 1px #242424;
  width: 300px;
  position: absolute;
  right: 0px;
  top: 0px;
  height: calc(100vh - 0px);
  display: none;
  z-index: 99999;
}
.reports-right .filter-header {
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 10px;
  font-size: 25px;
  color: #ffffff;
  position: relative;
}
.reports-right .filter-header .filter-close-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  margin-left: auto;
}
.reports-right .filter-header .filter-close-btn:hover {
  background: #00DCFD;
}
.reports-right .filter-body {
  padding: 0px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reports-right .filter-body form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .reports-container .reports-body {
    width: 100%;
  }
  .reports-left {
    display: none;
    position: absolute;
    background: #16171B;
    z-index: 2;
    height: calc(100vh - 61px);
    left: 66px;
  }
  .show-nav .reports-left {
    display: block;
  }
}
.reports-body .swiper {
  width: 100%;
}
.reports-body .swiper-slide {
  text-align: center;
  font-size: 16px;
  padding: 20px;
}

.table-icons-box {
  display: flex;
  gap: 5px;
}

.counts-slider {
  padding-bottom: 35px !important;
}
.counts-slider .swiper-wrapper .count-card {
  width: 250px;
  background: #1B1C20;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background-image: radial-gradient(rgba(0, 220, 253, 0.4) -33%, rgba(0, 220, 253, 0) 71%);
  background-size: cover;
  background-position: 0px 50px;
  background-repeat: no-repeat;
}
.counts-slider .swiper-wrapper .count-card .count-card-value {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #00DCFD;
}
.counts-slider .swiper-wrapper .count-card .count-card-label {
  font-size: 14px;
  color: #ffffff;
}
.counts-slider .swiper-wrapper .count-card-highlited {
  background-image: radial-gradient(rgba(255, 0, 187, 0.55) 0%, rgba(255, 0, 187, 0) 65%);
}
.counts-slider .swiper-wrapper .count-card-highlited .count-card-value {
  color: #FF00BB;
}
@media (min-width: 1024px) {
  .counts-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .counts-slider .swiper-pagination {
    display: none;
  }
}

.counts-title {
  margin-bottom: 20px;
}

.counts-dashboard .swiper-wrapper .count-card {
  width: 140px;
}
@media (min-width: 1024px) {
  .counts-dashboard .swiper-wrapper {
    flex-wrap: wrap;
  }
}

.default-popup {
  max-width: 756px;
  width: 90%;
  background-image: radial-gradient(rgba(0, 220, 253, 0.4) -33%, rgba(0, 220, 253, 0) 71%);
  background-position: -130px 276px;
  background-repeat: no-repeat;
  background-size: 158%;
}
.default-popup .popup-header {
  font-size: 23px;
  font-weight: bold;
  border-bottom: solid 1px #2E3537;
  padding-bottom: 15px;
}
.default-popup .popup-footer {
  font-size: 23px;
  font-weight: bold;
  border-top: solid 1px #2E3537;
  text-align: right;
  padding-top: 15px;
}
.default-popup .popup-content {
  padding: 15px 0px;
}
.default-popup .form-grid {
  display: grid;
  gap: 12px;
}
.default-popup .form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.default-popup .form-grid--address {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.default-popup .inline-options {
  display: flex;
  gap: 20px;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
@media (max-width: 600px) {
  .default-popup .form-grid--3, .default-popup .form-grid--address {
    grid-template-columns: 1fr;
  }
  .default-popup .form-grid .form-group--full,
  .default-popup .form-grid .form-group--stretch-2 {
    grid-column: 1/-1;
  }
}

.add-studio-popup {
  max-width: 450px;
}
.add-studio-popup h4 {
  margin: 10px 0px;
  font-weight: bold;
}
.add-studio-popup ul {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.add-studio-popup ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.add-studio-popup ul li img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.profile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  justify-content: center;
}
.profile-container .profile-left {
  text-align: center;
  width: 290px;
}
@media (max-width: 1023px) {
  .profile-container .profile-left {
    width: 100%;
  }
}
.profile-container .profile-left img {
  border-radius: 20px;
  margin-bottom: 10px;
  max-width: 100%;
}
.profile-container .profile-left h3 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 5px;
}
.profile-container .profile-left label {
  color: #727272;
  font-size: 16px;
}
.profile-container .profile-left .profile-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  row-gap: 10px;
}
.profile-container .profile-left .profile-links a {
  color: #00DCFD;
  text-decoration: underline;
}
.profile-container .profile-left .profile-links a:hover {
  color: #FF00BB;
}
.profile-container .profile-right {
  width: calc(100% - 320px);
}
@media (max-width: 1023px) {
  .profile-container .profile-right {
    width: 100%;
  }
}
.profile-container .user-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-container .user-detail-top .user-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #ffffff;
}
.profile-container .user-detail-top .user-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.profile-container .user-detail-top .edit-profile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00DCFD;
  text-decoration: none;
}
.profile-container .user-detail-top .edit-profile-link span {
  width: 30px;
  height: 30px;
  background: #00DCFD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-container .user-detail-top .edit-profile-link:hover {
  color: #FF00BB;
}
.profile-container .user-detail-top .edit-profile-link:hover span {
  background: #FF00BB;
}
.profile-container .user-detail-top .edit-profile-link:hover span svg path {
  stroke: #ffffff;
}
.profile-container .user-detail-bottom {
  border-radius: 10px;
  border: 1px solid #2E3537;
  background: #161616;
  margin-top: 20px;
  padding: 20px;
}
.profile-container .user-detail-bottom .details-top-section {
  border-bottom: 1px solid #2E3537;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.profile-container .details-bottom-section {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.profile-container .details-bottom-section h3 {
  color: #ffffff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
.profile-container .details-bottom-section .main-user-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 10px;
}
.profile-container .main-user-detail label {
  color: #9D9D9D;
  font-size: 15px;
}
.profile-container .main-user-detail p {
  color: #ffffff;
  font-size: 18px;
}

.volunteer-form-section {
  background: url(../../images/brick-bg.jpg) no-repeat center center #000000;
  background-size: cover;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  min-height: 100vh;
}
.volunteer-form-section div {
  position: relative;
}
.volunteer-form-section .volunteer-form-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 16px;
  position: relative;
}
.volunteer-form-section .volunteer-form-container:before {
  content: "";
  border-radius: 1003px;
  background: #000000;
  filter: blur(60px);
  width: 125%;
  height: 100%;
  position: absolute;
  left: -12%;
  top: 0px;
  z-index: 0;
}
.volunteer-form-section .logo {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 30px;
}
.volunteer-form-section .logo img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .volunteer-form-section .logo img {
    max-width: 80%;
  }
}
.volunteer-form-section h2 {
  font-size: 30px;
  text-align: center;
  padding: 30px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.volunteer-form-section .wizard__sub {
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  position: relative;
  z-index: 99;
}
.volunteer-form-section .back-link {
  color: #00DCFD;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 767px) {
  .volunteer-form-section .back-link {
    position: relative;
  }
}
.volunteer-form-section .wizard {
  color: #ffffff;
  font-family: "Titillium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: grid;
  place-items: start center;
}
.volunteer-form-section .wizard__header,
.volunteer-form-section .wizard__body {
  width: min(1024px, 100%);
}
.volunteer-form-section .wizard__header {
  text-align: center;
  margin: 0 auto 18px;
}
.volunteer-form-section .wizard__title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 28px);
}
.volunteer-form-section .wizard__sub {
  margin: 0 auto 16px;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
}
.volunteer-form-section .wizard__body {
  margin: 0 auto;
}
.volunteer-form-section .stepper {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.volunteer-form-section .stepper__dot {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  border: 1px solid #161616;
  background: #161616;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.volunteer-form-section .stepper__dot:hover {
  transform: translateY(-1px);
}
.volunteer-form-section .stepper__dot.is-active {
  background: #00DCFD;
  border-color: transparent;
  color: #000000;
}
.volunteer-form-section .stepper__dot.is-complete {
  background: #161616;
  border-color: #161616;
  color: #ffffff;
}
.volunteer-form-section .stepper__line {
  width: 28px;
  height: 4px;
  background: #161616;
  border-radius: 999px;
}
.volunteer-form-section .step {
  display: none;
  animation: wizardFade 160ms ease;
}
.volunteer-form-section .step.is-active {
  display: block;
}
@keyframes wizardFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.volunteer-form-section .section-title {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.volunteer-form-section .helper {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}
.volunteer-form-section .link {
  display: inline-block;
  margin-bottom: 12px;
  color: #00DCFD;
  text-decoration: none;
  font-weight: 600;
}
.volunteer-form-section .link:hover {
  text-decoration: underline;
}
.volunteer-form-section .grid {
  display: grid;
  gap: 12px;
}
.volunteer-form-section .grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.volunteer-form-section .grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 12px;
}
.volunteer-form-section .grid--2-1 {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 900px) {
  .volunteer-form-section .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .volunteer-form-section .stepper__line {
    width: 20px;
  }
}
@media (max-width: 640px) {
  .volunteer-form-section .grid--3,
  .volunteer-form-section .grid--2,
  .volunteer-form-section .grid--2-1 {
    grid-template-columns: 1fr;
  }
}
.volunteer-form-section .choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.volunteer-form-section .choices .grid {
  width: 100%;
  margin-top: 6px;
}
.volunteer-form-section .wizard__footer {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .volunteer-form-section .wizard__footer {
    flex-direction: column-reverse;
  }
  .volunteer-form-section .wizard__footer > * {
    width: 100%;
  }
}
.volunteer-form-section .btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}
.volunteer-form-section .btn:hover {
  transform: translateY(-1px);
}
.volunteer-form-section .btn--primary {
  background: #00DCFD;
  color: #000000;
}
.volunteer-form-section .btn--ghost {
  background: white;
  border-color: white;
  color: #16171B;
}
.volunteer-form-section .panel {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(22, 23, 27, 0.45);
  padding: 12px 14px;
}
.volunteer-form-section .panel__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
}
.volunteer-form-section .other-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.volunteer-form-section .stepper__line.is-complete {
  background: #00DCFD;
}
.volunteer-form-section .stepper__dot.is-complete {
  background: #00dcfd;
  border-color: #00dcfd;
  color: #16171B;
}/*# sourceMappingURL=main.css.map */