/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Mixins */
/*
<div class="progress-circle p{VALUE_OF_PROGRESS} {if VALUE_OF_PROGRESS > 50}over50{/if}">
	<span>{VALUE_OF_PROGRESS}%</span>
	<div class="left-half-clipper">
		<div class="first50-bar"></div>
		<div class="value-bar"></div>
	</div>
</div>
*/
/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Variables */
:root {
  --hl-apple: #CADCB5;
  --hl-berlin: #CCCCCC;
  --hl-black: #1A1A1A;
  --hl-blossom: #A76486;
  --hl-border: #ccc;
  --hl-caribean: #009A89;
  --hl-coconut: #ECECEB;
  --hl-grey: #666666;
  --hl-ice: #CEE3E8;
  --hl-icelight: #ECF6F9;
  --hl-light: #FFE763;
  --hl-lightgrey: #FAFAFA;
  --hl-primary: #005971;
  --hl-sea: #1B8C9F;
  --hl-sundown: #E52027;
  --hl-sunny: #FECC00;
  --hl-sunrise: #EF7C00;
  --hl-tree: #006933;
  --hl-white: #fff;
}

:root {
  --roboto: "Roboto", Helvetica, Arial, sans-serif;
  --thomasheadline: "Thomas Headline", "Roboto", Helvetica, Arial, sans-serif;
  --thomasheadlinelight: "Thomas Headline Light", "Roboto", Helvetica, Arial, sans-serif;
  --box-shadow: 0 .4rem .4rem 0 rgba(0, 0, 0, .1);
}

/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- General Styles */
html,
body {
  height: 100%;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--roboto);
  font-size: 1.6rem;
}
body.keyboard-navigation *:focus {
  box-shadow: 0 0 0 0.2rem var(--hl-white), 0 0 0 0.4rem var(--hl-primary);
  outline: 0;
}

main,
pre {
  flex: 1 0 auto;
}

picture {
  display: block;
}

html h1,
html h2,
html h3,
html h4 {
  font-family: var(--thomasheadline);
  font-weight: 700;
}
html h1 {
  font-size: 2.4rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  html h1 {
    font-size: 3.2rem;
  }
}
html h2,
html h3 {
  font-weight: 800;
}
html a {
  font-family: var(--roboto);
  text-decoration: none;
}
html p,
html span,
html ul,
html ol {
  font-family: var(--roboto);
}
html b,
html strong {
  font-weight: 800;
}

input[type=text]:focus-visible,
input[type=search]:focus-visible,
input[type=email]:focus-visible,
input[type=number]:focus-visible {
  outline: 0;
}

button,
.button {
  align-items: center;
  border: none;
  border-radius: 0.5rem;
  display: flex;
  font-family: var(--roboto);
  font-size: 1.6rem;
  font-weight: 800;
  height: 4rem;
  justify-content: center;
  padding: 0 1rem;
}
button:hover, button:focus, button:active,
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
}
button.default,
.button.default {
  border: 0.1rem solid var(--hl-berlin);
  text-decoration: none;
}
button.primary,
.button.primary {
  background: var(--hl-primary);
  color: var(--hl-white);
  text-decoration: none;
}
button.primary:hover, button.primary:focus, button.primary:active,
.button.primary:hover,
.button.primary:focus,
.button.primary:active {
  background: var(--hl-sea);
}
button.secondary,
.button.secondary {
  background: var(--hl-sunny);
  color: var(--hl-primary);
  text-decoration: none;
}
button.secondary:hover, button.secondary:focus, button.secondary:active,
.button.secondary:hover,
.button.secondary:focus,
.button.secondary:active {
  background: var(--hl-sunrise);
  color: var(--hl-white);
}
button.red,
.button.red {
  background: var(--hl-sundown);
  color: var(--hl-white);
  text-decoration: none;
}
button.red:hover, button.red:focus, button.red:active,
.button.red:hover,
.button.red:focus,
.button.red:active {
  background: var(--hl-sundown);
  color: var(--hl-white);
}

.iradio_square-orange,
input[type=radio],
.radio {
  background: var(--hl-white);
  border: 0.1rem solid var(--hl-berlin);
  border-radius: 50%;
  flex-shrink: 0;
  height: 1.8rem !important;
  margin: 0 1rem 0 0;
  width: 1.8rem !important;
}
.iradio_square-orange:checked, .iradio_square-orange.checked,
input[type=radio]:checked,
input[type=radio].checked,
.radio:checked,
.radio.checked {
  background: var(--hl-primary);
}
.iradio_square-orange[disabled],
input[type=radio][disabled],
.radio[disabled] {
  border: 0.1rem solid var(--hl-berlin);
}
.iradio_square-orange[disabled]:checked, .iradio_square-orange[disabled].checked,
input[type=radio][disabled]:checked,
input[type=radio][disabled].checked,
.radio[disabled]:checked,
.radio[disabled].checked {
  background: var(--hl-berlin);
}
.iradio_square-orange[readonly],
input[type=radio][readonly],
.radio[readonly] {
  border: 0.1rem solid var(--hl-berlin);
}
.iradio_square-orange[readonly]:checked, .iradio_square-orange[readonly].checked,
input[type=radio][readonly]:checked,
input[type=radio][readonly].checked,
.radio[readonly]:checked,
.radio[readonly].checked {
  background: var(--hl-berlin);
}
.iradio_square-orange.error,
input[type=radio].error,
.radio.error {
  border: 0.1rem solid var(--hl-sundown);
}
.iradio_square-orange.error:checked, .iradio_square-orange.error.checked,
input[type=radio].error:checked,
input[type=radio].error.checked,
.radio.error:checked,
.radio.error.checked {
  background: var(--hl-sundown);
}
.iradio_square-orange:hover,
input[type=radio]:hover,
.radio:hover {
  border: 0.1rem solid var(--hl-primary);
}
.iradio_square-orange:hover:checked, .iradio_square-orange:hover.checked,
input[type=radio]:hover:checked,
input[type=radio]:hover.checked,
.radio:hover:checked,
.radio:hover.checked {
  background: var(--hl-primary);
}

.icheckbox_square-orange,
input[type=checkbox] {
  background: var(--hl-white);
  border: 0.1rem solid var(--hl-primary);
  flex-shrink: 0;
  height: 1.8rem;
  margin: 0 1rem 0 0;
  width: 1.8rem;
}
.icheckbox_square-orange:checked, .icheckbox_square-orange.checked,
input[type=checkbox]:checked,
input[type=checkbox].checked {
  background: var(--hl-primary);
}
.icheckbox_square-orange[disabled],
input[type=checkbox][disabled] {
  border: 0.1rem solid var(--hl-berlin);
}
.icheckbox_square-orange[disabled]:checked, .icheckbox_square-orange[disabled].checked,
input[type=checkbox][disabled]:checked,
input[type=checkbox][disabled].checked {
  background: var(--hl-berlin);
}
.icheckbox_square-orange[readonly],
input[type=checkbox][readonly] {
  border: 0.1rem solid var(--hl-berlin);
}
.icheckbox_square-orange[readonly]:checked, .icheckbox_square-orange[readonly].checked,
input[type=checkbox][readonly]:checked,
input[type=checkbox][readonly].checked {
  background: var(--hl-berlin);
}
.icheckbox_square-orange.error,
input[type=checkbox].error {
  border: 0.1rem solid var(--hl-sundown);
}
.icheckbox_square-orange.error:checked, .icheckbox_square-orange.error.checked,
input[type=checkbox].error:checked,
input[type=checkbox].error.checked {
  background: var(--hl-sundown);
}
.icheckbox_square-orange:hover,
input[type=checkbox]:hover {
  border: 0.1rem solid var(--hl-primary);
}
.icheckbox_square-orange:hover:checked, .icheckbox_square-orange:hover.checked,
input[type=checkbox]:hover:checked,
input[type=checkbox]:hover.checked {
  background: var(--hl-primary);
}

.selectWrapper {
  flex-grow: 1;
  height: 100%;
  position: relative;
}
.selectWrapper:after {
  color: var(--hl-primary);
  content: var(--hl-arrow-down);
  font-family: "Holidayland";
  font-size: 1.5rem;
  font-weight: normal;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: calc(50% - 1.1rem);
  z-index: 99;
}
.selectWrapper select {
  background: var(--hl-white);
  border: 0;
  box-shadow: none;
  cursor: pointer;
  font-size: 1.6rem;
  height: 100%;
  padding: 0 3rem 0 1rem;
  width: 100%;
}
.selectWrapper select:hover, .selectWrapper select:focus, .selectWrapper select:active {
  box-shadow: none;
}
.selectWrapper select::-ms-expand {
  display: none;
}

.ss-main {
  border-radius: 0.5rem;
  font-size: 1.6rem;
  height: 4rem;
  padding: 0 !important;
}
.ss-main .ss-values {
  width: 100%;
}
.ss-main .ss-values .ss-single {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block !important;
  margin: auto 1rem !important;
  padding-right: 2rem;
}
.ss-content .ss-search {
  font-size: 1.6rem;
  padding: 1rem;
}
.ss-content .ss-list {
  font-size: 1.6rem;
  padding: 1rem;
}
.ss-content .ss-list .ss-option {
  font-family: var(--roboto);
  font-size: 1.6rem;
  line-height: 1.3;
}
.ss-content .ss-list .ss-option:hover {
  background: var(--hl-primary) !important;
  border-radius: 0.5rem;
}
.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background: var(--hl-primary) !important;
  border-radius: 0.5rem;
}

.loadingSpinner {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5001;
}
.loadingSpinner.fixed {
  position: fixed;
}
.loadingSpinner__container {
  display: inline-block;
  height: 5rem;
  overflow: hidden;
  width: 5rem;
}
.loadingSpinner__item {
  backface-visibility: hidden;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.5);
  transform-origin: 0 0;
  width: 100%;
}
.loadingSpinner__item div {
  animation: spinner linear 1s infinite;
  background: var(--primary);
  border-radius: 0.25rem/0.3rem;
  height: 1.5rem;
  left: 4.75rem;
  position: absolute;
  top: 2.25rem;
  transform-origin: 0.25rem 2.75rem;
  width: 0.5rem;
}
.loadingSpinner__item div:nth-child(1) {
  animation-delay: -0.9285714286s;
  background: var(--primary);
  transform: rotate(0deg);
}
.loadingSpinner__item div:nth-child(2) {
  animation-delay: -0.8571428571s;
  background: var(--primary);
  transform: rotate(25.7142857143deg);
}
.loadingSpinner__item div:nth-child(3) {
  animation-delay: -0.7857142857s;
  background: var(--primary);
  transform: rotate(51.4285714286deg);
}
.loadingSpinner__item div:nth-child(4) {
  animation-delay: -0.7142857143s;
  background: var(--primary);
  transform: rotate(77.1428571429deg);
}
.loadingSpinner__item div:nth-child(5) {
  animation-delay: -0.6428571429s;
  background: var(--primary);
  transform: rotate(102.8571428571deg);
}
.loadingSpinner__item div:nth-child(6) {
  animation-delay: -0.5714285714s;
  background: var(--primary);
  transform: rotate(128.5714285714deg);
}
.loadingSpinner__item div:nth-child(7) {
  animation-delay: -0.5s;
  background: var(--primary);
  transform: rotate(154.2857142857deg);
}
.loadingSpinner__item div:nth-child(8) {
  animation-delay: -0.4285714286s;
  background: var(--primary);
  transform: rotate(180deg);
}
.loadingSpinner__item div:nth-child(9) {
  animation-delay: -0.3571428571s;
  background: var(--primary);
  transform: rotate(205.7142857143deg);
}
.loadingSpinner__item div:nth-child(10) {
  animation-delay: -0.2857142857s;
  background: var(--primary);
  transform: rotate(231.4285714286deg);
}
.loadingSpinner__item div:nth-child(11) {
  animation-delay: -0.2142857143s;
  background: var(--primary);
  transform: rotate(257.1428571429deg);
}
.loadingSpinner__item div:nth-child(12) {
  animation-delay: -0.1428571429s;
  background: var(--primary);
  transform: rotate(282.8571428571deg);
}
.loadingSpinner__item div:nth-child(13) {
  animation-delay: -0.0714285714s;
  background: var(--primary);
  transform: rotate(308.5714285714deg);
}
.loadingSpinner__item div:nth-child(14) {
  animation-delay: 0s;
  background: var(--primary);
  transform: rotate(334.2857142857deg);
}

@keyframes spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.legal {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .legal {
    margin-top: 6rem;
  }
}
.legal h1 {
  margin: 0 0 2rem 0;
}
@media (min-width: 768px) {
  .legal h1 {
    margin: 0 0 3rem 0;
  }
}
.legal a {
  color: var(--hl-black);
  font-weight: 400;
  text-decoration: underline;
}
.legal__wrapper {
  font-size: 1.6rem;
  margin: 0 auto;
  max-width: 111rem;
  padding: 0 2rem;
}
@media (min-width: 1140px) {
  .legal__wrapper {
    padding: 0;
  }
}

.modal-dialog {
  max-width: 80rem !important;
}
.modal-content {
  padding: 2rem !important;
  position: relative;
}
.modal-header {
  border: none !important;
  justify-content: flex-end;
  padding: 0 !important;
  position: absolute;
  right: 2rem;
  z-index: 1;
}
.modal-header button {
  background-size: 50%;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  height: 2.4rem;
  margin: 0 !important;
  opacity: 1;
  padding: 0 !important;
  position: relative;
  width: 2.4rem;
  /*&:before {
  	color    : var(--hl-white);
  	content  : "X";
  	position : absolute;
  	z-index  : 1;
  }*/
}
@media (min-width: 768px) {
  .modal-header button {
    background-color: var(--hl-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
  }
}
.modal-body {
  padding: 0 !important;
}
.modal .contentWrapper {
  padding: 0 !important;
}

.validation--error,
.has-error {
  color: var(--hl-sundown);
  display: inline-block;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/*# sourceMappingURL=core.css.map */
