@font-face {
  font-family: 'Material Symbols Outlined';
  src: url('/assets/fonts/material-icons/MaterialSymbolsOutlined.ttf') format('truetype');
}

/* public-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  /* src: url('/assets/fonts/public-sans-v21-latin-regular.woff2') format('woff2'); */
  src: url('/assets/fonts/public-sans-v21-latin/public-sans-v21-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* public-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/public-sans-v21-latin/public-sans-v21-latin-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* public-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/public-sans-v21-latin/public-sans-v21-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* public-sans-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 900;
  src: url('/assets/fonts/public-sans-v21-latin/public-sans-v21-latin-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}


*,.overflow-y-auto {
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.footer-flag {
  background-image: linear-gradient(to right,
      rgba(10, 49, 97, 1),
      rgba(10, 49, 97, 0.9)),
    url("/assets/images/bg-cover1.png");
  background-size: cover;
  background-position: center 30%;
}

.group:hover .group-hover\:animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.material-symbols-outlined {
  /* font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24; */
  vertical-align: middle;
}

/* Spinner animation for Material Symbols */
.material-spinner {
  display: inline-block;
  animation: material-spin 0.5s linear infinite;
  transform-origin: center;
}

@keyframes material-spin {
  to {
    transform: rotate(360deg);
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
}

.slideInRight {
  animation-name: slideInRight;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
}