/**
* Calculate Rem
*
* @param {number} $size The size in px
* @returns {number} The size in rem
*/
@keyframes loaderKeyframes {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.2;
  }
}
/**
* Heading 1
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Heading 2
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Heading 3
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Heading 4
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Heading 5
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Heading 6
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Standard Text
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Small Text
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
/**
* Button
*
* @param {string} $type - The type 'primary', 'secondary', 'red' or 'green'
* @param {number} $border-radius - The border radius (px)
* @param {number} $width - The width of the input (%, px, rem)
* @param {number} $padding - The padding amount (1rem)
*/
/**
* Button
*
* @param {string} $type - The type 'primary', 'secondary', 'red' or 'green'
* @param {number} $border-radius - The border radius (px)
* @param {number} $size - The size of the button
* @param {number} $iconSize - The size of the icon
*/
/**
* Standard Input
*
* @param {number} $height - The height of the unput (px)
* @param {hex} $font-color - The font color (#fff)
* @param {hex} $background-color - The background colour (#fff)
* @param {number string hex} $border - The border (1px solid #000)
* @param {number string hex} $border - The border (1px solid #000)
* @param {number} $padding - The padding amount (1rem)
*/
/**
* Select
*
* @param {number} $height - The height of the unput (px)
* @param {number} $border-radius - The border radius (px)
* @param {hex} $font-color - The font color (#fff)
* @param {hex} $background-color - The background colour (#fff)
* @param {number string hex} $border - The border (1px solid #000)
* @param {number string hex} $border - The border (1px solid #000)
* @param {number} $padding - The padding amount (1rem)
*/
/**
* Standard Input
*
* @param {number} $height - The height of the unput (px)
* @param {hex} $font-color - The font color (#fff)
* @param {hex} $background-color - The background colour (#fff)
* @param {number string hex} $border - The border (1px solid #000)
* @param {number string hex} $border - The border (1px solid #000)
* @param {number} $padding - The padding amount (1rem)
*/
/**
* Toggle Input
*
* @param {number} $height - The height of the unput (px)
* @param {hex} $background-color - The background colour
* @param {hex} $disabled-color - The toggle colour when disabled
* @param {hex} $enabled-color - The toggle colour when enabled
* @param {hex} $icon-color - The icon colour when enabled
*/
/**
* File Input
*
*/
/**
* Custom scrollbar
* @param {String} width - The width
* @param {String} track-background - The colour of the track background
* @param {String} scrollbar-colour - The colour of the scrollbar
* @param {String} padding - The amount of padding / space between the scrollbar and content
*/
/**
* Hide scrollbar
*/
/**
* Loader base function
*
* @param {number} $size - The size of the loader (px)
* @param {string} $icon - The path to the loader icon
*/
/**
* Background Image
*
* @param {string} $url - The url of the background image
* @param {string} $size - The size of the background image
* @param {string} $repeat - The background repeat state
* @param {string} $position - The background position
* @param {Boolead} $important - If we want to important the background image. Sometimes necessary to overwrite webkit stuff.
*/
/**
* Background Image
*
* @param {string} $url - The url of the background image
* @param {string} $size - The size of the background image
* @param {string} $repeat - The background repeat state
* @param {string} $position - The background position
* @param {Boolead} $important - If we want to important the background image. Sometimes necessary to overwrite webkit stuff.
*/
/**
* Colour picker
*
* @param {number} $color - The font color
* @param {number} $family - The font family
* @param {number} $weight - The font weight
* @param {number} $line-height - The line height
*/
html {
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-app);
}
html.dark {
  --navigation-height: 60px;
  --logo: url("/img/logos/dark-primary.png");
  --mobile-logo: url("/img/logos/dark-logo.svg");
  --bg-app: linear-gradient(to left, #343434, #000000 200%);
  --bg-primary: #454545;
  --bg-secondary: #E1EBF9;
  --nav-bg: #454545;
  --nav-border: #646464;
  --nav-text: #fff;
  --overlay-bg: #111111;
  --icon-primary: #646464;
  --border-primary: #646464;
  --text-family: "Outfit", "Open Sans", sans-serif;
  --text-primary: #fff;
  --text-secondary: #ededed;
  --text-highlight: #3379ee;
  --text-error: #d16464;
  --btn-primary: #4590f9;
  --btn-primary-text: #fff;
  --btn-secondary: #34a853;
  --btn-secondary-text: #fff;
  --btn-red: #d16464;
  --btn-green: #34a853;
  --btn-gray: #ededed;
  --btn-gray-text: #6d6d6d;
  --input-text: #58709d;
  --input-placeholder-text: #c3c3c3;
  --input-bg: #fff;
  --input-border: #c3c3c3;
  --input-disabled-bg: #f4f4f4;
  --scrollbar-colour: #34a853;
  --scrollbar-bg:#c3c3c3;
  --popup-bg: #454545;
  --popup-border: #646464;
}
html.light {
  --navigation-height: 60px;
  --logo: url("/img/logos/light-primary.png");
  --mobile-logo: url("/img/logos/dark-logo.svg");
  --bg-app: linear-gradient(to left, #fff, #a9cdff 200%);
  --bg-primary: #fff;
  --bg-secondary: #E1EBF9;
  --bg-tertiary: #f6f6f6;
  --nav-bg: #fff;
  --nav-border: #ededed;
  --nav-text: #0d3476;
  --overlay-bg: #E1EBF9;
  --overlay-bg-transparent: #e1ebf9bd;
  --icon-primary: #c3c3c3;
  --border-primary: #ededed;
  --text-family: "Outfit", "Open Sans", sans-serif;
  --text-primary: #0d3476;
  --text-secondary: #58709d;
  --text-tertiary: #6d6d6d;
  --text-highlight: #4590f9;
  --text-link: #34a853;
  --text-error: #d16464;
  --btn-primary: #4590f9;
  --btn-primary-text: #fff;
  --btn-secondary: #34a853;
  --btn-secondary-text: #fff;
  --btn-red: #d16464;
  --btn-yellow: #bbac6a;
  --btn-green: #34a853;
  --btn-gray: #ededed;
  --btn-gray-text: #6d6d6d;
  --input-text: #58709d;
  --input-placeholder-text: #c3c3c3;
  --input-bg: #fff;
  --input-bg-secondary: #ededed;
  --input-border: #c3c3c3;
  --input-disabled-bg: #f4f4f4;
  --dragdrop-bg: #E1EBF9;
  --dragdrop-toolbar-bg: #E1EBF9;
  --dragdrop-text: #0d3476;
  --scrollbar-colour: #34a853;
  --scrollbar-bg:#c3c3c3;
  --popup-bg: #f9f9f9;
  --popup-border: #ededed;
}
html .eggy {
  z-index: 100;
  width: 450px;
}
html .eggy > div {
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
}
html .eggy > div.success {
  border: 3px solid #34a853;
}
html .eggy > div.success svg:not(.close-btn) {
  fill: #34a853;
}
html .eggy > div.warning {
  border: 3px solid #bbac6a;
}
html .eggy > div.warning svg:not(.close-btn) {
  fill: #bbac6a;
}
html .eggy > div.info {
  border: 3px solid #4385f3;
}
html .eggy > div.info svg:not(.close-btn) {
  fill: #4385f3;
}
html .eggy > div.error {
  border: 3px solid #d16464;
}
html .eggy > div.error svg:not(.close-btn) {
  fill: #d16464;
}
html .eggy > div > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
html .eggy > div > div .title {
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 12px);
  font-weight: bold;
  color: var(--text-primary);
  line-height: calc(var(--font-size) + 20px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  margin: 0;
}
@media (min-width:768px) {
  html .eggy > div > div .title {
    font-size: calc(var(--font-size) + 14px);
  }
}
html .eggy > div > div .message {
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 13px);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: calc(var(--font-size) + 19px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: calc(var(--var-theme-font-size) + 13px);
  margin: 0;
}
@media (min-width:768px) {
  html .eggy > div > div .message {
    font-size: calc(var(--font-size) + 14px);
  }
}
html .eggy > div svg:not(.close-btn) {
  height: 30px;
  width: 30px;
  margin: 0 auto;
}
html .eggy > div svg.close-btn {
  fill: #242424;
  height: 25px;
  width: 25px;
  margin: 0 auto;
  cursor: pointer;
}
html .eggy > div .progress-bar {
  position: absolute;
}
html * {
  transition: color 0.1s ease, background 0.1s ease;
}
html body {
  height: inherit;
  width: inherit;
  margin: 0;
}
html body main {
  height: inherit;
  width: inherit;
  background: var(--bg-app);
}
html body main #forgot-password-page {
  height: inherit;
  width: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body main #forgot-password-page form {
  background-color: var(--bg-primary);
  padding: 2rem;
  border-radius: 15px;
  display: grid;
  gap: 3rem;
  width: 95%;
  max-width: 600px;
  box-sizing: border-box;
  max-height: 90%;
  overflow: auto;
  border: 2px solid var(--border-primary);
}
html body main #forgot-password-page form .wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
html body main #forgot-password-page form .wrapper .inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
html body main #forgot-password-page form .wrapper .inputs .form-group {
  display: flex;
  flex-direction: column;
}
html body main #forgot-password-page form .wrapper .inputs .form-group label {
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 15px - 1px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: calc(var(--font-size) + 15px + 7px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-wrap: break-word;
}
@media (min-width:768px) {
  html body main #forgot-password-page form .wrapper .inputs .form-group label {
    font-size: calc(var(--font-size) + 15px);
  }
}
html body main #forgot-password-page form .wrapper .inputs .form-group label .required-star {
  color: var(--text-error);
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) {
  width: 100%;
  height: 2.5rem;
  position: relative;
  box-sizing: border-box;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) input, html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) textarea {
  width: 100%;
  height: 100%;
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 14px - 1px);
  font-weight: 400;
  color: var(--input-text);
  line-height: calc(var(--font-size) + 14px + 7px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-wrap: break-word;
  border-radius: 7px;
  box-sizing: border-box;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 0 1rem;
  outline: none;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: box-shadow 0.2s ease-out;
}
@media (min-width:768px) {
  html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) input, html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) textarea {
    font-size: calc(var(--font-size) + 14px);
  }
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) input .required-star, html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) textarea .required-star {
  color: var(--text-error);
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) input[data-error=true], html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) input:user-invalid, html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) textarea[data-error=true], html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) textarea:user-invalid {
  border: 1.5px solid #d16464;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) input::-moz-placeholder, html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) textarea::-moz-placeholder {
  color: var(--input-placeholder-text);
  opacity: 1;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) input::placeholder, html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select) textarea::placeholder {
  color: var(--input-placeholder-text);
  opacity: 1;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select)[readonly] input, html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select)[readonly] textarea {
  pointer-events: all !important;
  padding-right: 2.5rem;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select)[readonly]:is(.input-textarea) {
  height: 20px;
  width: 20px;
  top: 25px;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-wrapper:not(.input-select)[readonly]:not(.input-textarea) {
  height: calc(40px / 2.2);
  width: calc(40px / 2.2);
  transform: translate(0%, -50%);
  top: 50%;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select {
  width: 100%;
  height: 2.5rem;
  position: relative;
  box-sizing: border-box;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select select {
  width: 100%;
  height: 100%;
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 14px - 1px);
  font-weight: 400;
  color: var(--input-text);
  line-height: calc(var(--font-size) + 14px + 7px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-wrap: break-word;
  border-radius: 7px;
  box-sizing: border-box;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  padding: 0 1rem;
  outline: none;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: box-shadow 0.2s ease-out;
}
@media (min-width:768px) {
  html body main #forgot-password-page form .wrapper .inputs .form-group .input-select select {
    font-size: calc(var(--font-size) + 14px);
  }
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select select .required-star {
  color: var(--text-error);
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select select[data-error=true], html body main #forgot-password-page form .wrapper .inputs .form-group .input-select select:user-invalid {
  border: 1.5px solid #d16464;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select select::-moz-placeholder {
  color: var(--input-placeholder-text);
  opacity: 1;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select select::placeholder {
  color: var(--input-placeholder-text);
  opacity: 1;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select[readonly] {
  height: calc(40px / 2.2);
  width: calc(40px / 2.2);
  transform: translate(0%, -50%);
  top: 50%;
}
html body main #forgot-password-page form .wrapper .inputs .form-group .input-select[readonly] select {
  pointer-events: all !important;
  padding-right: 2.5rem;
}
html body main #forgot-password-page form .wrapper .inputs .form-group a {
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 15px - 1px);
  font-weight: 500;
  color: var(--text-highlight);
  line-height: calc(var(--font-size) + 15px + 7px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-wrap: break-word;
  margin: 0.5rem 0 0 0;
}
@media (min-width:768px) {
  html body main #forgot-password-page form .wrapper .inputs .form-group a {
    font-size: calc(var(--font-size) + 15px);
  }
}
html body main #forgot-password-page form .wrapper .inputs .form-group a .required-star {
  color: var(--text-error);
}
html body main #forgot-password-page form .wrapper .inputs button {
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 15px - 1px);
  font-weight: 400;
  color: var(--btn-primary-text);
  line-height: calc(var(--font-size) + 15px + 7px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-wrap: break-word;
  background-color: var(--btn-primary);
  border: none;
  border-radius: 7px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  height: 40px;
  width: 100%;
}
@media (min-width:768px) {
  html body main #forgot-password-page form .wrapper .inputs button {
    font-size: calc(var(--font-size) + 15px);
  }
}
html body main #forgot-password-page form .wrapper .inputs button .required-star {
  color: var(--text-error);
}
html body main #forgot-password-page form .wrapper .inputs button.disabled, html body main #forgot-password-page form .wrapper .inputs button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
html body main #forgot-password-page form .wrapper .inputs button:hover {
  opacity: 0.9;
  cursor: pointer;
}
html body main #forgot-password-page form .wrapper .inputs button:focus {
  outline: none;
}
html body main #forgot-password-page form .wrapper .inputs button.loading {
  position: relative;
  pointer-events: none;
}
html body main #forgot-password-page form .wrapper .inputs button.loading:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background-color: inherit;
}
html body main #forgot-password-page form .wrapper .inputs button.loading:after {
  content: "";
  height: 1rem;
  width: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/img/loader.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  animation: loaderKeyframes 2s infinite ease-in-out;
}
html body main #forgot-password-page form .wrapper .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
html body main #forgot-password-page form .wrapper .top h1 {
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 28px);
  font-weight: bold;
  color: var(--text-primary);
  line-height: calc(var(--font-size) + 36px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  margin: 0;
  text-align: center;
}
@media (min-width:768px) {
  html body main #forgot-password-page form .wrapper .top h1 {
    font-size: calc(var(--font-size) + 32px);
  }
}
html body main #forgot-password-page form .wrapper .top h1 strong {
  color: var(--text-highlight);
}
html body main #forgot-password-page form .wrapper .top p {
  font-family: var(--text-family);
  font-size: calc(var(--font-size) + 15px - 1px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: calc(var(--font-size) + 15px + 7px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  word-wrap: break-word;
  margin: 0;
  text-align: center;
  max-width: 400px;
  text-align: balanced;
}
@media (min-width:768px) {
  html body main #forgot-password-page form .wrapper .top p {
    font-size: calc(var(--font-size) + 15px);
  }
}
html body main #forgot-password-page form .wrapper .top p .required-star {
  color: var(--text-error);
}
html body main #forgot-password-page form .wrapper .top p a {
  color: var(--text-highlight);
  font-weight: 500;
}
