body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
html, body {
  font-family: "Asap", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #FFF;
  color: #000;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Asap", sans-serif;
}

h1 {
  font-size: 30px;
  line-height: 35px;
  font-weight: bold;
}
@media (min-width: 992px) {
  h1 {
    font-size: 44px;
    line-height: 54px;
  }
}
@media (max-height: 400px) {
  h1 {
    font-size: 18px;
    line-height: 20px;
  }
}

h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 39px;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
@media (max-height: 400px) {
  h2 {
    font-size: 18px;
    line-height: 20px;
  }
}

h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}

h5 i {
  line-height: 28px;
}

label {
  font-size: 10px;
  font-family: "Asap", sans-serif;
  font-weight: bold;
}

.col-centered {
  display: flex;
  justify-content: center !important;
}
.col-centered > div {
  align-self: center !important;
}

.col-centered-vertical {
  display: flex;
}
.col-centered-vertical div {
  align-self: center !important;
}

.col-centered-left {
  display: flex;
  justify-content: left !important;
}

.col-centered-left > * {
  align-self: center !important;
}

.col-centered-right {
  display: flex;
  justify-content: flex-end !important;
}
.col-centered-right > * {
  align-self: center !important;
}

.bg-silver {
  background-color: #f4f4f4;
}

@media (max-width: 767.98px) {
  .container-ra {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  .container-ra {
    margin-left: 50px;
  }
}

.info-circle, .date-circle {
  border-radius: 999px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 50px;
}
.info-circle.dark, .dark.date-circle {
  background: #000;
  color: #FFF;
}
.info-circle.light, .light.date-circle {
  background: #FFF;
  color: #000;
}
.info-circle.circle-small, .circle-small.date-circle {
  width: 50px;
  height: 50px;
}
.info-circle.circle-60, .circle-60.date-circle {
  width: 60px;
  height: 60px;
}

@media (max-width: 767.98px) {
  .info-circle-responsive {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

.date-circle div {
  line-height: 29px;
}
.date-circle div:first-of-type {
  font-size: 40px;
  padding-top: 10px;
}
.date-circle div:last-of-type {
  font-size: 23px;
}
.date-circle.circle-small div {
  line-height: 17px;
}
.date-circle.circle-small div:first-of-type {
  font-size: 20px;
  padding-top: 3px;
}
.date-circle.circle-small div:last-of-type {
  font-size: 13px;
}

h4.scream {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2.57px;
  line-height: 24px;
  padding: 0;
  margin: 0;
}

div.line {
  height: 1px;
  background: #D8D8D8;
  margin: 10px 0;
}

.spacer-small {
  height: 15px;
}

.spacer {
  height: 30px;
}

.spacer-100 {
  height: 100px;
}

.spacer-big {
  height: 80px;
}

.img-circle {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 999px;
  border: solid 4px #FFF;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.flex-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex-left *:not(:last-child) {
  margin-right: 20px;
}

.text-fff {
  color: #FFF;
}

.bg-000 {
  background-color: #000;
}

.fs-36 {
  font-size: 36px;
}

.lh-45 {
  line-height: 45px;
}

h2.h2-superbig {
  font-size: 24px;
}
@media (min-width: 576px) {
  h2.h2-superbig {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  h2.h2-superbig {
    font-size: 44px;
    font-weight: bold;
    line-height: 42px;
  }
}

.corner {
  width: 0;
  height: 0;
  border-top: 100px solid #000;
  border-bottom: 100px solid transparent;
  border-left: 100px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
}
.corner span {
  position: absolute;
  top: -75px;
  width: 75px;
  left: -75px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(45deg);
  display: block;
  color: #FFF;
  text-transform: uppercase;
}

.corner-yellow {
  border-top-color: #FFC000;
}
.corner-yellow span {
  color: #000;
}

.backstretch-item img {
  transition: filter 1400ms ease-in-out;
}

.backstretch-darkened .backstretch-item img {
  filter: brightness(50%);
}

.fade-in {
  display: none;
}

.notransition * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

.whitebox {
  background: #FFF;
  foo-box-shadow: 0 -4px 12px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px 5px rgba(0, 0, 0, 0.08);
}

.social-icon svg {
  width: 54px;
  height: 54px;
}
.social-icon svg circle {
  transition: fill 300ms ease-in-out;
}
.social-icon:hover svg circle {
  fill: #0633FF;
}

#footer-logo-bar {
  background: #000;
  min-height: 190px;
  padding: 50px 0;
}
#footer-logo-bar a {
  color: #FFF !important;
}
#footer-logo-bar a:hover {
  text-decoration: underline;
}
#footer-logo-bar .logo-sto {
  height: 94px;
}
@media (max-width: 991.98px) {
  #footer-logo-bar .logo-sto {
    height: 50px;
  }
}
#footer-logo-bar .logo-ra {
  max-width: 80%;
  height: 100px;
}
@media (max-width: 991.98px) {
  #footer-logo-bar .logo-ra {
    max-width: 100%;
  }
}

.blink-2 {
  -webkit-animation: blink-2 0.9s both;
  animation: blink-2 0.9s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-12-11 15:6:15
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation blink-2
 * ----------------------------------------
 */
@-webkit-keyframes blink-2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink-2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.flicker-1, .btn-3d:hover {
  -webkit-animation: flicker-1 200ms linear both;
  animation: flicker-1 200ms linear both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-12-12 12:4:6
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation flicker-1
 * ----------------------------------------
 */
@-webkit-keyframes flicker-1 {
  0%, 100% {
    opacity: 1;
  }
  41.99% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  43.01% {
    opacity: 1;
  }
  47.99% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  49.01% {
    opacity: 1;
  }
}
@keyframes flicker-1 {
  0%, 100% {
    opacity: 1;
  }
  41.99% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  43.01% {
    opacity: 1;
  }
  47.99% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  49.01% {
    opacity: 1;
  }
}
/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
/* https://github.com/IanLunn/Hover/blob/master/css/hover.css */
.hvr-ripple-out, .btn-3d {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}

.hvr-ripple-out:before, .btn-3d:before {
  content: "";
  position: absolute;
  border: #fff solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.hvr-ripple-out:hover:before, .btn-3d:hover:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

.form-control {
  font-size: 14px;
  font-family: "Asap", sans-serif;
  border-radius: 0;
  border: 1px solid #000000;
  background-color: #FFFFFF;
}
.form-control:focus {
  color: #0633FF;
  border: 1px solid #0633FF;
  box-shadow: none;
}

form.submit-tried .form-control:invalid {
  border-color: red;
}

.form-group label {
  margin-bottom: 0.4rem;
}

.custom-control label {
  font-weight: normal;
}
@media (min-width: 992px) {
  .custom-control label {
    line-height: 26px;
  }
}

input[type=date], input[type=time], select.custom-select {
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 40px;
  position: relative;
}
input[type=date]:after, input[type=time]:after, select.custom-select:after {
  content: "";
  width: 1px;
  height: 80%;
  top: 10%;
  position: absolute;
  display: block;
  border-left: solid 1px #BEBEBE;
  right: 35px;
  color: transparent;
}

input[type=date] {
  padding-right: inherit;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  height: 100%;
  width: 30px;
}

.custom-select-wrapper {
  position: relative;
}
.custom-select-wrapper:after {
  content: "";
  width: 1px;
  height: 70%;
  top: 15%;
  position: absolute;
  display: block;
  border-left: solid 1px #BEBEBE;
  right: 35px;
  color: transparent;
}

input[type=date] {
  background-image: url("/assets/icons/kalender.svg");
}

input[type=time] {
  background-image: url("/assets/icons/klok.svg");
}

select.custom-select {
  background-size: 12px;
  background-image: url("/assets/icons/dropdown_pijl.svg");
}

.btn-3d {
  outline: none;
  text-decoration: none !important;
}
.btn-3d, .btn-3d:focus {
  position: relative;
  text-decoration: none;
  border: 0;
  font-family: "Asap", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 30px;
  padding: 0 10px;
  height: 30px;
  border-radius: 0;
  top: 0;
  left: 0;
  display: inline-block;
  text-align: left;
  transition: all 200ms ease-in-out;
  font-weight: bold;
  white-space: nowrap;
}
.btn-3d:hover {
  text-decoration: none;
}
.btn-3d:active {
  top: 6px;
  left: 6px;
  text-decoration: none;
}
.btn-3d:focus:active {
  background: #0633FF;
  box-shadow: none;
}

.btn-white-on-blue, .btn-3d {
  color: #FFF;
  background-color: #0633FF;
  box-shadow: #0021B9 1px 1px 0, #0021B9 2px 2px 0, #0021B9 3px 3px 0, #0021B9 4px 4px 0, #0021B9 5px 5px 0, #0021B9 6px 6px 0;
}
.btn-white-on-blue:hover, .btn-3d:hover {
  color: #FFF;
}
.btn-white-on-blue:active, .btn-3d:active {
  color: #FFF;
  background: #0021B9 !important;
}
.btn-white-on-blue:focus:active, .btn-3d:focus:active {
  background: #0633FF;
}

.btn-palette-rood {
  color: #000;
  background-color: #FFF;
  box-shadow: #D91200 1px 1px 0, #D91200 2px 2px 0, #D91200 3px 3px 0, #D91200 4px 4px 0, #D91200 5px 5px 0, #D91200 6px 6px 0;
}
.btn-palette-rood:hover {
  color: #000;
}
.btn-palette-rood:active {
  color: #000;
  background: #D91200 !important;
}
.btn-palette-rood:focus:active {
  background: #FFF;
}
.btn-palette-rood:focus:active {
  color: #FFF;
}

.btn-palette-geel {
  color: #000;
  background-color: #FFF;
  box-shadow: #E49E00 1px 1px 0, #E49E00 2px 2px 0, #E49E00 3px 3px 0, #E49E00 4px 4px 0, #E49E00 5px 5px 0, #E49E00 6px 6px 0;
}
.btn-palette-geel:hover {
  color: #000;
}
.btn-palette-geel:active {
  color: #000;
  background: #E49E00 !important;
}
.btn-palette-geel:focus:active {
  background: #FFF;
}
.btn-palette-geel:focus:active {
  color: #FFF;
}

.btn-palette-groen {
  color: #000;
  background-color: #FFF;
  box-shadow: #009E69 1px 1px 0, #009E69 2px 2px 0, #009E69 3px 3px 0, #009E69 4px 4px 0, #009E69 5px 5px 0, #009E69 6px 6px 0;
}
.btn-palette-groen:hover {
  color: #000;
}
.btn-palette-groen:active {
  color: #000;
  background: #009E69 !important;
}
.btn-palette-groen:focus:active {
  background: #FFF;
}
.btn-palette-groen:focus:active {
  color: #FFF;
}

.btn-palette-zilver {
  color: #000;
  background-color: #FFF;
  box-shadow: #D8D8D8 1px 1px 0, #D8D8D8 2px 2px 0, #D8D8D8 3px 3px 0, #D8D8D8 4px 4px 0, #D8D8D8 5px 5px 0, #D8D8D8 6px 6px 0;
}
.btn-palette-zilver:hover {
  color: #000;
}
.btn-palette-zilver:active {
  color: #000;
  background: #D8D8D8 !important;
}
.btn-palette-zilver:focus:active {
  background: #FFF;
}
.btn-palette-zilver:focus:active {
  color: #000;
}

.btn-palette-zwart {
  color: #000;
  background-color: #FFF;
  box-shadow: #3D3D3D 1px 1px 0, #3D3D3D 2px 2px 0, #3D3D3D 3px 3px 0, #3D3D3D 4px 4px 0, #3D3D3D 5px 5px 0, #3D3D3D 6px 6px 0;
}
.btn-palette-zwart:hover {
  color: #000;
}
.btn-palette-zwart:active {
  color: #000;
  background: #3D3D3D !important;
}
.btn-palette-zwart:focus:active {
  background: #FFF;
}
.btn-palette-zwart:focus:active {
  color: #FFF;
}

.btn-palette-blue {
  color: #000;
  background-color: #FFF;
  box-shadow: #0021B9 1px 1px 0, #0021B9 2px 2px 0, #0021B9 3px 3px 0, #0021B9 4px 4px 0, #0021B9 5px 5px 0, #0021B9 6px 6px 0;
}
.btn-palette-blue:hover {
  color: #000;
}
.btn-palette-blue:active {
  color: #000;
  background: #0021B9 !important;
}
.btn-palette-blue:focus:active {
  background: #FFF;
}
.btn-palette-blue:focus:active {
  color: #FFF;
}

.btn-palette-blue-white {
  color: #fff;
  background-color: #0633FF;
  box-shadow: #FFF 1px 1px 0, #FFF 2px 2px 0, #FFF 3px 3px 0, #FFF 4px 4px 0, #FFF 5px 5px 0, #FFF 6px 6px 0;
  border: solid 1px #fff;
}
.btn-palette-blue-white:hover {
  color: #fff;
}
.btn-palette-blue-white:active {
  color: #fff;
  background: #FFF !important;
}
.btn-palette-blue-white:focus:active {
  background: #0633FF;
}
.btn-palette-blue-white:focus:active {
  color: #0633ff;
}

a.slider-nav-button {
  display: flex;
  float: left;
  width: 59px;
  height: 59px;
  background: #000;
  color: #FFF;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
}
a.slider-nav-button:not(.slider-nav-no-shadow) {
  box-shadow: #E4E4E4 1px 1px 0, #E4E4E4 2px 2px 0, #E4E4E4 3px 3px 0, #E4E4E4 4px 4px 0, #E4E4E4 5px 5px 0, #E4E4E4 6px 6px 0, #E4E4E4 7px 7px 0;
}
@media (max-width: 991.98px) {
  a.slider-nav-button {
    width: 45px;
    height: 45px;
  }
  a.slider-nav-button img {
    width: 14px;
    height: 14px;
  }
}
a.slider-nav-button.slider-nav-next {
  background: #E9E9E9;
}
a.slider-nav-button.slider-nav-prev {
  background: #000;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-homepage .col-video {
  height: 700px;
}
@media (max-width: 991.98px) {
  body.page-homepage .col-video {
    height: 250px;
  }
}
body.page-homepage .home-head h1, body.page-homepage .home-head-container h1 {
  font-size: 30px;
  line-height: 35px;
}
@media (min-width: 992px) {
  body.page-homepage .home-head h1, body.page-homepage .home-head-container h1 {
    text-align: right;
    font-size: 44px;
    line-height: 54px;
  }
}
@media (max-width: 991.98px) {
  body.page-homepage .home-head h1, body.page-homepage .home-head-container h1 {
    text-align: right;
    font-size: 24px;
  }
}
body.page-homepage .home-head #bgndVideo, body.page-homepage .home-head-container #bgndVideo {
  height: 100%;
  width: 100%;
}
body.page-homepage .centered-logo-container img {
  width: 577px;
  max-width: 40%;
}
@media (max-height: 400px) {
  body.page-homepage .centered-logo-container img {
    height: 120px;
  }
}
@media (max-width: 767.98px) {
  body.page-homepage .centered-logo-container img {
    max-width: 66%;
  }
}
body.page-homepage .container-social {
  box-shadow: 0 4px 12px 5px rgba(0, 0, 0, 0.08);
}
body.page-homepage .container-picture-slider h1 {
  font-size: 36px;
  line-height: 38px;
}
@media (max-width: 991.98px) {
  body.page-homepage .container-picture-slider h1 {
    font-size: 30px;
  }
}
body.page-homepage .container-picture-slider p {
  line-height: 24px;
}
body.page-homepage .container-picture-slider .img-div {
  height: 500px;
}
@media (min-width: 576px) {
  body.page-homepage .container-picture-slider .img-div {
    height: 620px;
  }
}
body.page-homepage .upcoming-event {
  line-height: 15px;
  font-size: 12px;
  letter-spacing: 1.8px;
}
body.page-homepage .embed-fill-container {
  height: 700px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991.98px) {
  body.page-homepage .embed-fill-container {
    height: 300px;
  }
}
body.page-homepage .embed-fill iframe {
  position: absolute;
  left: -50%;
  height: 100%;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-events-show .timeline-row {
  transition: opacity 200ms ease-in-out;
}
@media (min-width: 992px) {
  body.page-events-show .event-detail-head {
    height: 735px;
  }
}
body.page-events-show .topimg {
  min-height: 400px;
}
@media (min-width: 992px) {
  body.page-events-show .topimg {
    height: 100%;
  }
}
body.page-events-show h1 {
  color: #FFF;
}
@media (min-width: 768px) {
  body.page-events-show h1 {
    font-size: 100px;
    margin-bottom: 14px;
    line-height: 100px;
  }
}
@media (min-width: 768px) {
  body.page-events-show h3 {
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 30px;
  }
}
body.page-events-show .col-expect {
  display: flex;
}
body.page-events-show .col-expect p {
  margin: 0;
}
body.page-events-show .col-expect div {
  align-self: center !important;
}
body.page-events-show .container-timeline {
  position: relative;
  overflow: hidden;
}
body.page-events-show .container-timeline:before {
  position: absolute;
  content: " ";
  width: 5px;
  background: #D8D8D8;
  top: 0;
  bottom: 0;
  left: 43px;
}
@media (max-width: 767.98px) {
  body.page-events-show .container-timeline:before {
    left: 43px;
  }
}
body.page-events-show .container-timeline .info-circle, body.page-events-show .container-timeline .date-circle {
  /*
      &:after {
        content    : ' ';
        position   : absolute;
        background : #D8D8D8;

        width      : 5px;
        height     : 200px;
        top        : 100px;

        @include media-breakpoint-down(sm) {
          top : 60px;
        }
      }
  */
}
body.page-events-show .container-timeline .info-circle img, body.page-events-show .container-timeline .date-circle img {
  width: 50%;
  height: 50%;
}
body.page-events-show .container-timeline .info-circle.last-circle:after, body.page-events-show .container-timeline .last-circle.date-circle:after {
  position: absolute;
  content: " ";
  background: #FFF;
  backgrouand: lime;
  width: 10px;
  width: 100%;
  height: 1000px;
  z-index: 400;
  top: 60px;
}
@media (max-width: 767.98px) {
  body.page-events-show .container-timeline .info-circle.last-circle:after, body.page-events-show .container-timeline .last-circle.date-circle:after {
    top: 60px;
  }
}
body.page-events-show .container-cta h3 {
  font-size: 30px;
  line-height: 38px;
}
body.page-events-show .container-cta a {
  color: #000;
  text-decoration: underline;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-events-archive-show .header-map {
  width: 100%;
  height: 700px;
  background: #444;
}
body.page-events-archive-show .header-title {
  padding: 80px 0;
}
body.page-events-archive-show .header-title h1 {
  font-size: 38px;
}
@media (max-width: 991.98px) {
  body.page-events-archive-show .header-title h1 {
    font-size: 30px;
  }
}
body.page-events-archive-show .header-title h1, body.page-events-archive-show .header-title p {
  margin-bottom: 0 !important;
}
body.page-events-archive-show .container-video .video-box-width {
  width: 100%;
  max-width: 730px;
}
body.page-events-archive-show .container-video .video-box {
  width: 100%;
  max-width: 730px;
  box-shadow: 0 24px 31px 0 rgba(0, 0, 0, 0.38);
}
body.page-events-archive-show .container-video .video-box .video-player-button {
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: solid 5px #FFF;
  width: 104px;
  height: 104px;
  transition: background-color 400ms ease-in-out;
}
body.page-events-archive-show .container-video .video-box:hover .video-player-button {
  background-color: rgba(0, 0, 0, 0.9);
}
body.page-events-archive-show .container-video .video-subtitle {
  font-size: 12px;
  line-height: 18px;
}
body.page-events-archive-show .container-adventures a.tile span {
  background: #F4F4F4;
}

body.page-events-archive body::before {
  display: none;
  content: "xs";
}
@media (min-width: 576px) and (max-width: 767.98px) {
  body.page-events-archive body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body.page-events-archive body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body.page-events-archive body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body.page-events-archive body::before {
    content: "xl";
  }
}
body.page-events-archive #googlemaps {
  height: 700px;
  width: 100%;
  background: #333;
}
@media (max-width: 991.98px) {
  body.page-events-archive #googlemaps {
    height: 350px;
  }
}
body.page-events-archive #googlemaps .maps-popup {
  font-weight: bold;
  font-family: "Asap", sans-serif;
}
body.page-events-archive #googlemaps .maps-popup .type_title {
  color: #B8B8B8;
  text-transform: uppercase;
  font-weight: bold;
}
body.page-events-archive #googlemaps .maps-popup .title {
  font-size: 16px;
  color: black;
}
body.page-events-archive .container-adventures {
  background-color: #F4F4F4;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-personal-trip {
  overflow-y: hidden;
}
body.page-personal-trip .backstretch-container {
  height: 300px;
}
@media (min-width: 768px) {
  body.page-personal-trip .backstretch-container {
    height: 100vh;
  }
}
body.page-personal-trip .contact-container {
  background: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
body.page-personal-trip .contact-container .silverbox {
  psadding: 20px;
  width: 500px;
  max-width: 80%;
}
body.page-personal-trip .contact-container .silverbox:not(:last-child) {
  margin-bottom: 30px;
}
body.page-personal-trip .contact-container .whitebox {
  padding: 20px;
  width: 500px;
  max-width: 80%;
}
body.page-personal-trip .contact-container .whitebox h2 {
  font-size: 28px;
  line-height: 34px;
  margin: 0;
}
body.page-personal-trip .contact-container .whitebox:not(:last-child) {
  margin-bottom: 30px;
  backgsround: lime;
}

body.page-algemene-voorwaarden h3 {
  font-size: 20px;
}
body.page-algemene-voorwaarden h3:not(:first-child) {
  margin-top: 40px;
}
body.page-algemene-voorwaarden p {
  line-height: 24px;
  font-size: 14px;
}
body.page-algemene-voorwaarden p:last-child {
  margin-bottom: 50px;
}

body.page-garantieregeling h3 {
  font-size: 20px;
}
body.page-garantieregeling h3:not(:first-child) {
  margin-top: 40px;
}
body.page-garantieregeling p {
  line-height: 24px;
  font-size: 14px;
}
body.page-garantieregeling p:last-child {
  margin-bottom: 50px;
}

body.page-privacy-beleid h3 {
  font-size: 20px;
}
body.page-privacy-beleid h3:not(:first-child) {
  margin-top: 40px;
}
body.page-privacy-beleid p {
  line-height: 24px;
  font-size: 14px;
}
body.page-privacy-beleid p:last-child {
  margin-bottom: 50px;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-contact .backstretch-container {
  height: 300px;
}
@media (min-width: 768px) {
  body.page-contact .backstretch-container {
    height: 100vh;
  }
}
body.page-contact .contact-container {
  background: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
body.page-contact .contact-container .whitebox {
  padding: 20px;
  width: 500px;
  max-width: 95%;
}
body.page-contact .contact-container .whitebox h2 {
  font-size: 28px;
  line-height: 34px;
  margin: 0;
}
body.page-contact .contact-container .whitebox:not(:last-child) {
  margin-bottom: 30px;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-wall-of-fame .header-bar {
  background: #000;
  min-height: 85px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 35px;
}
@media (max-width: 767.98px) {
  body.page-wall-of-fame .header-bar {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  body.page-wall-of-fame .header-bar {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
  }
}
body.page-wall-of-fame .header-bar span {
  margin-right: 35px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
}
body.page-wall-of-fame .brick {
  font-size: 13px;
  padding: 9px;
  margin-bottom: 10px;
  position: relative;
}
body.page-wall-of-fame .brick .brick-img-container {
  position: relative;
  display: block;
}
@media (max-width: 991.98px) {
  body.page-wall-of-fame .brick .brick-img-container {
    cursor: default;
  }
}
@media (min-width: 992px) {
  body.page-wall-of-fame .brick .brick-img-container:hover:after {
    opacity: 1;
  }
  body.page-wall-of-fame .brick .brick-img-container:after {
    transition: opacity 300ms ease-in-out;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("/assets/icons/wof_zoom.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    margin-bottom: 10px;
  }
}
body.page-wall-of-fame .brick img {
  width: 100%;
  margin-bottom: 10px;
}
body.page-wall-of-fame .wof-container {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  body.page-wall-of-fame .wof-container {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  body.page-wall-of-fame .bricklayer-column-sizer {
    /* divide by 2. */
    awidth: 50% !important;
  }
}
@media screen and (min-width: 1200px) {
  body.page-wall-of-fame .bricklayer-column-sizer {
    /* divide by 3. */
    width: 20% !important;
  }
}
body.page-wall-of-fame .wof-popup-overlay {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
body.page-wall-of-fame .wof-popup-container {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
body.page-wall-of-fame .wof-popup-container .wof-popup {
  background: #FFF;
  position: relative;
  height: 663px;
  width: 1140px;
  max-width: 95%;
  max-height: 95%;
  box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.5);
}
body.page-wall-of-fame .wof-popup-container .wof-popup .wof-popup-cross {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #000;
  font-size: 22px;
  line-height: 6px;
  z-index: 3000;
}
body.page-wall-of-fame .wof-popup-container .wof-popup .wof-popup-image-container {
  background: #F4F4F4;
  position: relative;
  max-height: 100%;
}
body.page-wall-of-fame .wof-popup-container .wof-popup .wof-popup-image-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
body.page-wall-of-fame .wof-popup-container .wof-popup .wof-popup-text-container {
  padding: 40px 60px;
}
@media (max-width: 767.98px) {
  body.page-wall-of-fame .wof-popup-container .wof-popup .wof-popup-text-container {
    padding: 10px 10px;
  }
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-events-checkout .container-checkout label {
  cursor: pointer;
}
body.page-events-checkout .container-checkout h2 {
  margin-bottom: 20px;
}
body.page-events-checkout .container-checkout .checkout-head {
  color: #FFF;
  min-height: 400px;
  width: 100%;
}
body.page-events-checkout .container-checkout .checkout-head h1 {
  font-size: 100px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  body.page-events-checkout .container-checkout .checkout-head h1 {
    font-size: 60px;
  }
}
body.page-events-checkout .container-checkout .checkout-head h2 {
  font-size: 34px;
  line-height: 40px;
}
@media (max-width: 767.98px) {
  body.page-events-checkout .container-checkout .checkout-head h2 {
    font-size: 28px;
  }
}
body.page-events-checkout .container-checkout .checkout-box {
  min-height: 100%;
}
body.page-events-checkout .container-checkout .checkout-box input:not([type=submit]), body.page-events-checkout .container-checkout .checkout-box select {
  height: 26px;
  color: #0633FF;
  font-size: 11px;
  line-height: 11px;
  bordesr: solid 1px #000;
}
body.page-events-checkout .container-checkout .checkout-box .custom-control-label::before, body.page-events-checkout .container-checkout .checkout-box .custom-control-label::after {
  top: -2px;
}
body.page-events-checkout .container-checkout .checkout-box label {
  line-height: 16px;
  margin-bottom: 2px;
}
body.page-events-checkout .container-checkout .checkout-box h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
body.page-events-checkout .container-checkout .checkout-box h4 {
  font-size: 13px;
  font-weight: bold;
  line-height: 21px;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-webshop .webshop-head {
  color: #FFF;
  min-height: 200px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  body.page-webshop .webshop-head {
    min-height: 250px;
  }
}
body.page-webshop .webshop-head h1 {
  font-size: 80px;
  margin: 0;
}
@media (max-width: 991.98px) {
  body.page-webshop .webshop-head h1 {
    font-size: 60px;
  }
}
body.page-webshop .webshop-head .webshop-cat-selector {
  background: #FFF;
  color: #000;
}
@media (max-width: 767.98px) {
  body.page-webshop .webshop-head .webshop-cat-selector {
    margin-bottom: -44px;
  }
}
body.page-webshop .webshop-head .webshop-cat-selector h2 {
  font-size: 14px;
  font-weight: bold;
}
body.page-webshop .webshop-head .webshop-cat-selector select {
  background-color: #000;
  color: #FFF;
}
body.page-webshop .webshop-head .webshop-cat-selector select:focus {
  foobox-shadow: 0 0 10px 100px lime inset;
  background-color: #2C2C2C;
}
body.page-webshop #product_category_selector {
  background-image: url("/assets/icons/dropdown_blue.svg") !important;
  background-size: 36px;
  background-position: right 0px center;
}
body.page-webshop .tile-product {
  cursor: pointer;
  min-height: 393px;
  width: 100%;
  background: #FFF;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  body.page-webshop .tile-product {
    margin-bottom: 120px;
  }
}
body.page-webshop .tile-product .product-image-container {
  height: 100%;
  width: 100%;
  padding: 30px;
}
body.page-webshop .tile-product .product-image-container .product-image {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-webshop .tile-product .product-image-container .product-image img {
  wisdth: 100%;
  hesight: 100%;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
}
body.page-webshop .tile-product .product-footer-container {
  padding-right: 16px;
}
body.page-webshop .tile-product .product-footer-container .product-footer {
  height: 73px;
  display: flex;
  justify-content: space-between;
  background: #2C2C2C;
  box-shadow: #000000 1px 1px 0, #000000 2px 2px 0, #000000 3px 3px 0, #000000 4px 4px 0, #000000 5px 5px 0, #000000 6px 6px 0, #000000 7px 7px 0;
}
body.page-webshop .tile-product .product-footer-container .product-footer .title {
  display: flex;
  justify-content: flex-start;
  font-size: 17px;
  align-items: center;
  padding: 0 15px;
  color: #FFF;
  font-weight: 600;
  width: 100%;
}
body.page-webshop .tile-product .product-footer-container .product-footer .price {
  font-weight: bold;
  background: #0633FF;
  color: #FFF;
  font-weight: bold;
  margin-right: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  box-shadow: #0021B9 1px 1px 0, #0021B9 2px 2px 0, #0021B9 3px 3px 0, #0021B9 4px 4px 0, #0021B9 5px 5px 0, #0021B9 6px 6px 0, #0021B9 7px 7px 0;
}
body.page-webshop .product-popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55104;
  background: #000;
  opacity: 0.5;
}
body.page-webshop .product-popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55105;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.page-webshop .product-popup-container .product-popup-popup {
  overflow-y: auto;
  width: 920px;
  max-width: 95%;
  max-height: 95%;
  background-color: #FFFFFF;
  box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.5);
  z-index: 11;
}
body.page-webshop .product-popup-container .product-popup-popup .product-popup-closer {
  position: absolute;
  right: 10px;
  top: 0;
  color: #FFF;
  font-size: 20px;
}
@media (min-width: 768px) {
  body.page-webshop .product-popup-container .product-popup-popup {
    height: 512px;
  }
}
body.page-webshop .product-popup-container .product-popup-popup .col-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .product-popup-closer {
  color: #000;
}
@media (max-width: 767.98px) {
  body.page-webshop .product-popup-container .product-popup-popup .col-image {
    flexs-direction: row;
  }
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .image-main {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  body.page-webshop .product-popup-container .product-popup-popup .col-image .image-main {
    padding-bottom: 0;
  }
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .image-main img {
  max-width: 100%;
  max-height: 100%;
  width: 350px;
  height: 350px;
  object-fit: contain;
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .image-footer {
  padding: 1.5rem;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767.98px) {
  body.page-webshop .product-popup-container .product-popup-popup .col-image .image-footer {
    orsder: 1;
    flesx-direction: column;
  }
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .image-footer div.preview {
  margin-right: 10px;
  width: 82px;
  height: 82px;
  border: solid 2px #D8D8D8;
}
@media (max-width: 767.98px) {
  body.page-webshop .product-popup-container .product-popup-popup .col-image .image-footer div.preview {
    msargin-right: 0;
    marsgin-bottom: 10px;
    width: 55px;
    height: 55px;
  }
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .image-footer div.preview:hover {
  border: solid 2px #0633FF;
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .image-footer div.preview.selected {
  border: solid 2px #0633FF;
}
body.page-webshop .product-popup-container .product-popup-popup .col-image .image-footer div.preview img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
body.page-webshop .product-popup-container .product-popup-popup .col-details {
  color: #FFF;
  background: #2C2C2C;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.page-webshop .product-popup-container .product-popup-popup .col-details .details-main {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body.page-webshop .product-popup-container .product-popup-popup .col-details .details-main h1 {
  font-size: 28px;
  padding-bottom: 10px;
  border-bottom: solid 1px #FFF;
}
body.page-webshop .product-popup-container .product-popup-popup .col-details .details-main p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 20px;
}
body.page-webshop .product-popup-container .product-popup-popup .col-details .details-main h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}
body.page-webshop .product-popup-container .product-popup-popup .col-details .details-footer {
  background: #000;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
body.page-webshop-checkout .webshopcheckout-head {
  color: #FFF;
  min-height: 400px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.page-webshop-checkout .webshopcheckout-head h1 {
  font-size: 80px;
  margin: 0;
}
@media (max-width: 991.98px) {
  body.page-webshop-checkout .webshopcheckout-head h1 {
    font-size: 60px;
  }
}
body.page-webshop-checkout .container-checkout label {
  cursor: pointer;
}
body.page-webshop-checkout .container-checkout h2 {
  margin-bottom: 20px;
}
body.page-webshop-checkout .container-checkout .checkout-head {
  color: #FFF;
  min-height: 400px;
  width: 100%;
}
body.page-webshop-checkout .container-checkout .checkout-head h1 {
  font-size: 100px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  body.page-webshop-checkout .container-checkout .checkout-head h1 {
    font-size: 60px;
  }
}
body.page-webshop-checkout .container-checkout .checkout-head h2 {
  font-size: 34px;
  line-height: 40px;
}
@media (max-width: 767.98px) {
  body.page-webshop-checkout .container-checkout .checkout-head h2 {
    font-size: 28px;
  }
}
body.page-webshop-checkout .container-checkout .checkout-box {
  min-height: 100%;
}
body.page-webshop-checkout .container-checkout .checkout-box input:not([type=submit]), body.page-webshop-checkout .container-checkout .checkout-box select {
  height: 26px;
  color: #0633FF;
  font-size: 11px;
  line-height: 11px;
  bordesr: solid 1px #000;
}
body.page-webshop-checkout .container-checkout .checkout-box .custom-control-label::before, body.page-webshop-checkout .container-checkout .checkout-box .custom-control-label::after {
  top: -2px;
}
body.page-webshop-checkout .container-checkout .checkout-box label {
  line-height: 16px;
  margin-bottom: 2px;
}
body.page-webshop-checkout .container-checkout .checkout-box h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}
body.page-webshop-checkout .container-checkout .checkout-box h4 {
  font-size: 13px;
  font-weight: bold;
  line-height: 21px;
}
body.page-webshop-checkout .radio-container {
  background: rgba(6, 51, 255, 0.1);
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  padding-bottom: 0;
}
body.page-webshop-checkout .checkout-box .checkout-totals {
  font-size: 11px;
}
body.page-webshop-checkout .checkout-box .cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
body.page-webshop-checkout .checkout-box .cart-row .cross {
  display: none;
}
body.page-webshop-checkout .checkout-box .cart-row .center {
  font-size: 11px;
  line-height: 9px;
  flex: 1;
}
body.page-webshop-checkout .checkout-box .cart-row .center h2 {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  padding: 6px 0;
  margin: 0;
  line-height: 13px;
}
body.page-webshop-checkout .checkout-box .eurosign {
  display: none;
}
body.page-webshop-checkout .checkout-box .price {
  font-size: 13px;
  font-weight: bold;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.ra-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.ra-slider .silde-content .title {
  color: #FFF;
  font-size: 36px;
  font-weight: bold;
}
.ra-slider .ra-slider-nav {
  box-shadow: #E4E4E4 1px 1px 0, #E4E4E4 2px 2px 0, #E4E4E4 3px 3px 0, #E4E4E4 4px 4px 0, #E4E4E4 5px 5px 0, #E4E4E4 6px 6px 0, #E4E4E4 7px 7px 0;
  display: flex;
  float: left;
  width: 59px;
  height: 59px;
  background: #000;
  color: #FFF;
  justify-content: center;
  align-items: center;
}
.ra-slider .ra-slider-inner {
  transitifooon: transform 1s ease-in-out;
  transition: transform 1s cubic-bezier(0.02, 0.01, 0.47, 1);
  transform: translateX(0px);
  display: flex;
  width: 5000px;
  background: silver;
  heighst: 230px;
  overflow: hidden;
}
.ra-slider .ra-slider-inner .slide {
  heighst: 100%;
  dispslay: block;
  float: left;
  position: relative;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.lets-talk-box {
  background: #000;
  color: #fff;
  box-shadow: #464646 1px 1px 0, #464646 2px 2px 0, #464646 3px 3px 0, #464646 4px 4px 0, #464646 5px 5px 0, #464646 6px 6px 0, #464646 7px 7px 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .lets-talk-box img {
    display: none;
  }
}
.lets-talk-box h2 {
  margin: 0;
}
@media (max-width: 1199.98px) {
  .lets-talk-box h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 767.98px) {
  .lets-talk-box a {
    margin-top: 30px;
  }
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
ul.faq-ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.faq-ul li a {
  sheight: 40px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  color: #000;
  background-color: #F4F4F4;
  box-shadow: #D8D8D8 1px 1px 0, #D8D8D8 2px 2px 0, #D8D8D8 3px 3px 0, #D8D8D8 4px 4px 0, #D8D8D8 5px 5px 0, #D8D8D8 6px 6px 0;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 400ms ease-in-out;
}
ul.faq-ul li a:after {
  position: absolute;
  right: 0;
  content: " ";
  top: 0;
  width: 30px;
  height: 40px;
  bacskground-color: silver;
  display: flex;
  background-position: center;
  background-image: url("/assets/icons/plus_icoon.svg");
  background-repeat: no-repeat;
}
ul.faq-ul li a:hover {
  color: #000;
}
ul.faq-ul li a:active {
  color: #000;
  background: #D8D8D8 !important;
}
ul.faq-ul li a:focus:active {
  background: #F4F4F4;
}
ul.faq-ul li a.active {
  color: #fff;
  background-color: #000;
  box-shadow: #3d3d3d 1px 1px 0, #3d3d3d 2px 2px 0, #3d3d3d 3px 3px 0, #3d3d3d 4px 4px 0, #3d3d3d 5px 5px 0, #3d3d3d 6px 6px 0;
}
ul.faq-ul li a.active:hover {
  color: #fff;
}
ul.faq-ul li a.active:active {
  color: #fff;
  background: #3d3d3d !important;
}
ul.faq-ul li a.active:focus:active {
  background: #000;
}
ul.faq-ul li div {
  display: none;
  padding: 20px;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.menu-button-title {
  text-transform: uppercase;
  color: #FFF;
  backsground: lime;
  display: block;
  positsion: absolute;
  text-align: center;
  font-size: 9px;
  width: 100%;
  margin-top: -8px;
  text-decoration: none !important;
}
@media (max-width: 767.98px) {
  .menu-button-title {
    display: none;
  }
}

.menu-open-overlay {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 435;
  display: none;
}

.menu-container {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  color: #FFF;
  z-index: 440;
}
.menu-container .menu-bar {
  z-index: 450;
  position: fixed;
  left: 0;
  top: 0;
  height: 50px;
  overflow: hidden;
  width: 100%;
  right: 0;
  display: flex;
  justify-content: space-between;
  background-color: #0633FF;
  align-items: center;
}
.menu-container .menu-bar .menu-title {
  padding-right: 15px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .menu-container .menu-bar {
    spadding-bottom: 100px;
    flex-direction: column;
    bottom: 0;
    height: inherit;
    width: 50px;
  }
  .menu-container .menu-bar .menu-title {
    padding: 0;
    height: 100px;
    position: relative;
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .menu-container .menu-bar .menu-title span {
    position: absolute;
    /* only handy here because its parent is set to `position: relative;` */
    /* writing-mode: sideways-lr;   /* Webkit browsers don't support `sideways-lr` yet */
    writing-mode: vertical-rl;
    /* `vertical-rl` and a rotation will achieve the same effect */
    transform: scaleX(-1) scaleY(-1);
    height: 100%;
    white-space: nowrap;
  }
}
.menu-container .menu-slider {
  z-index: 445;
  position: fixed;
  overflsow: hidden;
  overflow-y: auto;
  top: 50px;
  margin-top: -100vh;
  width: 100vw;
  height: calc(100vh - 50px);
  background: #0021B9;
  background: #000;
  color: #FFF;
  letter-spacing: 2.6px;
}
.menu-container .menu-slider.sliding {
  transition: margin 600ms ease-in-out, box-shadow 600ms ease-in-out;
}
@media (min-width: 768px) {
  .menu-container .menu-slider {
    margin-top: 0;
    left: 50px;
    top: inherit;
    margin-left: -356px;
    width: 356px;
    bottom: 0;
    height: inherit;
  }
}
.menu-container .menu-slider ul {
  padding: 0;
  list-style-type: none;
}
.menu-container .menu-slider ul li a {
  display: block;
  padding: 0 50px;
  line-height: 56px;
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
.menu-container .menu-slider ul li a:hover, .menu-container .menu-slider ul li a.selected {
  color: #0633FF;
  text-decoration: none;
}
.menu-container .menu-slider ul li a:hover {
  color: #7F7F7F;
}
.menu-container .menu-slider ul li a span.supertitle {
  position: absolute;
  font-size: 8px;
  letter-spacing: 1.76px;
  margin-top: -4px;
  padding: 2px 3px 0 3px;
  color: #FFF;
  line-height: 14px;
}
.menu-container .menu-slider ul.menu-sub li a {
  font-weight: 600;
  line-height: 32px;
  font-size: 12.9px;
  text-transform: none;
  letter-spacing: 1.4px;
}
.menu-container.open .menu-bar {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.24);
}
.menu-container.open .menu-slider {
  box-shadow: 8px -4px 8px 0 rgba(0, 0, 0, 0.32);
  margin-top: 0;
}
@media (min-width: 768px) {
  .menu-container.open .menu-slider {
    margin-left: 0;
  }
}
.menu-container .menu-slider-main, .menu-container .menu-slider-cart {
  display: none;
}
.menu-container.main-open .menu-slider-main {
  display: block;
}
.menu-container.main-open .menu-slider-cart {
  display: none;
}
.menu-container.cart-open .menu-slider-cart {
  display: block;
}
.menu-container.cart-open .menu-slider-main {
  display: none;
}
.menu-container ul.nav-dots {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.menu-container ul.nav-dots li a {
  display: block;
  text-align: center;
  margin: 5px 0;
  border-radius: 999px;
  border: solid 2px #FFF;
  width: 16px;
  height: 16px;
  transition: background-color 700ms ease-in-out, border 500ms ease-in-out;
  cursor: pointer;
}
.menu-container ul.nav-dots li a.selected {
  background: #FFF;
}
.menu-container .nav-icon {
  margin: 1em;
  width: 18px;
  margin-top: 0;
  transition: margin 0.2s ease-in-out;
}
@media (max-width: 991.98px) {
  .menu-container .nav-icon {
    margin-top: 14px;
  }
}
.menu-container .nav-icon:after,
.menu-container .nav-icon:before,
.menu-container .nav-icon div {
  background-color: #FFF;
  border-radius: 2px;
  content: "";
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}
.menu-container.main-open .nav-icon {
  margin-top: 0;
}
.menu-container.main-open .nav-icon:before {
  transform: translateY(9px) rotate(135deg);
}
.menu-container.main-open .nav-icon:after {
  transform: translateY(-5px) rotate(-135deg);
}
.menu-container.main-open .nav-icon div {
  background-color: #FFF;
  transform: scale(0);
}
@media (max-width: 767.98px) {
  .menu-container .top {
    display: flex;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .menu-container .top {
    width: 100%;
  }
}
.menu-container .top .btn-cart .cart-count {
  position: absolute;
  background: red;
  border-radius: 999px;
  width: 16px;
  height: 16px;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  margin-left: 10px;
  margin-top: -10px;
}
.menu-container .top .btn-cart-container, .menu-container .top .btn-main-container {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .menu-container .top .btn-cart-container, .menu-container .top .btn-main-container {
    height: 100%;
    width: 55px;
  }
}
.menu-container .top .btn-cart-container a, .menu-container .top .btn-main-container a {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}
.menu-container .top .btn-cart-container a .btn-cart-icon-white, .menu-container .top .btn-main-container a .btn-cart-icon-white {
  display: inline;
}
.menu-container .top .btn-cart-container a .btn-cart-icon-blue, .menu-container .top .btn-main-container a .btn-cart-icon-blue {
  display: none;
}
.menu-container .top .btn-cart-container.active, .menu-container .top .btn-cart-container:hover, .menu-container .top .btn-main-container.active, .menu-container .top .btn-main-container:hover {
  background: #0633FF;
}
.menu-container .top .btn-cart-container.active a, .menu-container .top .btn-cart-container:hover a, .menu-container .top .btn-main-container.active a, .menu-container .top .btn-main-container:hover a {
  background: #FFF;
}
.menu-container .top .btn-cart-container.active a .nav-icon::before, .menu-container .top .btn-cart-container.active a .nav-icon div, .menu-container .top .btn-cart-container.active a .nav-icon::after, .menu-container .top .btn-cart-container.active a .nav-icon span.menu-button-title, .menu-container .top .btn-cart-container:hover a .nav-icon::before, .menu-container .top .btn-cart-container:hover a .nav-icon div, .menu-container .top .btn-cart-container:hover a .nav-icon::after, .menu-container .top .btn-cart-container:hover a .nav-icon span.menu-button-title, .menu-container .top .btn-main-container.active a .nav-icon::before, .menu-container .top .btn-main-container.active a .nav-icon div, .menu-container .top .btn-main-container.active a .nav-icon::after, .menu-container .top .btn-main-container.active a .nav-icon span.menu-button-title, .menu-container .top .btn-main-container:hover a .nav-icon::before, .menu-container .top .btn-main-container:hover a .nav-icon div, .menu-container .top .btn-main-container:hover a .nav-icon::after, .menu-container .top .btn-main-container:hover a .nav-icon span.menu-button-title {
  background-color: #0633FF !important;
}
.menu-container .top .btn-cart-container.active a span.menu-button-title, .menu-container .top .btn-cart-container:hover a span.menu-button-title, .menu-container .top .btn-main-container.active a span.menu-button-title, .menu-container .top .btn-main-container:hover a span.menu-button-title {
  color: #0633FF !important;
}
.menu-container .top .btn-cart-container.active a .btn-cart-icon-white, .menu-container .top .btn-cart-container:hover a .btn-cart-icon-white, .menu-container .top .btn-main-container.active a .btn-cart-icon-white, .menu-container .top .btn-main-container:hover a .btn-cart-icon-white {
  display: none;
}
.menu-container .top .btn-cart-container.active a .btn-cart-icon-blue, .menu-container .top .btn-cart-container:hover a .btn-cart-icon-blue, .menu-container .top .btn-main-container.active a .btn-cart-icon-blue, .menu-container .top .btn-main-container:hover a .btn-cart-icon-blue {
  display: inline;
}
.menu-container .menu-slider-cart {
  padding: 30px;
  font-size: 13px;
  letter-spacing: 0;
}
.menu-container .menu-slider-cart .cart-row {
  font-size: 12px;
  margin-bottom: 15px;
  height: 80px;
  background: #2C2C2C;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-container .menu-slider-cart .cart-row .cross {
  padding: 10px;
}
.menu-container .menu-slider-cart .cart-row .cross a {
  font-size: 24px;
  color: #FFF;
}
.menu-container .menu-slider-cart .cart-row .center {
  flex: 1;
  letter-spacing: 0;
}
.menu-container .menu-slider-cart .cart-row .center h2 {
  line-height: 19px;
  font-size: 16px;
}
.menu-container .menu-slider-cart .cart-row .price {
  height: 100%;
  align-self: center;
  justify-self: center;
  display: flex;
  justify-content: center;
  background: #FFF;
  flex-direction: column;
  padding: 0 8px;
  text-align: center;
  min-width: 76px;
}
.menu-container .menu-slider-cart .cart-row .price span {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.image-and-map {
  padding-top: 50px;
  margisn-top: 100px;
  backgrousnd: orange;
  height: 750px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .image-and-map {
    display: block;
    height: auto;
  }
}
.image-and-map .box-title {
  position: absolute;
  left: 70px;
  margin-top: -50px;
  background: #F4F4F4;
  width: 50%;
  height: 640px;
}
@media (max-width: 991.98px) {
  .image-and-map .box-title {
    display: none;
  }
}
.image-and-map .box-image-container {
  position: absolute;
  z-index: 50;
}
@media (max-width: 991.98px) {
  .image-and-map .box-image-container {
    position: relative;
  }
}
.image-and-map .box-image-container .box-image {
  posistion: absolute;
  sleft: 50%;
  tsop: 60px;
  width: 680px;
  masrgin-left: -340px;
  max-width: 100%;
  height: 450px !important;
  height: 382.5px !important;
  bsackground: silver;
  background: #000;
  z-index: 50;
  box-shadow: 0 24px 31px 0 rgba(0, 0, 0, 0.38);
}
@media (max-width: 991.98px) {
  .image-and-map .box-image-container .box-image {
    width: 100%;
    box-shadow: none;
    amargin-bottom: 140px;
    height: inherit !important;
    min-height: 250px;
  }
}
.image-and-map .box-image-container .box-image .video-player-button {
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: solid 5px #FFF;
  width: 104px;
  height: 104px;
  transition: background-color 400ms ease-in-out;
}
@media (max-width: 767.98px) {
  .image-and-map .box-image-container .box-image .video-player-button {
    zoom: 70%;
  }
}
.image-and-map .box-image-container:hover .video-player-button {
  background-color: rgba(0, 0, 0, 0.9);
}
.image-and-map .box-image-container .subtitle {
  position: absolute;
  margin-top: 470px;
  margin-top: 20px;
  lseft: 0;
  bosttom: 0;
  font-size: 12px;
  max-width: 250px;
}
@media (max-width: 991.98px) {
  .image-and-map .box-image-container .subtitle {
    position: relative;
    margin: 10px 0 30px 0;
  }
}
.image-and-map .box-map {
  position: absolute;
  right: 70px;
  top: 200px;
  width: calc(50% - 15px);
  height: 550px;
  sbackground: #AAA;
  z-index: 45;
}
@media (max-width: 991.98px) {
  .image-and-map .box-map {
    position: inherit;
    width: 100%;
    top: inherit;
    right: inherit;
    margin-bottom: 60px;
  }
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
@media (max-width: 767.98px) {
  .container-images-rows img {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .container-images-rows > div {
    margin-bottom: 60px;
  }
}
.container-images-rows img {
  max-width: 100%;
}
.container-images-rows .container-image-row-2 img {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 576px) {
  .container-images-rows .container-image-row-2 img {
    height: 100%;
  }
}
.container-images-rows .container-image-row-3 img {
  max-height: 335px;
  object-fit: cover;
  width: 100%;
}
.container-images-rows .container-image-row-3 img.tall {
  max-height: 700px;
}
@media (min-width: 768px) {
  .container-images-rows .container-image-row-3 img.small:first-of-type {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .container-images-rows .container-image-row-3 img.small:last-of-type {
    margin-top: 15px;
  }
}
@media (min-width: 576px) {
  .container-images-rows .container-image-row-3 img {
    height: 100%;
  }
}
.container-images-rows .container-image-row-3 .two-pics-container {
  height: 100%;
}
@media (min-width: 576px) {
  .container-images-rows .container-image-row-3 .two-pics-container img {
    height: calc(50% - 15px);
  }
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9995;
  background: rgba(0, 0, 0, 0.7);
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9996;
  justify-content: center;
  align-items: center;
}
.popup-container .custom-checkbox label {
  color: #fff;
}
.popup-container .custom-checkbox label a {
  color: #fff;
  text-decoration: underline;
}
.popup-container .popup, .popup-container .popup-form, .popup-container .popup-trip-thanks, .popup-container .popup-product-added, .popup-container .popup-form-webshop-other-country, .popup-container .popup-wall-of-fame {
  background: #0633FF;
  width: 490px;
  color: #FFF;
  padding: 50px;
  padding-left: 160px;
  position: relative;
  box-shadow: 0 7px 12px 5px rgba(0, 0, 0, 0.25);
  max-width: 90%;
}
@media (max-width: 767.98px) {
  .popup-container .popup, .popup-container .popup-form, .popup-container .popup-trip-thanks, .popup-container .popup-product-added, .popup-container .popup-form-webshop-other-country, .popup-container .popup-wall-of-fame {
    padding: 30px;
  }
}
.popup-container .popup .popup-kop, .popup-container .popup-form .popup-kop, .popup-container .popup-trip-thanks .popup-kop, .popup-container .popup-product-added .popup-kop, .popup-container .popup-form-webshop-other-country .popup-kop, .popup-container .popup-wall-of-fame .popup-kop {
  left: -63px;
  top: -37px;
  width: 183px;
  position: absolute;
}
@media (max-width: 767.98px) {
  .popup-container .popup .popup-kop, .popup-container .popup-form .popup-kop, .popup-container .popup-trip-thanks .popup-kop, .popup-container .popup-product-added .popup-kop, .popup-container .popup-form-webshop-other-country .popup-kop, .popup-container .popup-wall-of-fame .popup-kop {
    display: none;
  }
}
.popup-container .popup .popup-close, .popup-container .popup-form .popup-close, .popup-container .popup-trip-thanks .popup-close, .popup-container .popup-product-added .popup-close, .popup-container .popup-form-webshop-other-country .popup-close, .popup-container .popup-wall-of-fame .popup-close {
  position: absolute;
  right: 10px;
  top: 0;
  text-decoration: none;
  font-size: 20px;
}
.popup-container .popup-product-added {
  background: #2C2C2C;
  display: flex;
  flex-direction: column;
}
.popup-container .popup-product-added .popup-close {
  color: #FFF;
}
.popup-container .popup-product-added .popup-product-added-content {
  padding: 40px 10px;
}
@media (min-width: 576px) {
  .popup-container .popup-product-added .popup-product-added-content {
    padding: 50px;
    padding-left: 145px;
    padding-right: 20px;
  }
}
.popup-container .popup-product-added .popup-product-added-footer {
  background: #000;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .popup-container .popup-product-added .popup-product-added-footer {
    padding: 30px;
  }
}
.popup-container .popup-product-added .popup-product-added-footer .btn-black {
  color: #FFF;
  background-color: #000;
  box-shadow: #FFF 1px 1px 0, #FFF 2px 2px 0, #FFF 3px 3px 0, #FFF 4px 4px 0, #FFF 5px 5px 0, #FFF 6px 6px 0;
  border: solid 1px #FFF;
}
.popup-container .popup-product-added .popup-product-added-footer .btn-black:hover {
  color: #FFF;
}
.popup-container .popup-product-added .popup-product-added-footer .btn-black:active {
  color: #FFF;
  background: #FFF !important;
}
.popup-container .popup-product-added .popup-product-added-footer .btn-black:focus:active {
  background: #000;
}
.popup-container .popup-product-added .popup-product-added-footer .btn-black:hover {
  color: #444;
}
.popup-container .popup-form, .popup-container .popup-wall-of-fame {
  width: 600px;
}
.popup-container .popup-form input[type=text], .popup-container .popup-form input[type=email], .popup-container .popup-form input[type=tel], .popup-container .popup-form textarea, .popup-container .popup-wall-of-fame input[type=text], .popup-container .popup-wall-of-fame input[type=email], .popup-container .popup-wall-of-fame input[type=tel], .popup-container .popup-wall-of-fame textarea {
  border: 0;
  background: #0021B9;
  color: #FFF;
}
.popup-container .popup-form h3, .popup-container .popup-wall-of-fame h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.popup-container .popup-trip-thanks {
  width: 800px;
}
.popup-container .popup-trip-thanks a {
  color: #FFF;
  text-decoration: underline;
}
.popup-container .popup-trip-thanks a:hover {
  text-decoration: none;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.quote {
  width: 795px;
}
@media (min-width: 576px) {
  .quote {
    max-width: 90%;
  }
}
@media (min-width: 576px) {
  .quote img {
    position: absolute;
    margin-left: -36px;
    margin-top: -73px;
  }
}
.quote p {
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  line-height: 39px;
}
@media (max-width: 991.98px) {
  .quote p {
    font-size: 25px;
  }
}
.quote span {
  font-size: 14px;
}

a.tile {
  display: block;
  text-decoration: none;
  color: #000;
}
a.tile:hover .img-container img {
  transform: scale(1.2);
}
a.tile .img-container {
  overflow: hidden;
  height: 200px;
  width: 100%;
}
a.tile .img-container img {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  transition: all 400ms ease-in-out;
}
a.tile span {
  margin: 15px 0;
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 25px;
  background: #FFF;
  padding: 6px 12px;
}
a.tile p {
  margin-bottom: 40px;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
.trip-facts-start p:first-of-type {
  font-weight: bold;
  font-size: 20px;
}

.trip-facts-container {
  background: #F4F4F4;
}
.trip-facts-container .tripfacts-list-container ul {
  padding: 0;
  padding-left: 19px;
}
@media (min-width: 576px) {
  .trip-facts-container .tripfacts-list-container ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .trip-facts-container .tripfacts-list-container ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
.trip-facts-container #sto-garant-info {
  border-top: solid 1px #D8D8D8;
}
@media (min-width: 1200px) {
  .trip-facts-container #sto-garant-info {
    text-align: right;
  }
}
.trip-facts-container .trip-facts-circles {
  display: flex;
  justify-content: space-between;
  justsify-content: space-between;
  width: 100%;
  text-align: center;
}
@media (max-width: 767.98px) {
  .trip-facts-container .trip-facts-circles {
    flex-flow: row wrap;
  }
  .trip-facts-container .trip-facts-circles > div {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199.98px) {
  .trip-facts-container .trip-facts-circles {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .trip-facts-container .trip-facts-circles {
    jusstify-content: flex-end;
  }
}
.trip-facts-container .trip-facts-circles > div {
  width: 100px;
}
@media (max-width: 575.98px) {
  .trip-facts-container .trip-facts-circles > div {
    backsground: lime;
    display: flex;
    width: 50%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .trip-facts-container .trip-facts-circles > div {
    margisn-left: 20px;
  }
}
.trip-facts-container .trip-facts-circles > div > div {
  margin-bottom: 20px;
}

body::before {
  display: none;
  content: "xs";
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body::before {
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  body::before {
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  body::before {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  body::before {
    content: "xl";
  }
}
#webshop-footer-bar {
  background: #FFF;
}
@media (min-width: 768px) {
  #webshop-footer-bar {
    padding: 60px 0;
  }
}
#webshop-footer-bar .webshop-footer-tile h3 {
  font-size: 20px;
}
#webshop-footer-bar .webshop-footer-tile h3 img {
  margin-right: 15px;
}
#webshop-footer-bar .webshop-footer-tile p {
  font-size: 15px;
}
@media (max-width: 767.98px) {
  #webshop-footer-bar .webshop-footer-tile {
    margin-bottom: 30px;
  }
}

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