@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800&family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  --themePrimary: #14245a;
  --themeSecondary: #da251a;
  --themeTertiary: #1ada85;
  --themeDarker: #80110f;
  --themeDark: #b11a14;
  --themeDarkAlt: #e01f17;
  --themeLight: #f5a6a1;
  --themeLighter: #fad4d2;
  --themeLighterAlt: #fef2f2;
  --secondaryDarker: #0f1a3f;
  --secondaryDark: #111f4f;
  --secondaryLight: #3c5a96;
  --secondaryLighter: #9db5e1;
  --secondaryLighterAlt: #e6eefb;
  --tertiaryDarker: #128458;
  --tertiaryDark: #16b176;
  --tertiaryLight: #5ee0b1;
  --tertiaryLighter: #caf6e6;
  --tertiaryLighterAlt: #f2fefb;
  --black: #000000;
  --white: #ffffff;
  --neutralDark: #201f1e;
  --neutralPrimary: #323130;
  --neutralPrimaryAlt: #3b3a39;
  --neutralSecondary: #605e5c;
  --neutralTertiary: #a19f9d;
  --neutralTertiaryAlt: #c8c6c4;
  --neutralQuaternaryAlt: #e1dfdd;
  --neutralLight: #edebe9;
  --neutralLighter: #f3f2f1;
  --neutralLighterAlt: #faf9f8;
  --hue: 223;
  --trans-dur: 0.6s;
  --trans-timing: cubic-bezier(0.65,0,0.35,1);
}

:root[data-theme=dark] {
  --themePrimary: #0c4da2;
  --themeSecondary: #da251a;
  --themeTertiary: #1ada85;
  --themeDarker: #e34b3c;
  --themeDark: #d63c2e;
  --themeDarkAlt: #c23226;
  --themeLight: #94261e;
  --themeLighter: #7c1d18;
  --themeLighterAlt: #631713;
  --secondaryDarker: #c7def7;
  --secondaryDark: #6ca1e0;
  --secondaryLight: #2a6cc1;
  --secondaryLighter: #0a4090;
  --secondaryLighterAlt: #083573;
  --tertiaryDarker: #26c991;
  --tertiaryDark: #1cb87d;
  --tertiaryLight: #107652;
  --tertiaryLighter: #0c5b3f;
  --tertiaryLighterAlt: #083f2c;
  --black: #ffffff;
  --white: #121212;
  --neutralDark: #fafafa;
  --neutralPrimary: #d4d4d4;
  --neutralPrimaryAlt: #c2c2c2;
  --neutralSecondary: #a0a0a0;
  --neutralTertiary: #7d7d7d;
  --neutralTertiaryAlt: #5e5e5e;
  --neutralQuaternaryAlt: #434343;
  --neutralLight: #2d2d2d;
  --neutralLighter: #1e1e1e;
  --neutralLighterAlt: #151515;
}

:root {
  --alwaysWhite: #ffffff;
  --alwaysBlack: #000000;
  --alwaysPink: #f4b6b3;
  --alwaysGrey: #cccccc;
  --swiper-theme-color: var(--themeTertiary);
  --font-size-base: 1rem;
  --font-size-h1: 64px;
  --font-size-h2: 54px;
  --font-size-h3: 34px;
  --font-size-h4: 24px;
  --font-size-h5: 18px;
  --font-size-h6: 4px;
  /* Paragraphs */
  --font-size-p: 16px;
  --font-size-p-bold: 18px;
  --font-size-p-small: 14px;
  --font-size-p-small-bold: 14px;
  /* Font weights */
  --font-weight-bold: 700;
  --font-weight-medium: 500;
  --font-weight-regular: 400;
  --font-weight-light: 300;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Manrope", sans-serif;
}

@media (max-width: 63.9375rem) {
  :root {
    --font-size-p: 15px;
    --font-size-p-bold: 17px;
    --font-size-p-small: 13px;
    --font-size-p-small-bold: 13px;
    --font-size-h1: 60px;
    --font-size-h2: 56px;
    --font-size-h3: 48px;
    --font-size-h4: 40px;
    --font-size-h5: 17px;
    --font-size-h6: 24px;
  }
}
@media (max-width: 47.9375rem) {
  :root {
    --font-size-p: 14px;
    --font-size-p-bold: 16px;
    --font-size-p-small: 12px;
    --font-size-p-small-bold: 12px;
    --font-size-h1: 56px;
    --font-size-h2: 48px;
    --font-size-h3: 32px;
    --font-size-h4: 28px;
    --font-size-h5: 24px;
    --font-size-h6: 16px;
  }
}
@media (max-width: 35.625rem) {
  :root {
    --font-size-p: 13px;
    --font-size-p-bold: 15px;
    --font-size-p-small: 11px;
    --font-size-p-small-bold: 11px;
    --font-size-h1: 52px;
    --font-size-h2: 48px;
    --font-size-h3: 30px;
    --font-size-h4: 24px;
    --font-size-h5: 20px;
    --font-size-h6: 16px;
  }
}
.h1 {
  font-size: var(--font-size-h1);
}

.h2 {
  font-size: var(--font-size-h2);
}

.h3 {
  font-size: var(--font-size-h3);
}

.h4 {
  font-size: var(--font-size-h4);
}

.h5 {
  font-size: var(--font-size-h5);
}

.h6 {
  font-size: var(--font-size-h6);
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}
.fab-wrapper {
  position: fixed;
  bottom: 3rem;
  left: 3rem;
  z-index: 999;
}

.fab-checkbox {
  display: none;
}
.fab-checkbox:checked ~ .fab:before {
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  background-color: var(--themePrimary);
}
.fab-checkbox:checked ~ .fab .fab-dots {
  height: 6px;
  animation: none;
}
.fab-checkbox:checked ~ .fab .fab-dots-1 {
  width: 32px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.fab-checkbox:checked ~ .fab .fab-dots-3 {
  width: 32px;
  border-radius: 10px;
  right: 50%;
  transform: translateX(50%) translateY(-50%) rotate(-45deg);
}
.fab-checkbox:checked ~ .fab-wheel {
  transform: scale(1);
}
.fab-checkbox:checked ~ .fab-wheel .fab-action {
  opacity: 1;
}

.fab {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--themePrimary);
  box-shadow: 0px 5px 20px #81a4f1;
  transition: all 0.3s ease;
  z-index: 1;
  border-bottom-left-radius: 6px;
  border: 1px solid #0c50a7;
}
.fab:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--themePrimary);
}
.fab:hover {
  background: var(--secondaryLight);
  box-shadow: 0px 5px 20px 5px #81a4f1;
}
.fab .fab-dots-2 {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}

.fab-dots {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: var(--alwaysWhite);
  border-radius: 50%;
  top: 50%;
  transform: translateX(0%) translateY(-50%) rotate(0deg);
  opacity: 1;
  animation: blink 3s ease infinite;
  transition: all 0.3s ease;
}

.fab-dots-1 {
  left: 15px;
  animation-delay: 0s;
}

.fab-dots-2 {
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation-delay: 0.4s;
}

.fab-dots-3 {
  right: 15px;
  animation-delay: 0.8s;
}

.fab-wheel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  transition: all 0.3s ease;
  transform-origin: bottom left;
  transform: scale(0);
}
.fab-wheel .fab-action-1 {
  left: -1rem;
  top: 0;
}
.fab-wheel .fab-action-2 {
  left: 3.4rem;
  top: 0.5rem;
}
.fab-wheel .fab-action-3 {
  right: 0.5rem;
  bottom: 3.4rem;
}
.fab-wheel .fab-action-4 {
  right: 0;
  bottom: -1rem;
}

.fab-action {
  position: absolute;
  background: #0f1941;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alwaysWhite);
  box-shadow: 0 0.1rem 1rem rgba(24, 66, 154, 0.82);
  transition: all 1s ease;
  opacity: 0;
}
.fab-action:hover {
  background-color: var(--themeSecondary);
  color: var(--white);
}

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