::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

body {
  font-size: 1em;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  height: auto;
  width: 100%;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  opacity: 1 !important;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
Author's custom styles
========================================================================== */
/* variables CSS */
/* Tools */
button {
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
}

a {
  text-decoration: none;
}

/* Custom styles */
/* ==========================================================================
Helper classes
========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

:root {
  --color-cream: #FBE8C2;
  --color-coral-light: #D87060;
  --color-coral-dark: #D35F52;
  --color-blue: #304D9E;
  --color-blue-dark: #224082;
  --color-coral: #DC756A;
  --color-black: #000;
  --color-base-800: #2D3648;
  --color-white: #FFFCF6;
  --font-chunko: "Chunko Bold Demo", sans-serif;
  --font-switzer: Switzer, sans-serif;
  --font-size-large: 35px;
  --font-size-medium: 25px;
  --font-size-base: 18px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-base: 120%;
  --letter-spacing-large: 0.35px;
  --letter-spacing-base: 0.18px;
  --letter-spacing-none: 0;
  --border-radius-base: 10px;
  --border-radius-image: 20px;
  --link-border-width: 2.5px;
  --link-border-color: #DC756A;
}

.headline-chunko {
  font-family: var(--font-chunko);
  font-size: var(--font-size-large);
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-large);
}

.headline-switzer {
  font-family: var(--font-switzer);
  font-size: var(--font-size-large);
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-large);
}

.text-medium-bold {
  color: var(--color-black);
  font-family: var(--font-switzer);
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

.text-medium {
  font-family: var(--font-switzer);
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

.headline-small-bold {
  color: var(--color-base-800);
  font-family: var(--font-switzer);
  font-size: var(--font-size-medium);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-none);
}

.headline-small-medium {
  color: var(--color-base-800);
  font-family: var(--font-switzer);
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-none);
}

.rounded-base {
  border-radius: var(--border-radius-base);
}

.rounded-image {
  border-radius: var(--border-radius-image);
}

a.underline {
  border-bottom: var(--link-border-width) solid transparent;
  text-decoration: none;
}
a.underline:hover {
  border-bottom: var(--link-border-width) solid var(--link-border-color);
}

.logo {
  border-bottom: none !important;
}
.logo:hover {
  border-bottom: none !important;
}

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

.bg-coral-light {
  background-color: var(--color-coral-light);
}

.bg-coral-dark {
  background-color: var(--color-coral-dark);
}

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

.bg-blue-dark {
  background-color: var(--color-blue-dark);
}

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

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

.text-coral {
  color: var(--color-coral);
}

.text-black {
  color: var(--color-black);
}

.text-base-800 {
  color: var(--color-base-800);
}

.blue .d-none-red {
  display: none;
}
.blue .bg-dark {
  background-color: var(--color-blue-dark) !important;
}
.blue .bg-lighten {
  background-color: var(--color-blue);
}
.blue .color-light {
  color: var(--color-blue);
}
.blue .color-dark {
  color: var(--color-blue-dark);
}
.blue hr {
  border-color: var(--color-blue-dark);
}

.red .d-none-blue {
  display: none;
}
.red .bg-dark {
  background-color: var(--color-coral-dark) !important;
}
.red .bg-lighten {
  background-color: var(--color-coral);
}
.red .color-light {
  color: var(--color-coral);
}
.red .color-dark {
  color: var(--color-coral-dark);
}
.red hr {
  border-color: var(--color-coral-dark);
}

body {
  background-color: var(--color-white);
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.login-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.login-title {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.login-form .form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}
.login-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 12px;
  transition: border-color 0.3s;
}
.login-form .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.login-form .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  margin-top: 10px;
  transition: transform 0.2s;
}
.login-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.dashboard-container {
  min-height: 100vh;
  background: #f5f7fa;
  padding: 20px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.dashboard-header h1 {
  margin: 0;
  color: #333;
  font-weight: 600;
}
.dashboard-header .btn-outline-danger {
  border-radius: 8px;
  padding: 10px 20px;
}

.offline-indicator {
  margin-bottom: 20px;
}
.offline-indicator .alert {
  border-radius: 8px;
  border: none;
  padding: 15px 20px;
}

.resources-section h2 {
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.resource-card .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.resource-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.resource-card .card-body {
  padding: 25px;
}
.resource-card .card-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}
.resource-card .card-text {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.resource-card .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: transform 0.2s;
}
.resource-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .dashboard-header h1 {
    font-size: 1.5rem;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .login-card {
    padding: 30px 20px;
  }
}
@font-face {
  font-family: Switzer-Variable;
  src: url(../../fonts/Switzer-Variable.ttf);
}
@font-face {
  font-family: "Chunko Bold Demo";
  src: url(../../fonts/chunko-bold-demo.otf);
}
body {
  font-family: Switzer-Variable;
}

ul {
  padding-left: 21px;
}

a {
  color: #dc756a;
}

.logo {
  border-bottom: none !important;
  display: inline-block;
}
.logo:hover {
  border-bottom: none !important;
  opacity: 0.8;
}
.logo img {
  display: block;
}

hr {
  margin-top: 32px;
  margin-bottom: 32px;
}

.nav-link {
  font-weight: 500;
  padding-bottom: 0px;
  font-weight: 600;
  color: black !important;
}
.nav-link.active {
  border-bottom: 3px solid #D35F52;
}

.btn-logout {
  background: #D35F52;
  color: white !important;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 400;
}
.btn-logout:hover {
  background: #D35F52;
  color: white;
  opacity: 0.8;
}

.bg-red {
  background-color: #DC756A;
}

.box {
  border-radius: 27px;
  width: 100%;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.3098039216);
  margin-top: 50px;
}

.media-left img {
  width: 60px;
  margin-right: 15px;
}

.star-rating {
  display: inline-flex;
  gap: 6px;
  cursor: pointer;
}
.star-rating .star {
  font-size: 32px;
  color: #E5E5E5;
  transition: color 0.2s, transform 0.1s;
  user-select: none;
  display: inline-block;
  line-height: 1;
}
.star-rating .star:hover {
  transform: scale(1.1);
}
.star-rating .star:active {
  transform: scale(0.95);
}

.blue .star.selected {
  color: var(--color-blue-dark);
}

.red .star.selected {
  color: var(--color-coral-dark);
}

.border-bottom {
  border-color: #dc756a !important;
}

.color-red {
  color: #DC756A;
}

.sbox {
  border: 1px solid #dc756a;
  color: #dc756a;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.toggle-area {
  display: block;
}

.angle-img {
  width: 20px;
  transition: transform 0.3s;
}

.angle-rotate {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.toggle-header {
  cursor: pointer;
}

.btn-primary {
  background-color: #dc756a !important;
  border-color: #dc756a !important;
  border-radius: 56px;
  padding: 8px 23px;
}
.btn-primary:hover {
  opacity: 0.8;
}

.form-card {
  margin: 0px auto;
  background-color: rgba(244, 244, 244, 0.5098039216);
  padding: 16px;
  border-radius: 5px;
  margin-top: 22px;
}

.bg-blue {
  background-color: #224082;
}

.bg-blue-two {
  background-color: #41559E !important;
}

.blue .nav-link.active {
  border-bottom: 3px solid #41559E;
}
.blue a {
  color: #224082;
}
.blue .border-bottom {
  border-color: #224082 !important;
}
.blue .sbox {
  border: 1px solid #224082;
  color: #224082;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.blue .btn-logout:hover {
  background-color: #224082 !important;
}
.blue .btn-primary {
  background-color: #224082 !important;
  border-color: #224082 !important;
}

.color-blue {
  color: #224082 !important;
}

@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: row !important;
    gap: 20px;
  }
}
.equipment-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.equipment-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

header hr {
  position: relative;
  top: 1px;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
}
.video-modal-close:hover {
  background-color: #fff;
  transform: scale(1.1);
}
.video-modal-close:active {
  transform: scale(0.95);
}

.video-modal-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-modal-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }
  .video-modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/*# sourceMappingURL=main.css.map */
