:root {
  --ems-bg-gradient: linear-gradient(127deg, #96ccbeff 20%, #6cb0ce 100%);
  --ems-glass-light: rgba(255, 255, 255, 0.95);
  --ems-glass-medium: rgba(255, 255, 255, 0.85);
  --ems-glass-dark: rgba(0, 0, 0, 0.75);
  --ems-space-7: 1.75rem;
  --ems-space-9: 2.25rem;
  --ems-radius-4xl: 2rem;
}

body {
  background-image: var(--ems-bg-gradient);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.event-details {
  font-size: 2rem;
}

.not-visible {
  display: none;
}

option:hover {
  border: 1px solid #1a5da1;
  background-color: #052d35;
}

option:checked {
  background-color: #0c7d91;
}

.profile-image-navbar {
  width: 2.6rem;
  height: 2.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar-nav-scroll {
  --bs-scroll-height: 65vh;
}

.stopwatch-display {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.modal-header-gradient {
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(135deg, var(--bs-primary) 0%, rgba(var(--bs-primary-rgb), 0.8) 100%);
}

.event-card-tooltip {
  max-width: 300px;
  z-index: 9;
}

.icon-3rem {
  font-size: 3rem;
}

.icon-1-1rem {
  font-size: 1.1rem;
}

.icon-1rem {
  font-size: 1rem;
}

.icon-0-8rem {
  font-size: 0.8rem;
}

.icon-0-95rem {
  font-size: 0.95rem;
}

.icon-14px {
  font-size: 14px;
}

.max-width-325px {
  max-width: 325px;
}

.max-width-600px {
  max-width: 600px;
}

.max-width-800px {
  max-width: 800px;
}

.max-width-950px {
  max-width: 950px;
}

.max-width-1000px {
  max-width: 1000px;
}

.max-width-1320px {
  max-width: 1320px;
}

.max-width-160px {
  max-width: 160px;
}

.max-width-80px {
  max-width: 80px;
}

.width-280px {
  width: 280px;
}

.width-40px {
  width: 40px;
}

.width-45px {
  width: 45px;
}

.width-35px {
  width: 35px;
}

.width-36px {
  width: 36px;
}

.width-80px {
  width: 80px;
}

.height-40px {
  height: 40px;
}

.height-45px {
  height: 45px;
}

.height-36px {
  height: 36px;
}

.height-80px {
  height: 80px;
}

.height-8px {
  height: 8px;
}

.height-6px {
  height: 6px;
}

.height-3px {
  height: 3px;
}

.height-auto {
  height: auto;
}

.z-index-9 {
  z-index: 9;
}

.avatar-80px {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
}

.avatar-40px {
  width: 40px;
  height: 40px;
}

.avatar-36px {
  width: 36px;
  height: 36px;
}

.avatar-35px {
  width: 35px;
  height: 35px;
}

.profile-large {
  width: min(40vw, 200px);
  height: min(40vw, 200px);
}

.profile-medium {
  width: min(10vw, 80px);
  height: min(10vw, 80px);
}

.table-wrapper {
  max-height: calc(100vh - 140px);
  overflow-x: auto;
  overflow-y: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 15px;
  max-width: 1320px;
}

#scrolling-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}
#scrolling-table th.sticky-col {
  position: sticky;
  left: 0;
  z-index: 1;
  white-space: nowrap;
  width: 280px;
}
#scrolling-table thead th:first-child {
  z-index: 3;
}

.button-container {
  max-height: 60vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.progress-3px {
  height: 3px;
  border-radius: 0 0 0.75rem 0.75rem;
}

.shrink-width-animation {
  animation: shrinkWidth 4.3s linear forwards;
}

.border-dashed-2px-white {
  border: 2px dashed white;
}

.notification_open {
  border-style: dashed;
  border-width: 1px;
  border-color: black;
}

.notification_open:hover {
  border-style: solid;
  border-color: grey;
}

.btn-hover {
  opacity: 0.6;
  border-color: black;
  border-width: 1px;
}

.btn-hover:hover {
  opacity: 1;
}

.btn-hover:disabled {
  opacity: 1 !important;
}

.transition-opacity {
  transition: opacity 0.2s ease;
}

.alert-success {
  border: 2px solid var(--bs-success);
}

.alert-warning {
  border: 2px solid var(--bs-warning);
}

.alert-danger {
  border: 2px solid var(--bs-danger);
}

.alert-info {
  border: 2px solid var(--bs-info);
}

.hover-primary:hover {
  color: var(--bs-primary) !important;
  text-decoration: underline !important;
}

.nav-collapse-grid {
  display: flex;
  flex-wrap: wrap;
}
.nav-collapse-grid .nav-item {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 10px 10px !important;
}
.nav-collapse-grid .nav-link {
  display: block;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
}

@media (min-width: 992px) {
  .nav-collapse-grid {
    flex-wrap: nowrap;
  }
  .nav-collapse-grid .nav-item {
    flex: 0 0 auto;
    padding: 2px 3px !important;
  }
}
.main-section {
  padding-top: 60px;
  min-height: calc(100vh - 35px);
  background: linear-gradient(135deg, var(--bs-gray-100) 0%, var(--bs-gray-50) 100%);
}

@media (min-width: 992px) {
  .main-section {
    padding-top: 80px;
  }
}
@media (max-width: 479.98px) {
  .display-1 {
    font-size: 2.5rem !important;
  }
  .display-2 {
    font-size: 2rem !important;
  }
  .display-3 {
    font-size: 1.75rem !important;
  }
  .h1 {
    font-size: 1.5rem !important;
  }
  .h2 {
    font-size: 1.25rem !important;
  }
  .h3 {
    font-size: 1.125rem !important;
  }
  .container-fluid {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .card, .ems-card-admin, .ems-card-form, .ems-card-content {
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 480px) and (max-width: 767.98px) {
  .container-fluid {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
}
.ems-card-content {
  margin-bottom: 1rem;
}
.ems-card-content .card-body {
  padding: 1rem;
}
@media (max-width: 479.98px) {
  .ems-card-content {
    margin-bottom: 0.75rem;
  }
  .ems-card-content .card-body {
    padding: 0.75rem;
  }
}

.ems-card-form {
  background-color: var(--ems-glass-dark);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.ems-card-form .card-body {
  padding: 1.5rem;
}
@media (max-width: 479.98px) {
  .ems-card-form .card-body {
    padding: 1rem;
  }
}

.ems-card-admin {
  margin-bottom: 1.5rem;
}
.ems-card-admin .card-header {
  padding: 1rem 1.5rem;
}
.ems-card-admin .card-header.bg-primary {
  background: linear-gradient(135deg, var(--bs-primary) 0%, rgba(var(--bs-primary-rgb), 0.9) 100%) !important;
}
.ems-card-admin .card-header.bg-secondary {
  background: linear-gradient(135deg, var(--bs-secondary) 0%, rgba(var(--bs-secondary-rgb), 0.9) 100%) !important;
}
.ems-card-admin .card-body {
  padding: 0;
}
.ems-card-admin .card-body.with-padding {
  padding: 1.5rem;
}
@media (max-width: 479.98px) {
  .ems-card-admin {
    margin-bottom: 1rem;
  }
  .ems-card-admin .card-header {
    padding: 0.75rem 1rem;
  }
  .ems-card-admin .card-body.with-padding {
    padding: 1rem;
  }
}

.ems-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ems-card-icon.sm {
  width: 2rem;
  height: 2rem;
}

.ems-glass-light {
  background-color: var(--ems-glass-light) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ems-glass-medium {
  background-color: var(--ems-glass-medium) !important;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ems-glass-dark {
  background-color: var(--ems-glass-dark) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-rotate-45 {
  transform: rotate(45deg);
}

.icon-flip-h {
  transform: scaleX(-1);
}

.navbar {
  background: linear-gradient(135deg, var(--bs-primary) 0%, rgba(var(--bs-primary-rgb), 0.9) 100%) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.navbar .nav-item .dropdown-menu .nav-link {
  color: black;
}
.navbar .nav-item .dropdown-menu .nav-link:hover {
  color: var(--bs-primary);
}
.navbar .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
.navbar .nav-item .nav-link:hover {
  color: var(--bs-primary);
  background-color: rgba(255, 255, 255, 0.9);
}
.navbar .nav-item .nav-link.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
}
.navbar .nav-item .nav-link.active:hover {
  color: var(--bs-primary);
  background-color: rgba(255, 255, 255, 0.9);
}

.card, .ems-card-content, .ems-card-form, .ems-card-admin {
  background-color: var(--ems-glass-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.admin-tool-item {
  margin-top: 0em;
  margin-bottom: 0.5em;
}

.drag-active {
  transform: scale(1.05);
  transition: transform 0.2s ease;
  z-index: 1000;
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.drag-over {
  border: 3px solid var(--bs-danger) !important;
  transition: all 0.2s ease;
}

.notification-read-indicator {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  background-color: var(--bs-success);
  border-radius: 50%;
  border: 1px solid white;
  z-index: 2;
}

a.icon-link[data-bs-toggle=popover] {
  transition: transform 0.2s ease;
}
a.icon-link[data-bs-toggle=popover]:hover {
  transform: scale(1.5);
}/*# sourceMappingURL=custom_style.css.map */