@charset "UTF-8";
.red {
  color: #e74c3c;
}

.green {
  color: #27ae60;
}

.yellow {
  color: #f1c40f;
}

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

html {
  font-size: 81.25%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #2e2e2e;
  background-color: #e3e6e0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease-in-out;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input {
  border: none;
  outline: none;
  font-family: inherit;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.page-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .section {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.main-content {
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .main-content {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.main-content > * + * {
  margin-top: 4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #2e2e2e;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
@media (min-width: 1024px) {
  .page-content {
    padding: 4rem 5rem;
  }
}

.site-header-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: #2f5d50;
  padding: 1rem 1.5rem;
}
@media (min-width: 1024px) {
  .site-header {
    padding: 1rem 5rem;
  }
}
.site-header--solid {
  background-color: #2f5d50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.brand__name {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.brand__tagline {
  color: #ffffff;
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-style: italic;
}
.brand__logo {
  height: 80px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 1.5rem;
}

.header-search {
  position: relative;
  width: 100%;
  max-width: 240px;
  display: none;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .header-search {
    display: block;
  }
}
.header-search:focus-within {
  max-width: 32rem;
}
.header-search__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1.25rem;
  color: rgba(47, 93, 80, 0.6);
}
.header-search__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 0.875rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #2e2e2e;
}
.header-search__input::placeholder {
  color: rgba(47, 93, 80, 0.4);
}
.header-search__input:focus {
  box-shadow: 0 0 0 2px #ffdb4c;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: #ffdb4c;
  color: #2f5d50;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.btn-login:hover {
  background: rgba(255, 219, 76, 0.9);
}
.btn-login .material-symbols-outlined {
  font-size: 1.25rem;
}

.site-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(143, 182, 163, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .site-nav {
    padding: 0.5rem 5rem;
  }
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav__links a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.site-nav__links a:hover {
  color: #ffdb4c;
}
.site-nav__cta {
  background: #ffdb4c;
  color: #2f5d50 !important;
  padding: 0.35rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
}
.site-nav__cta:hover {
  background: rgba(255, 219, 76, 0.85);
  color: #2f5d50 !important;
}

.btn-setup-account {
  background: #2f5d50;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.btn-setup-account:hover {
  background: rgba(47, 93, 80, 0.9);
}

.site-footer {
  background: #2f5d50;
  color: #ffffff;
  padding: 4rem 1.5rem;
}
@media (min-width: 1024px) {
  .site-footer {
    padding: 4rem 5rem;
  }
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col__title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-col__list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease-in-out;
}
.footer-col__list a:hover {
  color: #ffdb4c;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-brand-col {
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-social {
    margin-bottom: 0;
  }
}
.footer-social__link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.footer-social__link:hover {
  background: rgba(255, 219, 76, 0.2);
}
.footer-social__link img {
  width: 1.25rem;
  height: 1.25rem;
  filter: invert(1);
}
.footer-social__link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-brand-info {
  margin-top: auto;
}
@media (min-width: 768px) {
  .footer-brand-info {
    text-align: right;
  }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .footer-brand-logo {
    justify-content: flex-end;
  }
}
.footer-brand-logo__name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-family: "Inter", sans-serif;
}
.footer-brand-logo__tagline {
  color: #ffffff;
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  font-style: italic;
}
.footer-brand-logo__img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slide {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 93, 80, 0.2);
  mix-blend-mode: multiply;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(47, 93, 80, 0.6), rgba(47, 93, 80, 0.2), transparent);
}

.hero__content {
  position: relative;
  z-index: 10;
  height: calc(100% - 110px);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .hero__content {
    padding: 0 5rem;
  }
}

.hero__inner {
  max-width: 36rem;
}

.hero__headline-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(47, 93, 80, 0.6);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hero__headline {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__headline {
    font-size: 3rem;
  }
}

.hero__text-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 1.5rem;
  max-width: 32rem;
}

.hero__description {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero__description {
    font-size: 1.5rem;
  }
}

.hero__cta {
  margin-top: 2rem;
}

.btn-primary-lg {
  display: inline-block;
  background: #ffdb4c;
  color: #2f5d50;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1.125rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-in-out;
}
.btn-primary-lg:hover {
  transform: scale(1.05);
}

.hero__arrows {
  position: absolute;
  inset: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  height: 0;
}
@media (min-width: 1024px) {
  .hero__arrows {
    padding: 0 2rem;
  }
}

.hero__arrow-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
}
.hero__arrow-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.hero__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: none;
}
.hero__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.hero__dot--active {
  background: #ffdb4c;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.products-section {
  max-width: 80rem;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.product-card--sm {
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.product-card--sm:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  width: 12rem;
  height: 12rem;
  margin-bottom: 1.5rem;
}
.product-card--sm .product-image-container {
  width: 8rem;
  height: 8rem;
  margin-bottom: 1rem;
}

.product-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}
.product-glow--sm {
  transform: scale(0.75);
}

.product-image {
  position: relative;
  z-index: 1;
  max-height: 85%;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.product-image--sm {
  max-height: 100%;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.glass-overlay {
  position: absolute;
  inset: 1rem;
  z-index: -1;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.product-name {
  font-family: "Calibri", "Candara", "Segoe", "Segoe UI", "Optima", "Arial", sans-serif;
  font-weight: 700;
  color: #2e2e2e;
}
.product-name--lg {
  font-size: 1.25rem;
}
.product-name--sm {
  font-size: 1.125rem;
}

.product-price {
  font-family: "Calibri", "Candara", "Segoe", "Segoe UI", "Optima", "Arial", sans-serif;
  color: #2e2e2e;
  margin-top: 0.25rem;
}
.product-price strong {
  font-weight: 700;
  font-size: 1.125rem;
}

.product-carousel {
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.product-carousel__track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  min-width: 200px;
  scroll-snap-align: center;
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.carousel-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.carousel-card__image {
  height: 8rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.carousel-card__image .product-glow {
  opacity: 0.5;
}
.carousel-card__image .material-symbols-outlined {
  font-size: 2.25rem;
  color: #2f5d50;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.carousel-card__name {
  font-family: "Calibri", "Candara", "Segoe", "Segoe UI", "Optima", "Arial", sans-serif;
  font-weight: 700;
  color: #2e2e2e;
}

.carousel-next-btn {
  position: absolute;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
.carousel-next-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.cta-section {
  background: #ffffff;
  padding: 5rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-section {
    padding: 5rem 5rem;
  }
}

.cta-section__inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-section__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #2e2e2e;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cta-section__title {
    font-size: 3rem;
  }
}

.cta-section__text {
  font-size: 1.125rem;
  color: rgba(46, 46, 46, 0.7);
  font-weight: 500;
}

.cta-section__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cta-section__buttons {
    flex-direction: row;
  }
}

.btn-cta-primary {
  background: #2f5d50;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.btn-cta-primary:hover {
  background: rgba(47, 93, 80, 0.9);
}

.btn-cta-secondary {
  background: rgba(255, 219, 76, 0.2);
  color: #2f5d50;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.2s ease-in-out;
}
.btn-cta-secondary:hover {
  background: rgba(255, 219, 76, 0.3);
}

.inner-hero {
  background: #2f5d50;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .inner-hero {
    padding: 4rem 5rem;
  }
}
.inner-hero__title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .inner-hero__title {
    font-size: 3rem;
  }
}
.inner-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-top: 0.75rem;
  font-weight: 500;
}

.inner-content {
  max-width: 52rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
@media (min-width: 1024px) {
  .inner-content {
    padding: 4rem 5rem;
  }
}
.inner-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f5d50;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(143, 182, 163, 0.3);
}
.inner-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2e2e2e;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.inner-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(46, 46, 46, 0.85);
  margin-bottom: 1rem;
}
.inner-content ul, .inner-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.inner-content ul li, .inner-content ol li {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(46, 46, 46, 0.85);
  margin-bottom: 0.5rem;
  position: relative;
}
.inner-content ul li {
  list-style: disc;
}
.inner-content ol li {
  list-style: decimal;
}
.inner-content a {
  color: #2f5d50;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(47, 93, 80, 0.3);
  text-underline-offset: 2px;
  transition: all 0.2s ease-in-out;
}
.inner-content a:hover {
  text-decoration-color: #2f5d50;
}
.inner-content strong {
  font-weight: 700;
  color: #2e2e2e;
}
.inner-content .last-updated {
  font-size: 0.875rem;
  color: rgba(46, 46, 46, 0.5);
  font-style: italic;
  margin-bottom: 2rem;
}
.inner-content .info-box {
  background: rgba(143, 182, 163, 0.1);
  border-left: 4px solid #2f5d50;
  padding: 1.5rem;
  border-radius: 0 0.625rem 0.625rem 0;
  margin: 1.5rem 0;
}
.inner-content .info-box p {
  margin-bottom: 0.25rem;
}

.ri-section {
  padding: 4rem 1.5rem;
}
@media (min-width: 1024px) {
  .ri-section {
    padding: 4rem 5rem;
  }
}

.ri-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .ri-container {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.ri-form-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
}
.ri-form-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(143, 182, 163, 0.2);
}
.ri-form-card__icon {
  font-size: 2rem;
  color: #2f5d50;
  background: rgba(143, 182, 163, 0.15);
  border-radius: 0.75rem;
  padding: 0.6rem;
  flex-shrink: 0;
}
.ri-form-card__title {
  font-size: 1.375rem;
  font-weight: 900;
  color: #2e2e2e;
  margin-bottom: 0.25rem;
}
.ri-form-card__subtitle {
  font-size: 0.875rem;
  color: rgba(46, 46, 46, 0.55);
}

.ri-req {
  color: #d44;
}

.ri-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ri-form__row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ri-form__row--2col {
    flex-direction: row;
    gap: 1.25rem;
  }
  .ri-form__row--2col > .ri-form__group {
    flex: 1;
  }
}
.ri-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ri-form__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(46, 46, 46, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ri-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ri-form__input-icon {
  position: absolute;
  left: 0.85rem;
  font-size: 1.2rem;
  color: rgba(143, 182, 163, 0.7);
  pointer-events: none;
}
.ri-form__input, .ri-form__select {
  width: 100%;
  padding: 0.7rem 0.85rem 0.7rem 2.75rem;
  font-size: 0.9375rem;
  font-family: "Inter", sans-serif;
  color: #2e2e2e;
  background: rgba(143, 182, 163, 0.06);
  border: 1.5px solid rgba(143, 182, 163, 0.25);
  border-radius: 0.75rem;
  transition: all 0.2s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}
.ri-form__input::placeholder, .ri-form__select::placeholder {
  color: rgba(46, 46, 46, 0.3);
}
.ri-form__input:focus, .ri-form__select:focus {
  outline: none;
  background: #ffffff;
  border-color: #2f5d50;
  box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.08);
}
.ri-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232f5d50' d='M6 8.825a.5.5 0 0 1-.354-.146L2.146 5.179a.5.5 0 0 1 .708-.708L6 7.618l3.146-3.147a.5.5 0 0 1 .708.708L6.354 8.679A.5.5 0 0 1 6 8.825Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.ri-form__textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font-size: 0.9375rem;
  font-family: "Inter", sans-serif;
  color: #2e2e2e;
  background: rgba(143, 182, 163, 0.06);
  border: 1.5px solid rgba(143, 182, 163, 0.25);
  border-radius: 0.75rem;
  resize: vertical;
  min-height: 6rem;
  transition: all 0.2s ease-in-out;
}
.ri-form__textarea::placeholder {
  color: rgba(46, 46, 46, 0.3);
}
.ri-form__textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #2f5d50;
  box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.08);
}
.ri-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  align-self: flex-start;
  margin-top: 0.75rem;
  background: #2f5d50;
  color: #ffffff;
  padding: 0.85rem 2.25rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.ri-form__submit .material-symbols-outlined {
  font-size: 1.15rem;
}
.ri-form__submit:hover {
  background: rgba(47, 93, 80, 0.88);
  transform: translateY(-1px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.ri-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ri-sidebar__card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
}
.ri-sidebar__card--dark {
  background: #2f5d50;
  color: #ffffff;
}
.ri-sidebar__card--dark .ri-sidebar__card-icon {
  color: #ffdb4c;
  background: rgba(255, 255, 255, 0.1);
}
.ri-sidebar__card--dark .ri-sidebar__card-title {
  color: #ffffff;
}
.ri-sidebar__card-icon {
  font-size: 1.75rem;
  color: #2f5d50;
  background: rgba(143, 182, 163, 0.15);
  border-radius: 0.75rem;
  padding: 0.5rem;
  display: inline-flex;
  margin-bottom: 1rem;
}
.ri-sidebar__card-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: #2e2e2e;
  margin-bottom: 1rem;
}
.ri-sidebar__steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
}
.ri-sidebar__steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.ri-sidebar__steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 9999px;
  background: rgba(255, 219, 76, 0.2);
  color: #ffdb4c;
  font-size: 0.8125rem;
  font-weight: 900;
  margin-top: 0.1rem;
}
.ri-sidebar__steps li strong {
  color: #ffffff;
}
.ri-sidebar__benefits {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ri-sidebar__benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: rgba(46, 46, 46, 0.8);
}
.ri-sidebar__benefits li .material-symbols-outlined {
  font-size: 1.25rem;
  color: #2f5d50;
  flex-shrink: 0;
}
.ri-sidebar__contact {
  background: rgba(143, 182, 163, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: center;
}
.ri-sidebar__contact p {
  font-size: 0.875rem;
  color: rgba(46, 46, 46, 0.55);
  margin-bottom: 0.5rem;
}
.ri-sidebar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2f5d50;
  transition: color 0.2s ease-in-out;
}
.ri-sidebar__phone .material-symbols-outlined {
  font-size: 1.15rem;
}
.ri-sidebar__phone:hover {
  color: rgba(47, 93, 80, 0.7);
}
.ri-sidebar__email {
  display: block;
  font-size: 0.875rem;
  color: rgba(47, 93, 80, 0.7);
  margin-top: 0.35rem;
  transition: color 0.2s ease-in-out;
}
.ri-sidebar__email:hover {
  color: #2f5d50;
}

.admin-body,
.admin-body * {
  font-family: "Ubuntu", "Inter", sans-serif;
}

.admin-body {
  background: linear-gradient(180deg, rgba(143, 182, 163, 0.14) 0%, #f8f8f5 100%);
  min-height: 100vh;
}

.admin-console-bar {
  background: #2f5d50;
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.admin-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 280px 1fr;
}

.admin-shell--auth {
  grid-template-columns: 1fr;
}

.admin-sidebar {
  background: #2f5d50;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  gap: 0.5rem;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.admin-brand__logo {
  width: 100%;
  height: 75px;
  object-fit: contain;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.admin-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.admin-nav__link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.admin-nav__link--active {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.admin-nav__link .material-symbols-outlined {
  font-size: 1.2rem;
}

.admin-nav__group {
  border-radius: 0.75rem;
}
.admin-nav__group summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.admin-nav__group summary::-webkit-details-marker {
  display: none;
}
.admin-nav__group summary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.admin-nav__group summary .material-symbols-outlined {
  font-size: 1.2rem;
}
.admin-nav__group[open] > summary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 0.75rem 0.75rem 0 0;
}

.admin-nav__chevron {
  margin-left: auto;
  font-size: 1.1rem !important;
  transition: transform 0.25s ease-in-out;
  opacity: 0.6;
}
details[open] .admin-nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.admin-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 0.3rem 0.4rem 0.45rem;
}

.admin-nav__link--sub {
  font-size: 0.855rem;
  padding: 0.45rem 0.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.admin-nav__link--sub .material-symbols-outlined {
  font-size: 1rem;
  opacity: 0.75;
}
.admin-nav__link--sub:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.admin-nav__link--sub:hover .material-symbols-outlined {
  opacity: 1;
}
.admin-nav__link--sub.admin-nav__link--active {
  color: #ffdb4c;
  background: rgba(255, 219, 76, 0.1);
}
.admin-nav__link--sub.admin-nav__link--active .material-symbols-outlined {
  opacity: 1;
  color: #ffdb4c;
}

.btn-matrix-add,
.btn-matrix-remove,
.btn-matrix-copy,
.btn-matrix-copy-alt {
  padding: 0.3rem 0.65rem;
  border-radius: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.btn-matrix-add {
  background: #2f5d50;
  color: #ffffff;
  border: 1.5px solid #2f5d50;
}
.btn-matrix-add:hover {
  background: rgba(47, 93, 80, 0.82);
  border-color: rgba(47, 93, 80, 0.82);
  color: #ffffff;
}

.btn-matrix-remove {
  background: transparent;
  border: 1.5px solid #e74c3c;
  color: #e74c3c;
}
.btn-matrix-remove:hover {
  background: #e74c3c;
  color: #ffffff;
}

.btn-matrix-copy {
  background: #8fb6a3;
  color: #ffffff;
  border: 1.5px solid #8fb6a3;
}
.btn-matrix-copy:hover {
  background: #2f5d50;
  border-color: #2f5d50;
  color: #ffffff;
}

.btn-matrix-copy-alt {
  background: transparent;
  border: 1.5px solid #8fb6a3;
  color: #2f5d50;
}
.btn-matrix-copy-alt:hover {
  background: #8fb6a3;
  color: #ffffff;
}

.admin-sidebar__logout {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 500;
}

.admin-main {
  padding: 1.5rem;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-topbar__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: rgba(46, 46, 46, 0.5);
  margin-bottom: 0.2rem;
}

.admin-topbar__title {
  font-size: 1.65rem;
  font-weight: 900;
  color: #2e2e2e;
}

.admin-topbar__profile {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  border: 1px solid rgba(47, 93, 80, 0.15);
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.admin-topbar__profile .material-symbols-outlined {
  color: #2f5d50;
  font-size: 1.6rem;
}
.admin-topbar__profile strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.1;
}
.admin-topbar__profile p {
  font-size: 0.75rem;
  color: rgba(46, 46, 46, 0.6);
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-kpi-card {
  background: #ffffff;
  border: 1px solid rgba(143, 182, 163, 0.25);
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1rem;
}
.admin-kpi-card p {
  color: rgba(46, 46, 46, 0.6);
  font-size: 0.85rem;
}
.admin-kpi-card h2 {
  margin: 0.25rem 0;
  font-size: 1.65rem;
  font-weight: 900;
  color: #2f5d50;
}

.admin-kpi-card__trend {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(47, 93, 80, 0.85);
}

.admin-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.admin-panel {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(143, 182, 163, 0.25);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.admin-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.75rem;
}
.admin-panel__header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2e2e2e;
}
.admin-panel__header a {
  color: #2f5d50;
  font-size: 0.82rem;
  font-weight: 500;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(143, 182, 163, 0.2);
  white-space: nowrap;
}
.admin-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(46, 46, 46, 0.5);
}
.admin-table td {
  font-size: 0.9rem;
  color: #2e2e2e;
}

.status-pill {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(143, 182, 163, 0.2);
  color: #2f5d50;
}

.status-pill--success {
  background: rgba(67, 160, 71, 0.15);
  color: #2e7d32;
}

.status-pill--warning {
  background: rgba(255, 219, 76, 0.35);
  color: #705400;
}

.admin-activity-list {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.admin-activity-list li .material-symbols-outlined {
  color: #2f5d50;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}
.admin-activity-list li strong {
  font-size: 0.88rem;
}
.admin-activity-list li p {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgba(46, 46, 46, 0.5);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-login__card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(143, 182, 163, 0.3);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}
.admin-login__card h1 {
  font-size: 1.65rem;
  font-weight: 900;
  color: #2e2e2e;
  margin-bottom: 0.4rem;
}
.admin-login__card > p {
  font-size: 0.92rem;
  color: rgba(46, 46, 46, 0.65);
  margin-bottom: 1.25rem;
}

.admin-login__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: #2f5d50;
  font-weight: 700;
}
.admin-login__brand img {
  width: 44px;
  height: 44px;
}

.admin-login__form {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.admin-login__form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(46, 46, 46, 0.72);
  margin-top: 0.4rem;
}
.admin-login__form input {
  border: 1px solid rgba(143, 182, 163, 0.4);
  border-radius: 0.7rem;
  padding: 0.7rem 0.8rem;
  background: rgba(143, 182, 163, 0.08);
  font-size: 0.92rem;
}
.admin-login__form button {
  margin-top: 1rem;
  background: #2f5d50;
  color: #ffffff;
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.admin-login__form button:hover {
  background: rgba(47, 93, 80, 0.9);
}

.admin-login__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.admin-login__meta a {
  font-size: 0.8rem;
  color: #2f5d50;
  font-weight: 500;
}

@media (min-width: 768px) {
  .admin-main {
    padding: 2rem;
  }
  .admin-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .admin-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .admin-panels {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 1024px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    border-radius: 0 0 1rem 1rem;
  }
}
.font20 {
  font-size: 20px;
}

.font16 {
  font-size: 16px;
}

::placeholder {
  color: #e3e6e0;
}

label.requiredfield:after {
  content: " *";
  color: #e74c3c;
}

.generalform .formfield {
  margin: 10px;
  display: flex;
  flex-direction: row;
  align-items: start;
  flex-wrap: wrap;
}
.generalform .formfield.required label:after {
  content: " *";
  color: #e74c3c;
}
.generalform .formfield > label {
  flex-basis: 15%;
  margin: 10px 0;
  padding: 0;
  font-weight: bold;
}
.generalform .formfield label.error {
  color: #e74c3c;
}
.generalform .formfield input.error,
.generalform .formfield select.error,
.generalform .formfield textarea.error {
  border-color: #e74c3c;
}
.generalform .formfield .inputwrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-content: space-between;
}
.generalform .formfield .inputwrapper .prepend,
.generalform .formfield .inputwrapper .append {
  line-height: 35px;
  color: #e3e6e0;
}
.generalform .formfield .inputwrapper ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.generalform .formfield .inputwrapper ul li {
  width: 33%;
}
.generalform .formfield .inputwrapper .radiochecklist label {
  font-weight: normal;
}
.generalform .formfield .inputwrapper input:not(:first-child),
.generalform .formfield .inputwrapper select:not(:first-child),
.generalform .formfield .inputwrapper textarea:not(:first-child) {
  margin-left: 5px;
}
.generalform .formfield .forminput,
.generalform .formfield input,
.generalform .formfield select,
.generalform .formfield textarea {
  flex: 1;
  margin: 0;
  border: 1px #e3e4e8 solid;
  border-radius: 5px;
  padding: 10px;
}
.generalform .formfield .forminput:hover,
.generalform .formfield input:hover,
.generalform .formfield select:hover,
.generalform .formfield textarea:hover {
  border: solid 1px #8fb6a3;
}
.generalform .formfield .select2 {
  border: 1px transparent solid;
}
.generalform .formfield .select2:hover {
  border: solid 1px #8fb6a3;
}
.generalform .formfield .shortnote {
  width: 100%;
  flex-basis: 100%;
  margin: 5px 5px 5px 25%;
  color: #e3e6e0;
}
.generalform .formfield input[type=checkbox],
.generalform .formfield input[type=radio] {
  flex: none;
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 5px 0;
  align-self: flex-start;
}
.generalform .formfield input[type=checkbox]:hover,
.generalform .formfield input[type=radio]:hover {
  border: none;
}
.generalform .formfield .inputwrapper {
  width: 85%;
  display: flex;
  flex-direction: column;
}
.generalform .formfield .inputwrapper .fieldnote {
  width: 100%;
  margin: 5px;
  color: #e3e6e0;
}

.formbuttons {
  margin: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.formbuttons.left {
  align-items: center;
  justify-content: flex-start;
}
.formbuttons a {
  margin: 5px;
  padding: 10px;
  color: #ffffff;
}

/* Hide the default checkbox input */
.form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Style the custom checkbox label */
.form-check-label {
  flex-basis: unset !important;
  display: inline-block;
  position: relative;
  padding-left: 30px !important;
  margin-bottom: 0;
  font-weight: unset !important;
  cursor: pointer;
}

/* Create the checkmark */
.form-check-label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
}

/* Style the checkmark when checked */
.form-check-input:checked ~ .form-check-label::before {
  background-color: #2196f3;
  border-color: #2196f3;
}

/* Create the checkmark icon */
.form-check-label::after {
  content: "✓";
  display: none;
  position: absolute;
  left: 5px;
  top: 0;
  color: #fff;
  font-size: 16px;
}

/* Show the checkmark icon when checked */
.form-check-input:checked ~ .form-check-label::after {
  display: inline-block;
}

/* Add some margin to separate the checkbox from the label */
.form-check-label {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .generalform .formfield {
    flex-direction: column;
  }
  .generalform .formfield label {
    flex-basis: unset;
  }
  .generalform .formfield input,
  .generalform .formfield select,
  .generalform .formfield textarea {
    width: 100%;
  }
  .generalform .formfield input[type=radio] {
    width: unset;
  }
  .generalform .formfield .inputwrapper {
    width: 100%;
  }
  .generalform .formfield .shortnote {
    margin: 2px;
  }
}
#trainingcertificatewrapper .trainingtemplatewrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
}
#trainingcertificatewrapper .trainingtemplatewrapper span.label {
  width: 15%;
}
#trainingcertificatewrapper .trainingtemplatewrapper span.select {
  width: 80%;
}
#trainingcertificatewrapper .trainingtemplatewrapper span.view {
  width: 5%;
  text-align: center;
}

.rslist {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.rslist li {
  width: 25%;
  display: block;
}

.popupform .formfield {
  display: flex;
  flex-direction: row;
  padding: 5px;
  margin: 5px;
}
.popupform .formfield label {
  width: 25%;
  padding: 5px;
}
.popupform .formfield label .shortnote {
  font-size: 11px;
  color: #e3e6e0;
}
.popupform .formfield .forminput {
  width: 70%;
}
.popupform .formfield .forminput.datefieldinput {
  width: 135px;
}

.btn-general {
  margin: 0px;
  padding: 2px 10px;
  border-radius: var(--gneric-border-radius);
}

.forminputfullwidth {
  width: 100%;
}

.reportfilterwrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.reportfilterwrapper .formfield {
  width: 33%;
}
.reportfilterwrapper .formbuttons {
  width: 100%;
}

.filterbutton {
  text-align: right;
}
.filterbutton .showfilterbutton {
  background-color: #fff;
  color: #ffdb4c;
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  margin: 5px;
  border: solid 1px #ffdb4c;
}

.gridtablewrapper {
  width: 100%;
}
.gridtablewrapper h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: right;
}
.gridtablewrapper .table-striped {
  width: 100%;
  border-collapse: collapse;
}
.gridtablewrapper .table-striped thead tr:first-child {
  background-color: #8fb6a3;
  color: #ffffff;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}
.gridtablewrapper .table-striped thead tr:first-child th {
  padding: 20px 8px;
}
.gridtablewrapper .table-striped thead tr:first-child th:first-child {
  border-radius: 7px 0 0 7px;
}
.gridtablewrapper .table-striped thead tr:first-child th:last-child {
  border-radius: 0 7px 7px 0;
}
.gridtablewrapper .table-striped tbody td {
  color: #000000;
  font-size: 12px;
  padding: 8px;
  text-align: left;
  vertical-align: middle;
}
.gridtablewrapper .table-striped tbody td .gridicon {
  font-size: 18px;
}
.gridtablewrapper .table-striped tbody tr.gridrow {
  background-color: #ffffff;
}
.gridtablewrapper .table-striped tbody tr.altgridrow {
  background-color: #f8f8f5;
}
.gridtablewrapper .table-striped tbody tr td {
  border: solid 1px #f1f1f1;
}
.gridtablewrapper .table-striped tbody tr td .fas {
  color: #ffdb4c;
}
.gridtablewrapper .table-striped tbody tr td .fas.green {
  color: #27ae60;
}
.gridtablewrapper .table-striped tbody tr td .fas.red {
  color: #e74c3c;
}
.gridtablewrapper .table-striped tbody tr td .green .fas {
  color: #27ae60;
}
.gridtablewrapper .table-striped tbody tr td .red .fas {
  color: #e74c3c;
}
.gridtablewrapper .table-striped tbody tr .table-ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.gridtablewrapper .table-striped tbody tr .table-ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}
.gridtablewrapper .table-striped tbody tr .table-ul li:last-child {
  margin-right: 0;
}
.gridtablewrapper .table-striped tbody tr .gridinnerlink {
  font-size: 16px;
}
.gridtablewrapper .table-striped .pagetr .pager {
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gridtablewrapper .table-striped .pagetr .pager .showcurrentpage {
  font-size: 13px;
  padding: 10px;
  width: 100px;
}
.gridtablewrapper .table-striped .pagetr .pager ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.gridtablewrapper .table-striped .pagetr .pager ul li a {
  display: inline-block;
  padding: 5px 8px;
  background-color: #f8f8f5;
  border-radius: 5px;
  margin: 2px;
}
.gridtablewrapper .table-striped .pagetr .pager ul li a.active {
  background-color: #ffdb4c;
  color: #ffffff;
}
.gridtablewrapper .table-striped .gridtable-optionrow .delete .fas {
  color: #e74c3c;
}
.gridtablewrapper .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 8px 0;
  gap: 2px;
  justify-content: center;
}
.gridtablewrapper .pagination .page-item .page-link {
  display: inline-block;
  padding: 5px 10px;
  font-size: 13px;
  color: #2f5d50;
  background-color: #f8f8f5;
  border: 1px solid #e3e6e0;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.gridtablewrapper .pagination .page-item .page-link:hover {
  background-color: #8fb6a3;
  color: #ffffff;
  border-color: #8fb6a3;
}
.gridtablewrapper .pagination .page-item.page-nav .page-link {
  background-color: #8fb6a3;
  color: #ffffff;
  border-color: #8fb6a3;
  font-weight: 500;
}
.gridtablewrapper .pagination .page-item.page-nav .page-link:hover {
  background-color: #2f5d50;
  border-color: #2f5d50;
}
.gridtablewrapper .pagination .page-item.page-nav .page-link .page-nav-np {
  background-color: #8fb6a3;
  color: #ffffff;
}
.gridtablewrapper .pagination .page-item.active .page-link {
  background-color: #2f5d50;
  color: #ffffff;
  border-color: #2f5d50;
  cursor: default;
  pointer-events: none;
  font-weight: 700;
}

.managementsearchbox {
  width: 100%;
  border-radius: 5px;
}

.faketable {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.faketable .tableheader {
  display: flex;
}
.faketable .tableheader .tablecell {
  min-width: 7%;
  border: 1px solid #f8f8f5;
  background-color: #f8f8f5;
  padding: 5px;
  flex: 1;
}
.faketable .tableheader .tablecell.long {
  min-width: 30%;
}
.faketable .tablerow {
  display: flex;
}
.faketable .tablerow .tablecell {
  min-width: 7%;
  border: 1px solid #f8f8f5;
  padding: 5px;
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.faketable .tablerow .tablecell.long {
  min-width: 30%;
}

/* ── Message banners ─────────────────────────────────────────────────────── */
.message {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-left: 5px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.message::before {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Success ─ green */
.message-success {
  background-color: #d4edda;
  border-color: #28a745;
  color: #155724;
}

.message-success::before {
  content: "✓  Success:";
  color: #28a745;
}

/* Warning ─ amber */
.message-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #664d03;
}

.message-warning::before {
  content: "⚠  Warning:";
  color: #d39e00;
}

/* Alert ─ red */
.message-alert {
  background-color: #f8d7da;
  border-color: #dc3545;
  color: #58151c;
}

.message-alert::before {
  content: "✕  Error:";
  color: #dc3545;
}

/* ── Text colour utilities ───────────────────────────────────────────────── */
.text-success {
  color: #27ae60;
}

.text-failure {
  color: #e74c3c;
}

.text-warning {
  color: #f1c40f;
}

button {
  margin: 5px;
  padding: 10px;
  color: #ffffff;
}

.btn {
  background-color: #e3e6e0;
}

.btn-primary {
  background-color: #ffdb4c;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #8fb6a3;
}

.btn-secondary {
  background-color: #8fb6a3;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: #ffdb4c;
}

.btn-danger {
  background-color: #2e2e2e;
  color: #ffffff;
}
.btn-danger:hover {
  background-color: #ffdb4c;
}

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