@charset "UTF-8";
/*------------------------------------*\
* CONTAINER
\*------------------------------------*/
/*------------------------------------*\
* COLUMNS
\*------------------------------------*/
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: rgb(216, 167, 177);
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: rgb(34, 34, 34);
  text-decoration: underline;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
:root {
  --font-primary: sans-serif;
  --font-secondary: sans-serif;
  /* set base values */
  --text-base-size: 1em;
  --text-scale-ratio: 1.3;
  /* type scale */
  --text-xs: calc(1em / (var(--text-scale-ratio) * var(--text-scale-ratio)));
  --text-sm: calc(1em / var(--text-scale-ratio));
  --text-md: calc(1em * var(--text-scale-ratio));
  --text-lg: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxxl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  /* line-height */
  --heading-line-height: 1.2;
  --body-line-height: 1.4;
  /* spacing values */
  --space-xxxs: 0.25em;
  --space-xxs: 0.375em;
  --space-xs: 0.5em;
  --space-sm: 0.75em;
  --space-md: 1.25em;
  --space-lg: 2em;
  --space-xl: 3.25em;
  --space-xxl: 5.25em;
  --space-xxxl: 8.5em;
}

/**
 * Basic typography style for copy text
 */
body {
  font-size: var(--text-base-size);
  font-family: var(--font-primary);
  color: var(--color-text);
  margin-bottom: var(--space-xxs);
  line-height: var(--heading-line-height);
}

h1, h2, h3, h4, form legend {
  font-family: var(--font-secondary);
  color: var(--color-text-heading);
  margin-bottom: var(--space-xxs);
  line-height: var(--heading-line-height);
  font-weight: bold;
}

/* text size */
.text--xxxl {
  font-size: var(--text-xxxl);
}

h1, .text--xxl {
  font-size: var(--text-xxl) !important;
}

h2, .text--xl {
  font-size: var(--text-xl) !important;
}

h3, .text--lg {
  font-size: var(--text-lg) !important;
}

h4, .text--md {
  font-size: var(--text-md) !important;
}

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

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

p {
  line-height: var(--body-line-height);
}

h2, h3, h4 {
  margin-top: var(--space-sm);
}

ul, ol, p {
  margin-bottom: var(--space-md);
}

a {
  color: rgb(216, 167, 177);
}

b, strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

strong em {
  font-weight: bold;
  font-style: italic;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1180px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 20px; /* 3 */
  padding-right: 20px; /* 3 */
  width: 100%; /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

header {
  background: linear-gradient(rgba(168, 187, 162, 0.9), rgba(168, 187, 162, 0.9)), url("../../static/img/nau-qf.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100%;
  padding: 40px;
}

.container {
  max-width: 84rem;
  margin: 0 auto;
}

.row {
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex-shrink: 1;
  flex-basis: 0;
  flex-grow: 1;
}

[class*=col] {
  padding: 0.5rem;
}

[class*=col].no-gutter {
  padding: 0;
}

/**
* EXTRA SMALL (XS)
*/
/*------------------------------------*\
# COLUMNS
\*------------------------------------*/
.col-xs-1 {
  width: 8.3333333333%;
  position: relative;
}

.col-xs-2 {
  width: 16.6666666667%;
  position: relative;
}

.col-xs-3 {
  width: 25%;
  position: relative;
}

.col-xs-4 {
  width: 33.3333333333%;
  position: relative;
}

.col-xs-5 {
  width: 41.6666666667%;
  position: relative;
}

.col-xs-6 {
  width: 50%;
  position: relative;
}

.col-xs-7 {
  width: 58.3333333333%;
  position: relative;
}

.col-xs-8 {
  width: 66.6666666667%;
  position: relative;
}

.col-xs-9 {
  width: 75%;
  position: relative;
}

.col-xs-10 {
  width: 83.3333333333%;
  position: relative;
}

.col-xs-11 {
  width: 91.6666666667%;
  position: relative;
}

.col-xs-12 {
  width: 100%;
  position: relative;
}

/*------------------------------------*\
# OFFSET COLUMNS
\*------------------------------------*/
.col-xs-offset-1 {
  margin-left: 8.3333333333%;
  position: relative;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
  position: relative;
}

.col-xs-offset-3 {
  margin-left: 25%;
  position: relative;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
  position: relative;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
  position: relative;
}

.col-xs-offset-6 {
  margin-left: 50%;
  position: relative;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
  position: relative;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
  position: relative;
}

.col-xs-offset-9 {
  margin-left: 75%;
  position: relative;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
  position: relative;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
  position: relative;
}

.col-xs-offset-12 {
  margin-left: 100%;
  position: relative;
}

/**
* SMALL (SM), MEDIUM (MD), LARGE (LG)
*/
@media (min-width: 768px) {
  /*------------------------------------*\
  # COLUMNS
  \*------------------------------------*/
  .col-sm-1 {
    width: 8.3333333333%;
    position: relative;
  }
  .col-sm-2 {
    width: 16.6666666667%;
    position: relative;
  }
  .col-sm-3 {
    width: 25%;
    position: relative;
  }
  .col-sm-4 {
    width: 33.3333333333%;
    position: relative;
  }
  .col-sm-5 {
    width: 41.6666666667%;
    position: relative;
  }
  .col-sm-6 {
    width: 50%;
    position: relative;
  }
  .col-sm-7 {
    width: 58.3333333333%;
    position: relative;
  }
  .col-sm-8 {
    width: 66.6666666667%;
    position: relative;
  }
  .col-sm-9 {
    width: 75%;
    position: relative;
  }
  .col-sm-10 {
    width: 83.3333333333%;
    position: relative;
  }
  .col-sm-11 {
    width: 91.6666666667%;
    position: relative;
  }
  .col-sm-12 {
    width: 100%;
    position: relative;
  }
  /*------------------------------------*\
  # OFFSET COLUMNS
  \*------------------------------------*/
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
    position: relative;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
    position: relative;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
    position: relative;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
    position: relative;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
    position: relative;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
    position: relative;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
    position: relative;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
    position: relative;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
    position: relative;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
    position: relative;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
    position: relative;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
    position: relative;
  }
}
@media (min-width: 992px) {
  /*------------------------------------*\
  # COLUMNS
  \*------------------------------------*/
  .col-md-1 {
    width: 8.3333333333%;
    position: relative;
  }
  .col-md-2 {
    width: 16.6666666667%;
    position: relative;
  }
  .col-md-3 {
    width: 25%;
    position: relative;
  }
  .col-md-4 {
    width: 33.3333333333%;
    position: relative;
  }
  .col-md-5 {
    width: 41.6666666667%;
    position: relative;
  }
  .col-md-6 {
    width: 50%;
    position: relative;
  }
  .col-md-7 {
    width: 58.3333333333%;
    position: relative;
  }
  .col-md-8 {
    width: 66.6666666667%;
    position: relative;
  }
  .col-md-9 {
    width: 75%;
    position: relative;
  }
  .col-md-10 {
    width: 83.3333333333%;
    position: relative;
  }
  .col-md-11 {
    width: 91.6666666667%;
    position: relative;
  }
  .col-md-12 {
    width: 100%;
    position: relative;
  }
  /*------------------------------------*\
  # OFFSET COLUMNS
  \*------------------------------------*/
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
    position: relative;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
    position: relative;
  }
  .col-md-offset-3 {
    margin-left: 25%;
    position: relative;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
    position: relative;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
    position: relative;
  }
  .col-md-offset-6 {
    margin-left: 50%;
    position: relative;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
    position: relative;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
    position: relative;
  }
  .col-md-offset-9 {
    margin-left: 75%;
    position: relative;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
    position: relative;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
    position: relative;
  }
  .col-md-offset-12 {
    margin-left: 100%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  /*------------------------------------*\
  # COLUMNS
  \*------------------------------------*/
  .col-lg-1 {
    width: 8.3333333333%;
    position: relative;
  }
  .col-lg-2 {
    width: 16.6666666667%;
    position: relative;
  }
  .col-lg-3 {
    width: 25%;
    position: relative;
  }
  .col-lg-4 {
    width: 33.3333333333%;
    position: relative;
  }
  .col-lg-5 {
    width: 41.6666666667%;
    position: relative;
  }
  .col-lg-6 {
    width: 50%;
    position: relative;
  }
  .col-lg-7 {
    width: 58.3333333333%;
    position: relative;
  }
  .col-lg-8 {
    width: 66.6666666667%;
    position: relative;
  }
  .col-lg-9 {
    width: 75%;
    position: relative;
  }
  .col-lg-10 {
    width: 83.3333333333%;
    position: relative;
  }
  .col-lg-11 {
    width: 91.6666666667%;
    position: relative;
  }
  .col-lg-12 {
    width: 100%;
    position: relative;
  }
  /*------------------------------------*\
  # OFFSET COLUMNS
  \*------------------------------------*/
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
    position: relative;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
    position: relative;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
    position: relative;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
    position: relative;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
    position: relative;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
    position: relative;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
    position: relative;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
    position: relative;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
    position: relative;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
    position: relative;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
    position: relative;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .row {
    padding: 20px 20px;
  }
}
footer {
  color: white;
  background: url("/static/img/footer-bg.jpg");
}
footer h2 {
  color: #333;
}
footer h3 {
  font-family: "Lato";
  font-weight: lighter;
}
footer h3::first-letter {
  text-transform: uppercase;
}
footer a {
  color: rgb(216, 167, 177);
}
footer > div:nth-child(2) {
  background-color: #333;
}
footer > div:nth-child(2) a:hover {
  color: white;
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin-left: 1em;
}

.flag {
  width: 48px;
}

.blinking-dot {
  width: 8px;
  height: 8px;
  background-color: white;
  position: absolute;
  top: calc(50% - 4px);
  left: calc(50% - 4px);
  border-radius: 50%;
  animation: blinker 1s linear infinite;
}

@media only screen and (max-width: 992px) {
  .contact-icon {
    margin-left: 0;
  }
}
.formatted-list ul {
  list-style: none;
}
.formatted-list ul li:before {
  content: "👉";
  margin-right: 8px;
}
.formatted-list ul span {
  color: mediumseagreen;
}
.formatted-list ol {
  counter-reset: my-counter;
  list-style: none;
  position: relative;
}
.formatted-list ol li {
  counter-increment: my-counter;
  margin-bottom: 16px;
  line-height: 40px;
}
.formatted-list ol li:before {
  content: counter(my-counter);
  font-weight: bold;
  margin-right: 1em;
  --border_size: 4px;
  border-radius: 50%;
  height: 32px;
  border: var(--border_size) solid white;
  color: white;
  width: 32px;
  line-height: calc(var(--border_size) * 2 + 16px);
  text-align: center;
  display: inline-block;
}
.formatted-list--dark ol li:before {
  border: var(--border_size) solid rgb(51, 51, 51);
  color: rgb(51, 51, 51);
}
.formatted-list--light ol li:before {
  border: var(--border_size) solid white;
  color: white;
}

.button {
  position: relative;
  background-color: rgb(51, 51, 51);
  border: none;
  color: white;
  padding: 15px 32px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  text-transform: uppercase;
}
.button:disabled {
  background-color: rgb(76.5, 76.5, 76.5);
}
.button:disabled:hover {
  cursor: not-allowed;
  background-color: rgb(76.5, 76.5, 76.5);
  outline: none;
}
.button:hover {
  background-color: rgb(237, 237, 237);
  outline: 2px solid rgb(51, 51, 51);
  text-decoration: none;
  color: rgb(51, 51, 51);
  cursor: pointer;
}
.button__icon {
  display: inline-block;
  background-color: white;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 4px;
}
.button__icon img {
  width: 32px;
  height: 32px;
}
.button__icon > .status {
  position: absolute;
  top: 0px;
  right: 0px;
  border: 2px solid rgb(51, 51, 51);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.button__icon > .status--red {
  background-color: rgb(255, 68, 59);
}
.button__icon > .status--green {
  background-color: rgb(161, 252, 2);
}
.button__icon:hover {
  background-color: rgb(237, 237, 237);
}
.button__spotify {
  background-color: rgb(29, 185, 84);
}
.button__primary {
  background-color: rgb(216, 167, 177);
}
.button__primary--pop {
  animation: button_animation 1s ease forwards;
  transition: box-shadow 1s;
  -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
  -moz-box-shadow: 15px 15px rgb(51, 51, 51);
  box-shadow: 15px 15px rgb(51, 51, 51);
}
.button__primary--pop:hover {
  -webkit-box-shadow: 0px 0px rgb(51, 51, 51);
  -moz-box-shadow: 0px 0px rgb(51, 51, 51);
  box-shadow: 0px 0px rgb(51, 51, 51);
}
.button__primary:hover {
  background-color: rgb(250.6770186335, 251.6211180124, 250.3788819876);
  text-decoration: none;
  outline: 2px solid rgb(216, 167, 177);
}
.button__secondary {
  background-color: rgb(51, 51, 51);
  display: block;
}
.button__secondary:enabled:hover {
  background-color: rgb(237, 237, 237);
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.button__secondary--download:enabled:hover {
  background-color: rgb(168, 187, 162);
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.button__category {
  margin-right: 25px;
  border-radius: 0px 25px 25px 0px;
  background-color: rgb(237, 237, 237);
  color: rgb(51, 51, 51);
}
.button__category:hover {
  background-color: rgb(51, 51, 51);
  color: white;
}
.button__category > div {
  outline: 2px solid rgb(51, 51, 51);
  left: -33px;
  position: absolute;
  width: 54px;
  height: 54px;
  bottom: 0px;
  top: 0px;
  border-radius: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button__category > div img {
  width: 40px;
  height: 40px;
}

@-webkit-keyframes button_animation {
  0% {
    -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
    -moz-box-shadow: 15px 15px rgb(51, 51, 51);
    box-shadow: 15px 15px rgb(51, 51, 51);
  }
  25% {
    -webkit-box-shadow: 5px 5px rgb(51, 51, 51);
    -moz-box-shadow: 5px 5px rgb(51, 51, 51);
    box-shadow: 5px 5px rgb(51, 51, 51);
  }
  50% {
    -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
    -moz-box-shadow: 15px 15px rgb(51, 51, 51);
    box-shadow: 15px 15px rgb(51, 51, 51);
  }
  75% {
    -webkit-box-shadow: 5px 5px rgb(51, 51, 51);
    -moz-box-shadow: 5px 5px rgb(51, 51, 51);
    box-shadow: 5px 5px rgb(51, 51, 51);
  }
  100% {
    -webkit-box-shadow: 15px 15px rgb(51, 51, 51);
    -moz-box-shadow: 15px 15px rgb(51, 51, 51);
    box-shadow: 15px 15px rgb(51, 51, 51);
  }
}
/* Button styling */
.shake-btn {
  transition: transform 0.2s;
}

/* Trigger shake on hover */
.shake-btn:hover {
  animation: shake 0.4s ease-in-out;
}

/* Shake keyframes */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
/* Button base styling */
.heed-btn {
  transition: transform 0.2s;
  animation: heedPulse 1.5s infinite; /* add pulse automatically */
}

/* Floating copy (hidden by default) */
.heed-btn--float {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  border-radius: 0;
  text-align: center;
  padding: 1rem;
  /* Optional: iOS safe area support */
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}

.heed-btn--float.is-visible {
  display: block;
}

/* Add space when float is visible so it doesn’t overlap content */
body.has-sticky-cta {
  padding-bottom: 50px; /* match button height */
}

/* Heed pulse keyframes */
@keyframes heedPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(153, 153, 153, 0.7);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px 5px rgba(153, 153, 153, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(153, 153, 153, 0.7);
  }
}
.tooltip {
  position: absolute;
  display: none;
  background-color: white;
  border: 4px solid rgb(237, 237, 237);
  padding: 8px 16px;
  right: 0%;
  top: -64px;
}

.tooltip .tooltiptext {
  display: block;
  color: #333;
  font-size: var(--text-base-size);
  text-align: center;
}

.new-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.new-tooltip .new-tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.new-tooltip .new-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.new-tooltip:hover .new-tooltiptext {
  visibility: visible;
  opacity: 1;
}

.alert {
  border: 4px dashed rgb(51, 51, 51);
  padding: 20px 40px;
  background-color: rgb(255, 244, 209);
}
.alert p {
  margin: 0;
}

.tag {
  padding: 8px 8px;
  font-size: var(--text-sm);
}
.tag__new {
  border: 2px solid rgb(216, 167, 177);
  font-weight: bold;
  text-transform: uppercase;
  background-color: white;
  color: rgb(216, 167, 177);
}
.tag__pill-type {
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  background-color: rgb(237, 237, 237);
  color: rgb(51, 51, 51);
  line-height: calc(var(--body-line-height) * 2);
  -webkit-box-decoration-break: clone;
}

.navbar {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
}
.navbar-container {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 10;
}
.navbar__logo img {
  height: 32px;
}
.navbar__menu {
  display: flex;
}
.navbar__menu ul {
  list-style-type: none;
}
.navbar__menu ul li {
  list-style: none;
  float: left;
}
.navbar__menu ul li a {
  display: block;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

.hero {
  background-image: url("../img/homepage/hero-picture.jpg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  height: 400px;
}
.hero .container, .hero .row, .hero .col-xs-6 {
  height: 100%;
}
.hero .col-xs-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-hero {
  height: 100vh;
  padding-top: calc(48px + 1rem + 40px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-hero .container {
  padding: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #3b2f2f;
  max-width: 600px;
  text-align: center;
  background-color: rgba(250, 235, 215, 0.4);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

@media only screen and (max-width: 992px) {
  .hero {
    background-size: cover;
  }
}
.playlist-thanks {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem;
  text-align: center;
  color: #3b2f2f;
  font-family: "Georgia", serif;
}

.playlist-thanks h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.playlist-thanks p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

#countdown {
  font-family: "Georgia", serif;
  font-size: 1rem;
  color: #3b2f2f; /* dark brown for legibility */
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}
#countdown:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.cta-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-img img {
  width: 80%;
  float: right;
}

.cta-card__content {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgb(51, 51, 51);
  padding: 32px;
}
.cta-card__content .button {
  margin-right: 0px;
}

.cta-premium {
  background-color: rgb(243, 243, 243);
}

.stepper {
  display: flex;
}
.stepper__item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table__img--min {
  padding: 4px !important;
}
.table__img--min img {
  width: 72px;
  height: 72px;
  transition: transform 0.1s;
}
.table__img--min img:hover {
  transform: scale(2.5);
  z-index: 10;
}
.table__pricing td {
  border: 1px solid rgb(237, 237, 237);
}
.table__pricing tr:last-child {
  border: 1px solid rgb(237, 237, 237);
}
.table__pricing tr:last-child td {
  color: white;
  font-weight: bold;
  background-color: rgb(51, 51, 51) !important;
  border: none;
}
.table__pricing th {
  text-transform: uppercase;
  font-size: var(--text-xl);
  font-family: var(--font-secondary);
  font-weight: bold;
  color: white;
  padding: 20px;
}
.table__pricing th:not(:first-child) {
  background-color: rgb(51, 51, 51);
}
.table__pricing tr td:first-child {
  max-width: 300px;
  background-color: rgb(243, 243, 243);
  padding: 10px 20px;
}
.table__pricing tr td:first-child p {
  text-transform: uppercase;
  font-weight: bold;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}
.table__pricing tr td:not(:first-child) {
  text-align: center;
}
.table__pricing--breakline {
  background-color: rgb(51, 51, 51);
  border: 1px solid rgb(237, 237, 237);
}
.table__pricing--breakline td {
  border: none;
}
.table__pricing--breakline td:first-child {
  background-color: rgb(51, 51, 51) !important;
  color: white;
}
.table__admin {
  padding: 20px;
  border: 1px solid rgb(237, 237, 237);
}
.table__admin th {
  background-color: rgb(51, 51, 51);
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}
.table__admin th, .table__admin td {
  border: 1px solid rgb(237, 237, 237);
  border-collapse: collapse;
  padding: 20px 40px;
}
.table__admin tr > td:last-child {
  text-align: center;
}

.lds-dual-ring {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#add-pill-modal > .modal-content {
  width: 90%;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 40px 100px;
  border: 1px solid #888;
  width: 60%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.form {
  margin: 20px 0px;
}
.form textarea {
  resize: vertical;
}
.form > .group {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.form > .group > .field {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.form > .group > .field > label {
  margin-bottom: 8px;
  font-size: var(--text-sm);
  font-weight: bold;
  text-transform: uppercase;
}
.form > .group > .field:first-child {
  margin-right: 8px;
}
.form > .group > .field:last-child {
  margin-left: 8px;
}
.form > .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form > .field > label {
  font-size: var(--text-sm);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(153, 153, 153);
}

.bank-clipboard {
  display: flex;
  flex-direction: row;
  border: 2px solid #333;
  background-color: white;
}
@media (max-width: 768px) {
  .bank-clipboard {
    flex-direction: column;
  }
}
.bank-clipboard p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
  padding: 8px 16px;
  font-weight: bold;
}

.tabs {
  margin-top: 20px;
}
.tabs--active {
  background-color: white !important;
  border-bottom: none !important;
}
.tabs--active:hover {
  color: rgb(51, 51, 51) !important;
}
.tabs__header {
  display: flex;
  flex-direction: row;
}
.tabs__header--add {
  width: 60px !important;
  background-color: rgb(51, 51, 51) !important;
  color: white !important;
}
.tabs__header--add:hover {
  color: rgb(51, 51, 51) !important;
  background-color: rgb(237, 237, 237) !important;
}
.tabs__header button {
  font-weight: bold;
  height: 60px;
  width: 120px;
  border-radius: 0px;
  background-color: rgb(237, 237, 237);
  border: 1px solid rgb(51, 51, 51);
}
.tabs__header button:hover {
  cursor: pointer;
  background-color: rgb(51, 51, 51);
  color: white;
}
.tabs__body {
  margin-top: -1px;
  padding: 20px;
  border: 1px solid rgb(51, 51, 51);
}

.card {
  background-color: white;
  border: 1px solid rgb(237, 237, 237);
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}
.card__header {
  background-color: rgb(216, 167, 177);
  color: white;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.card__header span {
  color: rgb(168, 187, 162);
}
.card__body {
  padding: 10px 20px;
}
.card__body ol {
  padding: 0px;
}
.card__footer {
  padding: 20px;
  display: flex;
  justify-content: center;
}
.card__tag {
  background-color: rgb(243, 243, 243);
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  width: 60%;
  right: 0;
  text-align: center;
  border-radius: 0px 0px 10px 10px;
  padding: 4px 0px;
}

.blog .container {
  max-width: 1024px;
}
.blog p {
  font-size: var(--text-lg);
}
.blog h1 {
  font-size: var(--text-xxl);
  margin-bottom: 40px;
}
.blog__title {
  font-size: 40px;
}
.blog__author {
  color: rgb(153, 153, 153);
}
.blog img {
  object-fit: cover;
  width: 100%;
  height: 300px;
}
.blog__share-container {
  border-top: 1px solid rgb(237, 237, 237);
  border-bottom: 1px solid rgb(237, 237, 237);
}

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