@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
/*
$color-primary: #224080;
$color-secondary: #345499;
$color-tertiary: #5d7cc0;
$color-quaternary: #c6d8ff;
$color-quinary: #5fcfe8;
$color-senary: #b4afed;
$color-septenary: #a041cc;
$color-white: #ffffff;
$color-black: #000000;
$color-inverse: invert($color-primary);
$color-bg: #f5f7fa;
$color-text: #1f1f1f;
$color-text-light: #c7c7c7;
$color-title: #A9B8D3;
*/
@keyframes show {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotate_360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

::before,
::after {
  font-family: "Material Symbols Outlined";
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: flex;
}

a {
  text-decoration: none;
  color: #5fcfe8;
  transition: color 0.1ss ease-in-out;
}
a:hover {
  text-decoration: underline;
}

strong,
b {
  font-weight: 600;
}

input,
select,
textarea,
button {
  outline: none;
  border: none;
  width: 100%;
}

input,
select,
button,
label {
  width: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: inherit !important;
  -moz-text-fill-color: inherit !important;
  -ms-text-fill-color: inherit !important;
  -o-text-fill-color: inherit !important;
  text-fill-color: inherit !important;
}

button {
  background: linear-gradient(-30deg, #224080, rgba(95, 207, 232, 0.5));
  background-color: #224080;
  border-radius: 100px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  padding: 1rem 2rem;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
button:hover {
  background: linear-gradient(-30deg, #224080, #224080);
  transform: translateY(-5px);
}
button .material-symbols-outlined {
  font-size: 16px;
}

details > summary {
  list-style: none;
}

details > summary::marker,
details > summary::-webkit-details-marker {
  display: none;
}

html,
body {
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
  min-height: 100dvh;
  min-width: 100%;
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background-color: #f5f7fa;
  color: #1f1f1f;
  cursor: default;
  -webkit-font-size: min(16px, 4em);
  -moz-font-size: min(16px, 4em);
  -ms-font-size: min(16px, 4em);
  -o-font-size: min(16px, 4em);
  font-size: min(16px, 4em);
}

#wrapper {
  padding: clamp(2rem, 3vw, 5rem);
  min-height: 100dvh;
  position: relative;
  margin: 0 auto;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.balloon {
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  border: none;
  padding: 2rem;
  z-index: 9999 !important;
  will-change: transform, opacity;
}

.swal2-backdrop-show {
  background-color: rgba(0, 0, 0, 0.5) !important;
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.swal2-modal {
  background-color: #f5f7fa !important;
}/*# sourceMappingURL=style.css.map */