:root {
  --bs-primary-rgb: 24, 52, 85;
}

@font-face {
  font-family: 'Line Seed Sans';
  src: url('/public/font/LINESeedSansTH_W_Rg.woff2') format('woff2');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Line Seed Sans Bd';
  src: url('/public/font/LINESeedSansTH_W_Bd.woff2') format('woff2');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

body {
  font-family: 'Line Seed Sans';
  font-weight: bolder;
  height: 100%;
  width: 100vw;
  background: #fff;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body > div:first-child {
  flex-grow: 1;
}

.btn-light {
  --bs-btn-disabled-bg: #cccccc;
  --bs-btn-disabled-color: #fff;
}

.text-sm {
  font-size: 12px;
  line-height: 18px;
}

.text-base {
  font-size: 16px;
  line-height: 20px;
}

.text-lg {
  font-size: 20px;
  line-height: 24px;
}

.text-2xl {
  font-size: 32px;
  line-height: 40px;
}

.font-family-bold {
  font-family: 'Line Seed Sans Bd';
}

.text-red {
  color: red;
}

.text-gray {
  color: #808080;
}

.page-title {
  font-size: 40px;
  line-height: 40px;
}

.form-label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-outline {
  background: none !important;
  color: #000;
  font-weight: bolder;
  padding: 16px 20px;
}

.form-outline::placeholder {
  color: #999999;
  opacity: 1;
  /* Firefox */
}

.bg-slate {
  color: #fff;
  border: 1px solid hsl(211, 96%, 13%);
  background-color: #022c59;
}

.validated {
  border: 2px solid #04d000 !important;
}

.not-validated {
  border: 2px solid red !important;
}

.icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.icon-email {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.login-container {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.login-form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-wrapper {
  margin-bottom: 80px;
}

.btn-large {
  background-color: #183455;
  width: 100%;
  display: flex;
  min-height: 200px;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.filterBtn {
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  position: relative;
}

.filterBtn > img {
  border: 2px solid transparent;
  background: none;
}

.filterBtn.active > img {
  border: 2px solid transparent;
}

.filterBtn-check {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.filterBtn.active > .filterBtn-check {
  opacity: 1;
}

.according-card {
  background: #183455;
  color: #fff;
  font-weight: 700;
  padding: 16px 18px;
  border-radius: 10px;
}

.accordion-button > div > .arrow-icon {
  transform: rotate(180deg);
  transition: transform 0.5s;
}

.accordion-button.collapsed > div > .arrow-icon {
  transform: rotate(0deg);
}

.group-title {
  font-weight: 700;
  color: #183455;
}

nav {
  position: sticky;
  bottom: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
}

.menu-link {
  text-decoration: none;
  color: #183455;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.menu-icon {
  width: 24;
  height: 24;
}

.menu-sidebar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.rounded-lg {
  border-radius: 10px;
}

.form-check .form-check-input {
  float: left;
  margin-left: 0em !important;
}

.form-check-input:checked {
  background-color: #183455;
  border-color: #183455;
}

.form-check {
  padding-left: 0;
  margin-bottom: 0;
}

.form-switch .form-check-input {
  height: 22px;
  width: 40px;
}

@media (min-width: 1200px) {
  body {
    padding: 0 30rem;
  }

  nav {
    left: 30rem;
    right: 30rem;
    width: auto;
  }
}
