/*
=================================================================
|   1. GLOBAL SETTINGS & VARIABLES
=================================================================
*/
@font-face {
  font-family: 'GeneralSans';
  src: url('./fonts/GeneralSans-Variable.woff2') format('woff2 supports variations'), url('./fonts/GeneralSans-Variable.woff') format('woff supports variations'), url('./fonts/GeneralSans-Variable.ttf') format('truetype');
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

/* Material Iconss */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/MaterialIcons.woff2') format('woff2');
}


:root {

  /* --- Breakpoints --- */
  --breakpoint-xs: 500px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;

  /* --- Font Sizes --- */
  --text-xs: .75rem;
  /* 12px */
  --text-sm: .875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 2rem;
  /* 32px */
  --text-4xl: 2.5rem;
  /* 40px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 4rem;
  /* 64px */
  --text-7xl: 5rem;
  /* 80px */
  --text-xxl: 6rem;
  /* 96px */
  --text-10xl: 10rem;
  /* 160px */

  /* --- Font Weights --- */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* --- Colors --- */
  --color-black: #000000;
  --color-dark: #080808;
  --color-white: #ffffff;
  --color-light: #f9f9f9;
  --color-light-2: #f5f5f5;
  --color-gray: #d9d9d9;
  --color-gray-light: #f0f0f0;
  --color-red-base: #EF2604;
  --color-red-dark-1: #C51D12;
  --color-blue-base: #2754F6;
  --color-blue-dark-1: #2935A6;
  --color-blue-dark-2: #173190;

  --rgb-white: 255, 255, 255;
  --rgb-red-base: 239, 38, 4;
  --rgb-blue-base: 39, 84, 246;
  --rgb-blue-dark-1: 39, 84, 246;
  --rgb-blue-dark-2: 23, 49, 144;
  --rgb-gray-light: 240, 240, 240;

  --color-primary: var(--color-blue-base);
  --rgb-primary: var(--rgb-blue-base);

  /* --- Gradients --- */
  --grad-white-light: var(--color-white) 73%, var(--color-light-2);
  --grad-gray-transparent: var(--color-gray), transparent;
  --grad-gray-gray-light: var(--color-gray), var(--color-gray-light);
  --grad-gray-light-white: var(--color-gray-light), var(--color-white);
  --grad-light-white: var(--color-light), var(--color-white) 37%;
  --grad-light-light-2: var(--color-light) 40%, var(--color-light-2);
  --grad-blue-alpha: var(--color-blue-base), transparent;
  --grad-blue-blue-dark-2: var(--color-blue-base), var(--color-blue-dark-2);
  --grad-red-dark: var(--color-red-base), var(--color-red-dark-1);
  --grad-black-blue-dark-2: black 60%, var(--color-blue-dark-2) 110%;

  /* --- Shadows --- */

  --shadow-card-1: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  --shadow-card-2: 0px 4px 16px -8px rgba(0, 0, 0, 0.2);
  --shadow-lg: rgba(17, 12, 46, 0.15) 0px 28px 70px 0px;

  /* --- Layout & Spacing --- */
  --pad-xxs: .25rem;
  --pad-xs: .5rem;
  --pad-sm: 1rem;
  --pad-md: 2rem;
  --pad-lg: 4rem;
  --pad-xl: 8rem;

  /* --- Borders & Corners --- */
  --corner-xs: .25rem;
  --corner-sm: .5rem;
  --corner-md: 1rem;
  --corner-lg: 1.5rem;
  --corner-xl: 2rem;

  /* --- App Layout Variables --- */
  --content-width-max: min(100dvw, 1024px);
  --section-pad-x: var(--pad-sm);
  --section-pad-y: var(--pad-md);
  --content-width: min(calc(100dvw - (var(--section-pad-x) * 2)), var(--content-width-max));

  /* --- Canvas Colors --- */
  --rgb-canvas: var(--rgb-white);
  background-color: rgb(var(--rgb-canvas));
  color: var(--color-black);
}

/*
=================================================================
|   2. BASE & RESET STYLES
=================================================================
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  min-height: 100vh;
}

#app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}


a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
}

.cursor-pointer {
  cursor: pointer;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

h1 {
  margin: 0;
  padding: 0;
  line-height: 1.25;
}

h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-light);
  line-height: 1.25;
  margin: var(--pad-lg) 0 var(--pad-sm) 0;
  padding: 0;
}

h3 {
  text-transform: uppercase;
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: 1.35;
  margin: var(--pad-md) 0 var(--pad-sm) 0;
  padding: 0;
}

h4 {
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0;
}


h5 {
  font-weight: var(--font-semibold);
  font-size: var(--text-md);
  line-height: 1;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  h2 {
    font-size: var(--text-3xl);
  }

  h3 {
    font-size: var(--text-2xl);
  }

  h5 {
    font-size: var(--text-lg);
  }
}

svg.icon {
  height: 2em;
  width: 2em;
}

/*
=================================================================
|   3. UTILITY CLASSES (TailwindCSS Style)
=================================================================
*/
/* --- Positioning & Display --- */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  inset: 0;
}

.object-cover {
  object-fit: cover;
}

.container-inline {
  container-type: inline-size;
}

/*
.hidden { display: none !important; }
*/
.hidden {
  visibility: hidden;
  opacity: 0;
}

.pointer-none {
  pointer-events: none;
}

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.contents {
  display: contents;
}

/* --- Flexbox & Grid --- */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

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

.items-start {
  align-items: start;
}

.items-end {
  align-items: end;
}

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

.col-span-2 {
  grid-column: span 2;
}

.row-span-2 {
  grid-row: span 2;
}

.row-span-3 {
  grid-row: span 3;
}

.flex-grow-1 {
  flex-grow: 1;
}

/* --- Sizing --- */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-fit {
  width: fit-content;
}

.wmax-p {
  max-width: 35em;
}

.wmax-p-sm {
  max-width: 28em;
}

.wmax-content {
  max-width: var(--content-width);
}

.square {
  aspect-ratio: 1;
}

/* --- Spacing (Gaps) --- */
.gap-xs {
  gap: var(--pad-xs);
}

.gap-sm {
  gap: var(--pad-sm);
}

.gap-md {
  gap: var(--pad-md);
}

.gap-lg {
  gap: var(--pad-lg);
}

.gap-col-sm {
  column-gap: var(--pad-sm);
}

.gap-col-md {
  column-gap: var(--pad-md);
}

.gap-row-xxs {
  row-gap: var(--pad-xxs);
}

.gap-row-sm {
  row-gap: var(--pad-sm);
}

.gap-row-md {
  row-gap: var(--pad-md);
}

/* --- Spacing (Margins) --- */
.m-0 {
  margin: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-sm {
  margin-bottom: var(--pad-sm);
}

.mb-md {
  margin-bottom: var(--pad-md);
}

.mb-lg {
  margin-bottom: var(--pad-lg);
}

.mt-auto {
  margin-top: auto;
}

.mt-sm {
  margin-top: var(--pad-sm);
}

.mt-md {
  margin-top: var(--pad-md);
}

.mt-lg {
  margin-top: var(--pad-lg);
}

.mt-xs {
  margin-top: var(--pad-xs);
}

.mt-sm {
  margin-top: var(--pad-sm);
}

.mt-md {
  margin-top: var(--pad-md);
}

.mt-lg {
  margin-top: var(--pad-lg);
}

/* --- Spacing (Padding) --- */
.p-0 {
  padding: 0;
}

.px-xs {
  padding-left: var(--pad-xs);
  padding-right: var(--pad-xs);
}

.px-sm {
  padding-left: var(--pad-sm);
  padding-right: var(--pad-sm);
}

.px-md {
  padding-left: var(--pad-md);
  padding-right: var(--pad-md);
}

.px-lg {
  padding-left: var(--pad-lg);
  padding-right: var(--pad-lg);
}

.py-xs {
  padding-top: var(--pad-xs);
  padding-bottom: var(--pad-xs);
}

.py-sm {
  padding-top: var(--pad-sm);
  padding-bottom: var(--pad-sm);
}

.py-md {
  padding-top: var(--pad-md);
  padding-bottom: var(--pad-md);
}

.py-lg {
  padding-top: var(--pad-lg);
  padding-bottom: var(--pad-lg);
}

.pt-sm {
  padding-top: var(--pad-sm);
}

.pt-md {
  padding-top: var(--pad-md);
}

.pt-lg {
  padding-top: var(--pad-lg);
}

.pb-sm {
  padding-bottom: var(--pad-sm);
}

.pb-md {
  padding-bottom: var(--pad-md);
}

.pb-lg {
  padding-bottom: var(--pad-lg);
}

.stroke-2 {
  stroke-width: 2;
}

/* --- Material Icons --- */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

.material-icons {
  width: 1em;
  height: 1em;
  text-align: center;
}


/* --- Typography --- */
.line-height-1 {
  line-height: 1;
}

.line-height-sm {
  line-height: 1.25;
}

.line-height-md {
  line-height: 1.5;
}

.line-height-lg {
  line-height: 2;
}

.text-uppercase {
  text-transform: uppercase;
}

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

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

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

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

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-3xl {
  font-size: var(--text-3xl);
}

.text-4xl {
  font-size: var(--text-4xl);
}

.text-5xl {
  font-size: var(--text-5xl);
}

.text-6xl {
  font-size: var(--text-6xl);
}

.text-7xl {
  font-size: var(--text-7xl);
}

.text-xxl {
  font-size: var(--text-xxl);
}

.text-10xl {
  font-size: var(--text-10xl);
}

.font-light {
  font-weight: var(--font-light);
}

.font-normal {
  font-weight: var(--font-normal);
}

.font-medium {
  font-weight: var(--font-medium);
}

.font-semibold {
  font-weight: var(--font-semibold);
}

.font-bold {
  font-weight: var(--font-bold);
}

/* --- Color --- */
.bg-red {
  background-color: var(--color-red-base);
}

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

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

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

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

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

.bg-transparent {
  background-color: transparent;
}

.bg-canvas {
  background-color: canvas;
}

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

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

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

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

.text-faded {
  color: rgba(0, 0, 0, 0.3);
}


/* --- Borders & Shadows --- */
.rounded-sm {
  border-radius: var(--corner-sm);
}

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

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

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

.shadow-xs {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.shadow-lg {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 28px 70px 0px;
}

.border-solid {
  border-style: solid;
}

.border-gray {
  border-color: var(--color-gray);
}

.bb-solid {
  border-bottom: 1px solid;
}

.bb-gray-light {
  border-bottom: 1px solid var(--color-gray-light);
}

.bt-gray-light {
  border-top: 1px solid var(--color-gray-light);
}

.b-0 {
  border: 0;
}

/*
=================================================================
|   4. RESPONSIVE UTILITY CLASSES (Mobile-First)
=================================================================
*/

@media (max-width: 787px) {
  .sm\:hidden {
    display: none;
  }

  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

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

/* --- Medium devices (tablets, 768px and up) --- */
@media (min-width: 768px) {


  .md\:wmax-p-sm {
    max-width: 280px;
  }

  .md\:gap-md {
    gap: var(--pad-md);
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:text-7xl {
    font-size: var(--text-7xl);
  }

  .md\:text-4xl {
    font-size: var(--text-4xl);
  }

  .md\:text-3xl {
    font-size: var(--text-3xl);
  }

  .md\:text-2xl {
    font-size: var(--text-2xl);
  }

  .md\:text-base {
    font-size: var(--text-base);
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-featured {
    grid-template-columns: [side-start] 1fr [side-end main-start] 3fr [main-end];
  }

  .md\:grid-cols-contact {
    grid-template-columns: [left-start] min(50%, 330px) [left-end right-start] 1fr [right-end];
  }

  .md\:col-span-main {
    grid-column: main;
  }

  .md\:col-span-side {
    grid-column: side;
  }

  .md\:row-span-4 {
    grid-row: 1 / span 4;
  }

  .md\:border-none {
    border: none;
  }

  .md\:hidden {
    display: none !important;
  }

  .md\:text-7xl {
    font-size: var(--text-7xl);
  }

  .md\:pt-md {
    padding-top: var(--pad-md);
  }

  .md\:pt-lg {
    padding-top: var(--pad-lg);
  }

  .md\:pb-md {
    padding-bottom: var(--pad-md);
  }

  .md\:pb-lg {
    padding-bottom: var(--pad-lg);
  }

  .md\:py-md {
    padding-top: var(--pad-md);
    padding-bottom: var(--pad-md);
  }

  #app {
    --section-pad-x: var(--pad-md);
    --content-width: min(calc(100dvw - (var(--section-pad-x) * 2)), var(--content-width-max));
  }
}

/* --- Large devices (desktops, 1024px and up) --- */
@media (min-width: 1024px) {
  .lg\:hidden {
    display: none !important;
  }

  .lg\:mb-lg {
    margin-bottom: var(--pad-lg);
  }

  .lg\:mb-xl {
    margin-bottom: var(--pad-xl);
  }

  .lg\:mt-xl {
    margin-top: var(--pad-xl);
  }

  .lg\:p-0 {
    padding: 0;
  }

  .lg\:py-lg {
    padding-top: var(--pad-lg);
    padding-bottom: var(--pad-lg);
  }

  .lg\:py-lg {
    padding-top: var(--pad-lg);
    padding-bottom: var(--pad-lg);
  }

  .lg\:pt-lg {
    padding-top: var(--pad-lg);
  }

  .lg\:pt-xl {
    padding-top: var(--pad-xl);
  }

  .lg\:pb-lg {
    padding-bottom: var(--pad-lg);
  }

  .lg\:pt-xl {
    padding-top: var(--pad-xl);
  }

  .lg\:pb-xl {
    padding-bottom: var(--pad-xl);
  }

  .lg\:gap-lg {
    gap: var(--pad-lg);
  }

  .lg\:text-3xl {
    font-size: var(--text-3xl);
  }

  .lg\:text-4xl {
    font-size: var(--text-4xl);
  }

  .lg\:text-5xl {
    font-size: var(--text-5xl);
  }

  .lg\:text-6xl {
    font-size: var(--text-6xl);
  }

  .lg\:text-7xl {
    font-size: var(--text-7xl);
  }

  /* Show only on desktop */
  .lg\:block {
    display: block !important;
  }

  .lg\:flex {
    display: flex !important;
  }


  #app {
    --section-pad-x: var(--pad-lg);
    --content-width: min(calc(100dvw - (var(--section-pad-x) * 2)), var(--content-width-max));
  }
}

/* Hide on specific breakpoints */
@media (max-width: 1023px) {
  .lg\:only {
    display: none !important;
  }
}




/* --- CARD --- */
.card {
  box-shadow: var(--shadow-card-1);
  transition: box-shadow 0.3s ease-in-out;
}

@media (hover:hover) {
  .card:hover {
    box-shadow: var(--shadow-card-2);
  }
}


/* --- BTN PRIMARY --- */

.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
  font-weight: 450;
  text-align: center;
  box-shadow: rgba(var(--rgb-blue-dark-2), 0.3) 0px 10px 10px -10px;
}

.bg-primary.linear {
  background: linear-gradient(15deg, var(--color-primary), var(--color-blue-dark-1));
}

.bg-primary.radial {
  background: radial-gradient(circle at bottom center, var(--color-primary) 80%, var(--color-blue-dark-1) 180%);

}

@media (hover: hover) {
  .bg-primary {
    transition: background .3s ease-in-out, box-shadow .3s ease-in-out;
    cursor: pointer;
  }

  .bg-primary:hover {
    background-color: var(--color-blue-dark-1);
    box-shadow: rgba(var(--rgb-primary, 0, 0, 0), 0.3) 0px 10px 15px -3px, rgba(var(--rgb-primary, 0, 0, 0), 0.25) 0px 4px 6px -2px;
  }

  .bg-primary.linear:hover {
    background: linear-gradient(15deg, var(--color-primary) 50%, var(--color-blue-dark-1) 120%);
  }

  .bg-primary.radial:hover {
    background: radial-gradient(circle at bottom center, var(--color-primary) 80%, var(--color-blue-dark-1) 180%);
  }

}


.btn-primary {
  --action-bg: linear-gradient(15deg, var(--color-primary), var(--color-blue-dark-1));
  --bg-hover: linear-gradient(15deg, var(--color-primary) 50%, var(--color-blue-dark-1) 120%);
  --bg: var(--action-bg, var(--color-primary, black));
  background: var(--bg);
  color: var(--color-white, white);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;

  box-shadow: rgba(var(--rgb-primary, 0, 0, 0), 0.35) 0px 3px 3px 0px;
  transition: box-shadow .3s ease-in-out;
}

@media (hover: hover) {
  .btn-primary:not(:disabled):hover {
    background: var(--bg-hover, var(--bg));
    box-shadow: rgba(var(--rgb-primary, 0, 0, 0), 0.3) 0px 10px 15px -3px, rgba(var(--rgb-primary, 0, 0, 0), 0.25) 0px 4px 6px -2px;
    color: var(--color-white, white);
  }
}

.btn-primary:disabled {
  background: var(--color-black);
  cursor: not-allowed;
  box-shadow: none;
}

select {
  font-size: 1rem;
  cursor: pointer;
}

option {
  font-size: inherit;
}

@supports (appearance: base-select) {

  select,
  ::picker(select) {
    -webkit-appearance: none;
    appearance: initial;
    appearance: base-select;
  }

  select {
    border: 2px solid var(--color-gray);
  }

  select::picker-icon {
    color: var(--color-gray);
    transition: 0.4s rotate;
  }

  select:open::picker-icon {
    rotate: 180deg;
  }

  ::picker(select) {
    border: 2px solid var(--color-gray-light);
    border-radius: var(--corner-sm);
    margin: 2px 0;
    box-shadow: var(--shadow-card-2);
  }
}

@supports (-webkit-hyphens: none) {
  select {
    appearance: none;
    border: 2px solid var(--color-gray);
    height: 3.5rem;
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}



/* --- Dialogs --- */
dialog {
  border: none;
  background: transparent;
}

body:has(dialog[open]) {
  pointer-events: none;
  overflow: clip;
}

dialog[open] {
  pointer-events: initial;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
}

dialog>div.card {
  will-change: opacity, transform;
}

dialog[open]>div.card {
  animation: scale-in .5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-delay: .3s;
  animation-fill-mode: both;
}


/* --- FORM --- */
.form-small-text {
  will-change: opacity;
  transition: opacity .3s ease-in-out;
}

input {
  font-size: 1rem;
  line-height: 1;
}

input[type="file"]:focus+label {
  border: 2px solid var(--color-primary);
}

input[type="file"]+label {
  border: 2px solid transparent;
}

textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* --- GRID --- */
@media (min-width: 768px) {
  .grid-1-3 {
    display: grid;
    grid-template-columns: [side-start]1fr [side-end main-start]3fr [main-end];
    gap: var(--pad-lg);
  }

  .grid-1-3 .col-side {
    grid-column: side;
  }

  .grid-1-3 .col-main {
    grid-column: main;
  }
}

/*
=================================================================
|   5. COMPONENTS
=================================================================
*/

/* --- LOADER --- */
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--pad-sm);
  padding: var(--pad-md);
}

.loader-spinner {
  --spiner-size: 3em;
  --spiner-width: calc(var(--spiner-size) * .15);
  width: var(--spiner-size);
  height: var(--spiner-size);
  border: var(--spiner-width) solid var(--color-gray-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

.loader-text {
  font-size: var(--text-sm);
  color: var(--color-dark);
  font-weight: var(--font-medium);
  text-align: center;
}

@keyframes spinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}