/* Minification failed. Returning unminified contents.
(1393,25): run-time error CSS1031: Expected selector, found '-'
(1393,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1398,25): run-time error CSS1031: Expected selector, found '-'
(1398,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1403,25): run-time error CSS1031: Expected selector, found '-'
(1403,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1408,25): run-time error CSS1031: Expected selector, found '-'
(1408,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1413,25): run-time error CSS1031: Expected selector, found '-'
(1413,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1418,25): run-time error CSS1031: Expected selector, found '-'
(1418,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1429,25): run-time error CSS1031: Expected selector, found '-'
(1429,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1444,25): run-time error CSS1031: Expected selector, found '-'
(1444,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1449,25): run-time error CSS1031: Expected selector, found '-'
(1449,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1460,25): run-time error CSS1031: Expected selector, found '-'
(1460,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1475,25): run-time error CSS1031: Expected selector, found '-'
(1475,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1486,25): run-time error CSS1031: Expected selector, found '-'
(1486,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1500,25): run-time error CSS1031: Expected selector, found '-'
(1500,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1512,25): run-time error CSS1031: Expected selector, found '-'
(1512,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1527,25): run-time error CSS1031: Expected selector, found '-'
(1527,25): run-time error CSS1025: Expected comma or open brace, found '-'
(1538,25): run-time error CSS1031: Expected selector, found '-'
(1538,25): run-time error CSS1025: Expected comma or open brace, found '-'
 */

.picker,
.picker__holder {
  width: 100%;
  position: absolute;
}
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: black;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.picker__input {
  cursor: default;
}
.picker__input.picker__input--active {
  border-color: #0089ec;
}
.picker__holder {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: white;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */

.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}
.picker__footer,
.picker__header,
.picker__table {
  text-align: center;
}
.picker__day--highlighted,
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
.picker__box {
  padding: 0 1em;
}
.picker__header {
  position: relative;
  margin-top: 0.75em;
}
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.picker__year {
  color: #999999;
  font-size: 0.8em;
  font-style: italic;
}
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: 0.5em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__nav--next,
.picker__nav--prev {
  position: absolute;
  padding: 0.5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
  .picker__nav--next,
  .picker__nav--prev {
    top: -0.33em;
  }
  .picker__nav--prev {
    padding-right: 1.5em;
  }
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--next:before,
.picker__nav--prev:before {
  content: " ";
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  border-right: 0.75em solid black;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid black;
}
.picker__nav--next:hover,
.picker__nav--prev:hover {
  cursor: pointer;
  color: black;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover,
.picker__nav--disabled:hover {
  cursor: default;
  background: 0 0;
  border-right-color: whitesmoke;
  border-left-color: whitesmoke;
}
.picker--focused .picker__day--highlighted,
.picker__day--highlighted:hover,
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  color: black;
  cursor: pointer;
  background: #b1dcfb;
}
.picker__table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: 0.75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
.picker__weekday {
  width: 14.285714286%;
  font-size: 0.75em;
  padding-bottom: 0.25em;
  color: #999999;
  font-weight: 500;
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: 0.5em;
  }
}
.picker__day {
  padding: 0.3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: 0.5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}
.picker__day--outfocus {
  color: #dddddd;
}
.picker--focused .picker__day--selected,
.picker__day--selected,
.picker__day--selected:hover {
  background: #0089ec;
  color: white;
}
.picker--focused .picker__day--disabled,
.picker__day--disabled,
.picker__day--disabled:hover {
  background: whitesmoke;
  border-color: whitesmoke;
  color: #dddddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}
.picker__button--clear,
.picker__button--close,
.picker__button--today {
  border: 1px solid white;
  background: white;
  font-size: 0.8em;
  padding: 0.66em 0;
  font-weight: 700;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--clear:hover,
.picker__button--close:hover,
.picker__button--today:hover {
  cursor: pointer;
  color: black;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--clear:focus,
.picker__button--close:focus,
.picker__button--today:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: 0;
}
.picker__button--clear:before,
.picker__button--close:before,
.picker__button--today:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--clear:before,
.picker__button--today:before {
  content: " ";
  margin-right: 0.45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: 0.66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: 0.66em;
  border-top: 3px solid #ee2200;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: 0.35em;
  color: #777777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: whitesmoke;
  border-color: whitesmoke;
  color: #dddddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa;
}
.picker--focused .picker__list-item--highlighted,
.picker__list-item--highlighted:hover,
.picker__list-item:hover {
  background: #b1dcfb;
  cursor: pointer;
  color: black;
}
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0;
}
.picker__list-item {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin-bottom: -1px;
  position: relative;
  background: white;
  padding: 0.75em 1.25em;
}
@media (min-height: 46.75em) {
  .picker__list-item {
    padding: 0.5em 1em;
  }
}
.picker__list-item--highlighted,
.picker__list-item:hover {
  border-color: #0089ec;
  z-index: 10;
}
.picker--focused .picker__list-item--selected,
.picker__list-item--selected,
.picker__list-item--selected:hover {
  background: #0089ec;
  color: white;
  z-index: 10;
}
.picker--focused .picker__list-item--disabled,
.picker__list-item--disabled,
.picker__list-item--disabled:hover {
  background: whitesmoke;
  color: #dddddd;
  cursor: default;
  border-color: #dddddd;
  z-index: auto;
}
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: 0 0;
  border: 0;
  font-weight: 500;
  font-size: 0.67em;
  text-align: center;
  text-transform: uppercase;
  color: #666666;
}
.picker--time .picker__button--clear:focus,
.picker--time .picker__button--clear:hover {
  background: #ee2200;
  border-color: #ee2200;
  cursor: pointer;
  color: white;
  outline: 0;
}
.picker--time .picker__button--clear:before {
  top: -0.25em;
  color: #666666;
  font-size: 1.25em;
  font-weight: 700;
}
.picker--time .picker__button--clear:focus:before,
.picker--time .picker__button--clear:hover:before {
  color: white;
  border-color: white;
}
.picker--time {
  min-width: 256px;
  max-width: 320px;
}
.picker--time .picker__holder {
  background: #f2f2f2;
}
@media (min-height: 40.125em) {
  .picker--time .picker__holder {
    font-size: 0.875em;
  }
}
.picker--time .picker__box {
  padding: 0;
  position: relative;
}

.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: white;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}
.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.lity-content #terms {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  overflow: auto;
  background-color: white;
  max-width: 1100px;
}
.lity-content .btn {
  cursor: pointer;
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: white;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: white;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}
.lity-hide {
  display: none;
}

.padding-15 {
  padding: 15px;
}
.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.pl-15 {
  padding-left: 15px;
}
.pr-15 {
  padding-right: 15px;
}
.pt-15 {
  padding-top: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.bg-faded-blue {
  background-color: #dceaed;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.info-block {
  padding: 0.7rem;
  background: #375165;
  color: white;
}
.font-size-medium {
  font-size: medium;
}
.font-size-small {
  font-size: small;
}

h1 {
  font-size: 32px;
}
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media only screen and (min-width: 1200px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
h2 {
  color: #040f3d;
  margin-bottom: 25px;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 1200px) {
  h3 {
    font-size: 26px;
    line-height: 30px;
  }
}

.btn-basic,
button.btn-basic,
a.btn-basic {
  font-family: graphie, sans-serif;
  border: 1px solid #4bffa5;
  padding: 9px 15px;
  -webkit-border-radius: 5px;
  border-radius: 4px;
  background-clip: padding-box;
  cursor: pointer;
  height: auto;
  line-height: 1.5;
  min-width: auto;
}
.btn-basic,
button.btn-basic,
a.btn-basic,
.btn-basic:link,
button.btn-basic:link,
a.btn-basic:link,
.btn-basic:visited,
button.btn-basic:visited,
a.btn-basic:visited {
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
}
.btn-basic:hover,
button.btn-basic:hover,
a.btn-basic:hover,
.btn-basic:focus,
button.btn-basic:focus,
a.btn-basic:focus,
.btn-basic:active,
button.btn-basic:active,
a.btn-basic:active {
  background-color: #1ed19f;
  border-color: #1ed19f;
  color: #040f3d;
  text-decoration: none;
}
.btn-basic--full-width,
button.btn-basic--full-width,
a.btn-basic--full-width {
  width: 100%;
}
.btn-basic--full-height,
button.btn-basic--full-height,
a.btn-basic--full-height {
  height: 100%;
}
.btn-basic--block,
button.btn-basic--block,
a.btn-basic--block {
  display: block;
}
.btn-basic--text-center,
button.btn-basic--text-center,
a.btn-basic--text-center {
  text-align: center;
}
.btn-basic--white,
button.btn-basic--white,
a.btn-basic--white {
  border-color: white;
}
.btn-basic--white,
button.btn-basic--white,
a.btn-basic--white,
.btn-basic--white:link,
button.btn-basic--white:link,
a.btn-basic--white:link,
.btn-basic--white:visited,
button.btn-basic--white:visited,
a.btn-basic--white:visited {
  color: white;
}
.btn-basic--white:focus,
button.btn-basic--white:focus,
a.btn-basic--white:focus,
.btn-basic--white:hover,
button.btn-basic--white:hover,
a.btn-basic--white:hover,
.btn-basic--white:active,
button.btn-basic--white:active,
a.btn-basic--white:active,
.btn-basic--white.active,
button.btn-basic--white.active,
a.btn-basic--white.active {
  background: white;
  color: #040f3d;
}
.btn-basic--green,
button.btn-basic--green,
a.btn-basic--green {
  border-color: #4bffa5;
}
.btn-basic--green,
button.btn-basic--green,
a.btn-basic--green,
.btn-basic--green:link,
button.btn-basic--green:link,
a.btn-basic--green:link,
.btn-basic--green:visited,
button.btn-basic--green:visited,
a.btn-basic--green:visited {
  color: #4bffa5;
}
.btn-basic--green:focus,
button.btn-basic--green:focus,
a.btn-basic--green:focus,
.btn-basic--green:hover,
button.btn-basic--green:hover,
a.btn-basic--green:hover,
.btn-basic--green:active,
button.btn-basic--green:active,
a.btn-basic--green:active,
.btn-basic--green.active,
button.btn-basic--green.active,
a.btn-basic--green.active {
  background: #4bffa5;
  color: #040f3d;
}
.btn-basic--simple,
button.btn-basic--simple,
a.btn-basic--simple,
.btn-basic--simple:link,
button.btn-basic--simple:link,
a.btn-basic--simple:link,
.btn-basic--simple:visited,
button.btn-basic--simple:visited,
a.btn-basic--simple:visited {
  background-color: white;
}
.btn-basic--simple:focus,
button.btn-basic--simple:focus,
a.btn-basic--simple:focus,
.btn-basic--simple:hover,
button.btn-basic--simple:hover,
a.btn-basic--simple:hover,
.btn-basic--simple:active,
button.btn-basic--simple:active,
a.btn-basic--simple:active,
.btn-basic--simple.active,
button.btn-basic--simple.active,
a.btn-basic--simple.active {
  background-color: white;
}
.btn-basic--simple-blue,
button.btn-basic--simple-blue,
a.btn-basic--simple-blue,
.btn-basic--simple-blue:link,
button.btn-basic--simple-blue:link,
a.btn-basic--simple-blue:link,
.btn-basic--simple-blue:visited,
button.btn-basic--simple-blue:visited,
a.btn-basic--simple-blue:visited {
  background-color: white;
  border-color: #040f3d;
}
.btn-basic--simple-blue:focus,
button.btn-basic--simple-blue:focus,
a.btn-basic--simple-blue:focus,
.btn-basic--simple-blue:hover,
button.btn-basic--simple-blue:hover,
a.btn-basic--simple-blue:hover,
.btn-basic--simple-blue:active,
button.btn-basic--simple-blue:active,
a.btn-basic--simple-blue:active,
.btn-basic--simple-blue.active,
button.btn-basic--simple-blue.active,
a.btn-basic--simple-blue.active {
  background-color: white;
  border-color: #21a8fc;
}
.btn-basic--blue,
button.btn-basic--blue,
a.btn-basic--blue,
.btn-basic--blue:link,
button.btn-basic--blue:link,
a.btn-basic--blue:link,
.btn-basic--blue:visited,
button.btn-basic--blue:visited,
a.btn-basic--blue:visited {
  border-color: #040f3d;
}
.btn-basic--blue:focus,
button.btn-basic--blue:focus,
a.btn-basic--blue:focus,
.btn-basic--blue:hover,
button.btn-basic--blue:hover,
a.btn-basic--blue:hover,
.btn-basic--blue:active,
button.btn-basic--blue:active,
a.btn-basic--blue:active,
.btn-basic--blue.active,
button.btn-basic--blue.active,
a.btn-basic--blue.active {
  color: white;
  background-color: #040f3d;
  border-color: #040f3d;
}
.btn-basic[disabled=disabled],
button.btn-basic[disabled=disabled],
a.btn-basic[disabled=disabled],
.btn-basic:disabled,
button.btn-basic:disabled,
a.btn-basic:disabled {
  opacity: 0.4;
}
.btn-basic[disabled=disabled]:hover,
button.btn-basic[disabled=disabled]:hover,
a.btn-basic[disabled=disabled]:hover,
.btn-basic:disabled:hover,
button.btn-basic:disabled:hover,
a.btn-basic:disabled:hover {
  background: transparent;
  color: #1ed19f;
}
@media only screen and (min-width: 768px) {
  .btn-basic,
  button.btn-basic,
  a.btn-basic {
    font-size: 20px;
  }
}
.btn-dark,
a.btn-dark {
  font-family: graphie, sans-serif;
  border: 1px solid #4bffa5;
  padding: 9px 15px;
  -webkit-border-radius: 5px;
  border-radius: 4px;
  background-clip: padding-box;
  cursor: pointer;
  height: auto;
  line-height: 1.5;
  min-width: auto;
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
  border: 2px solid #4bffa5;
}
.btn-dark,
a.btn-dark,
.btn-dark:link,
a.btn-dark:link,
.btn-dark:visited,
a.btn-dark:visited {
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
}
.btn-dark:hover,
a.btn-dark:hover,
.btn-dark:focus,
a.btn-dark:focus,
.btn-dark:active,
a.btn-dark:active {
  background-color: #1ed19f;
  border-color: #1ed19f;
  color: #040f3d;
  text-decoration: none;
}
.btn-dark--full-width,
a.btn-dark--full-width {
  width: 100%;
}
.btn-dark--full-height,
a.btn-dark--full-height {
  height: 100%;
}
.btn-dark--block,
a.btn-dark--block {
  display: block;
}
.btn-dark--text-center,
a.btn-dark--text-center {
  text-align: center;
}
.btn-dark--white,
a.btn-dark--white {
  border-color: white;
}
.btn-dark--white,
a.btn-dark--white,
.btn-dark--white:link,
a.btn-dark--white:link,
.btn-dark--white:visited,
a.btn-dark--white:visited {
  color: white;
}
.btn-dark--white:focus,
a.btn-dark--white:focus,
.btn-dark--white:hover,
a.btn-dark--white:hover,
.btn-dark--white:active,
a.btn-dark--white:active,
.btn-dark--white.active,
a.btn-dark--white.active {
  background: white;
  color: #040f3d;
}
.btn-dark--green,
a.btn-dark--green {
  border-color: #4bffa5;
}
.btn-dark--green,
a.btn-dark--green,
.btn-dark--green:link,
a.btn-dark--green:link,
.btn-dark--green:visited,
a.btn-dark--green:visited {
  color: #4bffa5;
}
.btn-dark--green:focus,
a.btn-dark--green:focus,
.btn-dark--green:hover,
a.btn-dark--green:hover,
.btn-dark--green:active,
a.btn-dark--green:active,
.btn-dark--green.active,
a.btn-dark--green.active {
  background: #4bffa5;
  color: #040f3d;
}
.btn-dark--simple,
a.btn-dark--simple,
.btn-dark--simple:link,
a.btn-dark--simple:link,
.btn-dark--simple:visited,
a.btn-dark--simple:visited {
  background-color: white;
}
.btn-dark--simple:focus,
a.btn-dark--simple:focus,
.btn-dark--simple:hover,
a.btn-dark--simple:hover,
.btn-dark--simple:active,
a.btn-dark--simple:active,
.btn-dark--simple.active,
a.btn-dark--simple.active {
  background-color: white;
}
.btn-dark--simple-blue,
a.btn-dark--simple-blue,
.btn-dark--simple-blue:link,
a.btn-dark--simple-blue:link,
.btn-dark--simple-blue:visited,
a.btn-dark--simple-blue:visited {
  background-color: white;
  border-color: #040f3d;
}
.btn-dark--simple-blue:focus,
a.btn-dark--simple-blue:focus,
.btn-dark--simple-blue:hover,
a.btn-dark--simple-blue:hover,
.btn-dark--simple-blue:active,
a.btn-dark--simple-blue:active,
.btn-dark--simple-blue.active,
a.btn-dark--simple-blue.active {
  background-color: white;
  border-color: #21a8fc;
}
.btn-dark--blue,
a.btn-dark--blue,
.btn-dark--blue:link,
a.btn-dark--blue:link,
.btn-dark--blue:visited,
a.btn-dark--blue:visited {
  border-color: #040f3d;
}
.btn-dark--blue:focus,
a.btn-dark--blue:focus,
.btn-dark--blue:hover,
a.btn-dark--blue:hover,
.btn-dark--blue:active,
a.btn-dark--blue:active,
.btn-dark--blue.active,
a.btn-dark--blue.active {
  color: white;
  background-color: #040f3d;
  border-color: #040f3d;
}
.btn-dark[disabled=disabled],
a.btn-dark[disabled=disabled],
.btn-dark:disabled,
a.btn-dark:disabled {
  opacity: 0.4;
}
.btn-dark[disabled=disabled]:hover,
a.btn-dark[disabled=disabled]:hover,
.btn-dark:disabled:hover,
a.btn-dark:disabled:hover {
  background: transparent;
  color: #1ed19f;
}
@media only screen and (min-width: 768px) {
  .btn-dark,
  a.btn-dark {
    font-size: 20px;
  }
}
.btn-dark,
a.btn-dark,
.btn-dark:link,
a.btn-dark:link,
.btn-dark:visited,
a.btn-dark:visited {
  color: #4bffa5;
}
.btn-dark:focus,
a.btn-dark:focus,
.btn-dark:hover,
a.btn-dark:hover,
.btn-dark:active,
a.btn-dark:active,
.btn-dark.active,
a.btn-dark.active {
  background: #4bffa5;
  color: #040f3d;
}
.form button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: black;
  text-shadow: 0 1px 0 white;
  opacity: 0.5;
  min-width: 10px;
}
.form button.close:hover {
  color: black;
  text-decoration: none;
  opacity: 0.75;
}
.btn-margin {
  margin: 1rem 0;
}
.form label {
  vertical-align: middle !important;
  margin-bottom: 0.25rem;
}
.form input[type=text],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form input[type=tel],
.form textarea,
.form select,
.form .v-select {
  padding: 10px 15px;
  border: 1px solid #040f3d;
  font-family: graphie, sans-serif;
  max-width: 100%;
  border-radius: 4px;
}
.form input[type=text]::-webkit-input-placeholder,
.form input[type=email]::-webkit-input-placeholder,
.form input[type=password]::-webkit-input-placeholder,
.form input[type=number]::-webkit-input-placeholder,
.form input[type=tel]::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder,
.form select::-webkit-input-placeholder,
.form .v-select::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #505050;
}
.form input[type=text]:-moz-placeholder,
.form input[type=email]:-moz-placeholder,
.form input[type=password]:-moz-placeholder,
.form input[type=number]:-moz-placeholder,
.form input[type=tel]:-moz-placeholder,
.form textarea:-moz-placeholder,
.form select:-moz-placeholder,
.form .v-select:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #505050;
  opacity: 1;
}
.form input[type=text]::-moz-placeholder,
.form input[type=email]::-moz-placeholder,
.form input[type=password]::-moz-placeholder,
.form input[type=number]::-moz-placeholder,
.form input[type=tel]::-moz-placeholder,
.form textarea::-moz-placeholder,
.form select::-moz-placeholder,
.form .v-select::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #505050;
  opacity: 1;
}
.form input[type=text]:-ms-input-placeholder,
.form input[type=email]:-ms-input-placeholder,
.form input[type=password]:-ms-input-placeholder,
.form input[type=number]:-ms-input-placeholder,
.form input[type=tel]:-ms-input-placeholder,
.form textarea:-ms-input-placeholder,
.form select:-ms-input-placeholder,
.form .v-select:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #505050;
}
.form select {
  padding: 11px 11px 12px;
}
.form .form-control:focus {
  border: 1px solid #040f3d;
  outline: 5px auto;
}
.form .v-select .vs__search,
.form .v-select .vs__selected {
  padding: 0;
  margin: 0;
}
.form .v-select .vs__selected-options {
  flex-basis: auto;
}
.form .v-select .vs__open-indicator {
  fill: #505050;
}
.form .v-select .vs__dropdown-toggle {
  border: 0;
  padding: 0;
}
.form .v-select .vs__dropdown-menu {
  color: #040f3d;
}
.form .v-select .vs__actions {
  padding-top: 2px;
  cursor: pointer;
}
.form .v-select .vs__actions button {
  background: transparent;
}
.form .v-select .vs__spinner {
  border: 2px solid #ededed;
  border-left-color: #0069b3;
  width: 4em;
  height: 4em;
}
.form .v-select .vs__search {
  color: #040f3d;
}
.form .v-select .vs__search::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #505050;
}
.form .v-select .vs__search:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #505050;
  opacity: 1;
}
.form .v-select .vs__search::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #505050;
  opacity: 1;
}
.form .v-select .vs__search:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #505050;
}
.form .v-select .vs__selected {
  color: #040f3d;
}
.form .v-select .vs__clear {
  border: 0;
  min-width: 30px;
  font-size: 1em;
  padding: 0;
  margin: -2px 25px 0 0;
  fill: #505050;
}
.form .v-select .vs__clear:hover,
.form .v-select .vs__clear:active,
.form .v-select .vs__clear:focus {
  background: transparent;
  border: 0;
  fill: #040f3d;
}
.form .checkbox {
  color: #040f3d;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  margin-bottom: 20px;
}
.form .checkbox--full {
  display: block;
}
.form .checkbox--inline {
  display: inline-block;
  padding-right: 40px;
}
.form .checkbox--border {
  border: 1px solid #040f3d;
  padding-top: 10px;
  padding-bottom: 10px;
}
.form .checkbox--border > div {
  margin-left: 30px;
}
.form .checkbox > span {
  content: "";
  display: inline-block;
  position: absolute;
  width: 27px;
  height: 27px;
  left: 0;
  border: 2px solid #040f3d;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  text-align: center;
}
.form .checkbox > span.circle {
  -webkit-border-radius: 14px;
  border-radius: 14px;
  background-clip: padding-box;
}
.form .checkbox > span.pl {
  margin: 5px 20px;
}
.form .checkbox > span i {
  font-size: 20px;
  padding-top: 1px;
  display: none;
  color: #040f3d;
}
.form .checkbox input:checked + span {
  background: #4bffa5;
  border-color: #4bffa5;
}
.form .checkbox input:checked + span i {
  display: inline-block;
}
.form .checkbox input[type="radio"],
.form .checkbox input[type="checkbox"] {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.form .EPiServerForms button,
.form input[type=button],
.form input[type=submit] {
  font-family: graphie, sans-serif;
  border: 1px solid #4bffa5;
  padding: 9px 15px;
  -webkit-border-radius: 5px;
  border-radius: 4px;
  background-clip: padding-box;
  cursor: pointer;
  height: auto;
  line-height: 1.5;
  min-width: auto;
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
  min-width: 140px;
  font-size: 1em;
}
.form .EPiServerForms button,
.form input[type=button],
.form input[type=submit],
.form .EPiServerForms button:link,
.form input[type=button]:link,
.form input[type=submit]:link,
.form .EPiServerForms button:visited,
.form input[type=button]:visited,
.form input[type=submit]:visited {
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
}
.form .EPiServerForms button:hover,
.form input[type=button]:hover,
.form input[type=submit]:hover,
.form .EPiServerForms button:focus,
.form input[type=button]:focus,
.form input[type=submit]:focus,
.form .EPiServerForms button:active,
.form input[type=button]:active,
.form input[type=submit]:active {
  background-color: #1ed19f;
  border-color: #1ed19f;
  color: #040f3d;
  text-decoration: none;
}
.form .EPiServerForms button--full-width,
.form input[type=button]--full-width,
.form input[type=submit]--full-width {
  width: 100%;
}
.form .EPiServerForms button--full-height,
.form input[type=button]--full-height,
.form input[type=submit]--full-height {
  height: 100%;
}
.form .EPiServerForms button--block,
.form input[type=button]--block,
.form input[type=submit]--block {
  display: block;
}
.form .EPiServerForms button--text-center,
.form input[type=button]--text-center,
.form input[type=submit]--text-center {
  text-align: center;
}
.form .EPiServerForms button--white,
.form input[type=button]--white,
.form input[type=submit]--white {
  border-color: white;
}
.form .EPiServerForms button--white,
.form input[type=button]--white,
.form input[type=submit]--white,
.form .EPiServerForms button--white:link,
.form input[type=button]--white:link,
.form input[type=submit]--white:link,
.form .EPiServerForms button--white:visited,
.form input[type=button]--white:visited,
.form input[type=submit]--white:visited {
  color: white;
}
.form .EPiServerForms button--white:focus,
.form input[type=button]--white:focus,
.form input[type=submit]--white:focus,
.form .EPiServerForms button--white:hover,
.form input[type=button]--white:hover,
.form input[type=submit]--white:hover,
.form .EPiServerForms button--white:active,
.form input[type=button]--white:active,
.form input[type=submit]--white:active,
.form .EPiServerForms button--white.active,
.form input[type=button]--white.active,
.form input[type=submit]--white.active {
  background: white;
  color: #040f3d;
}
.form .EPiServerForms button--green,
.form input[type=button]--green,
.form input[type=submit]--green {
  border-color: #4bffa5;
}
.form .EPiServerForms button--green,
.form input[type=button]--green,
.form input[type=submit]--green,
.form .EPiServerForms button--green:link,
.form input[type=button]--green:link,
.form input[type=submit]--green:link,
.form .EPiServerForms button--green:visited,
.form input[type=button]--green:visited,
.form input[type=submit]--green:visited {
  color: #4bffa5;
}
.form .EPiServerForms button--green:focus,
.form input[type=button]--green:focus,
.form input[type=submit]--green:focus,
.form .EPiServerForms button--green:hover,
.form input[type=button]--green:hover,
.form input[type=submit]--green:hover,
.form .EPiServerForms button--green:active,
.form input[type=button]--green:active,
.form input[type=submit]--green:active,
.form .EPiServerForms button--green.active,
.form input[type=button]--green.active,
.form input[type=submit]--green.active {
  background: #4bffa5;
  color: #040f3d;
}
.form .EPiServerForms button--simple,
.form input[type=button]--simple,
.form input[type=submit]--simple,
.form .EPiServerForms button--simple:link,
.form input[type=button]--simple:link,
.form input[type=submit]--simple:link,
.form .EPiServerForms button--simple:visited,
.form input[type=button]--simple:visited,
.form input[type=submit]--simple:visited {
  background-color: white;
}
.form .EPiServerForms button--simple:focus,
.form input[type=button]--simple:focus,
.form input[type=submit]--simple:focus,
.form .EPiServerForms button--simple:hover,
.form input[type=button]--simple:hover,
.form input[type=submit]--simple:hover,
.form .EPiServerForms button--simple:active,
.form input[type=button]--simple:active,
.form input[type=submit]--simple:active,
.form .EPiServerForms button--simple.active,
.form input[type=button]--simple.active,
.form input[type=submit]--simple.active {
  background-color: white;
}
.form .EPiServerForms button--simple-blue,
.form input[type=button]--simple-blue,
.form input[type=submit]--simple-blue,
.form .EPiServerForms button--simple-blue:link,
.form input[type=button]--simple-blue:link,
.form input[type=submit]--simple-blue:link,
.form .EPiServerForms button--simple-blue:visited,
.form input[type=button]--simple-blue:visited,
.form input[type=submit]--simple-blue:visited {
  background-color: white;
  border-color: #040f3d;
}
.form .EPiServerForms button--simple-blue:focus,
.form input[type=button]--simple-blue:focus,
.form input[type=submit]--simple-blue:focus,
.form .EPiServerForms button--simple-blue:hover,
.form input[type=button]--simple-blue:hover,
.form input[type=submit]--simple-blue:hover,
.form .EPiServerForms button--simple-blue:active,
.form input[type=button]--simple-blue:active,
.form input[type=submit]--simple-blue:active,
.form .EPiServerForms button--simple-blue.active,
.form input[type=button]--simple-blue.active,
.form input[type=submit]--simple-blue.active {
  background-color: white;
  border-color: #21a8fc;
}
.form .EPiServerForms button--blue,
.form input[type=button]--blue,
.form input[type=submit]--blue,
.form .EPiServerForms button--blue:link,
.form input[type=button]--blue:link,
.form input[type=submit]--blue:link,
.form .EPiServerForms button--blue:visited,
.form input[type=button]--blue:visited,
.form input[type=submit]--blue:visited {
  border-color: #040f3d;
}
.form .EPiServerForms button--blue:focus,
.form input[type=button]--blue:focus,
.form input[type=submit]--blue:focus,
.form .EPiServerForms button--blue:hover,
.form input[type=button]--blue:hover,
.form input[type=submit]--blue:hover,
.form .EPiServerForms button--blue:active,
.form input[type=button]--blue:active,
.form input[type=submit]--blue:active,
.form .EPiServerForms button--blue.active,
.form input[type=button]--blue.active,
.form input[type=submit]--blue.active {
  color: white;
  background-color: #040f3d;
  border-color: #040f3d;
}
.form .EPiServerForms button[disabled=disabled],
.form input[type=button][disabled=disabled],
.form input[type=submit][disabled=disabled],
.form .EPiServerForms button:disabled,
.form input[type=button]:disabled,
.form input[type=submit]:disabled {
  opacity: 0.4;
}
.form .EPiServerForms button[disabled=disabled]:hover,
.form input[type=button][disabled=disabled]:hover,
.form input[type=submit][disabled=disabled]:hover,
.form .EPiServerForms button:disabled:hover,
.form input[type=button]:disabled:hover,
.form input[type=submit]:disabled:hover {
  background: transparent;
  color: #1ed19f;
}
@media only screen and (min-width: 768px) {
  .form .EPiServerForms button,
  .form input[type=button],
  .form input[type=submit] {
    font-size: 20px;
  }
}
.form .EPiServerForms button {
  margin: 0 !important;
}
.error-border {
  box-shadow: 0 0 0 2px #893232;
  border-radius: 4px;
}
.error-message {
  color: #505050;
  padding: 6px 2px 5px 30px;
  font-size: 14px;
  background-image: url(/Static/gfx/error-icon.png);
  background-repeat: no-repeat;
  background-position: left center;
}
@media only screen and (min-width: 576px) {
  .error-message {
    font-size: 16px;
  }
}
.button-status-container {
  position: absolute;
  top: -40px;
  width: 415px;
  right: 0;
  max-width: 100%;
  background: #505050;
  color: #040f3d;
  border-radius: 4px;
}
.mx-calendar {
  width: 100% !important;
}
.mx-calendar .mx-table .mx-date-row td.cell:not(.disabled) {
  background-color: #4bffa5;
}
.mx-calendar .mx-table .mx-date-row td.cell.active {
  background-color: #21a8fc !important;
}
.mx-calendar-content {
  height: 300px !important;
}
.mx-calendar-panel-date {
  width: 100%;
}

.breadcrumb {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.breadcrumb a {
  position: relative;
  margin-left: 1.5rem;
}
.breadcrumb a::before {
  content: "\276E";
  left: -1.5rem;
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .breadcrumb a {
    font-size: 20px;
  }
}

.btn-basic,
button.btn-basic,
a.btn-basic {
  font-family: graphie, sans-serif;
  border: 1px solid #4bffa5;
  padding: 9px 15px;
  -webkit-border-radius: 5px;
  border-radius: 4px;
  background-clip: padding-box;
  cursor: pointer;
  height: auto;
  line-height: 1.5;
  min-width: auto;
}
.btn-basic,
button.btn-basic,
a.btn-basic,
.btn-basic:link,
button.btn-basic:link,
a.btn-basic:link,
.btn-basic:visited,
button.btn-basic:visited,
a.btn-basic:visited {
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
}
.btn-basic:hover,
button.btn-basic:hover,
a.btn-basic:hover,
.btn-basic:focus,
button.btn-basic:focus,
a.btn-basic:focus,
.btn-basic:active,
button.btn-basic:active,
a.btn-basic:active {
  background-color: #1ed19f;
  border-color: #1ed19f;
  color: #040f3d;
  text-decoration: none;
}
.btn-basic--full-width,
button.btn-basic--full-width,
a.btn-basic--full-width {
  width: 100%;
}
.btn-basic--full-height,
button.btn-basic--full-height,
a.btn-basic--full-height {
  height: 100%;
}
.btn-basic--block,
button.btn-basic--block,
a.btn-basic--block {
  display: block;
}
.btn-basic--text-center,
button.btn-basic--text-center,
a.btn-basic--text-center {
  text-align: center;
}
.btn-basic--white,
button.btn-basic--white,
a.btn-basic--white {
  border-color: white;
}
.btn-basic--white,
button.btn-basic--white,
a.btn-basic--white,
.btn-basic--white:link,
button.btn-basic--white:link,
a.btn-basic--white:link,
.btn-basic--white:visited,
button.btn-basic--white:visited,
a.btn-basic--white:visited {
  color: white;
}
.btn-basic--white:focus,
button.btn-basic--white:focus,
a.btn-basic--white:focus,
.btn-basic--white:hover,
button.btn-basic--white:hover,
a.btn-basic--white:hover,
.btn-basic--white:active,
button.btn-basic--white:active,
a.btn-basic--white:active,
.btn-basic--white.active,
button.btn-basic--white.active,
a.btn-basic--white.active {
  background: white;
  color: #040f3d;
}
.btn-basic--green,
button.btn-basic--green,
a.btn-basic--green {
  border-color: #4bffa5;
}
.btn-basic--green,
button.btn-basic--green,
a.btn-basic--green,
.btn-basic--green:link,
button.btn-basic--green:link,
a.btn-basic--green:link,
.btn-basic--green:visited,
button.btn-basic--green:visited,
a.btn-basic--green:visited {
  color: #4bffa5;
}
.btn-basic--green:focus,
button.btn-basic--green:focus,
a.btn-basic--green:focus,
.btn-basic--green:hover,
button.btn-basic--green:hover,
a.btn-basic--green:hover,
.btn-basic--green:active,
button.btn-basic--green:active,
a.btn-basic--green:active,
.btn-basic--green.active,
button.btn-basic--green.active,
a.btn-basic--green.active {
  background: #4bffa5;
  color: #040f3d;
}
.btn-basic--simple,
button.btn-basic--simple,
a.btn-basic--simple,
.btn-basic--simple:link,
button.btn-basic--simple:link,
a.btn-basic--simple:link,
.btn-basic--simple:visited,
button.btn-basic--simple:visited,
a.btn-basic--simple:visited {
  background-color: white;
}
.btn-basic--simple:focus,
button.btn-basic--simple:focus,
a.btn-basic--simple:focus,
.btn-basic--simple:hover,
button.btn-basic--simple:hover,
a.btn-basic--simple:hover,
.btn-basic--simple:active,
button.btn-basic--simple:active,
a.btn-basic--simple:active,
.btn-basic--simple.active,
button.btn-basic--simple.active,
a.btn-basic--simple.active {
  background-color: white;
}
.btn-basic--simple-blue,
button.btn-basic--simple-blue,
a.btn-basic--simple-blue,
.btn-basic--simple-blue:link,
button.btn-basic--simple-blue:link,
a.btn-basic--simple-blue:link,
.btn-basic--simple-blue:visited,
button.btn-basic--simple-blue:visited,
a.btn-basic--simple-blue:visited {
  background-color: white;
  border-color: #040f3d;
}
.btn-basic--simple-blue:focus,
button.btn-basic--simple-blue:focus,
a.btn-basic--simple-blue:focus,
.btn-basic--simple-blue:hover,
button.btn-basic--simple-blue:hover,
a.btn-basic--simple-blue:hover,
.btn-basic--simple-blue:active,
button.btn-basic--simple-blue:active,
a.btn-basic--simple-blue:active,
.btn-basic--simple-blue.active,
button.btn-basic--simple-blue.active,
a.btn-basic--simple-blue.active {
  background-color: white;
  border-color: #21a8fc;
}
.btn-basic--blue,
button.btn-basic--blue,
a.btn-basic--blue,
.btn-basic--blue:link,
button.btn-basic--blue:link,
a.btn-basic--blue:link,
.btn-basic--blue:visited,
button.btn-basic--blue:visited,
a.btn-basic--blue:visited {
  border-color: #040f3d;
}
.btn-basic--blue:focus,
button.btn-basic--blue:focus,
a.btn-basic--blue:focus,
.btn-basic--blue:hover,
button.btn-basic--blue:hover,
a.btn-basic--blue:hover,
.btn-basic--blue:active,
button.btn-basic--blue:active,
a.btn-basic--blue:active,
.btn-basic--blue.active,
button.btn-basic--blue.active,
a.btn-basic--blue.active {
  color: white;
  background-color: #040f3d;
  border-color: #040f3d;
}
.btn-basic[disabled=disabled],
button.btn-basic[disabled=disabled],
a.btn-basic[disabled=disabled],
.btn-basic:disabled,
button.btn-basic:disabled,
a.btn-basic:disabled {
  opacity: 0.4;
}
.btn-basic[disabled=disabled]:hover,
button.btn-basic[disabled=disabled]:hover,
a.btn-basic[disabled=disabled]:hover,
.btn-basic:disabled:hover,
button.btn-basic:disabled:hover,
a.btn-basic:disabled:hover {
  background: transparent;
  color: #1ed19f;
}
@media only screen and (min-width: 768px) {
  .btn-basic,
  button.btn-basic,
  a.btn-basic {
    font-size: 20px;
  }
}
.btn-dark,
a.btn-dark {
  font-family: graphie, sans-serif;
  border: 1px solid #4bffa5;
  padding: 9px 15px;
  -webkit-border-radius: 5px;
  border-radius: 4px;
  background-clip: padding-box;
  cursor: pointer;
  height: auto;
  line-height: 1.5;
  min-width: auto;
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
  border: 2px solid #4bffa5;
}
.btn-dark,
a.btn-dark,
.btn-dark:link,
a.btn-dark:link,
.btn-dark:visited,
a.btn-dark:visited {
  background-color: #4bffa5;
  color: #040f3d;
  text-decoration: none;
}
.btn-dark:hover,
a.btn-dark:hover,
.btn-dark:focus,
a.btn-dark:focus,
.btn-dark:active,
a.btn-dark:active {
  background-color: #1ed19f;
  border-color: #1ed19f;
  color: #040f3d;
  text-decoration: none;
}
.btn-dark--full-width,
a.btn-dark--full-width {
  width: 100%;
}
.btn-dark--full-height,
a.btn-dark--full-height {
  height: 100%;
}
.btn-dark--block,
a.btn-dark--block {
  display: block;
}
.btn-dark--text-center,
a.btn-dark--text-center {
  text-align: center;
}
.btn-dark--white,
a.btn-dark--white {
  border-color: white;
}
.btn-dark--white,
a.btn-dark--white,
.btn-dark--white:link,
a.btn-dark--white:link,
.btn-dark--white:visited,
a.btn-dark--white:visited {
  color: white;
}
.btn-dark--white:focus,
a.btn-dark--white:focus,
.btn-dark--white:hover,
a.btn-dark--white:hover,
.btn-dark--white:active,
a.btn-dark--white:active,
.btn-dark--white.active,
a.btn-dark--white.active {
  background: white;
  color: #040f3d;
}
.btn-dark--green,
a.btn-dark--green {
  border-color: #4bffa5;
}
.btn-dark--green,
a.btn-dark--green,
.btn-dark--green:link,
a.btn-dark--green:link,
.btn-dark--green:visited,
a.btn-dark--green:visited {
  color: #4bffa5;
}
.btn-dark--green:focus,
a.btn-dark--green:focus,
.btn-dark--green:hover,
a.btn-dark--green:hover,
.btn-dark--green:active,
a.btn-dark--green:active,
.btn-dark--green.active,
a.btn-dark--green.active {
  background: #4bffa5;
  color: #040f3d;
}
.btn-dark--simple,
a.btn-dark--simple,
.btn-dark--simple:link,
a.btn-dark--simple:link,
.btn-dark--simple:visited,
a.btn-dark--simple:visited {
  background-color: white;
}
.btn-dark--simple:focus,
a.btn-dark--simple:focus,
.btn-dark--simple:hover,
a.btn-dark--simple:hover,
.btn-dark--simple:active,
a.btn-dark--simple:active,
.btn-dark--simple.active,
a.btn-dark--simple.active {
  background-color: white;
}
.btn-dark--simple-blue,
a.btn-dark--simple-blue,
.btn-dark--simple-blue:link,
a.btn-dark--simple-blue:link,
.btn-dark--simple-blue:visited,
a.btn-dark--simple-blue:visited {
  background-color: white;
  border-color: #040f3d;
}
.btn-dark--simple-blue:focus,
a.btn-dark--simple-blue:focus,
.btn-dark--simple-blue:hover,
a.btn-dark--simple-blue:hover,
.btn-dark--simple-blue:active,
a.btn-dark--simple-blue:active,
.btn-dark--simple-blue.active,
a.btn-dark--simple-blue.active {
  background-color: white;
  border-color: #21a8fc;
}
.btn-dark--blue,
a.btn-dark--blue,
.btn-dark--blue:link,
a.btn-dark--blue:link,
.btn-dark--blue:visited,
a.btn-dark--blue:visited {
  border-color: #040f3d;
}
.btn-dark--blue:focus,
a.btn-dark--blue:focus,
.btn-dark--blue:hover,
a.btn-dark--blue:hover,
.btn-dark--blue:active,
a.btn-dark--blue:active,
.btn-dark--blue.active,
a.btn-dark--blue.active {
  color: white;
  background-color: #040f3d;
  border-color: #040f3d;
}
.btn-dark[disabled=disabled],
a.btn-dark[disabled=disabled],
.btn-dark:disabled,
a.btn-dark:disabled {
  opacity: 0.4;
}
.btn-dark[disabled=disabled]:hover,
a.btn-dark[disabled=disabled]:hover,
.btn-dark:disabled:hover,
a.btn-dark:disabled:hover {
  background: transparent;
  color: #1ed19f;
}
@media only screen and (min-width: 768px) {
  .btn-dark,
  a.btn-dark {
    font-size: 20px;
  }
}
.btn-dark,
a.btn-dark,
.btn-dark:link,
a.btn-dark:link,
.btn-dark:visited,
a.btn-dark:visited {
  color: #4bffa5;
}
.btn-dark:focus,
a.btn-dark:focus,
.btn-dark:hover,
a.btn-dark:hover,
.btn-dark:active,
a.btn-dark:active,
.btn-dark.active,
a.btn-dark.active {
  background: #4bffa5;
  color: #040f3d;
}
.form button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: black;
  text-shadow: 0 1px 0 white;
  opacity: 0.5;
  min-width: 10px;
}
.form button.close:hover {
  color: black;
  text-decoration: none;
  opacity: 0.75;
}
.btn-margin {
  margin: 1rem 0;
}

footer,
.footer {
  width: 100%;
  background-color: #dceaed;
  padding-top: 25px;
  padding-bottom: 30px;
  margin: 0;
  text-align: center;
  position: relative;
  margin-top: 80px;
}
@media only screen and (min-width: 576px) {
  footer,
  .footer {
    padding-top: 35px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) {
  footer,
  .footer {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
footer:before,
.footer:before {
  content: "";
  height: 80px;
  width: 100%;
  position: absolute;
  top: -80px;
  left: 0;
  background-image: url(/Static/gfx/lightblue_wave.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  margin: 0;
  padding: 0;
}
footer p,
.footer p {
  margin: 0;
}
footer ul.links,
.footer ul.links {
  display: flex;
  list-style: none;
  margin-bottom: 0;
}
footer ul.links > li,
.footer ul.links > li {
  display: inline-flex;
  padding: 5px;
}

.hero {
  z-index: 1;
  padding-bottom: 10rem;
  background-image: url(/Static/gfx/stavanger.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: polygon(100% 0%, 47% 0%, 0% 0%, 0% 89%, 16% 85%, 33% 94%, 85% 78%, 100% 100%);
}
@media only screen and (min-width: 576px) {
  .hero {
    padding-bottom: 15rem;
    clip-path: polygon(100% 0%, 47% 0%, 0% 0%, 0% 89%, 16% 82%, 33% 94%, 85% 73%, 100% 100%);
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    padding-bottom: 20rem;
    clip-path: polygon(100% 0%, 47% 0%, 0% 0%, 0% 89%, 16% 82%, 33% 94%, 85% 69%, 100% 100%);
  }
}
.hero.hero-message {
  padding-bottom: 0rem;
}
@media only screen and (min-width: 576px) {
  .hero.hero-message {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero.hero-message {
    padding-bottom: 4rem;
  }
}

.content-block {
  padding: 30px 0;
}
@media only screen and (min-width: 768px) {
  .content-block {
    padding: 50px 0;
  }
}
.content-block a {
  color: #0fb9b1;
}
.content-block ul {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin-left: 1em;
}
.content-block ul li::before {
  content: "\2022";
  color: #040f3d;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}
.content-block.check-list li {
  margin-bottom: 20px;
}
.content-block.check-list li::before {
  font-family: 'Material Icons';
  content: "\e92d";
  font-size: 21px;
  font-weight: normal;
  vertical-align: top;
  margin-top: -4px;
  width: 0.8em;
}
.content-block--with-image .image {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .content-block--with-image .image {
    background: none;
  }
}
@media only screen and (min-width: 768px) {
  .content-block--with-image .image {
    background-size: cover;
    margin: 0;
    display: flex;
    flex: auto;
    background-position: center center;
    padding-bottom: 56.25%;
  }
}
.content-block--with-image .image img {
  max-width: 100%;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .content-block--with-image .image img {
    display: none;
  }
}
.content-area .block {
  background-color: #f3faf7;
}
.content-area .block:nth-child(2n) {
  background-color: white;
}
.content-area .block:first-child {
  background-color: #f3faf7;
  position: relative;
  margin-top: 80px;
}
.content-area .block:first-child::before {
  content: "";
  height: 80px;
  width: 100%;
  position: absolute;
  top: -79px;
  left: 0;
  background-image: url(/Static/gfx/lightergreen_wave.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  margin: 0;
  padding: 0;
}

.dimmed-navigation-links {
  display: inline;
}
.dimmed-navigation-links > ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dimmed-navigation-links > ul > li {
  display: inline-block;
  font-size: 16px;
  font-family: Lato;
  font-weight: bold;
}
.dimmed-navigation-links > ul > li > a {
  color: #666666;
  padding: 0 3px;
}
.dimmed-navigation-links > ul > li:before {
  content: " | ";
}
.dimmed-navigation-links > ul > li:first-child:before {
  content: "";
}

.loading-overlay {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s linear;
  z-index: 999999;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
}
.loading-overlay--visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.5s linear, opacity 0.5s linear;
}
.loading-overlay--fixed {
  position: fixed;
}
.loading-overlay__spinner {
  display: block;
  visibility: hidden;
  transition: visibility 0s linear 0.5s;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 30px;
  width: 30px;
  margin-left: -15px;
  margin-top: -15px;
  border-radius: 15px;
  border: 0px;
}
.loading-overlay--visible .loading-overlay__spinner {
  visibility: visible;
  transition: visibility 0.5s;
}
.loading-overlay__spinner:before,
.loading-overlay__spinner:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.loading-overlay__spinner:before {
  border: 2px solid #ededed;
  border-top-color: #0069b3;
  border-radius: 50%;
  background-color: white;
  transition: border-color 0.25s linear, background-color 0.25s linear;
  -webkit-animation: load-spinner 0.6s infinite;
  -moz-animation: load-spinner 0.6s infinite;
  -ms-animation: load-spinner 0.6s infinite;
  -o-animation: load-spinner 0.6s infinite;
  animation: load-spinner 0.6s infinite;
}
.loading-overlay--error .loading-overlay__spinner:before {
  background-color: #dc3545;
  border-color: #dc3545;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: load-bounce 0.5s;
  -moz-animation: load-bounce 0.5s;
  -ms-animation: load-bounce 0.5s;
  -o-animation: load-bounce 0.5s;
  animation: load-bounce 0.5s;
}
.loading-overlay--error .loading-overlay__spinner:after {
  content: '!';
  text-align: center;
  color: white;
  font-size: 1.5em;
  margin-top: -0.15em;
}
.loading-overlay--success .loading-overlay__spinner:before {
  background-color: #28a745;
  border-color: #28a745;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-animation: load-bounce 0.5s;
  -moz-animation: load-bounce 0.5s;
  -ms-animation: load-bounce 0.5s;
  -o-animation: load-bounce 0.5s;
  animation: load-bounce 0.5s;
}
.loading-overlay--success .loading-overlay__spinner:after {
  background: url(/Static/gfx/cd-icon-check.svg) no-repeat center center;
}
.loading-overlay--warning .loading-overlay__spinner:before {
  background-color: #0069b3;
  border-color: #0069b3;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  -webkit-animation: load-bounce 0.5s;
  -moz-animation: load-bounce 0.5s;
  -ms-animation: load-bounce 0.5s;
  -o-animation: load-bounce 0.5s;
  animation: load-bounce 0.5s;
}
.loading-overlay--warning .loading-overlay__spinner:after {
  content: '!';
  text-align: center;
  color: white;
  font-size: 2em;
  margin-top: -0.15em;
}
.loading-overlay--max .loading-overlay__spinner:before {
  background-color: #dc3545;
  border-color: #dc3545;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
  -webkit-animation: load-bounce 0.5s;
  -moz-animation: load-bounce 0.5s;
  -ms-animation: load-bounce 0.5s;
  -o-animation: load-bounce 0.5s;
  animation: load-bounce 0.5s;
}
.loading-overlay--max .loading-overlay__spinner:after {
  content: '!';
  text-align: center;
  color: white;
  font-size: 2em;
  margin-top: -0.15em;
}
.loading-overlay__info,
.loading-overlay__success,
.loading-overlay__warning,
.loading-overlay__max,
.loading-overlay__error {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s, visibility 0s linear 0.5s;
  position: absolute;
  top: 50%;
  width: 80%;
  left: 10%;
  text-align: center;
  margin-top: 40px;
}
.loading-overlay--visible .loading-overlay__info,
.loading-overlay--visible .loading-overlay__success,
.loading-overlay--visible .loading-overlay__warning,
.loading-overlay--visible .loading-overlay__max,
.loading-overlay--visible .loading-overlay__error {
  transition: opacity 0.5s, visibility 0.5s;
}
.loading-overlay__info .btn,
.loading-overlay__success .btn,
.loading-overlay__warning .btn,
.loading-overlay__max .btn,
.loading-overlay__error .btn {
  font-size: 15px;
  min-width: 110px;
}
.loading-overlay--visible .loading-overlay__info {
  opacity: 1;
  visibility: visible;
}
.loading-overlay--visible .loading-overlay__warning,
.loading-overlay--visible .loading-overlay__max,
.loading-overlay--visible .loading-overlay__success,
.loading-overlay--visible .loading-overlay__error {
  opacity: 0;
  visibility: hidden;
}
.loading-overlay--success .loading-overlay__success {
  opacity: 1;
  visibility: visible;
}
.loading-overlay--success .loading-overlay__warning,
.loading-overlay--success .loading-overlay__max,
.loading-overlay--success .loading-overlay__info,
.loading-overlay--success .loading-overlay__error {
  opacity: 0;
  visibility: hidden;
}
.loading-overlay--error .loading-overlay__error {
  opacity: 1;
  visibility: visible;
}
.loading-overlay--error .loading-overlay__warning,
.loading-overlay--error .loading-overlay__max,
.loading-overlay--error .loading-overlay__info,
.loading-overlay--error .loading-overlay__success {
  opacity: 0;
  visibility: hidden;
}
.loading-overlay--warning .loading-overlay__warning {
  opacity: 1;
  visibility: visible;
}
.loading-overlay--warning .loading-overlay__error {
  opacity: 1;
  visibility: visible;
}
.loading-overlay--warning .loading-overlay__error,
.loading-overlay--warning .loading-overlay__max,
.loading-overlay--warning .loading-overlay__info,
.loading-overlay--warning .loading-overlay__success {
  opacity: 0;
  visibility: hidden;
}
.loading-overlay--max .loading-overlay__max {
  opacity: 1;
  visibility: visible;
}
.loading-overlay--max .loading-overlay__error,
.loading-overlay--max .loading-overlay__warning,
.loading-overlay--max .loading-overlay__info,
.loading-overlay--max .loading-overlay__success {
  opacity: 0;
  visibility: hidden;
}
@-moz-keyframes load-spinner {
  0% {
    -webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-ms-transform: rotate(360deg);-o-transform: rotate(360deg);transform: rotate(360deg);
  }
}
@-webkit-keyframes load-spinner {
  0% {
    -webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-ms-transform: rotate(360deg);-o-transform: rotate(360deg);transform: rotate(360deg);
  }
}
@keyframes load-spinner {
  0% {
    -webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);-moz-transform: rotate(360deg);-ms-transform: rotate(360deg);-o-transform: rotate(360deg);transform: rotate(360deg);
  }
}
@-moz-keyframes load-bounce {
  0% {
    -webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);-moz-transform: scale(1.6);-ms-transform: scale(1.6);-o-transform: scale(1.6);transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);-moz-transform: scale(1.4);-ms-transform: scale(1.4);-o-transform: scale(1.4);transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);-moz-transform: scale(1.5);-ms-transform: scale(1.5);-o-transform: scale(1.5);transform: scale(1.5);
  }
}
@-webkit-keyframes load-bounce {
  0% {
    -webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);-moz-transform: scale(1.6);-ms-transform: scale(1.6);-o-transform: scale(1.6);transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);-moz-transform: scale(1.4);-ms-transform: scale(1.4);-o-transform: scale(1.4);transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);-moz-transform: scale(1.5);-ms-transform: scale(1.5);-o-transform: scale(1.5);transform: scale(1.5);
  }
}
@keyframes load-bounce {
  0% {
    -webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.6);-moz-transform: scale(1.6);-ms-transform: scale(1.6);-o-transform: scale(1.6);transform: scale(1.6);
  }
  60% {
    -webkit-transform: scale(1.4);-moz-transform: scale(1.4);-ms-transform: scale(1.4);-o-transform: scale(1.4);transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1.5);-moz-transform: scale(1.5);-ms-transform: scale(1.5);-o-transform: scale(1.5);transform: scale(1.5);
  }
}

.modal-dialog {
  max-width: 650px;
  font-size: 1rem;
}
.modal-content {
  border: 1px solid #040f3d;
  background-color: white;
  color: #040f3d;
  padding: 2rem;
}
.modal-title {
  margin-bottom: 1rem;
}
.modal-body {
  padding: 0;
  margin-bottom: 2rem;
}
.modal-body-text {
  margin-bottom: 2rem;
}
.modal-body-input-text {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.modal-body-checkbox {
  margin-top: 0rem;
  margin-bottom: 0rem;
  vertical-align: middle;
}
.modal-body-notes textarea {
  width: 100%;
}
.modal-body .send-email {
  text-decoration: none;
}
.modal-body-title {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid #b9c4c4;
}
.modal form label {
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
}
.modal form label.modal-body-checkbox-text {
  margin-top: 0rem;
  margin-bottom: 0rem;
  padding-left: 10px;
  vertical-align: middle;
}
.modal-footer {
  padding: 0;
  border-top: none;
  justify-content: space-between;
}
.modal-footer .error-message {
  font-size: 1.4rem;
  color: red;
  padding-top: 1rem;
  display: none;
  font-weight: bold;
}
.modal-footer .complete-message {
  font-size: 1.4rem;
  color: #040f3d;
  padding-top: 1rem;
  display: none;
  font-weight: bold;
}
.modal--error {
  background: white;
  padding: 20px;
  text-align: center;
  max-width: 990px;
}
@media only screen and (min-width: 768px) {
  .modal--error {
    padding: 100px 50px;
  }
}
.modal--error h2 span {
  color: #1ed19f;
}

/* Payment element styling */

.payment-element .collapse-enter-active,
.payment-element .collapse-leave-active {
  transition: all 1s;
  max-height: 100vh;
}
.payment-element .collapse-enter,
.payment-element .collapse-leave-to {
  opacity: 0;
  max-height: 0px;
}
.payment-element .overview {
  background: #f3faf7;
}
.payment-element .payment-header,
.payment-element .payment-list,
.payment-element .overview-content,
.payment-element .payment-info {
  width: 98vw;
  max-width: 576px;
  margin-left: 1vw;
}
.payment-element .payment-header {
  color: #3f5d74;
}
.payment-element .payment-info {
  font-size: 1.1em;
}
@media only screen and (min-width: 576px) {
  .payment-element .payment-header,
  .payment-element .payment-list,
  .payment-element .overview-content,
  .payment-element .payment-info {
    width: 80vw;
    margin-left: 10vw;
  }
}
.payment-element .amount {
  font-size: 1.3em;
  color: #3f5d74;
  font-weight: bold;
}
.payment-element .payment-list-item,
.payment-element .payment-list-item div {
  background: #e9efeb;
  font-size: 2.5rem;
  display: flex;
  color: #040f3d;
  border-radius: 3px;
  height: 3rem;
  cursor: pointer;
}
.payment-element .payment-list-item {
  justify-content: space-between;
  margin-top: 3px;
}
.payment-element .payment-list-item i,
.payment-element .payment-list-item img {
  font-size: 3rem;
  line-height: 3rem;
  margin-left: 1rem;
}
.payment-element .payment-list-item h2 {
  margin: 0;
  line-height: 3rem;
  font-size: 1.7rem;
  padding-left: 0.5rem;
}
.payment-element .payment-item-content {
  background: #f3faf7;
}
.payment-element input[type=checkbox] {
  position: relative;
  cursor: pointer;
  margin-right: 1rem;
}
.payment-element input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  left: 0;
  border: 2px solid #555555;
  border-radius: 3px;
  background-color: white;
}
.payment-element input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 8px;
  height: 20px;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: -4px;
  left: 8px;
}
.payment-element #vipps-payment {
  text-align: center;
  padding: 20px;
}
.payment-element .vipps-error {
  color: red;
  font-weight: 900;
}
.payment-element #vipps-payment .make-payment-button {
  background: #ff5b24;
  color: white;
}
.payment-element #vipps-input {
  margin: auto;
  height: 3em;
  box-sizing: border-box;
  padding: 1em 1em;
  border: 2px solid transparent;
  border-radius: 0.2em;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  background: #f3faf7;
  border: 2px solid #040f3d;
  text-align: center;
  width: 100%;
}
.payment-element #vipps-input--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}
.payment-element #vipps-input--invalid {
  border-color: #fa755a;
}
.payment-element #vipps-input--webkit-autofill {
  background-color: #fefde5 !important;
}
.payment-element #stripe-payment {
  text-align: center;
  padding: 20px;
}
.payment-element .make-payment-button {
  border: none;
  border-radius: 0.2em;
  padding: 0.4em;
  color: #3f5d74;
  cursor: pointer;
  width: 100%;
}
.payment-element #stripe-payment #vipps-input {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  margin-bottom: -2px;
}
.payment-element #stripe-payment .make-payment-button {
  background: #4beaff;
}
.payment-element .StripeElement {
  margin: auto;
  box-sizing: border-box;
  padding: 1em 1em;
  border-radius: 0.2em;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  background: white;
  border: 2px solid #040f3d;
  height: 3em;
  background: #f3faf7;
}
.payment-element .StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}
.payment-element .StripeElement--invalid {
  border-color: #fa755a;
}
.payment-element .StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
.payment-element #card-errors {
  color: red;
  font-weight: bold;
}
.payment-element .fadeOutPayment {
  opacity: 0.3;
  pointer-events: none;
}

.private-order-summary i {
  color: #1ed19f;
  font-size: 42px;
  vertical-align: bottom;
}
.private-order-summary .order-list {
  margin-top: 25px;
}
.private-order-summary .order-list .heading {
  font-weight: bold;
}
.private-order-summary .order-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.private-order-summary .order-list ul li {
  text-transform: lowercase;
}
.private-order-summary .order-list ul span.uppercase {
  text-transform: none;
}
.private-order-summary .new-order {
  background: #040f3d;
  color: white;
  padding: 30px 0;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) {
  .private-order-summary .new-order {
    margin-top: 145px;
  }
}
.private-order-summary .new-order p {
  font-size: 22px;
}
.private-order-summary .not-valid {
  text-decoration: line-through;
  color: red;
}

.private-order {
  padding: 30px 0;
  margin-bottom: 40px;
}
.private-order .waste-info {
  color: #040f3d;
  margin: 20px 0 40px;
}
@media only screen and (min-width: 768px) {
  .private-order .waste-info {
    margin-top: 0;
  }
}
.private-order .waste-info__content--bg {
  background: #e9f8ff;
  padding-top: 7rem;
  margin-top: -8rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .private-order .waste-info__content--bg {
    margin-bottom: 0rem;
  }
}
@media only screen and (min-width: 768px) {
  .private-order .waste-info__content {
    padding-top: 7rem;
    margin-top: -8rem;
  }
}
.private-order .waste-bins label {
  min-width: 130px;
  max-width: 100%;
}
.private-order .step-wrapper {
  padding: 30px 0;
}
.private-order .step-wrapper .step {
  font-size: 18px;
}
.private-order .loading-overlay__spinner {
  visibility: visible;
}
.private-order .loading-overlay__spinner::before {
  background-color: transparent;
}
.private-order .fade-enter-active,
.private-order .fade-leave-active {
  transition: opacity 0.5s;
}
.private-order .fade-enter,
.private-order .fade-leave-to {
  opacity: 0;
}
.private-order-area-hide {
  display: none;
}
.private-order-area-show {
  display: block;
}

.order-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.order-progress-bar .marker {
  background-color: white;
  border: 2px solid #040f3d;
  width: 14px;
  height: 14px;
  margin: 4px;
  outline: none;
  border-radius: 50%;
  min-width: auto;
  padding: 0;
  cursor: pointer;
}
.order-progress-bar .marker:hover,
.order-progress-bar .marker:focus,
.order-progress-bar .marker:active {
  background-color: white;
}
.order-progress-bar .marker.enabled,
.order-progress-bar .marker.enabled:hover,
.order-progress-bar .marker.enabled:focus,
.order-progress-bar .marker.enabled:active {
  background-color: #040f3d;
}
.order-progress-bar .marker.active {
  width: 20px;
  height: 20px;
  opacity: 1;
}
.order-progress-bar .marker.active,
.order-progress-bar .marker.active:hover,
.order-progress-bar .marker.active:focus,
.order-progress-bar .marker.active:active {
  background-color: #4bffa5;
}

.register-personal-info {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
}
.register-personal-info .first-name,
.register-personal-info .country-code,
.register-personal-info .last-name,
.register-personal-info .phone {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 7px;
}
.register-personal-info .first-name > input,
.register-personal-info .country-code > input,
.register-personal-info .last-name > input,
.register-personal-info .phone > input,
.register-personal-info .first-name select,
.register-personal-info .country-code select,
.register-personal-info .last-name select,
.register-personal-info .phone select {
  width: 100%;
}
.register-personal-info .email,
.register-personal-info .address {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 7px;
}
.register-personal-info .email > input,
.register-personal-info .address > input,
.register-personal-info .email select,
.register-personal-info .address select {
  width: 100%;
}
.private-order .form .wants-reminder .checkbox,
.private-order .form .remember-me .checkbox {
  margin: 10px 0;
}

.select-municipality-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  margin: 25px auto;
  max-width: 500px;
  text-transform: uppercase;
}
.select-municipality-wrapper .select-municipality {
  position: relative;
  text-align: center;
}
.select-municipality-wrapper .select-municipality__trigger {
  position: relative;
  padding: 0 22px;
  font-size: 20px;
  font-weight: 300;
  height: 20px;
  line-height: 20px;
  background: white;
  color: #040f3d;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .select-municipality-wrapper .select-municipality__trigger {
    font-size: 28px;
    height: 60px;
    line-height: 60px;
  }
}
.select-municipality-wrapper .custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 0;
  background: white;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  box-shadow: 0px 16px 14px #0000007d;
}
.select-municipality-wrapper .select-municipality.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.select-municipality-wrapper .custom-option {
  position: relative;
  display: block;
  margin: 0 22px;
  font-weight: 300;
  line-height: 60px;
  cursor: pointer;
  transition: all 0.5s;
  border-bottom: 1px solid #e9efeb;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .select-municipality-wrapper .custom-option {
    font-size: 22px;
  }
}
.select-municipality-wrapper .custom-option a,
.select-municipality-wrapper .custom-option a:link,
.select-municipality-wrapper .custom-option a:visited,
.select-municipality-wrapper .custom-option a:hover,
.select-municipality-wrapper .custom-option a:focus,
.select-municipality-wrapper .custom-option a:active {
  text-decoration: none;
  color: #040f3d;
}
.select-municipality-wrapper .custom-option:hover {
  cursor: pointer;
  text-decoration: underline;
}
.select-municipality-wrapper .custom-option.selected {
  color: white;
  background-color: #305c91;
}
.select-municipality-wrapper .arrow {
  position: absolute;
  height: 15px;
  width: 15px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.select-municipality-wrapper .arrow::before,
.select-municipality-wrapper .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}
.select-municipality-wrapper .arrow::before {
  left: -5px;
  transform: rotate(45deg);
  background-color: #ffc938;
}
.select-municipality-wrapper .arrow::after {
  left: 5px;
  transform: rotate(-45deg);
  background-color: #ffc938;
}
.select-municipality-wrapper .open .arrow::before {
  left: -5px;
  transform: rotate(-45deg);
}
.select-municipality-wrapper .open .arrow::after {
  left: 5px;
  transform: rotate(45deg);
}

.select-dropdown-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  max-width: 360px;
  margin: 0.5rem 0.5rem;
  border: 1px solid #040f3d;
  border-radius: 5px;
  padding: 0.275rem 0.75rem 0.275rem 1rem;
  height: 3rem;
}
@media only screen and (min-width: 576px) {
  .select-dropdown-wrapper {
    width: 15rem;
    margin: 1.2rem 0.5rem;
  }
}
.select-dropdown-wrapper .select-dropdown {
  position: relative;
  text-align: left;
}
.select-dropdown-wrapper .select-dropdown__trigger {
  position: relative;
  padding: 0 2rem 0 0;
  background: white;
  color: #040f3d;
  cursor: pointer;
  white-space: nowrap;
  line-height: 2rem;
}
.select-dropdown-wrapper .custom-options {
  position: relative;
  display: block;
  margin: 0 -13px 0 -17px;
  background: white;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  border: 1px solid #040f3d;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.select-dropdown-wrapper .open.custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.select-dropdown-wrapper .custom-option {
  position: relative;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.5s;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #040f3d;
  padding: 0.75rem 0.8rem 0.75rem 1rem;
  width: 100%;
}
.select-dropdown-wrapper .custom-option:hover {
  cursor: pointer;
  text-decoration: underline;
}
.select-dropdown-wrapper .custom-option--border {
  border-bottom: 1px solid #e9efeb;
}
.select-dropdown-wrapper .custom-option__sub {
  padding-left: 3rem;
  border-bottom: 0;
}
.select-dropdown-wrapper .custom-option__sub.disabled {
  color: silver;
}
.select-dropdown-wrapper .custom-option .arrow {
  right: 0.8rem;
}
.select-dropdown-wrapper .custom-option i {
  content: " ";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.75rem;
  height: 1.5rem;
  width: 1.5rem;
  padding-left: 1.25rem;
}
.select-dropdown-wrapper .custom-option i.icon-glass {
  background-image: url(/Static/gfx/icon-glass-blue.svg);
}
.select-dropdown-wrapper .custom-option i.icon-leaf {
  background-image: url(/Static/gfx/icon-leaf-blue.svg);
}
.select-dropdown-wrapper .custom-option i.icon-chair {
  background-image: url(/Static/gfx/icon-chair-blue.svg);
}
.select-dropdown-wrapper .custom-option i.icon-danger {
  background-image: url(/Static/gfx/icon-danger-blue.svg);
}
.select-dropdown-wrapper .custom-option i.icon-shirt {
  background-image: url(/Static/gfx/icon-shirt-blue.svg);
}
.select-dropdown-wrapper .custom-option .checked,
.select-dropdown-wrapper .custom-option .unchecked {
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 1rem;
  text-align: right;
  display: inline-block;
  height: 1.3rem;
  width: 1.3rem;
}
.select-dropdown-wrapper .custom-option .checked {
  background-image: url(/Static/gfx/checked.svg);
}
.select-dropdown-wrapper .custom-option .unchecked {
  background-image: url(/Static/gfx/unchecked.svg);
}
.select-dropdown-wrapper .custom-option a,
.select-dropdown-wrapper .custom-option a:link,
.select-dropdown-wrapper .custom-option a:visited,
.select-dropdown-wrapper .custom-option a:hover,
.select-dropdown-wrapper .custom-option a:focus,
.select-dropdown-wrapper .custom-option a:active {
  text-decoration: none;
  color: #040f3d;
  padding-left: 10px;
}
.select-dropdown-wrapper .custom-option.selected {
  color: white;
  background-color: #305c91;
}
.select-dropdown-wrapper .arrow {
  position: absolute;
  height: 10px;
  width: 10px;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
.select-dropdown-wrapper .arrow::before,
.select-dropdown-wrapper .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}
.select-dropdown-wrapper .arrow::before {
  left: -3px;
  transform: rotate(45deg);
  background-color: #040f3d;
}
.select-dropdown-wrapper .arrow::after {
  left: 3px;
  transform: rotate(-45deg);
  background-color: #040f3d;
}
.select-dropdown-wrapper .open.arrow::before {
  left: -3px;
  transform: rotate(-45deg);
}
.select-dropdown-wrapper .open.arrow::after {
  left: 3px;
  transform: rotate(45deg);
}
.select-dropdown-wrapper .change-county,
.select-dropdown-wrapper .change-municipality {
  text-align: center;
  background: #4bffa5;
  padding: 0.5rem;
  cursor: pointer;
}
.select-dropdown-wrapper .change-county:hover,
.select-dropdown-wrapper .change-municipality:hover {
  background: #1ed19f;
}

.select-municipality-wrapper {
  position: relative;
  user-select: none;
  width: 100%;
  margin: 25px auto;
  max-width: 500px;
  text-transform: uppercase;
}
.select-municipality-wrapper .select-municipality {
  position: relative;
  text-align: center;
}
.select-municipality-wrapper .select-municipality__trigger {
  position: relative;
  padding: 0 22px;
  font-size: 20px;
  font-weight: 300;
  height: 20px;
  line-height: 20px;
  background: white;
  color: #040f3d;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .select-municipality-wrapper .select-municipality__trigger {
    font-size: 28px;
    height: 60px;
    line-height: 60px;
  }
}
.select-municipality-wrapper .custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 0;
  background: white;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  box-shadow: 0px 16px 14px #0000007d;
}
.select-municipality-wrapper .select-municipality.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.select-municipality-wrapper .custom-option {
  position: relative;
  display: block;
  margin: 0 22px;
  font-weight: 300;
  line-height: 60px;
  cursor: pointer;
  transition: all 0.5s;
  border-bottom: 1px solid #e9efeb;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .select-municipality-wrapper .custom-option {
    font-size: 22px;
  }
}
.select-municipality-wrapper .custom-option a,
.select-municipality-wrapper .custom-option a:link,
.select-municipality-wrapper .custom-option a:visited,
.select-municipality-wrapper .custom-option a:hover,
.select-municipality-wrapper .custom-option a:focus,
.select-municipality-wrapper .custom-option a:active {
  text-decoration: none;
  color: #040f3d;
}
.select-municipality-wrapper .custom-option:hover {
  cursor: pointer;
  text-decoration: underline;
}
.select-municipality-wrapper .custom-option.selected {
  color: white;
  background-color: #305c91;
}
.select-municipality-wrapper .arrow {
  position: absolute;
  height: 15px;
  width: 15px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.select-municipality-wrapper .arrow::before,
.select-municipality-wrapper .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}
.select-municipality-wrapper .arrow::before {
  left: -5px;
  transform: rotate(45deg);
  background-color: #ffc938;
}
.select-municipality-wrapper .arrow::after {
  left: 5px;
  transform: rotate(-45deg);
  background-color: #ffc938;
}
.select-municipality-wrapper .open .arrow::before {
  left: -5px;
  transform: rotate(-45deg);
}
.select-municipality-wrapper .open .arrow::after {
  left: 5px;
  transform: rotate(45deg);
}

.select-order-page {
  background: #040f3d;
  padding: 15px;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.select-order-page-container {
  position: relative;
}
@media only screen and (min-width: 576px) {
  .select-order-page {
    padding: 30px;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  .select-order-page {
    padding: 30px;
    position: relative;
  }
}
@media only screen and (min-width: 1200px) {
  .select-order-page {
    padding: 50px;
  }
}
.select-order-page .button-wrapper {
  display: flex;
  text-align: center;
  position: relative;
}
.select-order-page .button-wrapper span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  padding-top: 8px;
  font-weight: bold;
  background: white;
  color: #040f3d;
  font-size: 14px;
  text-align: center;
  width: 2.4rem;
  height: 2.4rem;
}
@media only screen and (min-width: 1200px) {
  .select-order-page .button-wrapper span {
    font-size: 20px;
    padding-top: 1.3rem;
    width: 4.4rem;
    height: 4.4rem;
  }
}
.select-order-page .button-wrapper button {
  width: 50%;
  padding: 15px;
  background: #b9c4c4;
  color: #040f3d;
  border: none;
  cursor: pointer;
  border-radius: 0;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .select-order-page .button-wrapper button {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .select-order-page .button-wrapper button {
    font-size: 27px;
    padding: 25px;
  }
}
.select-order-page .button-wrapper button:hover,
.select-order-page .button-wrapper button:focus,
.select-order-page .button-wrapper button:active {
  background: #b9c4c4;
}
.select-order-page .button-wrapper button:first-child {
  background: #ffc938;
  padding-left: 10px;
}
.select-order-page .button-wrapper button:last-child {
  padding-right: 10px;
}
.select-order-page .select-municipality {
  margin-top: 25px;
}
.select-order-page .select-municipality span {
  display: inline-block;
  color: white;
  padding-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .select-order-page .select-municipality span {
    font-size: 22px;
  }
}
.select-order-page .select-municipality .muncipalities {
  width: 100%;
  text-align: center;
}
.select-order-page .select-municipality .muncipalities a {
  margin: 10px 0;
}
@media only screen and (min-width: 992px) {
  .select-order-page .select-municipality .muncipalities {
    font-size: 20px;
  }
}
.select-order-page .select-cooperative span {
  display: inline-block;
  color: white;
  margin-top: 15px;
  margin-bottom: 5px;
}
.select-order-page .select-cooperative span.info {
  color: #ffc938;
}
@media only screen and (min-width: 992px) {
  .select-order-page .select-cooperative span {
    font-size: 22px;
  }
}
.select-order-page .select-cooperative .input-wrapper {
  display: flex;
  margin: 0 -7px;
}
.select-order-page .select-cooperative .input-wrapper > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 7px;
}
.select-order-page .select-cooperative .btn-submit {
  width: 100%;
  border: 1px solid #ffc938;
  background: transparent;
  border-radius: 5px;
  color: #ffc938;
  text-transform: uppercase;
  font-size: 22px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.select-order-page .select-cooperative .btn-submit:hover {
  text-decoration: underline;
}
.select-order-page .select-cooperative a.forgot-password {
  color: #4beaff;
}

.select-wastetype .label {
  color: #040f3d;
}
.select-wastetype .wastetype-block {
  width: 100%;
  flex-shrink: unset;
}
@media only screen and (min-width: 1200px) {
  .select-wastetype .wastetype-block {
    width: unset;
  }
}
.select-wastetype .wastetype-block p.h2 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .select-wastetype .wastetype-block p.h2 {
    font-size: 2rem;
  }
}
.select-wastetype .wastetype-container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -10px 0;
  margin-bottom: 40px;
}
.select-wastetype .wastetype-item {
  width: 50%;
  padding: 10px;
  /*@media @md-up {
                width: 50%;
            }*/

}
@media only screen and (min-width: 1200px) {
  .select-wastetype .wastetype-item {
    width: 33.33%;
  }
}
@media only screen and (min-width: 1200px) {
  .select-wastetype .wastetype-item {
    width: auto;
    min-width: 180px;
  }
}
.select-wastetype .wastetype-button,
.select-wastetype .wastetype a.wastetype-button {
  padding: 70px 15px 10px 15px;
  font-size: 16px;
  background-repeat: no-repeat;
  background-position: center 15px;
  display: inline-block;
  text-align: center;
  border-color: #040f3d;
  background-color: white;
}
.select-wastetype .wastetype-button,
.select-wastetype .wastetype a.wastetype-button,
.select-wastetype .wastetype-button:link,
.select-wastetype .wastetype a.wastetype-button:link,
.select-wastetype .wastetype-button:visited,
.select-wastetype .wastetype a.wastetype-button:visited {
  background-color: white;
  border-color: #040f3d;
  color: #040f3d;
}
.select-wastetype .wastetype-button.slider,
.select-wastetype .wastetype a.wastetype-button.slider {
  background-position: center center;
  padding: 10px 15px;
  height: 120px;
}
.select-wastetype .wastetype-button:hover,
.select-wastetype .wastetype a.wastetype-button:hover,
.select-wastetype .wastetype-button:focus,
.select-wastetype .wastetype a.wastetype-button:focus,
.select-wastetype .wastetype-button:active,
.select-wastetype .wastetype a.wastetype-button:active,
.select-wastetype .wastetype-button.active,
.select-wastetype .wastetype a.wastetype-button.active {
  background-color: #040f3d;
  border-color: #040f3d;
  color: white;
}
.select-wastetype .wastetype-button.icon-top,
.select-wastetype .wastetype a.wastetype-button.icon-top {
  background-position: center 30px;
}
.select-wastetype .wastetype-button.icon-chair,
.select-wastetype .wastetype a.wastetype-button.icon-chair {
  background-image: url(/Static/gfx/icon-chair-blue.svg);
}
.select-wastetype .wastetype-button.icon-chair.active,
.select-wastetype .wastetype a.wastetype-button.icon-chair.active,
.select-wastetype .wastetype-button.icon-chair:focus,
.select-wastetype .wastetype a.wastetype-button.icon-chair:focus,
.select-wastetype .wastetype-button.icon-chair:hover,
.select-wastetype .wastetype a.wastetype-button.icon-chair:hover {
  background-image: url(/Static/gfx/icon-chair.svg);
}
.select-wastetype .wastetype-button.icon-leaf,
.select-wastetype .wastetype a.wastetype-button.icon-leaf {
  background-image: url(/Static/gfx/icon-leaf-blue.svg);
}
.select-wastetype .wastetype-button.icon-leaf.active,
.select-wastetype .wastetype a.wastetype-button.icon-leaf.active,
.select-wastetype .wastetype-button.icon-leaf:focus,
.select-wastetype .wastetype a.wastetype-button.icon-leaf:focus,
.select-wastetype .wastetype-button.icon-leaf:hover,
.select-wastetype .wastetype a.wastetype-button.icon-leaf:hover {
  background-image: url(/Static/gfx/icon-leaf.svg);
}
.select-wastetype .wastetype-button.icon-danger,
.select-wastetype .wastetype a.wastetype-button.icon-danger {
  background-image: url(/Static/gfx/icon-danger-blue.svg);
}
.select-wastetype .wastetype-button.icon-danger.active,
.select-wastetype .wastetype a.wastetype-button.icon-danger.active,
.select-wastetype .wastetype-button.icon-danger:focus,
.select-wastetype .wastetype a.wastetype-button.icon-danger:focus,
.select-wastetype .wastetype-button.icon-danger:hover,
.select-wastetype .wastetype a.wastetype-button.icon-danger:hover {
  background-image: url(/Static/gfx/icon-danger.svg);
}
.select-wastetype .wastetype-button.icon-glass,
.select-wastetype .wastetype a.wastetype-button.icon-glass {
  background-image: url(/Static/gfx/icon-glass-blue.svg);
}
.select-wastetype .wastetype-button.icon-glass.active,
.select-wastetype .wastetype a.wastetype-button.icon-glass.active,
.select-wastetype .wastetype-button.icon-glass:focus,
.select-wastetype .wastetype a.wastetype-button.icon-glass:focus,
.select-wastetype .wastetype-button.icon-glass:hover,
.select-wastetype .wastetype a.wastetype-button.icon-glass:hover {
  background-image: url(/Static/gfx/icon-glass.svg);
}
.select-wastetype .wastetype-button.icon-shirt,
.select-wastetype .wastetype a.wastetype-button.icon-shirt {
  background-image: url(/Static/gfx/icon-shirt-blue.svg);
}
.select-wastetype .wastetype-button.icon-shirt.active,
.select-wastetype .wastetype a.wastetype-button.icon-shirt.active,
.select-wastetype .wastetype-button.icon-shirt:focus,
.select-wastetype .wastetype a.wastetype-button.icon-shirt:focus,
.select-wastetype .wastetype-button.icon-shirt:hover,
.select-wastetype .wastetype a.wastetype-button.icon-shirt:hover {
  background-image: url(/Static/gfx/icon-shirt.svg);
}
.select-wastetype .wastetype-button.icon-foodwastebag,
.select-wastetype .wastetype a.wastetype-button.icon-foodwastebag {
  background-image: url(/Static/gfx/icon-foodwastebag-blue.svg);
}
.select-wastetype .wastetype-button.icon-foodwastebag.active,
.select-wastetype .wastetype a.wastetype-button.icon-foodwastebag.active,
.select-wastetype .wastetype-button.icon-foodwastebag:hover,
.select-wastetype .wastetype a.wastetype-button.icon-foodwastebag:hover {
  background-image: url(/Static/gfx/icon-foodwastebag.svg);
}
.select-wastetype .wastetype-button.icon-plasticwastebag,
.select-wastetype .wastetype a.wastetype-button.icon-plasticwastebag {
  background-image: url(/Static/gfx/icon-plasticwastebag-blue.svg);
}
.select-wastetype .wastetype-button.icon-plasticwastebag.active,
.select-wastetype .wastetype a.wastetype-button.icon-plasticwastebag.active,
.select-wastetype .wastetype-button.icon-plasticwastebag:hover,
.select-wastetype .wastetype a.wastetype-button.icon-plasticwastebag:hover {
  background-image: url(/Static/gfx/icon-plasticwastebag.svg);
}
@media only screen and (min-width: 768px) {
  .select-wastetype .wastetype-button,
  .select-wastetype .wastetype a.wastetype-button {
    font-size: 18px;
  }
}
.select-wastetype.gap-column {
  column-gap: 30px;
}
.select-subwastetype .subwastetype-header {
  text-align: center;
}
.select-subwastetype .subwastetype-underline {
  border-bottom: 2px solid #040f3d;
}
.select-subwastetype .subwastetype-container {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -10px 0;
  margin-bottom: 40px;
}
.select-subwastetype .subwastetype-item {
  width: auto;
  padding: 10px;
  max-width: 160px;
}
@media only screen and (min-width: 768px) {
  .select-subwastetype .subwastetype-item {
    min-width: 180px;
    max-width: 240px;
  }
}
.select-subwastetype .subwastetype-item.disabled .subwastetype-button {
  border-color: silver;
}
.select-subwastetype .subwastetype-item.disabled .subwastetype-button span {
  color: silver;
}
.select-subwastetype .subwastetype-button {
  padding: 20px 15px 20px 15px;
  font-size: 15px;
  background-repeat: no-repeat;
  background-position: center 15px;
  display: inline-block;
  text-align: center;
  border-color: #040f3d;
  background-color: white;
}
.select-subwastetype .subwastetype-button:hover,
.select-subwastetype .subwastetype-button:focus,
.select-subwastetype .subwastetype-button:active,
.select-subwastetype .subwastetype-button.active {
  background-color: #040f3d;
  border-color: #040f3d;
  color: white;
}
@media only screen and (min-width: 768px) {
  .select-subwastetype .subwastetype-button {
    font-size: 18px;
  }
}

.vue-modal .black-opacity {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: inherit;
  opacity: 0.7;
  z-index: 9998;
  cursor: pointer;
}
.vue-modal .modal-content-wrapper {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none;
}
.vue-modal .modal-content {
  color: #3f5d74;
  position: relative;
  text-align: center;
  opacity: 1;
  background-color: white;
  padding: 10vh 0px;
  pointer-events: initial;
  border-radius: 0;
}
.vue-modal .modal-content h1 {
  padding: 1em;
}
.vue-modal .modal-content span {
  color: #ffc938;
}
.vue-modal .modal-content p {
  padding: 1em;
  color: black;
  margin: auto;
  width: 80%;
}
.vue-modal .close-modal {
  position: absolute;
  right: 1.5em;
  top: 0.8em;
  cursor: pointer;
  font-size: 2em;
}
.vue-modal .orange-button {
  margin: auto;
  background: #ffc938;
  border: none;
  padding: 0.5em;
  border-radius: 0.2em;
  color: #3f5d74;
  cursor: pointer;
}
@media only screen and (min-width: 600px) {
  .vue-modal .modal-content {
    width: 90%;
  }
  .vue-modal .orange-button {
    width: 60%;
  }
}
@media only screen and (min-width: 996px) {
  .vue-modal .modal-content {
    width: 70%;
  }
  .vue-modal .orange-button {
    width: 50%;
  }
}
@media only screen and (min-width: 1500px) {
  .vue-modal .modal-content {
    width: 40%;
  }
}

.cooperative-order-page .waste-info {
  color: #040f3d;
  margin: 20px 0 40px;
}
@media only screen and (min-width: 768px) {
  .cooperative-order-page .waste-info {
    margin-top: 0;
  }
}
.cooperative-order-page .waste-info h2,
.cooperative-order-page .waste-info h3 {
  color: #040f3d;
  font-size: 18px;
  margin-bottom: 0.5rem;
  font-weight: normal;
}
@media only screen and (min-width: 576px) {
  .cooperative-order-page .waste-info h2,
  .cooperative-order-page .waste-info h3 {
    font-size: 22px;
  }
}
.cooperative-order-page .select-waste-frequency {
  margin-top: -15px;
  margin-bottom: -15px;
}
.cooperative-order-page .select-waste-frequency .btn-basic,
.cooperative-order-page .select-waste-frequency .btn-basic:link,
.cooperative-order-page .select-waste-frequency .btn-basic:visited {
  background-color: white;
  border-color: #040f3d;
  color: #040f3d;
}
.cooperative-order-page .select-waste-frequency .btn-basic:hover,
.cooperative-order-page .select-waste-frequency .btn-basic:focus,
.cooperative-order-page .select-waste-frequency .btn-basic:active,
.cooperative-order-page .select-waste-frequency .btn-basic.active {
  background-color: #040f3d;
  border-color: #040f3d;
  color: white;
}
.cooperative-order-page .cooperative-form {
  padding: 25px 0;
}
.cooperative-order-page .block:last-child {
  background: #e9efeb;
}
.cooperative-order-page .cooperative-select {
  background-color: #f3faf7;
}
.cooperative-order-page .cooperative-orders {
  background-color: #e9f8ff;
}
.cooperative-order-page .info-icon {
  vertical-align: top;
  cursor: pointer;
}

.new-start-page {
  flex-direction: row;
}
.new-start-page .contentblock:first-child {
  background: #f3faf7;
  color: #040f3d;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .new-start-page .contentblock:first-child {
    font-size: 22px;
    padding: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .new-start-page .contentblock:first-child {
    font-size: 30px;
    padding: 15px;
  }
}
.new-start-page .content-block--with-image {
  background-color: white;
}
.new-start-page .content-block--with-image .image {
  margin-top: 0;
}
.new-start-page .content-block--with-image p {
  font-size: 18px;
}
@media only screen and (min-width: 992px) {
  .new-start-page .content-block--with-image p {
    font-size: 22px;
  }
}
.new-start-page .login-error {
  background-color: #c59229;
  padding: 1em;
  text-align: center;
  margin-top: 1em;
}
.new-start-page .login-error .alert {
  color: #f3faf7;
}
.new-start-page .start-info-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80px;
  background-color: #f3faf7;
  color: #040f3d;
}
@media only screen and (min-width: 576px) {
  .new-start-page .start-info-box {
    position: relative;
    min-height: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .new-start-page .start-info-box {
    min-height: 135px;
  }
}
.new-start-page .start-info-box p {
  text-align: center;
  padding: 0 10px 0 10px;
  margin: 0;
}

.header__logo {
  position: absolute;
  z-index: 2;
  max-height: 50px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .header__logo {
    max-height: 80px;
    margin-top: 20px;
  }
}
.municipality-contact {
  margin-top: 4rem;
}
.municipality-contact__logo a {
  margin-top: -5px;
  display: flex;
  justify-content: right;
}
@media only screen and (min-width: 576px) {
  .municipality-contact__logo a {
    margin-top: -15px;
  }
}
.municipality-contact__logo img {
  max-height: 140px;
  max-width: 100%;
}

.waste-calendar-page {
  margin-bottom: 40px;
}
.waste-calendar-page__selector {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  .waste-calendar-page__selector-wrapper {
    float: right;
  }
}
.waste-calendar-page__waste-containers {
  background: white;
  list-style: none;
  padding-left: 0;
}
.waste-calendar-page__waste-containers__item {
  display: inline-block;
}
.waste-calendar-page__waste-containers li {
  padding-bottom: 10px;
}
.waste-calendar-page__property-info {
  background: white;
  padding: 20px;
  margin-bottom: 10px;
}
.waste-calendar-page__go-back {
  display: inline-block;
  margin: 20px 0;
}
.waste-calendar-page label {
  display: inherit;
  font-weight: inherit;
  margin: inherit;
  max-width: inherit;
}
.waste-calendar {
  margin-bottom: 40px;
  width: 100%;
}
.waste-calendar__item {
  border-bottom: 1px solid #040f3d;
}
.waste-calendar__item th,
.waste-calendar__item td {
  padding: 20px 0;
}
.wc-address-page {
  margin-bottom: 40px;
}
.waste-container-icon {
  display: inline-block;
  height: 50px;
  vertical-align: middle;
  margin-right: 10px;
}
.icon-description-list {
  list-style: none;
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 0;
}
@media only screen and (min-width: 576px) {
  .icon-description-list li {
    float: left;
    margin-right: 10px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
}
.icon-description-list .waste-container-icon {
  height: 40px;
}
.search-wrapper {
  position: relative;
  margin: 30px 0;
}
.search-wrapper input[type=text] {
  font-family: graphie, sans-serif;
  height: 40px;
  border: 2px solid #023872;
  font-size: 16px;
  padding: 8px 12px;
  width: 100%;
  padding-right: 100px;
}
@media only screen and (min-width: 576px) {
  .search-wrapper input[type=text] {
    height: 52px;
  }
}
.search-wrapper button[type=submit],
.search-wrapper input[type=submit] {
  position: absolute;
  font-family: graphie, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #023872;
  border: 2px solid #023872;
  color: white;
  padding: 0 13px;
}
.search-wrapper button[type=submit]:hover,
.search-wrapper input[type=submit]:hover {
  background-color: #dceaed;
  color: #040f3d;
  border: 2px solid #040f3d;
}
.search-wrapper button[type=submit]:hover i,
.search-wrapper input[type=submit]:hover i {
  color: #4bffa5;
}
.search-wrapper button[type=submit] i,
.search-wrapper input[type=submit] i {
  color: #4bffa5;
  font-size: 2em;
  vertical-align: middle;
}
.search-wrapper button[type=submit] span,
.search-wrapper input[type=submit] span {
  vertical-align: middle;
}
.search-list ul {
  list-style: none;
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 0;
}
.search-list ul li a {
  color: #023872;
  font-weight: 600;
}

.message-box {
  border: 2px solid #375165;
  background: white;
  padding: 50px 40px 40px;
  position: relative;
  margin: 0 0;
  display: none;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .message-box {
    margin: 32px 0;
  }
}
@media only screen and (min-width: 576px) {
  .message-box {
    margin: 0;
    margin-bottom: 32px;
  }
}
.start-page .message-box {
  margin: 20px 0;
}
.message-box__hide {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: hand;
  cursor: pointer;
  color: #375165;
}
.message-box__hide:hover {
  color: black;
}
.message-box__hide i {
  color: #375165;
  font-weight: bold;
}
.message-box h2 {
  color: #375165;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 576px) {
  .message-box h2 {
    font-size: 26px;
  }
}
.message-box h3 {
  color: #375165;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 16px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .message-box h3 {
    font-size: 20px;
  }
}
.message-box__content p {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.message-box a {
  font-size: 18px;
}
.message-box__pre {
  font-size: 16px;
  margin-bottom: 11px;
}
.message-box__updated {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  color: #375165;
}
.messageblock {
  padding: 10px;
}
@media only screen and (min-width: 992px) {
  .messageblock {
    max-width: 440px;
  }
}
.messageblock-container {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
}
.messageblock-container-sub {
  display: flex;
  flex-direction: column;
  left: 0px;
  justify-content: end;
  padding-top: 1rem;
  padding-bottom: 10rem;
}
@media only screen and (min-width: 992px) {
  .messageblock-container-sub {
    flex-direction: row;
  }
}

html,
body {
  min-height: 100vh;
  position: relative;
}
body {
  display: flex;
  flex-flow: column;
  font-family: graphie, sans-serif;
  font-size: 16px;
}
body .content-wrapper {
  display: flex;
  flex: auto;
  flex-direction: column;
}
body .page-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex: auto;
}
body .page-container--center {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
.fill-links a {
  color: #040f3d;
  text-decoration: none;
  border-bottom: none;
  background: linear-gradient(to bottom, #21a8fc 0%, #21a8fc 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 2px 2px;
  transition: background-size 0.2s, color 0.2s;
  padding-bottom: 4px;
}
.fill-links a:hover {
  text-decoration: none;
  color: #040f3d;
  background-size: 2px 100%;
}
a.header-logo {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
  text-align: center;
}
a.header-logo img {
  height: 40px;
  margin-right: 5px;
}
@media only screen and (min-width: 992px) {
  a.header-logo img {
    height: 45px;
  }
}
a.header-logo span {
  position: relative;
  bottom: -12px;
  font-size: 22px;
}
@media only screen and (min-width: 768px) {
  a.header-logo {
    text-align: left;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
a.header-logo,
a.header-logo:link,
a.header-logo:visited,
a.header-logo:hover,
a.header-logo:focus,
a.header-logo:active {
  text-decoration: none;
  color: white;
}
a.header-logo--blue {
  color: #040f3d;
}
a.header-logo--blue,
a.header-logo--blue:link,
a.header-logo--blue:visited,
a.header-logo--blue:hover,
a.header-logo--blue:focus,
a.header-logo--blue:active {
  color: #040f3d;
}
a.header-logo__calendar {
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-weight: 700;
  display: block;
  text-align: center;
}
a.header-logo__calendar img {
  height: 50px;
  margin-right: 5px;
}
@media only screen and (min-width: 992px) {
  a.header-logo__calendar img {
    height: 60px;
  }
}
header {
  background: white;
  transition: background-color linear 0.2s;
}
header .container {
  padding: 0;
}
header .navbar {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.2rem 1rem;
  padding-top: 13px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  header .navbar {
    padding: 0.5rem 1rem;
  }
}
header .navbar-brand {
  padding: 0;
}
header .navbar-brand img {
  display: inline-block;
  margin-right: 16px;
  max-height: 56px;
}
@media (min-width: 768px) {
  header .navbar-brand img {
    height: auto;
  }
}
header .navbar-brand h1 {
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: bold;
  line-height: 56px;
}
header .navbar-inner-wrapper {
  line-height: 56px;
  text-align: right;
}
header .menu-toggle {
  display: inline-block;
  border: 0;
  color: white;
  background: transparent;
  margin-top: 18px;
  cursor: pointer;
}
@media (min-width: 768px) {
  header .menu-toggle {
    background: #21a8fc;
    border: 0;
    line-height: 38px;
    color: white;
    border-radius: 19px;
    padding: 0 30px;
    margin-left: 15px;
  }
}
header .menu-toggle span.text {
  display: none;
}
@media (min-width: 768px) {
  header .menu-toggle span.text {
    display: inline;
  }
}
header .menu-toggle .icon {
  float: right;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  margin-top: 0;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
@media (min-width: 768px) {
  header .menu-toggle .icon {
    margin-top: 7px;
    margin-right: -10px;
    margin-left: 10px;
  }
}
header .menu-toggle .icon:focus {
  outline: none;
}
header .menu-toggle .icon span {
  display: block;
  position: absolute;
  top: 10px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: #21a8fc;
  transition: background 0s 0.3s;
}
@media (min-width: 768px) {
  header .menu-toggle .icon span {
    background: white;
  }
}
header .menu-toggle .icon span::before,
header .menu-toggle .icon span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: #21a8fc;
  content: "";
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
@media (min-width: 768px) {
  header .menu-toggle .icon span::before,
  header .menu-toggle .icon span::after {
    background: white;
  }
}
header .menu-toggle .icon span::before {
  top: -6px;
  transition-property: top, transform;
}
header .menu-toggle .icon span::after {
  bottom: -6px;
  transition-property: bottom, transform;
}
header .menu-toggle:not(.collapsed) .icon span {
  transition: background 0s 0.3s;
}
header .menu-toggle:not(.collapsed) .icon span::before,
header .menu-toggle:not(.collapsed) .icon span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
header .menu-toggle:not(.collapsed) .icon span::before {
  transition-property: top, transform;
}
header .menu-toggle:not(.collapsed) .icon span::after {
  transition-property: bottom, transform;
}
header .menu-toggle:not(.collapsed) .icon span {
  background: none;
}
header .menu-toggle:not(.collapsed) .icon span::before {
  top: 0;
  transform: rotate(45deg);
}
header .menu-toggle:not(.collapsed) .icon span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
header .menu-toggle:not(.collapsed) .icon span::before,
header .menu-toggle:not(.collapsed) .icon span::after {
  transition-delay: 0s, 0.3s;
}
header .languageselector {
  display: none;
}
@media (min-width: 768px) {
  header .languageselector {
    display: inline;
  }
}
header .languageselector ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .languageselector ul li {
  display: inline-block;
  font-size: 16px;
  font-family: Lato;
  font-weight: bold;
  color: #21a8fc;
}
header .languageselector ul li a {
  color: black;
}
header .languageselector ul li:after {
  content: " | ";
}
header .languageselector ul li:last-child:after {
  content: "";
}
header .navbar-collapse {
  width: 100%;
}
header .navbar-collapse .menu {
  margin-top: 0px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  header .navbar-collapse .menu {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  header .navbar-collapse .menu {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  header .navbar-collapse .menu {
    justify-content: space-around;
  }
}
header .navbar-collapse .menu .menu-column {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
header .navbar-collapse .menu .menu-column > a {
  line-height: 30px;
  font-weight: bold;
  color: black;
}
@media (min-width: 768px) {
  header .navbar-collapse .menu .menu-column > a {
    line-height: 40px;
    text-transform: uppercase;
  }
}
header .navbar-collapse .menu .menu-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .navbar-collapse .menu .menu-column ul li {
  line-height: 30px;
}
@media (min-width: 768px) {
  header .navbar-collapse .menu .menu-column ul li {
    line-height: 40px;
  }
}
header .navbar-collapse .menu .menu-column ul li a {
  color: black;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: -15px;
  margin-right: -15px;
}
header .navbar-collapse .menu .menu-column ul li a.active {
  font-weight: bold;
}
header .navbar-collapse .menu .menu-column ul li a:hover {
  background: white;
  border-radius: 20px;
  text-decoration: none;
}
header .navbar-collapse .menu .close-button {
  height: 55px;
  width: 55px;
  background: #21a8fc;
  opacity: 0;
  border-radius: 27.5px;
  border: 2px solid white;
  margin-bottom: -27.5px;
  position: absolute;
  z-index: 10;
  bottom: 0;
  margin-left: -27.5px;
  left: 50%;
  cursor: pointer;
}
@media (min-width: 992px) {
  header .navbar-collapse .menu .close-button {
    margin-left: 0;
    left: auto;
  }
}
header .navbar-collapse .menu .close-button span {
  display: block;
  width: 21px;
  height: 2px;
  position: absolute;
  background: white;
  margin-left: 9px;
  margin-top: 0px;
}
header .navbar-collapse .menu .close-button span:nth-child(1) {
  transform: rotate(45deg);
}
header .navbar-collapse .menu .close-button span:nth-child(2) {
  transform: rotate(-45deg);
}
header .collapse.show .menu .close-button {
  opacity: 1;
  transition: opacity ease-in-out 0.2s, 0s;
}
header.has-open-menu {
  background: #f0f0f0;
}
ol.crumbs {
  font-size: 15px;
  color: #95989a;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}
ol.crumbs li {
  margin: 0;
  padding: 0;
  display: inline;
}
ol.crumbs li a {
  color: #95989a;
  display: inline-block;
}
ol.crumbs li a:hover {
  text-decoration: underline;
  color: black;
}
ol.crumbs li:after {
  content: " /";
}
ol.crumbs li:last-child:after {
  display: none;
}
.block.wastetypelinkblock a {
  background: #21a8fc;
  color: white;
  margin-bottom: 25px;
  display: block;
  padding: 30px;
  text-align: center;
  opacity: 0.9;
  font-size: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.block.wastetypelinkblock a .image {
  margin-bottom: 10px;
}
.block.wastetypelinkblock a .title {
  margin: 0;
}
@media (min-width: 992px) {
  .block.wastetypelinkblock a .image {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .block.wastetypelinkblock a .title {
    display: inline-block;
  }
}
.block.wastetypelinkblock a:hover {
  opacity: 1;
  color: white;
  text-decoration: none;
}
.block.wastetypelinkblock a.disabled {
  opacity: 0.5;
  cursor: default;
}
.block.linkblock a {
  background: #21a8fc;
  color: white;
  margin-bottom: 25px;
  display: block;
  padding: 30px;
  text-align: center;
  opacity: 0.9;
  font-size: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.block.linkblock a .title {
  margin: 0;
}
@media (min-width: 992px) {
  .block.linkblock a .title {
    display: inline-block;
  }
}
.block.linkblock a:hover {
  opacity: 1;
  color: white;
  text-decoration: none;
}
.block.linkblock a.disabled {
  opacity: 0.5;
  cursor: default;
}
p.info {
  display: none;
  margin-top: 1em;
  color: #404040;
  font-style: italic;
}
.block.containerlinkblock .inner {
  background: #f0f0f0;
  display: block;
  margin-bottom: 25px;
}
.block.containerlinkblock .inner h3 {
  font-size: 25px;
  line-height: 35px;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1em;
  text-align: center;
}
.block.containerlinkblock .inner p {
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 20px;
  margin: 1em;
  line-height: 25px;
}
.block.containerlinkblock .inner img {
  max-width: 100%;
  width: 100%;
  border: 0;
}
.block.containerlinkblock .inner .text-content {
  margin-bottom: 1.5em;
}
.block.containerlinkblock .inner .actions {
  padding-bottom: 30px;
  text-align: center;
}
.kommunelistblock {
  margin-bottom: 30px;
}
.kommunelist-item {
  background: #ededed;
  margin-top: 20px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.18);
}
.kommunelist-item:after {
  content: "";
  display: block;
  clear: both;
  width: 100%;
}
@media (min-width: 1024px) {
  .kommunelist-item {
    margin-bottom: 5px;
  }
}
.kommunelist-item img {
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
  float: left;
  width: 31px;
}
@media (min-width: 1024px) {
  .kommunelist-item img {
    width: 41px;
    margin-top: 18px;
    margin-left: 16px;
    margin-right: 16px;
  }
}
.kommunelist-item a {
  display: block;
  float: left;
  line-height: 74px;
  font-size: 18px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: black;
}
@media (min-width: 1024px) {
  .kommunelist-item a {
    line-height: 94px;
    font-size: 21px;
  }
}
@media (min-width: 576px) {
  
}
@media (min-width: 768px) {
  
}
@media (min-width: 992px) {
  
}
@media (min-width: 1200px) {
  
}
.btn {
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  border: none;
  background: #21a8fc;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  border-radius: 25px;
  min-width: 240px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 49px;
  cursor: pointer;
}
.btn .chevright {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAqCAYAAAD1T9h6AAAAAXNSR0IArs4c6QAAAP9JREFUWAntlVENwzAQQwuhEAKhEAZhEAIlDAZhYTAIK4MVwhhsDDr7I1J0CoB48kmnJv16fk2uy+KyARuwARuwARv4EwPneRZ0kosD6BX9QLM+6E0qBIB3knfFEFeZEIDd0N8uQFtmpRAJ1Ecj7543pRC8C/E4McsdvSoFqaQO9cJeKkQJAbhlCJ0JBdhM6lBaYxbwF7T8hBp9CX6YNP3FBuSG5rGJlRXgR+Z5nOa/yIAsUTn2bxX4OoA/8G7u/wAB0U90LAaSgOePKlZVuKy6k4Z2oXwP2jlp8vTmGyBgefZbCMLPPyYbfP8EeEGn/p3XNmADNmADNmADNjCxgR+1k/Dwprp+QgAAAABJRU5ErkJggg==);
  height: 48px;
  width: 42px;
  display: block;
  float: right;
  margin-top: 4px;
  margin-right: -15px;
}
.btn.btn-submit {
  margin-top: 20px;
}
.btn.btn-link {
  background: none;
  box-shadow: none;
}
.white-area {
  background: white;
  margin-top: 35px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.grey-area {
  background: #f0f0f0;
  margin-top: 35px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.grey-area .block.textblock .inner {
  background: white;
  padding: 40px 65px;
}
.grey-area--no-margin {
  margin-top: 0;
}
.blue-area {
  background: #21a8fc;
  padding-top: 35px;
  padding-bottom: 35px;
}
.blue-area .textblock {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.blue-area .textblock .inner {
  color: white;
  font-size: 20px;
}
.blue-area .textblock .inner h2 {
  font-family: Lato, sans-serif;
  font-size: 25px;
  font-weight: bold;
}
.blue-area .textblock .inner a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.blue-area .textblock .inner a:hover {
  text-decoration: underline;
}
.preview {
  background: silver;
}
.preview .container {
  margin-top: 4em;
  margin-bottom: 4em;
}
.preview .alert {
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 5px 15px;
  background: #d0d0d0;
  color: #303030;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: 15px;
}
.preview .row.preview {
  padding-top: 15px;
  padding-bottom: 15px;
  background: white;
}
.form-control {
  border-radius: 0;
  border-color: #95989a;
}
.form-control::placeholder {
  opacity: 0.8;
}
textarea.form-control {
  min-height: 100px;
}
.form-group.required label:after {
  content: " *";
  font-weight: bold;
}
input.address-searching {
  background-image: url(/Static/gfx/spinner-802.gif);
  background-repeat: no-repeat;
  background-position: center right;
}
.form-control.address-valid,
.form-control.address-valid:focus {
  border: 1px solid green;
}
.spinner {
  margin: 0;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 18px;
  height: 18px;
  background-color: gray;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.spinner.spinner-hidden {
  display: none;
}
.wasteformblock .FormChoice label {
  display: block;
}
.cooperative-form__message {
  padding: 10px;
  border: 1px solid lime;
  background-color: #bbffbb;
  color: black;
}
.cooperative-form__message--error {
  border-color: red;
  background-color: #ffbbbb;
}
.cooperative-form__mainbody h2 {
  color: #375165;
}
.cooperative-form__checkbox-wrapper {
  white-space: nowrap;
  display: block;
}
@media (min-width: 1024px) {
  .cooperative-form__checkbox-wrapper {
    display: inline-block;
    margin-right: 1em;
  }
}
.cooperative-form__radio-wrapper {
  white-space: nowrap;
  display: block;
}
@media (min-width: 1024px) {
  .cooperative-form__radio-wrapper {
    display: inline-block;
    margin-right: 1em;
  }
}
.EPiServerForms button {
  color: white;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  border: none;
  background: #21a8fc;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  border-radius: 25px;
  min-width: 240px;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 49px;
  display: block;
  margin: 20px 0 0 0 !important;
  clear: both;
}
.EPiServerForms .FormTextbox__Input {
  width: 450px;
}
.EPiServerForms .FormChoice {
  clear: both;
}
.EPiServerForms .FormChoice:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.EPiServerForms .FormChoice .Form__Element__Caption {
  float: left;
}
.EPiServerForms .FormChoice_Elements {
  float: left;
}
.EPiServerForms .FormChoice_Elements label {
  display: block;
}
.radio-list label {
  display: block;
}
.radio-list label input {
  margin-right: 1em;
}
.hidden {
  display: none;
}
.waste-select {
  margin-top: 0;
  padding-top: 1em;
  padding-bottom: 2em;
}
@media only screen and (min-width: 576px) {
  .waste-select {
    position: relative;
  }
}
.waste-select h1 {
  font-size: 46px;
  font-weight: 700;
  color: #040f3d;
}
@media only screen and (min-width: 768px) {
  .waste-select h1 {
    font-size: 72px;
    padding-bottom: 0.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .waste-select h1 {
    font-size: 96px;
    padding-bottom: 2.3rem;
  }
}
.waste-select h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #040f3d;
}
@media only screen and (min-width: 768px) {
  .waste-select h2 {
    font-size: 41px;
    padding-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .waste-select h2 {
    font-size: 55px;
    padding-bottom: 1rem;
  }
}
.waste-select .center-container {
  position: fixed;
  top: 40%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  padding: 0;
  width: 100%;
}
.waste-select .content {
  color: #040f3d;
  text-align: center;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-1 {
  opacity: 0.1 !important;
}
.opacity-2 {
  opacity: 0.2 !important;
}
.opacity-3 {
  opacity: 0.3 !important;
}
.opacity-4 {
  opacity: 0.4 !important;
}
.opacity-5 {
  opacity: 0.5 !important;
}
.opacity-6 {
  opacity: 0.6 !important;
}
.opacity-7 {
  opacity: 0.7 !important;
}
.opacity-8 {
  opacity: 0.8 !important;
}
.opacity-9 {
  opacity: 0.9 !important;
}
.opacity-10 {
  opacity: 1 !important;
}
/* Maybe even support hover opacity shifts */

.opacity-0h5 {
  opacity: 0 !important;
  transition: opacity 0.25s ease-in-out !important;
  -moz-transition: opacity 0.25s ease-in-out !important;
  -webkit-transition: opacity 0.25s ease-in-out !important;
}
.opacity-0h5:hover {
  opacity: 1 !important;
}
.help-icon {
  color: #040f3d;
  cursor: pointer;
  padding-left: 10px;
}
.ui-autocomplete {
  z-index: 2000;
}
label.error {
  color: red;
}
#ui-id-1.ui-widget-content {
  background: lightyellow;
}

