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

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

/*
*----------------------------------------
* Index view
*----------------------------------------
*/
h2 {
  font-family: "Open Sans", sans-serif;
  color: #FFF;
}

.header {
  display: flex;
  justify-content: space-between;
  height: 100px;
  background-color: #17104E;
}
.header .left {
  width: 150px;
  height: 100%;
  background-image: url(/assets/images/logo.png);
  background-position: 10px 50%;
  background-repeat: no-repeat;
}
.header .right {
  padding: 5px 10px;
}
.header .right .phone {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-bottom: 10px;
}
.header .right .phone .message {
  margin-bottom: 5px;
  padding-left: 35px;
  text-transform: uppercase;
  color: #FFFFFF;
  background-image: url("/assets/images/phone.png");
  background-position: 10px 50%;
  background-repeat: no-repeat;
}
.header .right .phone .numbers {
  padding-left: 10px;
  color: #FFFFFF;
}

.container {
  display: flex;
  height: 550px;
  align-items: center;
  justify-content: center;
  background-image: url(/assets/images/bg/index.jpg);
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.container #search-bar-container {
  position: relative;
  top: -60px;
  padding: 40px 60px;
  background-color: rgba(208, 208, 208, 0.64);
}

.footer {
  position: relative;
  height: 100px;
  line-height: 100px;
  background-color: #17104E;
  text-align: center;
  color: #FFF;
  font-size: initial;
}
.footer h2 {
  font-size: 1.6em;
}

.top-destinations {
  padding-top: 0.25em;
  text-align: center;
  background-color: #D9D9D9;
}
.top-destinations .destinations-container .destination-container {
  display: inline-block;
  width: 33%;
  padding: 1em;
  box-sizing: border-box;
}
.top-destinations .destinations-container .destination-container .destination-card {
  display: block;
  border: solid 1px #000;
}
.top-destinations .destinations-container .destination-container .destination-card .image {
  height: 235px;
  background-size: cover;
  background-position: 50%;
}
.top-destinations .destinations-container .destination-container .destination-card .details {
  padding: 0.25em 0;
  background-color: #17104E;
  color: #FFF;
}
.top-destinations .destinations-container .destination-container .destination-card .details .destination {
  display: inline-block;
  width: 50%;
  text-align: left;
}
.top-destinations .destinations-container .destination-container .destination-card .details .destination:hover {
  text-decoration: underline;
}
.top-destinations .destinations-container .destination-container .destination-card .details .hotel-count {
  display: inline-block;
  width: 50%;
  text-align: right;
}
.top-destinations .destinations-container .destination-container .destination-card .details .hotel-count:hover {
  text-decoration: underline;
}
.top-destinations .destinations-container .destination-container .destination-card .details .spacer {
  display: inline-block;
  width: 1em;
}

@media (max-width: 800px) {
  .container {
    height: 400px;
  }
  .container #search-form {
    top: 80px;
  }
  .container #search-form .destination {
    display: block;
    width: unset;
  }
  .container #search-form .check-in,
.container #search-form .check-out {
    width: 47%;
  }
  .container #search-form .destination {
    margin-left: 0;
    margin-right: 0;
  }
  .container #search-form .check-in {
    margin-left: 0;
  }
  .container #search-form .check-out {
    margin-right: 0;
  }

  .top-destinations .destinations-container .destination-container {
    width: 50%;
  }
}
@media (max-width: 550px) {
  .container {
    height: 380px;
  }

  .top-destinations .destinations-container .destination-container {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .social {
    top: 20px;
    text-align: end;
  }
  .social .fb-like-break {
    display: block;
    line-height: 0;
    margin: 5px 0;
  }

  .container {
    height: 445px;
  }
  .container #search-form {
    display: block;
  }
  .container #search-form .services .service-container {
    width: 115px;
  }
  .container #search-form .destination,
.container #search-form .check-in,
.container #search-form .check-out {
    display: block;
    width: unset;
    margin-left: 0;
    margin-right: 0;
  }
  .container #search-form .button {
    display: block;
  }
}
@media (max-width: 400px) {
  .header .weather {
    display: none;
  }
}