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

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

.star-rating-icon {
  display: inline-block;
  width: 92px;
  height: 16px;
  background-image: url(/assets/images/rating/star.png);
  background-repeat: no-repeat;
}
.star-rating-icon.star-rating-50 {
  background-position: 0px 0px;
}
.star-rating-icon.star-rating-45 {
  background-position: 0px -26px;
  width: 84px;
}
.star-rating-icon.star-rating-40 {
  background-position: 0px -52px;
  width: 73px;
}
.star-rating-icon.star-rating-35 {
  background-position: 0px -78px;
  width: 65px;
}
.star-rating-icon.star-rating-30 {
  background-position: 0px -104px;
  width: 54px;
}
.star-rating-icon.star-rating-25 {
  background-position: 0px -130px;
  width: 46px;
}
.star-rating-icon.star-rating-20 {
  background-position: 0px -156px;
  width: 35px;
}
.star-rating-icon.star-rating-15 {
  background-position: 0px -182px;
  width: 28px;
}
.star-rating-icon.star-rating-10 {
  background-position: 0px -208px;
  width: 16px;
}
.star-rating-icon.star-rating-05 {
  background-position: 0px -234px;
  width: 9px;
}
.star-rating-icon.star-rating-00 {
  background-position: 0px -260px;
  width: 0;
}

/*
 *----------------------------------------
 * Filters
 *----------------------------------------
*/
.filters {
  margin-top: 1em;
  padding: 1em 2em;
  background-color: #F1F1E2;
}
.filters .filter {
  position: relative;
  padding-bottom: 3em;
  border-bottom: solid 1px #CBC6C0;
}
.filters .filter:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.filters .filter h2 {
  font-size: 1.5em;
  color: #385DA6;
  background-position: 100% 50%;
  background-repeat: no-repeat;
}
.filters .filter.name h2 {
  background-image: url(/assets/images/icons/filter-name.png);
}
.filters .filter.rate h2 {
  background-image: url(/assets/images/icons/filter-price.png);
}
.filters .filter.star h2 {
  background-image: url(/assets/images/icons/filter-rating.png);
}
.filters .filter.tripadvisor h2 {
  background-image: url(/assets/images/icons/filter-ta-rating.png);
}
.filters .filter .range {
  color: #8E8B87;
}
.filters .filter .range .limit,
.filters .filter .range span {
  font-weight: bold;
}
.filters .ui-slider {
  margin: 2em 1em 0 1em;
  background-image: none;
  background-color: #FFF;
  border: 1px solid #CBC6C0;
  box-shadow: inset 0px 2px 7px 0px #CBCBCB;
}
.filters .ui-slider-range {
  background-image: none;
  background-color: #385DA6;
}
.filters .ui-slider-handle {
  text-align: center;
  background-image: none;
  background-color: #8EB724;
  border: solid 1px #717170;
}
.filters .ui-slider-handle:focus,
.filters .ui-slider-handle:active {
  border: solid 1px #717170;
  outline: 0;
}
.filters .handle {
  position: relative;
  top: 1.5em;
  color: #8E8B87;
}
.filters .ui-state-hover {
  background-color: #A7D72D;
}
.filters .name input {
  width: 75%;
  margin-right: 1em;
  padding: 0.25em;
  border: solid 1px #666;
}
.filters .name .button.go {
  padding: 0.25em;
  font-size: 0.85em;
}
.filters .price .range {
  text-align: center;
}
.filters .area .hidden-areas.hide {
  display: none;
}
.filters .area .area-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 10px 0;
  line-height: 16px;
  font-size: 0.95em;
}
.filters .area .area-item input {
  margin-right: 10px;
}
.filters .area .area-item .area {
  display: inline-block;
  width: 100%;
}
.filters .area .area-item .hotel-count {
  margin-left: 0.5em;
  font-size: 0.95em;
  color: #444;
}
.filters .area .show-all {
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.filters .area .show-all.hiden {
  display: none;
}
.filters .area .show-all .icon {
  display: inline-block;
  width: 8px;
  height: 10px;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-position: right;
}
.filters .area .show-all .icon.down {
  background-image: url(/assets/images/icons/arrow-down.png);
}
.filters .area .show-all .icon.up {
  background-image: url(/assets/images/icons/arrow-up.png);
}
.filters .type {
  border-bottom: 0;
}
.filters .button-container {
  margin: 1em 0;
  padding-bottom: 1em;
  text-align: center;
  border-bottom: solid 1px #CBC6C0;
}
.filters.mobile {
  display: none;
}
.filters.mobile .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url("data:image/png;base64,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");
  background-repeat: no-repeat;
}
.filters.mobile.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 16em;
  max-height: 90vh;
  margin: 0;
  padding-top: 35px;
  z-index: 20;
  overflow: scroll;
}
.filters.mobile .amenity-item {
  line-height: 2em;
}
.filters.mobile .amenity-item input[type=checkbox] {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
.filters.mobile .amenity-item span {
  display: inline-block;
  vertical-align: middle;
}

/*
 *----------------------------------------
 * 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);
  }
}
/*
 *----------------------------------------
 * Map modal
 *----------------------------------------
*/
.modal.map {
  z-index: 100 !important;
}
.modal.map .map-container {
  height: 500px;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -ms-border-radius: 0.5em;
  -o-border-radius: 0.5em;
  border-radius: 0.5em;
}
.modal.map.destination {
  height: 550px;
}
.modal.map.destination .map-container {
  height: 370px;
}
.modal.map.destination .hotel-list-headers {
  padding: 0.5em 0;
  font-weight: bold;
  background-color: #BEBEBE;
}
.modal.map.destination .hotel-list-headers span {
  display: inline-block;
  width: 10em;
  text-align: center;
}
.modal.map.destination .hotel-list-headers span.name {
  width: 20em;
  padding: 0 0.5em;
}
.modal.map.destination .hotel-list-headers span.star-rating {
  width: 8em;
}
.modal.map.destination .hotel-list-headers span.ta-rating {
  width: 9em;
}
.modal.map.destination .hotel-list-headers span.rate {
  width: 6em;
}
.modal.map.destination .hotel-list {
  position: relative;
  height: 135px;
  overflow-y: scroll;
}
.modal.map.destination .hotel-list .hotel-line {
  padding: 0.25em 0;
}
.modal.map.destination .hotel-list .hotel-line:nth-of-type(even) {
  background-color: #E2E2E2;
}
.modal.map.destination .hotel-list .hotel-line.active {
  background-color: #EBD2CF;
}
.modal.map.destination .hotel-list .hotel-line > span {
  display: inline-block;
  width: 10em;
}
.modal.map.destination .hotel-list .hotel-line > span.name {
  width: 20em;
  padding: 0 0.5em;
}
.modal.map.destination .hotel-list .hotel-line > span.star-rating {
  width: 8em;
  text-align: center;
}
.modal.map.destination .hotel-list .hotel-line > span.ta-rating {
  width: 9em;
  text-align: center;
}
.modal.map.destination .hotel-list .hotel-line > span.rate {
  width: 6em;
  text-align: center;
}
.modal.map.destination .hotel-list .hotel-line .button.check-rates {
  font-size: 0.8em;
}

.info-window {
  height: 80px;
  padding-left: 90px;
  background-size: 80px 80px;
  background-repeat: no-repeat;
}
.info-window .name {
  margin-bottom: 0.5em;
  font-weight: bold;
}
.info-window .rate-from {
  margin-top: 0.5em;
}
.info-window .more-info {
  margin-left: 0.5em;
  font-size: 0.8em;
  font-style: italic;
}

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

/*
 *----------------------------------------
 * Mail a friend
 *----------------------------------------
*/
.mail-a-friend.modal {
  width: initial;
}
.mail-a-friend .heading {
  margin-bottom: 1em;
  background-color: #021526;
  color: #F2F2E3;
  text-align: center;
  font-size: 2em;
}
.mail-a-friend .heading-2,
.mail-a-friend .email-usage {
  margin-bottom: 1em;
}
.mail-a-friend .row {
  margin-bottom: 1em;
}
.mail-a-friend label {
  display: inline-block;
  width: 25%;
}
.mail-a-friend input,
.mail-a-friend select,
.mail-a-friend textarea {
  padding: 0.5em;
  border: solid 0.0714285714em #CDC7C1;
}
.mail-a-friend .row.submit {
  text-align: center;
}

/*
 *----------------------------------------
 * City view
 *----------------------------------------
*/
header {
  min-height: 100px;
}
header .inner {
  display: flex;
  justify-content: space-between;
}
header .inner .left {
  width: 150px;
  height: 57px;
  background-image: url(/assets/images/logo.png);
  background-position: 10px 50%;
  background-repeat: no-repeat;
}
header .inner .center {
  color: #FFF;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 0px 2px 5px #000;
}
header .inner .center .theme {
  color: #ffef00;
  font-size: 1.3em;
  line-height: 1.3em;
}
header .inner .center .theme span {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 0.25em;
  vertical-align: bottom;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 60px;
}
header .inner .right {
  padding: 5px 10px;
}
header .inner .right .phone {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-bottom: 10px;
}
header .inner .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 .inner .right .phone .numbers {
  padding-left: 10px;
  color: #FFFFFF;
}
header .inner .right .weather {
  margin: 0;
  float: none;
  text-align: right;
}

.breadcrumbs-and-services {
  display: flex;
  justify-content: space-between;
}
.breadcrumbs-and-services .breadcrumbs {
  margin: 1em 0 1em 2em;
  color: #666;
  font-size: 0.85em;
}
.breadcrumbs-and-services .breadcrumbs .breadcrumb {
  display: inline-block;
  color: #666;
  text-decoration: underline;
}
.breadcrumbs-and-services .breadcrumbs .breadcrumb.no-url {
  text-decoration: unset;
}
.breadcrumbs-and-services .breadcrumbs .separator {
  margin: 0 0.25em;
}
.breadcrumbs-and-services .breadcrumbs .separator:last-of-type {
  display: none;
}
.breadcrumbs-and-services .services {
  display: flex;
  align-items: center;
}
.breadcrumbs-and-services .services .service-container {
  display: inline-block;
  margin: 0 2px;
  padding: 5px 0px;
  text-align: center;
  border: solid 2px rgba(255, 255, 255, 0);
}
.breadcrumbs-and-services .services .service-container:hover {
  background-color: #F2F2F2;
  cursor: pointer;
  border: solid 2px #FFF;
}
.breadcrumbs-and-services .services .service-container.active {
  border: solid 2px #E7E7E7;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: default;
}
.breadcrumbs-and-services .services .service-container .service {
  padding-left: 25px;
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 15px;
}
.breadcrumbs-and-services .services .service-container .service.hotels {
  background-image: url(/assets/images/icons/hotel.png);
}
.breadcrumbs-and-services .services .service-container .service.flights {
  background-image: url(/assets/images/icons/flights.png);
}
.breadcrumbs-and-services .services .service-container .service.rental-cars {
  background-image: url(/assets/images/icons/rental-cars.png);
}
.breadcrumbs-and-services .services .service-container .service.packages {
  background-image: url(/assets/images/icons/packages.png);
}
@media (max-width: 800px) {
  .breadcrumbs-and-services .services {
    display: none;
  }
}

.col-table {
  display: table;
  width: 100%;
}

.col-container {
  display: table-row;
}
.col-container .left-col,
.col-container .right-col {
  display: table-cell;
  vertical-align: top;
}
.col-container .left-col {
  width: 300px;
}
.col-container .left-col .map-container {
  position: relative;
  padding-bottom: 1em;
  cursor: pointer;
  background-image: url(/assets/images/map_trigger_icon.png);
  background-repeat: no-repeat;
  background-position: 80% 91%;
  background-size: 17%;
  border: solid 1px #CBC6C0;
}
.col-container .left-col .map-container .mag-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/assets/images/mag.png);
  background-repeat: no-repeat;
  background-position: 93% 91%;
  background-size: 25%;
}
.col-container .left-col .map-container .map-trigger {
  margin-top: 5px;
  padding-left: 20px;
  color: #00355f;
  font-size: 1.1em;
  font-weight: bold;
}
.col-container .left-col .map-container.hide {
  background-image: unset;
  padding-bottom: 0;
}
.col-container .left-col .map-container.hide .mag-overlay,
.col-container .left-col .map-container.hide .map-trigger {
  display: none;
}
.col-container .left-col .filters {
  padding: 0.5em 1em;
}
.col-container .left-col .filters .filter {
  margin-top: 1em;
}
.col-container .left-col .filters .filter.amenity {
  padding-bottom: 1em;
}
.col-container .left-col .filters .filter.amenity a {
  text-decoration: underline;
}
.col-container .left-col .filters .blurb {
  margin-top: 1em;
  text-align: justify;
}
.col-container .left-col .filters .blurb h2 {
  font-size: 1.5em;
  color: #006400;
}
.col-container .right-col {
  padding: 0 1em 1em 1em;
}
.col-container .right-col .hero {
  position: relative;
  height: 28em;
}
.col-container .right-col .hero .image {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 358px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.col-container .right-col .sort-and-social {
  display: flex;
  justify-content: space-between;
  margin: 0.5em 0;
  line-height: 1em;
}
.col-container .right-col .sort-and-social .sort {
  display: inline-block;
}
.col-container .right-col .sort-and-social .button.show-filters {
  display: none;
  padding: 0.25em 1em;
  font-size: 0.8em;
}
.col-container .right-col .hotel-container {
  margin-top: 2em;
}
.col-container .right-col .hotel-container .no-availability {
  color: red;
  font-weight: bold;
}
.col-container .right-col .filter-details {
  text-transform: initial;
}
.col-container .right-col .filter-details .clear-filter,
.col-container .right-col .filter-details .clear-theme-filter {
  display: inline-block;
  padding: 0.5em 1em;
  border: solid 1px #C8CDC9;
  background-color: #E4E4E4;
  font-size: 0.9em;
  cursor: pointer;
}
.col-container .right-col .filter-details .clear-filter:hover,
.col-container .right-col .filter-details .clear-theme-filter:hover {
  background-color: #CFCDCD;
}
.col-container .right-col .filter-details .clear-filter .value,
.col-container .right-col .filter-details .clear-theme-filter .value {
  font-weight: bold;
}
.col-container .right-col .filter-details .clear-filter .remove,
.col-container .right-col .filter-details .clear-theme-filter .remove {
  color: #FF0000;
  font-weight: bold;
}
.col-container .right-col .filter-details .clear-filter.disable,
.col-container .right-col .filter-details .clear-theme-filter.disable {
  color: #797979;
}
.col-container .right-col .filter-details .clear-filter.disable .remove,
.col-container .right-col .filter-details .clear-theme-filter.disable .remove {
  color: #fd9292;
}
.col-container .right-col .filter-details .clear-theme-filter {
  background-color: #ffef00;
}
.col-container .right-col .filter-details-message {
  margin-top: 1em;
  padding-left: 1em;
  color: darkblue;
  font-size: 0.85em;
  background-image: url(/assets/images/icons/exclaim.png);
  background-repeat: no-repeat;
  background-size: 5px;
}
.col-container .right-col .social-and-sort {
  position: relative;
  margin: 1em 0;
  height: 30px;
}
.col-container .right-col .social-and-sort .sort {
  position: absolute;
  right: 0;
}
.col-container .right-col .summary {
  display: none;
  margin-bottom: 1em;
  text-align: center;
  text-transform: lowercase;
  font-style: italic;
  color: #00355f;
  font-weight: bold;
}
.col-container .right-col .summary .city {
  text-transform: capitalize;
}
.col-container .right-col .summary .button.show-map {
  display: none;
}
.col-container .right-col .hotel {
  margin-bottom: 1.667em;
  padding: 1em;
  background-color: #FFF;
  border: solid 1px #EAEAEA;
  -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);
}
.col-container .right-col .hotel:last-child {
  margin-bottom: inherit;
}
.col-container .right-col .hotel .hotel-summary {
  display: flex;
}
.col-container .right-col .hotel .hotel-summary .details {
  flex-basis: 45%;
}
.col-container .right-col .hotel .hotel-summary .image {
  width: 200px;
  height: 150px;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  margin-right: 1em;
}
.col-container .right-col .hotel .hotel-summary img {
  display: block;
  width: 140px;
  height: 140px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.27);
  padding: 5px;
}
.col-container .right-col .hotel .hotel-summary h4 {
  display: inline-block;
  font-size: 1.3em;
  text-decoration: underline;
}
.col-container .right-col .hotel .hotel-summary .address {
  margin-top: 0.5em;
  font-size: 0.9em;
}
.col-container .right-col .hotel .hotel-summary .address .bold {
  font-weight: bold;
}
.col-container .right-col .hotel .hotel-summary .address .country {
  padding-right: 25px;
  background-position: right;
  background-size: 20px;
  background-repeat: no-repeat;
}
.col-container .right-col .hotel .hotel-summary .distance {
  margin-top: 0.25em;
  font-size: 0.9em;
  color: #FF9D00;
  font-style: italic;
}
.col-container .right-col .hotel .hotel-summary .distance .warning {
  color: #F00;
  font-style: initial;
  font-size: 1.5em;
}
.col-container .right-col .hotel .hotel-summary .star-rating-icon {
  margin-left: 0.5em;
}
.col-container .right-col .hotel .hotel-summary .location,
.col-container .right-col .hotel .hotel-summary .review,
.col-container .right-col .hotel .hotel-summary .more-info-link {
  margin-top: 0.5em;
}
.col-container .right-col .hotel .hotel-summary .review {
  display: none;
}
.col-container .right-col .hotel .hotel-summary .review .icon {
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url(/assets/images/icons/reviews.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
}
.col-container .right-col .hotel .hotel-summary .review .rating {
  margin-left: 0.5em;
}
.col-container .right-col .hotel .hotel-summary .review .count {
  display: none;
  margin-left: 0.5em;
}
.col-container .right-col .hotel .hotel-summary .map-marker {
  display: inline-block;
  height: 14px;
  width: 14px;
  background-image: url(/assets/images/icons/map-marker.png);
  background-size: 10px;
  background-repeat: no-repeat;
}
.col-container .right-col .hotel .hotel-summary .map-link {
  margin-left: 0.5em;
  font-size: 0.8em;
  color: #385DA6;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.col-container .right-col .hotel .hotel-summary .link {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 0.5em;
  margin-bottom: -0.5em;
  background-image: url(/assets/images/icons/link.png);
  background-size: 11px;
  background-repeat: no-repeat;
}
.col-container .right-col .hotel .hotel-summary .distance-to-location {
  text-transform: lowercase;
}
.col-container .right-col .hotel .hotel-summary .more-info-link {
  padding-left: 16px;
  color: #385DA6;
  background-image: url(/assets/images/icons/arrow-right.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  text-decoration: underline;
  cursor: pointer;
}
.col-container .right-col .hotel .hotel-summary .more-info-link.active {
  background-image: url(/assets/images/icons/arrow-down.png);
}
.col-container .right-col .hotel .hotel-summary .rates-from {
  text-transform: uppercase;
  color: #8E8B87;
  font-size: 0.8em;
}
.col-container .right-col .hotel .hotel-summary .currency-code {
  font-size: 0.7em;
  color: #212265;
}
.col-container .right-col .hotel .hotel-summary .rate {
  margin-left: 0.1em;
  text-align: center;
}
.col-container .right-col .hotel .hotel-summary .rate .from-rate {
  font-size: 2em;
  color: #212265;
}
.col-container .right-col .hotel .hotel-summary .rate.zero {
  margin-top: 5em;
}
.col-container .right-col .hotel .hotel-summary .check-rates {
  margin-top: 1em;
  font-size: 0.8em;
}
.col-container .right-col .hotel .info-container {
  max-width: 22em;
}
.col-container .right-col .hotel .more-info {
  display: none;
  margin-top: 1em;
}
.col-container .right-col .hotel .more-info h2 {
  margin-top: 2em;
  font-weight: bold;
  color: #000;
}
.col-container .right-col .hotel .more-info ul {
  display: inline-block;
  vertical-align: top;
  font-size: 0.85em;
}
.col-container .right-col .hotel .more-info .long-description {
  color: #385DA6;
  font-style: italic;
  text-decoration: underline;
}

.modal-map-container {
  height: 75vh;
  padding: 0px;
}
.modal-map-container #main-map {
  height: 100%;
}

.marker-infowindow {
  max-width: 200px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding-left: 110px;
  background-size: 100px;
}
.marker-infowindow a {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.marker-infowindow .address {
  margin: 2px 0 5px 0;
  font-size: 0.8em;
}
.marker-infowindow .rate {
  color: #385DA6;
  text-decoration: underline;
  font-weight: normal;
}

.infowindow .name {
  font-size: 16px;
  font-weight: bold !important;
}
.infowindow .address {
  margin-top: 0.25em;
  font-size: 0.8em;
}

.loading-more-container {
  margin: 2em auto;
  text-align: center;
}
.loading-more-container .loading-more {
  position: relative;
  padding: 0 35px;
  text-align: center;
}
.loading-more-container .loading-more .loader {
  top: 0;
}

@media (max-width: 930px) {
  .col-container .right-col .hotel .hotel-summary {
    flex-direction: column;
  }
  .col-container .right-col .hotel .hotel-summary .image {
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  header {
    min-height: unset;
  }
  header .inner {
    height: unset;
    flex-direction: column;
    align-items: center;
  }
  header .inner .left {
    display: none;
  }
  header .inner .center {
    text-align: center;
  }
  header .inner .right .phone {
    align-items: center;
  }
  header .inner .right .weather {
    text-align: center;
  }

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

  .col-container .left-col {
    display: none;
  }
  .col-container .right-col .sort-and-social .sort .button.show-filters {
    padding: 0.5em 1em 0.5em 1.5em;
    display: inline-block;
    background-image: url(/assets/images/icons/filter.png);
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 15px;
    background-color: #800080;
  }
  .col-container .right-col .summary .button.show-map {
    display: inline-block;
    margin: 1em;
    padding: 0.5em 3em 0.5em 0.5em;
    background-color: unset;
    font-weight: bold;
    font-size: 0.8em;
    font-style: normal;
    color: #00355F;
    text-shadow: unset;
    border: solid 1px #CACACA;
    background-image: url(/assets/images/map_trigger_icon.png);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 30px;
  }
  .col-container .right-col .hotel .hotel-summary {
    flex-direction: row;
  }
  .col-container .right-col .hotel .hotel-summary .image {
    margin-right: 1em;
  }

  .modal-map-container {
    height: 90vh;
  }

  .blocker {
    padding: 0;
  }

  .marker-infowindow {
    padding-left: unset;
    background-image: unset !important;
  }
}
@media (max-width: 600px) {
  .col-container .right-col {
    padding: 0;
  }
  .col-container .right-col .hero {
    height: unset;
  }
  .col-container .right-col .hero .image {
    display: none;
  }
  .col-container .right-col .sort-and-social {
    margin: 1em 0;
    line-height: unset;
  }
  .col-container .right-col .sort-and-social .social {
    display: block;
  }
  .col-container .right-col .sort-and-social .sort {
    display: block;
    float: unset;
    margin-top: 2em;
  }
  .col-container .right-col .sort-and-social .sort .button.show-filters {
    float: right;
  }
  .col-container .right-col .hotel .hotel-summary {
    flex-direction: column;
  }
  .col-container .right-col .hotel .hotel-summary .image {
    margin: 0 auto;
  }

  .search-form {
    position: unset;
    width: 100%;
    min-height: unset;
    padding: 0.5em 0;
  }
  .search-form .date {
    width: 46%;
  }
  .search-form .nights {
    display: none;
  }
}
@media (max-width: 500px) {
  .col-container .right-col .hotel .hotel-summary {
    flex-direction: column;
  }
}
@media (max-width: 380px) {
  .col-container .right-col .search-form .date {
    width: 100%;
  }
}
@media (max-width: 300px) {
  .filters.mobile.active {
    right: 0;
  }
}