/*
 *----------------------------------------
 * 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;
}

/*
 *----------------------------------------
 * Hero container
 *----------------------------------------
 */
.hero-container {
  position: relative;
  height: 357px;
  margin-top: 5px;
  background-repeat: no-repeat;
  border: solid 1px #DDD;
}
.hero-container .hero-rates-from {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 0.3em;
  font-size: 2em;
  color: #FFF;
  font-style: italic;
  background: url(/assets/images/bg/rates-from.png);
}
.hero-container .hero-montage {
  display: flex;
  margin-left: 29.167em;
  background-color: #2D2C39;
}
.hero-container .hero-montage .main,
.hero-container .hero-montage .minor {
  display: table-cell;
}
.hero-container .hero-montage .minor {
  cursor: pointer;
}
.hero-container .hero-montage .image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.hero-container .hero-montage .main {
  width: 350px;
  height: 357px;
  background-size: 350px auto;
  background-size: cover;
  border-right: solid 0.083em #FFF;
}
.hero-container .hero-montage .medium {
  height: 216px;
  width: 435px;
  background-size: auto 357px;
  background-size: cover;
  border-bottom: solid 0.083em #FFF;
}
.hero-container .hero-montage .view-photo-album {
  line-height: 2.5em;
  background-color: #2D2C39;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-top: solid 0.083em #FFF;
}
.hero-container .hero-montage .view-photo-album .icon {
  display: inline-block;
  width: 1.1428571429em;
  height: 0.9285714286em;
  margin-right: 0.7142857143em;
  background-image: url(/assets/images/icons/camera.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.hero-container .hero-montage .small {
  display: table-cell;
  height: 104px;
  width: 145px;
  background-size: cover;
  border-right: solid 0.083em #FFF;
}

/*
 *----------------------------------------
 * Photo album and map modals
 *----------------------------------------
*/
.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
/*
 *----------------------------------------
 * 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;
}

/*
 *----------------------------------------
 * Search from
 *----------------------------------------
 */
.search-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 29.167em;
  min-height: 357px;
  color: #FFF;
  background-color: #161245;
  z-index: 1;
  -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);
}
.search-form select,
.search-form input {
  color: #2A3235;
  background-color: #EBECED;
}
.search-form select {
  padding: 5px;
}
.search-form label {
  display: block;
  padding: 0.25em;
  color: #BEBCB2;
  text-transform: uppercase;
}
.search-form .header {
  margin: 0.5em 0;
  font-size: 1.5em;
  text-align: center;
  color: #FFF;
}
.search-form .header .heading {
  padding: 0 0.5em;
  font-family: "Lora", serif;
  font-size: 0.9em;
  text-transform: initial;
  color: #F9F19C;
}
.search-form .rates-from {
  font-family: "Lora", serif;
  font-size: 0.7em;
  font-style: italic;
  color: #C1C098;
  text-transform: uppercase;
  text-align: center;
}
.search-form .rates-from .rate {
  font-size: 0.85em;
}
.search-form .destination {
  display: none;
  margin: 0 0.833em;
}
.search-form .destination input {
  width: 100%;
  padding: 0.3em;
}
.search-form #autosuggest {
  position: absolute;
  background-color: #FFF;
  text-align: left;
  z-index: 10;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.search-form #autosuggest .option {
  padding: 0.35em 0.5em;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.85em;
  color: #000;
}
.search-form #autosuggest .option:hover {
  background-color: #F5F4F4;
}
.search-form #autosuggest .option .hilight {
  background-color: #F1E105;
}
.search-form #autosuggest .option.list-header {
  background-color: #E8E8E8;
  font-weight: bold;
}
.search-form #autosuggest .option.list-header:hover {
  cursor: unset;
}
.search-form .stay-dates {
  margin: 0 0.833em;
}
.search-form .date {
  display: inline-block;
  width: 10em;
}
.search-form .date:first-child {
  margin-right: 1.5em;
}
.search-form .date label.pt {
  font-size: 0.95em;
}
.search-form .container {
  padding: 0.3em 0.083em 0.3em 0.3em;
  text-align: right;
  background-color: #EBECED;
}
.search-form .stay-dates input[type=text] {
  width: 7em;
  background-color: inherit;
  border: 0;
}
.search-form .stay-dates .icon {
  padding: 0.2em 1em;
  background-image: url(/assets/images/icons/cal.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #868788;
  border: solid 0.083em #6E747A;
  cursor: pointer;
}
.search-form .weekday {
  color: #BEBCB2;
}
.search-form .nights {
  display: inline-block;
  text-align: center;
  color: #BEBCB2;
  text-transform: capitalize;
}
.search-form .night-count {
  display: table-cell;
  width: 5em;
  height: 2.167em;
  background-image: url(/assets/images/icons/nights-case.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-align: center;
  vertical-align: middle;
  color: #000;
}
.search-form .rooms-and-guests-summary {
  display: none;
  margin-top: 2em;
  text-align: center;
}
.search-form .change-link {
  margin-left: 1em;
  color: #BFC294;
  cursor: pointer;
}
.search-form .rooms-and-guests {
  margin: 0.5em 0.833em 0 0.833em;
}
.search-form .rooms-and-guests .row {
  display: block;
}
.search-form .rooms-and-guests .row.labels {
  margin-top: 1em;
}
.search-form .rooms-and-guests .row.room {
  padding: 1em 0;
  border-bottom: solid 0.0714285714em #575757;
}
.search-form .rooms-and-guests .row.room:last-child {
  border-bottom: 0;
}
.search-form .rooms-and-guests .cell {
  display: inline-block;
  width: 25%;
  vertical-align: middle;
  text-align: center;
}
.search-form .rooms-and-guests .cell.span-2 {
  width: 50%;
}
.search-form .rooms-and-guests .room .row.child-ages {
  margin: 0.5em 0;
  display: none;
}
.search-form .rooms-and-guests .room.room-1 {
  margin-top: 0;
}
.search-form .rooms-and-guests .child-ages label {
  text-transform: initial;
}
.search-form .rooms-and-guests select.child-age {
  display: none;
  width: 4.5em;
  margin-right: 1em;
}
.search-form .rooms-and-guests select.child-age:last-child {
  margin-right: 0;
}
.search-form .button-container {
  margin: 1.2em 0 11px 0;
  text-align: center;
}
.search-form .button-container .button.check-rates.loading {
  background-color: #FFDA4B;
}
.search-form .button.search.loading {
  background-image: url(/assets/images/loader.gif);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-color: #FFDA4B;
}

.ui-datepicker {
  -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);
}

.search-form.country .rooms-and-guests,
.search-form.city .rooms-and-guests {
  text-align: center;
}
.search-form.country .row.room:not(.room-1),
.search-form.city .row.room:not(.room-1) {
  display: none;
}
.search-form.country .row.room,
.search-form.city .row.room {
  padding: 0;
}
.search-form.country .label-adults,
.search-form.country .label-children,
.search-form.city .label-adults,
.search-form.city .label-children {
  display: none;
}
.search-form.country .label-room-number,
.search-form.country .cell.adults,
.search-form.country .cell.children,
.search-form.city .label-room-number,
.search-form.city .cell.adults,
.search-form.city .cell.children {
  display: none !important;
}
.search-form.country .cell,
.search-form.city .cell {
  width: unset;
}
.search-form.country .rooms-and-book,
.search-form.city .rooms-and-book {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.search-form.country .rooms-and-book .button-container,
.search-form.city .rooms-and-book .button-container {
  margin: unset;
}

.search-form.city .stay-dates {
  margin-top: 2em;
}
.search-form.city .theme-filter-container {
  text-align: center;
}
.search-form.city .theme-filter-container .clear-theme-filter {
  display: inline-block;
  margin: 3em 0 0 0;
  padding: 0.5em 1em 0.5em 3.5em;
  font-size: 1.2em;
  border: solid 1px #3d3b5a;
  background-position: 0.5em 50%;
  background-color: #161245;
  background-size: 35px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.search-form.city .theme-filter-container .clear-theme-filter .remove {
  margin-left: 0.5em;
  color: #FF0000;
  font-weight: bold;
}

/*
 *----------------------------------------
 * Country view
 *----------------------------------------
*/
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;
}

.hero-container {
  position: relative;
  text-align: center;
  height: 348px;
}
.hero-container .montage {
  position: absolute;
  height: 100%;
  width: 100%;
  text-align: initial;
  white-space: nowrap;
  background-color: #161245;
}
.hero-container .montage .image {
  position: absolute;
  display: inline-block;
  width: 26%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #FFF;
  background-position: 50%;
}
.hero-container .montage .image-one {
  left: 0;
}
.hero-container .montage .image-two {
  right: 0;
}
.hero-container .search-form {
  position: relative;
  display: inline-block;
  left: initial;
  width: 552px;
  min-height: 348px;
  background-color: rgba(22, 18, 69, 0.95);
}
.hero-container .search-form .destination {
  display: block;
}
.hero-container .search-form .destination input {
  box-sizing: border-box;
}
.hero-container .search-form .date {
  width: 15em;
}

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

.main-container {
  margin-top: 0.5em;
  white-space: nowrap;
}
.main-container .left-col {
  display: inline-block;
  width: 49%;
  margin-right: 1em;
  vertical-align: top;
  white-space: normal;
}
.main-container .right-col {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  white-space: normal;
}

.map-container {
  height: 500px;
}
.map-container #map {
  width: 100%;
  height: 100%;
  border: solid 1px #000;
}

.top-cities-container .destination-card {
  display: inline-block;
  width: 46%;
  margin: 0 0.5em 0.5em 0;
  padding: 0.25em;
  border: solid 1px #000;
  background-color: #FFF;
  background-repeat: no-repeat;
  color: #5C7EAE;
  vertical-align: top;
}
.top-cities-container .destination-card .image {
  height: 120px;
  background-size: cover;
  background-position: 50%;
}
.top-cities-container .destination-card .details {
  padding: 0.25em 0.5em;
  background-color: #FFF;
}
.top-cities-container .destination-card.blank {
  height: 149px;
}
.top-cities-container .destination-card.blank .image {
  height: 120px;
}

.description {
  margin-top: 0.5em;
}

.weather-container {
  margin-top: 0.5em;
}
.weather-container .city-weather {
  width: 92%;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background-color: #FFF;
  border: solid 1px #000;
}
.weather-container .city-weather .city {
  display: inline-block;
  width: 40%;
  color: #5C7EAE;
  font-size: 1.5em;
  vertical-align: middle;
}
.weather-container .city-weather .localtime {
  display: inline-block;
  width: 26%;
  font-size: 1.5em;
  color: #5C7EAE;
  vertical-align: middle;
}
.weather-container .city-weather .icon {
  display: inline-block;
  width: 16%;
  height: 50px;
  background-position: 50%;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.weather-container .city-weather .temp {
  display: inline-block;
  width: 16%;
  font-size: 1.5em;
  color: #5C7EAE;
  vertical-align: middle;
}

.quick-facts {
  width: 100%;
  margin-top: 0.5em;
  background-color: #FFF;
  color: #000;
  border: solid 1px #000;
}
.quick-facts .header {
  text-align: center;
  font-weight: bold;
  font-size: 1.25em;
  background-color: #DDDDFE;
}
.quick-facts .heading {
  padding: 0.5em;
  font-weight: bold;
}

.visa {
  display: inline-block;
  margin-top: 0.5em;
  vertical-align: top;
}
.visa > div {
  display: inline-block;
  vertical-align: top;
}
.visa .widget-main {
  width: 314px !important;
}

.lonely-planet {
  display: inline-block;
  margin-top: 0.5em;
  vertical-align: top;
}

@media (max-width: 900px) {
  .main-container .left-col,
.main-container .right-col {
    display: block;
    width: unset;
    margin: 0;
  }

  .top-cities-container {
    text-align: center;
  }
  .top-cities-container .destination-card {
    width: 30%;
  }

  .weather-container .city-weather {
    width: unset;
  }
}
@media (min-width: 900px) and (max-width: 1152px) {
  .visa > div:nth-child(2n) {
    display: none;
  }
}
@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;
  }
}
@media (max-width: 600px) {
  .hero-container {
    height: unset;
  }
  .hero-container .montage {
    position: relative;
    height: 300px;
  }
  .hero-container .montage .image-one {
    position: relative;
    width: 100%;
  }
  .hero-container .montage .image-two {
    display: none;
  }
  .hero-container .search-form {
    width: 100%;
    min-height: unset;
    padding: 0.5em 0;
  }
  .hero-container .search-form .date {
    width: 46%;
  }
  .hero-container .search-form .nights {
    display: none;
  }
  .hero-container .image {
    display: none;
  }

  .top-cities-container {
    text-align: center;
  }
  .top-cities-container .destination-card {
    width: 46%;
  }

  .visa > div:nth-child(2n) {
    display: none;
  }
}
@media (max-width: 500px) {
  .hero-container .montage {
    height: 200px;
  }

  .top-cities-container {
    text-align: center;
  }
  .top-cities-container .destination-card {
    display: block;
    width: unset;
    margin-right: 0;
  }
  .top-cities-container .destination-card .image {
    height: 190px;
  }
}
@media (max-width: 380px) {
  .hero-container .search-form .date {
    width: 100%;
  }
}