/*
 *----------------------------------------
 * Reset
 *----------------------------------------
 */
* {
  box-sizing: border-box;
}

a, p, h1, h2, h3, h4, input[type=text], input[type=email], input[type=number], input[type=tel] {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

li {
  list-style-position: inside;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

input {
  border-radius: 0;
}

.button {
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 0.3em;
  border: solid 0.083em #80A51E;
  text-transform: uppercase;
  color: #FFF;
  cursor: pointer;
  text-shadow: 0 0 0.167em #444;
  background-color: #8EB724;
}
.button:hover {
  background-color: #BBDA69;
}
.button.disabled {
  background-color: #AEAFAC;
  border: solid 0.083em #AEAFAC;
  cursor: default;
}

.loader {
  display: none;
  position: absolute;
  right: 10px;
  top: 15px;
  border-top: 3px solid #456923;
  border-right: 3px solid #453AB3;
  border-bottom: 3px solid #27A7FB;
  border-left: 3px solid #EDEC43;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a.button {
  text-decoration: none;
  color: #FFF;
}

/*
 *----------------------------------------
 * Globals
 *----------------------------------------
 */
html {
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  min-width: 320px;
}

body {
  font-size: 0.875em;
  line-height: 1.6;
  background-color: #D0D0D0;
  max-width: 85.28571em;
  margin: 0 auto;
}

.debugger-banner {
  z-index: 1000;
  padding: 10px;
}
.debugger-banner select {
  padding: 5px;
}
.debugger-banner.dev {
  background-color: #FFA8A8;
}
.debugger-banner.staging {
  background-color: #FFA83B;
}
.debugger-banner.prod {
  background-color: #85ca7d;
}

.bold {
  font-weight: bold;
}

.no-show,
.hidden {
  display: none;
}

.template {
  display: none;
}

.popup {
  width: 28.5714285714em;
  padding: 0.7142857143em;
  font-size: 0.95em;
  color: #000;
  background-color: #FFF;
  border: solid 0.0714285714em #D0D0D0;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.27);
  -ms-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.27);
  -o-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.27);
}

#site-overlay {
  display: none;
}
#site-overlay.active {
  display: unset;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/*
 *----------------------------------------
 * Main content container
 *----------------------------------------
*/
main {
  display: block;
  max-width: 82.2857142857em;
  margin: 0 auto 2em auto;
  padding: 0.7142857143em 0.7142857143em 0.7142857143em 0.7142857143em;
  background-color: #FFF;
}

#cookie-control-master {
  display: grid;
  grid-template-columns: auto auto;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em 2em;
  background-color: rgba(26, 43, 58, 0.95);
  color: #FFF;
  z-index: 999;
}
@media (max-width: 600px) {
  #cookie-control-master {
    grid-template-columns: unset;
    grid-template-rows: auto;
  }
}
#cookie-control-master h1, #cookie-control-master h2 {
  color: #FFF;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25em;
  margin-bottom: 0.25em;
}
#cookie-control-master .buttons {
  text-align: right;
  align-self: end;
}
@media (max-width: 600px) {
  #cookie-control-master .buttons {
    margin-top: 1em;
  }
}
#cookie-control-master .buttons .button {
  font-size: 0.85em;
}
#cookie-control-master .buttons .button.accept {
  margin-right: 0.9em;
}
#cookie-control-master .buttons a.prefs {
  font-size: 1em;
  vertical-align: bottom;
  white-space: nowrap;
}
#cookie-control-master.hidden {
  display: none;
}

#cookie-control-trigger {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 1em;
  background-color: rgba(23, 16, 78, 0.95);
  font-size: 0.85em;
  color: #FFF;
  cursor: pointer;
  z-index: 1000;
}
#cookie-control-trigger.hidden {
  display: none;
}
@media (max-width: 800px) {
  #cookie-control-trigger {
    display: none;
  }
}

#cookie-control {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20em;
  background-color: rgba(34, 95, 114, 0.95);
  z-index: 999;
  padding: 1em 1em 6em 1em;
  color: #FFF;
  transition: left 0.5s;
  overflow: auto;
}
#cookie-control .close {
  position: absolute;
  right: 10px;
  top: 0px;
  padding: 0.5em;
  font-weight: bold;
  cursor: pointer;
}
#cookie-control h1, #cookie-control h2 {
  color: #FFF;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25em;
  margin-bottom: 0.25em;
}
#cookie-control section {
  margin-bottom: 1em;
  padding-bottom: 2em;
  border-bottom: solid 1px #69939f;
}
#cookie-control section .switch {
  text-align: right;
  white-space: nowrap;
}
#cookie-control section .switch span,
#cookie-control section .switch input {
  vertical-align: middle;
}
#cookie-control section .switch span {
  margin-right: 0.5em;
}
#cookie-control section:last-child {
  margin-bottom: 0;
}
#cookie-control .button-container {
  text-align: right;
}
#cookie-control .button-container .button.done {
  font-size: 0.85em;
}
#cookie-control.hidden {
  left: -22em;
}

/*
 *----------------------------------------
 * Footer
 *----------------------------------------
 */
footer {
  white-space: normal;
}
footer .inner {
  position: relative;
  margin: 0;
  background-color: #17104E;
  color: #F2F2E3;
  font-style: italic;
  text-align: center;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer li {
  display: inline-block;
  margin: 0 0.5em;
  font-size: 1.2em;
  cursor: pointer;
}
footer li:hover,
footer .tab-active {
  background-color: #044299;
}
footer li a,
footer li span {
  display: inline-block;
  padding: 0.7em;
  text-decoration: none;
  color: inherit;
}
footer li a:hover {
  text-decoration: none;
}
footer li.cookie-control-trigger {
  display: none;
}
@media (max-width: 800px) {
  footer li.cookie-control-trigger {
    display: inline-block;
  }
}
footer .copyright {
  padding: 0.5em 0;
}

/*
 *----------------------------------------
 * Nav
 *----------------------------------------
 */
nav {
  background-color: #011426;
}
nav .inner {
  position: relative;
  margin: 0 auto;
  padding-left: 1em;
  line-height: 2.5em;
}
nav ul {
  margin: 0;
  padding-left: 0;
  color: #F2F2E3;
}
nav li {
  display: inline-block;
  font-size: 1.2em;
  cursor: pointer;
  white-space: nowrap;
}
nav li:hover,
nav .tab-active {
  background-color: #044299;
}
nav li a,
nav li span.view-photo-album {
  padding: 0.7em;
  text-decoration: none;
  color: inherit;
}
nav li a:hover {
  text-decoration: none;
}

@media (max-width: 600px) {
  nav {
    text-align: center;
  }
}
/*
 *----------------------------------------
 * Language and currency menu
 *----------------------------------------
*/
.menu-container {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 10;
}
.menu-container .menu {
  display: inline-block;
  vertical-align: top;
  background-color: #021526;
  color: #F2F2E3;
  background-color: rgba(2, 21, 38, 0.9);
}
.menu-container .menu:first-child {
  margin-right: 0.02em;
}
.menu-container .menu.locale {
  width: 10.7142857143em;
}
.menu-container .menu.currency {
  width: 8.9285714286em;
}
.menu-container ul.options {
  display: none;
}
.menu-container li {
  display: block;
  list-style-type: none;
  padding: 0.1em 0 0.1em 0.5em;
  margin-right: 0;
}
.menu-container .options li:hover {
  background-color: #225F72;
}
.menu-container .active {
  margin: 0;
  padding: 0 0.5em;
  color: #F2F2E3;
}
.menu-container .active .arrow {
  display: inline-block;
  margin-left: 5px;
  width: 7px;
  height: 6px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.menu-container .active .arrow.down {
  background-image: url(/assets/images/bg/down.png);
}
.menu-container .active .arrow.up {
  background-image: url(/assets/images/bg/up.png);
}
.menu-container .flag {
  display: inline-block;
  width: 15px;
  height: 11px;
  margin-right: 5px;
  background-image: url(/assets/images/bg/flags.png);
  background-repeat: no-repeat;
}
.menu-container .flag-en {
  background-position: -5px 0;
}
.menu-container .flag-fr {
  background-position: -25px 0;
}
.menu-container .flag-de {
  background-position: -45px 0;
}
.menu-container .flag-es {
  background-position: -65px 0;
}
.menu-container .flag-nl {
  background-position: -85px 0;
}
.menu-container .flag-it {
  background-position: -105px 0;
}
.menu-container .flag-ru {
  background-position: -125px 0;
}
.menu-container .flag-pt {
  background-position: -145px 0;
}
.menu-container .flag-no {
  background-position: -165px 0;
}
.menu-container .flag-sv {
  background-position: -185px 0;
}
.menu-container .flag-fi {
  background-position: -205px 0;
}
.menu-container .flag-da {
  background-position: -225px 0;
}

/*
 *----------------------------------------
 * Header
 *----------------------------------------
*/
header {
  position: relative;
  min-height: 100px;
  padding: 1.4285714286em;
  background-color: #161245;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.27);
}
header .logo {
  display: inline-block;
  width: 146px;
  height: 57px;
  background-image: url(/assets/images/logo.png);
  background-repeat: no-repeat;
}
header .weather {
  float: right;
  margin: 1em 3em 0 0;
  color: #FFF;
}
header .weather .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: -1em;
  background-repeat: no-repeat;
}
header .weather .temp {
  font-size: 3em;
}

/*
 *----------------------------------------
 * Social
 *----------------------------------------
*/
.social {
  display: inline-block;
}
.social .icon.mail-a-friend {
  width: 35px;
  height: 21px;
  background-image: url(/assets/images/icons/mail-a-friend.png);
  background-repeat: no-repeat;
  cursor: pointer;
}
.social > div, .social > a {
  display: inline-block !important;
  margin-left: 10px !important;
  vertical-align: top !important;
}
.social .fb-like-break {
  display: none;
}
.social.hidden {
  display: none;
}

/*
 *----------------------------------------
 * Country view
 *----------------------------------------
*/
.hidden {
  display: none;
}

header .inner {
  position: relative;
  height: 100px;
  background-position: 100%;
  background-size: 150px 100px;
  background-repeat: no-repeat;
}
header .left {
  position: absolute;
  left: 0;
  top: 20px;
}
header .country {
  position: relative;
  width: 570px;
  margin: 0 auto;
  text-align: center;
  color: #FFF;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 0px 2px 5px #000;
}

.social {
  display: block;
  margin: 1em 0;
  text-align: right;
}

.main-container {
  margin-top: 0.5em;
}
.main-container p {
  margin: 10px 0;
}
.main-container #error-message {
  margin-bottom: 2em;
  padding: 0.5em;
  border: solid 1px #911313;
  background-color: rgba(145, 19, 19, 0.25);
}
.main-container form {
  margin: 40px auto 40px auto;
  max-width: 500px;
}
.main-container form h2, .main-container form h3 {
  margin-bottom: 0.5em;
  padding: 5px 10px;
  font-size: 1.6em;
  font-weight: 500;
  background-color: #D2D2D2;
}
.main-container form h3 {
  font-size: 1.1em;
  background-color: unset;
}
.main-container form .group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.main-container form .field {
  margin: 0 1em 2em 1em;
  flex-grow: 1;
}
.main-container form .field label {
  display: block;
  font-size: 120%;
  font-weight: bold;
}
.main-container form .field select {
  height: 36px;
  font-size: 14px;
}
.main-container form .field .explainer {
  font-size: 0.9em;
  font-style: italic;
}
.main-container form .field.required label::after {
  content: "*";
  margin-left: 5px;
  color: red;
  font-weight: bold;
}
.main-container form input, .main-container form select, .main-container form textarea, .main-container form span.checkbox_container {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 0.5em;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
}
.main-container form input.ok, .main-container form select.ok, .main-container form textarea.ok, .main-container form span.checkbox_container.ok {
  border: solid 1px #179113;
  background-color: rgba(23, 145, 19, 0.25);
}
.main-container form input.error, .main-container form select.error, .main-container form textarea.error, .main-container form span.checkbox_container.error {
  border: solid 1px #911313;
  background-color: rgba(145, 19, 19, 0.25);
}
.main-container form input[name=nights] {
  max-width: 50px;
}
.main-container form input[name=adults],
.main-container form input[name=children] {
  max-width: 100px;
}
.main-container form textarea[name=comments] {
  max-width: initial;
}
.main-container form .button-container {
  margin-top: 2em;
  text-align: center;
}
.main-container form .error_message {
  margin-left: 10px;
  color: #F00;
}
.main-container .confirm {
  margin-bottom: 40px;
  text-align: center;
}
.main-container .confirm h2 {
  font-size: 30px;
}

@media (max-width: 800px) {
  header {
    min-height: unset;
  }
  header .inner {
    height: unset;
    background-image: unset !important;
  }
  header .left {
    display: none;
  }
  header .country {
    width: unset;
  }
  header .weather {
    display: none;
  }

  nav .inner {
    padding-left: unset;
    padding-right: unset;
  }
  nav .inner ul {
    display: inline-block;
  }
  nav .inner .menu-container {
    display: inline-block;
    position: unset;
  }
  nav .inner .menu-container .menu.currency {
    width: unset;
  }
}