/**
 * 1. http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

body,
ul,
ol {
  margin: 0;
  padding: 0; }

ul {
  list-style: none; }

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

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  vertical-align: top; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  /*-webkit-appearance: none;*/ }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.link-bg, .radio-buttonsSpecials .ui-state-active,
.radio-buttonsSpecials .ui-state-focus {
  background-color: #db0148; }
  .link-bg:hover, .radio-buttonsSpecials .ui-state-active:hover,
  .radio-buttonsSpecials .ui-state-focus:hover, .link-bg:focus, .radio-buttonsSpecials .ui-state-active:focus,
  .radio-buttonsSpecials .ui-state-focus:focus {
    background-color: #db0148; }

.ui-selectmenu {
  display: block;
  position: relative;
  height: 2em;
  text-decoration: none;
  overflow: hidden; }

.ui-selectmenu-icon {
  position: absolute;
  right: 0px;
  top: 50%; }

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 300px;
  z-index: 10; }

.ui-selectmenu-open {
  visibility: visible; }

.ui-selectmenu-menu-popup {
  margin-top: -1px; }

.ui-selectmenu-menu li {
  padding: 5px 10px;
  margin: 0;
  display: block;
  border-top: 1px dotted transparent;
  border-top: 1px dotted #cacaca;
  border-right-width: 0 !important;
  border-left-width: 0 !important;
  font-weight: normal !important;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  line-height: 24px; }

.ui-selectmenu-menu li a, .ui-selectmenu-status {
  line-height: 1.4em;
  display: block;
  padding: .3em 1em;
  outline: none;
  text-decoration: none; }

.ui-selectmenu-menu li.ui-selectmenu-hasIcon a,
.ui-selectmenu-hasIcon .ui-selectmenu-status {
  padding-left: 20px;
  position: relative;
  margin-left: 5px; }

.ui-selectmenu-menu li .ui-icon, .ui-selectmenu-status .ui-icon {
  position: absolute;
  left: 10px;
  top: 3px; }

.ui-selectmenu-status {
  line-height: 1.4em; }

.ui-selectmenu-menu li span, .ui-selectmenu-status span {
  display: block;
  margin-bottom: .2em; }

.ui-selectmenu-menu li .ui-selectmenu-item-header {
  font-weight: bold; }

.ui-selectmenu-menu li .ui-selectmenu-item-footer {
  opacity: .8; }

.ui-selectmenu-menu li:hover, .ui-selectmenu-menu li:focus {
  color: #db0148; }

/*for optgroups*/
.ui-selectmenu-menu .ui-selectmenu-group .ui-selectmenu-group-label {
  line-height: 1.4em;
  display: block;
  padding: .6em .5em 0;
  font-weight: bold; }

.ui-selectmenu-menu .ui-selectmenu-group ul {
  margin: 0;
  padding: 0; }

/* Datepicker
----------------------------------*/
.ui-datepicker {
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px;
  z-index: 40 !important;
  padding: 0;
  background: white; }

.ui-datepicker-header {
  border: none; }

.tooltip {
  display: none !important; }

.ui-datepicker-title {
  border-bottom: 1px solid #d7d8d8;
  color: #515d65;
  /* text color */
  font-weight: normal;
  font-size: 0.875em;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  height: 44px;
  line-height: 44px;
  vertical-align: middle; }

.ui-datepicker-header a {
  display: inline-block;
  text-indent: -999em;
  width: 25px;
  height: 40px;
  position: absolute;
  top: 1px;
  z-index: 1;
  cursor: pointer;
  overflow: hidden; }

.ui-datepicker-next {
  background: rgba(0, 0, 0, 0) url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIzMnB4IiBoZWlnaHQ9IjMycHgiIHZpZXdCb3g9Ii04MyAyNSAzMiAzMiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtODMgMjUgMzIgMzIiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBvbHlnb24gZmlsbD0iIzM4M0EzRCIgcG9pbnRzPSItNzAuNCwzMy42IC02Mi45LDQxIC03MC40LDQ4LjQgLTcxLjEsNDcuNyAtNjQuMyw0MSAtNzEuMSwzNC4zIAkiLz4NCjwvZz4NCjwvc3ZnPg0K") no-repeat scroll 0 6px;
  right: 10px; }
  .ui-datepicker-next.ui-state-disabled {
    opacity: 0.4;
    cursor: default; }

.ui-datepicker-prev {
  background: rgba(0, 0, 0, 0) url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIzMnB4IiBoZWlnaHQ9IjMycHgiIHZpZXdCb3g9Ii04MyAyNSAzMiAzMiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtODMgMjUgMzIgMzIiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPHBvbHlnb24gZmlsbD0iIzM4M0EzRCIgcG9pbnRzPSItNjMuNiw0OC40IC03MS4xLDQxIC02My42LDMzLjYgLTYyLjksMzQuMyAtNjkuNyw0MSAtNjIuOSw0Ny43IAkiLz4NCjwvZz4NCjwvc3ZnPg0K") no-repeat scroll 0 6px;
  left: 0px; }
  .ui-datepicker-prev.ui-state-disabled {
    opacity: 0.4;
    cursor: default; }

.ui-datepicker-prev.ui-state-disabled {
  opacity: 0.4;
  cursor: default; }

.ui-datepicker .ui-state-disabled span {
  color: #cacaca; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  border-color: transparent; }

.ui-state-default {
  background: transparent;
  border: none;
  text-align: center; }

td.ui-state-disabled {
  background-color: rgba(240, 240, 240, 0.2);
  color: #646464; }

.ui-datepicker table {
  margin: 0; }

.ui-datepicker th {
  color: #646464;
  background-color: rgba(202, 202, 202, 0.5);
  /* layer fill content */
  border-bottom: 1px solid #d7d8d8;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 0.875em;
  font-weight: 400; }

.ui-datepicker td {
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  height: 44px;
  line-height: 44px;
  position: relative; }

.ui-datepicker td:last-child {
  border-right: none; }

.ui-datepicker td span,
.ui-datepicker td a {
  background: white;
  padding: 0 10px;
  color: black;
  font-size: 0.875em;
  display: block;
  font-weight: normal;
  height: 44px;
  line-height: 44px;
  text-decoration: none; }
  @media only screen and (min-width: 480px) {
    .ui-datepicker td span,
    .ui-datepicker td a {
      padding: 0 15px; } }

.ui-datepicker td a.ui-state-active, .ui-datepicker td a:hover {
  background-color: #db0148;
  color: white; }

#ui-datepicker-div {
  width: auto !important; }

/* Specific select menu styles  */
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
  /* removes extra width in IE */ }

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none; }

/* Radio buttons */
.radio-buttons label,
.radio-buttons span {
  border-radius: 50em;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }

.radio-buttons label {
  border: 1px solid #d7d8d8;
  background: white;
  height: 26px;
  line-height: 11px;
  vertical-align: middle;
  width: 26px; }

.radio-buttons span {
  width: 12px;
  height: 12px;
  text-indent: -9999em;
  display: inline-block; }

.radio-buttons .ui-state-active span {
  background: #383a3d;
  position: relative;
  top: 6px; }

.radio-buttons .ui-state-hover,
.radio-buttons .ui-state-active {
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px inset; }

.ui-state-active .ui-button-text {
  box-shadow: rgba(255, 255, 255, 0.5) 0 1px 1px inset; }

/* Radio button specials */
.radio-buttons.radio-buttonsSpecials {
  position: relative;
  text-align: right; }
  .radio-buttons.radio-buttonsSpecials .ui-checkboxradio-icon-space,
  .radio-buttons.radio-buttonsSpecials .ui-checkboxradio-icon {
    display: none; }

.radio-buttonsSpecials .ui-checkboxradio-radio-label,
.radio-buttonsSpecials label {
  border-radius: 5px;
  color: #646464;
  height: 36px;
  line-height: 36px;
  padding: 0 25px 0 40px;
  width: auto;
  border-color: #646464;
  box-shadow: rgba(100, 100, 100, 0.2) 1px 1px 0; }

.radio-buttonsSpecials .ui-checkboxradio-radio-label:before,
.radio-buttonsSpecials .ui-state-default:before {
  border: 1px solid #646464;
  border-radius: 10em;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  content: " ";
  height: 20px;
  left: 12px;
  position: absolute;
  top: 6px;
  width: 20px; }

.radio-buttonsSpecials .ui-state-active,
.radio-buttonsSpecials .ui-state-focus {
  color: white;
  border: 1px solid rgba(100, 100, 100, 0.2);
  box-shadow: rgba(100, 100, 100, 0.2) -1px -1px 0; }

.radio-buttonsSpecials .ui-state-active:before {
  content: " ";
  border-color: white; }

.radio-buttonsSpecials .ui-state-focus:before {
  border: 1px solid white; }

.radio-buttonsSpecials .ui-state-active:after {
  content: "\e901";
  font-family: "Booking-glyphs";
  font-size: 26px;
  height: 20px;
  left: 12px;
  position: absolute;
  top: -5px;
  width: 20px; }

.radio-buttonsSpecials label span {
  display: block;
  height: 34px;
  line-height: 34px;
  vertical-align: middle;
  position: relative;
  text-align: center;
  text-indent: 0;
  width: 100%; }

.radio-buttonsSpecials .ui-state-active span {
  background: none;
  position: relative;
  top: initial;
  border-radius: 0;
  box-shadow: none;
  top: 0; }

/* checkbox buttons */
.checkbox-buttons label {
  border: 1px solid #d7d8d8;
  height: 26px;
  line-height: 11px;
  vertical-align: middle;
  width: 26px; }

.checkbox-buttons span {
  height: 16px;
  left: 4px;
  position: relative;
  width: 24px;
  text-indent: -9999em;
  display: inline-block;
  top: 4px; }

.checkbox-buttons .ui-state-active span {
  background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll -275px -235px transparent; }

.checkbox-buttons .ui-state-hover,
.checkbox-buttons .ui-state-active {
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px inset; }

/* Specific select menu styles  */
.ui-selectmenu-menu {
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  font-size: 0.8125em;
  padding: 0;
  display: none; }
  .ui-selectmenu-menu.ui-selectmenu-open {
    display: block; }

.ui-selectmenu-menu .ui-state-focus,
.ui-selectmenu-menu li:hover,
.ui-selectmenu-menu li:focus {
  color: #db0148; }

.ui-selectmenu-menu li:first-child {
  border: none; }

.ui-selectmenu-menu ul {
  margin: 0;
  padding: 0; }

.ui-selectmenu-button {
  transition: all .2s ease-in;
  cursor: pointer;
  background: white;
  display: inline-block;
  font-size: 14px;
  border: 1px solid #d7d8d8;
  color: #635f5b;
  padding: 0 10px;
  height: 44px;
  line-height: 44px;
  vertical-align: middle;
  text-align: left;
  overflow: hidden; }
  .ui-selectmenu-button.ui-state-disabled {
    border-color: transparent;
    cursor: default;
    padding: 0 10px 0 0; }
    .ui-selectmenu-button.ui-state-disabled .ui-icon {
      display: none; }

.error .ui-selectmenu-button {
  border-color: #ff0101;
  color: red; }

.ui-icon.ui-icon-triangle-1-s {
  display: inline-block;
  float: right;
  height: 9px;
  margin-left: 5px;
  position: relative;
  top: 17px;
  width: 13px; }
  .ui-icon.ui-icon-triangle-1-s:after {
    content: "\e60d";
    font-family: "Booking-glyphs";
    font-size: 34px;
    right: -10px;
    top: -16px;
    position: absolute; }

.ui-corner-top .ui-icon.ui-icon-triangle-1-s:after {
  content: "\e60c"; }

.ui-datepicker {
  display: none; }

/*Slider*/
.ui-slider {
  position: relative;
  text-align: left; }

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default; }

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0; }

.ui-slider-horizontal {
  height: .8em; }

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em; }

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%; }

.ui-slider-horizontal .ui-slider-range-min {
  left: 0; }

.ui-slider-horizontal .ui-slider-range-max {
  right: 0; }

.ui-slider-vertical {
  width: .8em;
  height: 100px; }

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em; }

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%; }

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0; }

.ui-slider-vertical .ui-slider-range-max {
  top: 0; }

/*Autosuggest*/
.ui-autocomplete {
  background-color: white;
  position: absolute !important;
  z-index: 1000;
  border-radius: 2px;
  border-top: 1px solid #d7d8d8;
  font-family: Arial,sans-serif;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  overflow: hidden; }
  .ui-autocomplete .ui-menu-item {
    border-top: 1px solid #d7d8d8;
    color: #383a3d;
    cursor: default;
    font-size: 13px;
    line-height: 30px;
    overflow: hidden;
    padding: 0 4px 0 20px;
    position: relative;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .ui-autocomplete .ui-menu-item:before {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjUwcHgiDQoJIGhlaWdodD0iNTJweCIgdmlld0JveD0iMCAwIDUwIDUyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MCA1MiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8ZyBpZD0iTGF5ZXJfMSI+DQoJPHBhdGggZmlsbD0iI0ZGNTY1RCIgZD0iTTguNCwyLjdDOCwyLjEsNy41LDEuNiw2LjksMS4yQzYuMSwwLjgsNSwwLjUsMy44LDAuN2MtMS40LDAuMi0yLjUsMS0zLjEsMkMwLjMsMy4zLDAuMSw0LDAsNQ0KCQljMCwwLjksMC4zLDEuNywwLjYsMi4zQzAuOSw3LjYsMSw3LjksMS4yLDguMmMwLjYsMC45LDEuMiwxLjgsMS43LDIuN2MwLjcsMS4zLDEuMywyLjYsMS42LDQuM2MwLjUtMi41LDEuNi00LjMsMi44LTYuMQ0KCQljMC40LTAuNiwwLjgtMS4yLDEuMS0xLjhjMC4yLTAuMywwLjMtMC42LDAuNS0xQzksNS45LDkuMSw1LjQsOS4xLDVDOSw0LDguOCwzLjMsOC40LDIuN3ogTTQuNSw2LjVDMy43LDYuNSwzLDUuOCwzLDUNCgkJczAuNy0xLjYsMS42LTEuNlM2LjEsNC4xLDYuMSw1UzUuNCw2LjUsNC41LDYuNXoiLz4NCgk8cGF0aCBmaWxsPSIjQjNCM0IzIiBkPSJNMjguNCwyLjdjLTAuNC0wLjYtMC45LTEuMS0xLjUtMS41Yy0wLjgtMC41LTEuOS0wLjgtMy0wLjZjLTEuNCwwLjItMi41LDEtMy4xLDJDMjAuNCwzLjMsMjAuMSw0LDIwLjEsNQ0KCQljMCwwLjksMC4zLDEuNywwLjYsMi4zYzAuMiwwLjMsMC4zLDAuNiwwLjUsMC45YzAuNiwwLjksMS4yLDEuOCwxLjcsMi43YzAuNywxLjMsMS4zLDIuNiwxLjYsNC4zYzAuNS0yLjUsMS42LTQuMywyLjgtNi4xDQoJCWMwLjQtMC42LDAuOC0xLjIsMS4xLTEuOGMwLjItMC4zLDAuMy0wLjYsMC41LTFjMC4xLTAuNCwwLjItMC44LDAuMi0xLjNDMjkuMSw0LDI4LjgsMy4zLDI4LjQsMi43eiBNMjQuNiw2LjUNCgkJQzIzLjcsNi41LDIzLDUuOCwyMyw1czAuNy0xLjYsMS42LTEuNnMxLjYsMC43LDEuNiwxLjZTMjUuNSw2LjUsMjQuNiw2LjV6Ii8+DQoJPHBhdGggZmlsbD0iI0ZGNTY1RCIgZD0iTTQuNSwxNi40Yy0yLjUsMC00LjUsMi00LjUsNC41czIsNC41LDQuNSw0LjVzNC41LTIsNC41LTQuNVM3LjEsMTYuNCw0LjUsMTYuNHogTTQuNSwyMi41DQoJCWMtMC45LDAtMS42LTAuNy0xLjYtMS42czAuNy0xLjYsMS42LTEuNmMwLjksMCwxLjYsMC43LDEuNiwxLjZTNS40LDIyLjUsNC41LDIyLjV6Ii8+DQoJPHBhdGggZmlsbD0iI0IzQjNCMyIgZD0iTTI0LjYsMTYuNGMtMi41LDAtNC41LDItNC41LDQuNXMyLDQuNSw0LjUsNC41czQuNS0yLDQuNS00LjVTMjcuMSwxNi40LDI0LjYsMTYuNHogTTI0LjYsMjIuNQ0KCQljLTAuOSwwLTEuNi0wLjctMS42LTEuNnMwLjctMS42LDEuNi0xLjZjMC45LDAsMS42LDAuNywxLjYsMS42UzI1LjUsMjIuNSwyNC42LDIyLjV6Ii8+DQoJPHBhdGggZmlsbD0iI0ZGNTY1RCIgZD0iTTgsMzIuOEg3LjV2LTJIOGMwLjUsMCwxLTAuNCwxLTFjMC0wLjUtMC40LTEtMS0xSDcuNXYtMC41YzAtMC41LTAuNC0xLTEtMWMtMC41LDAtMSwwLjQtMSwxdjAuNWgtMnYtMC41DQoJCWMwLTAuNS0wLjQtMS0xLTFjLTAuNSwwLTEsMC40LTEsMXYwLjVIMWMtMC41LDAtMSwwLjQtMSwxYzAsMC41LDAuNCwxLDEsMWgwLjV2MkgxYy0wLjUsMC0xLDAuNC0xLDFjMCwwLjUsMC40LDEsMSwxaDAuNXYwLjUNCgkJYzAsMC41LDAuNCwxLDEsMWMwLjUsMCwxLTAuNCwxLTF2LTAuNWgydjAuNWMwLDAuNSwwLjQsMSwxLDFjMC41LDAsMS0wLjQsMS0xdi0wLjVIOGMwLjUsMCwxLTAuNCwxLTFDOSwzMy4zLDguNiwzMi44LDgsMzIuOHoNCgkJIE0zLjUsMzIuOHYtMmgydjJIMy41eiIvPg0KCTxwYXRoIGZpbGw9IiNCM0IzQjMiIGQ9Ik0yOC4xLDMyLjhoLTAuNXYtMmgwLjVjMC41LDAsMS0wLjQsMS0xYzAtMC41LTAuNC0xLTEtMWgtMC41di0wLjVjMC0wLjUtMC40LTEtMS0xYy0wLjUsMC0xLDAuNC0xLDF2MC41DQoJCWgtMnYtMC41YzAtMC41LTAuNC0xLTEtMWMtMC41LDAtMSwwLjQtMSwxdjAuNWgtMC41Yy0wLjUsMC0xLDAuNC0xLDFjMCwwLjUsMC40LDEsMSwxaDAuNXYyaC0wLjVjLTAuNSwwLTEsMC40LTEsMQ0KCQljMCwwLjUsMC40LDEsMSwxaDAuNXYwLjVjMCwwLjUsMC40LDEsMSwxYzAuNSwwLDEtMC40LDEtMXYtMC41aDJ2MC41YzAsMC41LDAuNCwxLDEsMWMwLjUsMCwxLTAuNCwxLTF2LTAuNWgwLjVjMC41LDAsMS0wLjQsMS0xDQoJCUMyOS4xLDMzLjMsMjguNiwzMi44LDI4LjEsMzIuOHogTTIzLjYsMzIuOHYtMmgydjJIMjMuNnoiLz4NCgk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNDkuMywyLjdjLTAuNC0wLjYtMC45LTEuMS0xLjUtMS41Yy0wLjgtMC41LTEuOS0wLjgtMy0wLjZjLTEuNCwwLjItMi41LDEtMy4xLDJDNDEuMiwzLjMsNDEsNCw0MC45LDUNCgkJYzAsMC45LDAuMywxLjcsMC42LDIuM2MwLjIsMC4zLDAuMywwLjYsMC41LDAuOWMwLjYsMC45LDEuMiwxLjgsMS43LDIuN2MwLjcsMS4zLDEuMywyLjYsMS42LDQuM2MwLjUtMi41LDEuNi00LjMsMi44LTYuMQ0KCQljMC40LTAuNiwwLjgtMS4yLDEuMS0xLjhjMC4yLTAuMywwLjMtMC42LDAuNS0xQzQ5LjksNS45LDUwLDUuNCw1MCw1QzQ5LjksNCw0OS43LDMuMyw0OS4zLDIuN3ogTTQ1LjUsNi41Yy0wLjksMC0xLjYtMC43LTEuNi0xLjYNCgkJczAuNy0xLjYsMS42LTEuNlM0Nyw0LjEsNDcsNVM0Ni4zLDYuNSw0NS41LDYuNXoiLz4NCgk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNDUuNSwxNi40Yy0yLjUsMC00LjUsMi00LjUsNC41czIsNC41LDQuNSw0LjVzNC41LTIsNC41LTQuNVM0OCwxNi40LDQ1LjUsMTYuNHogTTQ1LjQsMjIuNQ0KCQljLTAuOSwwLTEuNi0wLjctMS42LTEuNnMwLjctMS42LDEuNi0xLjZjMC45LDAsMS42LDAuNywxLjYsMS42UzQ2LjMsMjIuNSw0NS40LDIyLjV6Ii8+DQoJPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQ4LjksMzIuOGgtMC41di0yaDAuNWMwLjUsMCwxLTAuNCwxLTFjMC0wLjUtMC40LTEtMS0xaC0wLjV2LTAuNWMwLTAuNS0wLjQtMS0xLTFjLTAuNSwwLTEsMC40LTEsMXYwLjUNCgkJaC0ydi0wLjVjMC0wLjUtMC40LTEtMS0xYy0wLjUsMC0xLDAuNC0xLDF2MC41aC0wLjVjLTAuNSwwLTEsMC40LTEsMWMwLDAuNSwwLjQsMSwxLDFoMC41djJoLTAuNWMtMC41LDAtMSwwLjQtMSwxDQoJCWMwLDAuNSwwLjQsMSwxLDFoMC41djAuNWMwLDAuNSwwLjQsMSwxLDFjMC41LDAsMS0wLjQsMS0xdi0wLjVoMnYwLjVjMCwwLjUsMC40LDEsMSwxYzAuNSwwLDEtMC40LDEtMXYtMC41aDAuNWMwLjUsMCwxLTAuNCwxLTENCgkJQzQ5LjksMzMuMyw0OS41LDMyLjgsNDguOSwzMi44eiBNNDQuNCwzMi44di0yaDJ2Mkg0NC40eiIvPg0KPC9nPg0KPGcgaWQ9IkxheWVyXzIiPg0KCTxwYXRoIGZpbGw9IiNGRjU2NUQiIGQ9Ik0xMS4xLDQ0LjFsLTUuNS01LjhsLTUuNSw1LjhoMi4xdjdoMnYtM2gzdjNoMnYtN0gxMS4xeiBNNS4xLDQ2LjFoLTJ2LTJoMlY0Ni4xeiBNOC4xLDQ2LjFoLTJ2LTJoMlY0Ni4xeiINCgkJLz4NCgk8cGF0aCBmaWxsPSIjQjNCM0IzIiBkPSJNMzAuMSw0NC4xbC01LjUtNS44bC01LjUsNS44aDIuMXY3aDJ2LTNoM3YzaDJ2LTdIMzAuMXogTTI0LjEsNDYuMWgtMnYtMmgyVjQ2LjF6IE0yNy4xLDQ2LjFoLTJ2LTJoMlY0Ni4xDQoJCXoiLz4NCgk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNTAuMSw0NC4xbC01LjUtNS44bC01LjUsNS44aDIuMXY3aDJ2LTNoM3YzaDJ2LTdINTAuMXogTTQ0LjEsNDYuMWgtMnYtMmgyVjQ2LjF6IE00Ny4xLDQ2LjFoLTJ2LTJoMlY0Ni4xDQoJCXoiLz4NCjwvZz4NCjwvc3ZnPg0K") no-repeat scroll -20px 0 rgba(0, 0, 0, 0);
    content: "";
    height: 16px;
    left: 5px;
    position: absolute;
    top: 7px;
    width: 11px; }
  .ui-autocomplete .ui-autocomplete-category {
    background: #f0f0f0;
    color: black;
    font-weight: 600;
    padding: 0 10px;
    border-top: 1px solid #d7d8d8;
    cursor: default;
    font-size: 13px;
    line-height: 30px;
    overflow: hidden;
    position: relative;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .ui-autocomplete .ui-autocomplete-category:before {
    background: none; }
  .ui-autocomplete .ui-menu-item.ui-menu-item-cluster:before {
    background-position: -20px -16px;
    height: 11px;
    top: 11px; }
  .ui-autocomplete .ui-menu-item.ui-menu-item-tag:before {
    background-position: -20px -27px;
    height: 11px;
    top: 11px; }
  .ui-autocomplete .ui-menu-item.ui-menu-item-propertyshortname:before {
    background-position: -19px -39px;
    height: 13px;
    top: 9px; }
  .ui-autocomplete .ui-menu-item.ui-state-focus:before,
  .ui-autocomplete .ui-menu-item:hover:before {
    background-position: 0 0; }
  .ui-autocomplete .ui-menu-item.ui-menu-item-cluster.ui-state-focus:before,
  .ui-autocomplete .ui-menu-item.ui-menu-item-cluster:hover:before {
    background-position: 0 -16px; }
  .ui-autocomplete .ui-menu-item.ui-menu-item-tag.ui-state-focus:before,
  .ui-autocomplete .ui-menu-item.ui-menu-item-tag:hover:before {
    background-position: 0 -27px; }
  .ui-autocomplete .ui-menu-item.ui-menu-item.ui-menu-item-propertyshortname.ui-state-focus:before,
  .ui-autocomplete .ui-menu-item.ui-menu-item.ui-menu-item-propertyshortname:hover:before {
    background-position: 0 -39px; }
  .ui-autocomplete .ui-state-hover,
  .ui-autocomplete .ui-widget-content .ui-state-hover,
  .ui-autocomplete .ui-widget-header .ui-state-hover,
  .ui-autocomplete .ui-state-focus,
  .ui-autocomplete .ui-widget-content .ui-state-focus,
  .ui-autocomplete .ui-widget-header .ui-state-focus {
    background: rgba(202, 202, 202, 0.35);
    color: #383a3d;
    border-radius: 0; }
  .ui-autocomplete .ui-state-highlight {
    color: black;
    font-weight: bold; }

.ui-state-disabled.ui-menu-item,
.ui-state-disabled.ui-menu-item:hover,
.ui-state-disabled.ui-menu-item:focus {
  color: #cacaca;
  cursor: default; }

.ui-autocomplete-parent-loading {
  width: 100%; }
  .ui-autocomplete-parent-loading:after {
    background: rgba(170, 175, 179, 0) url("/ui/wl/4.126/images/sprites/search/oval-dark.svg") no-repeat scroll 0 0/26px 26px;
    content: "";
    height: 22px;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 22px; }

.mod-search div.ui-tooltip {
  position: absolute !important;
  word-wrap: normal;
  white-space: nowrap;
  display: block;
  text-align: center;
  z-index: 3; }
  .mod-search div.ui-tooltip:before {
    background: none; }



.m-top-5 {
  margin-top: 5px; }

.m-top-10 {
  margin-top: 10px; }

.m-top-15 {
  margin-top: 15px; }

.m-right-5 {
  margin-right: 5px; }

.m-right-10 {
  margin-right: 10px; }

.m-right-15 {
  margin-right: 15px; }

.m-bottom-5 {
  margin-bottom: 5px; }

.m-bottom-10 {
  margin-bottom: 10px; }

.m-bottom-15 {
  margin-bottom: 15px; }

.m-bottom-20 {
  margin-bottom: 20px; }

.m-bottom-25 {
  margin-bottom: 25px; }

.m-bottom-30 {
  margin-bottom: 30px; }

.m-left-5 {
  margin-left: 5px; }

.m-left-10 {
  margin-left: 10px; }

.m-left-15 {
  margin-left: 15px; }

.m-left-auto {
  margin-left: auto; }

.p-top-20 {
  padding-top: 20px; }

.positive {
  background: rgba(97, 146, 70, 0.2);
  color: #619246; }

.negative {
  background: rgba(255, 1, 1, 0.2);
  color: #ff0101; }

.error {
  color: #ff0101; }

.hidden-mobile {
  display: none;
  visibility: hidden; }
  @media only screen and (min-width: 768px) {
    .hidden-mobile {
      display: inherit;
      visibility: inherit; } }

.hidden-tablet {
  display: block;
  visibility: visible; }
  @media only screen and (min-width: 768px) {
    .hidden-tablet {
      display: none;
      visibility: hidden; } }

.hidden {
  display: none !important; }

.visualy-hidden {
  height: 0;
  visibility: hidden;
  line-height: 0;
  position: absolute;
  text-indent: -9999em; }

.cp-text-small {
  font-size: 12px; }

.cp-text-medium {
  font-size: 14px; }

.float-right {
  float: right; }

.float-left {
  float: left; }

.clearboth {
  clear: both; }

.w50 {
  width: 50% !important; }

.w100 {
  width: 100% !important; }

.text-no-wrap {
  white-space: nowrap; }

.display-flex {
  display: flex; }

.display-inline-flex {
  display: inline-flex; }

.align-items-center {
  align-items: center; }

.justify-space-between {
  justify-content: space-between; }

.justify-flex-start {
  justify-content: flex-start; }

.flex-wrap-wrap {
  flex-wrap: wrap; }

.justify-content-start {
  justify-content: flex-start; }

.justify-content-end {
  justify-content: flex-end; }

.justify-content-center {
  justify-content: center; }

.justify-content-space-evenly {
  justify-content: space-evenly; }

.align-items-start {
  align-items: flex-start; }

.align-items-center {
  align-items: center; }

.align-items-end {
  align-items: flex-end; }

.align-self-start {
  align-self: flex-start; }

.align-self-end {
  align-self: flex-end; }

.overflow-hidden {
  overflow: hidden; }

html {
  font-family: "Source Sans Pro", arial, sans-serif;
  font-size: 16px;
  line-height: 21px;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  height: 100%; }
  @media only screen and (min-width: 1333px) {
    html {
      font-size: 16px;
      line-height: 1.2; } }

input {
  font-family: "Source Sans Pro", arial, sans-serif; }

body {
  background-color: #dfdfdf; }

.mod-two-buttons {
  float: left;
  width: 100%;
  margin: 10px 0; }
  .mod-two-buttons .cp-button-2 {
    float: right; }

.title {
  border-top: 1px solid #d7d8d8;
  border-bottom: 1px solid #d7d8d8;
  color: #646464;
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .title {
      padding: 20px 30px; } }

@font-face {
  font-family: 'Booking-glyphs';
  src: url("/ui/wl/4.126/fonts/icons/Booking-glyphs.eot?f070e9cc3fcb02cb3c139cc6d8a48c0d9034e431");
  src: url("/ui/wl/4.126/fonts/icons/Booking-glyphs.eot?f070e9cc3fcb02cb3c139cc6d8a48c0d9034e431") format("embedded-opentype"), url("/ui/wl/4.126/fonts/icons/Booking-glyphs.woff?f070e9cc3fcb02cb3c139cc6d8a48c0d9034e431") format("woff"), url("/ui/wl/4.126/fonts/icons/Booking-glyphs.ttf?f070e9cc3fcb02cb3c139cc6d8a48c0d9034e431") format("truetype"), url("/ui/wl/4.126/fonts/icons/Booking-glyphs.svg?f070e9cc3fcb02cb3c139cc6d8a48c0d9034e431#Booking-glyphs") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'eviivo-facilities-icon';
  src: url("/ui/wl/4.126/fonts/icons/eviivo-facilities-icon.eot?bd9f761abc40685cc8e00df10dd9f7816e886c9d");
  src: url("/ui/wl/4.126/fonts/icons/eviivo-facilities-icon.eot?bd9f761abc40685cc8e00df10dd9f7816e886c9d#iefix") format("embedded-opentype"), url("/ui/wl/4.126/fonts/icons/eviivo-facilities-icon.ttf?bd9f761abc40685cc8e00df10dd9f7816e886c9d") format("truetype"), url("/ui/wl/4.126/fonts/icons/eviivo-facilities-icon.woff?bd9f761abc40685cc8e00df10dd9f7816e886c9d") format("woff"), url("/ui/wl/4.126/fonts/icons/eviivo-facilities-icon.svg?bd9f761abc40685cc8e00df10dd9f7816e886c9d#eviivo-facilities-icon") format("svg");
  font-weight: normal;
  font-style: normal; }

iframe {
  border: 0;
  margin: 0;
  padding: 0; }

.cp-intro {
  padding: 20px;
  line-height: 1;
  clear: both;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 10px;
  margin-bottom: 20px; }
  .cp-intro h1 {
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 400; }
  .cp-intro p {
    margin: 0;
    padding: 0 0 10px;
    line-height: 21px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8); }

.no-reults-message {
  background: #fff6df;
  padding: 20px;
  border: 1px solid #feba02;
  border-radius: 10px; }

body.instantweb {
  font-size: 16px;
  margin: 0 auto; }
  body.instantweb .main {
    line-height: 1.2;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2); }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.section {
  padding: 10px 10px 0; }
  @media only screen and (min-width: 1024px) {
    .section {
      padding: 30px 30px 0; } }

.section-full {
  padding: 10px; }
  @media only screen and (min-width: 1024px) {
    .section-full {
      padding: 30px; } }

.main-inner {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: white; }
  .main-inner .main-inner-content {
    padding: 0 15px; }
  @media only screen and (min-width: 1100px) {
    .main-inner {
      max-width: 1024px; } }
  @media only screen and (min-width: 1280px) {
    .main-inner {
      max-width: 1140px; } }

.main.multiroom {
  position: relative;
  padding-top: 80px; }

.instantweb.multiroom {
  top: 0;
  padding-top: 0; }

.content {
  padding: 0 10px 10px; }
  @media only screen and (min-width: 1024px) {
    .content {
      width: 66.10169%;
      float: left;
      margin-right: 1.69492%;
      padding: 0 30px 30px; } }

body .payment .content {
  padding-top: 0;
  /* payment specific*/ }
  @media only screen and (min-width: 1024px) {
    body .payment .content {
      width: 59.59596%;
      float: left;
      margin-right: 1.0101%;
      padding: 0; } }

.aside {
  margin-bottom: 10px;
  padding: 0 10px; }
  @media only screen and (min-width: 1024px) {
    .aside {
      width: 32.20339%;
      float: right;
      margin-right: 0;
      padding: 0 30px 30px 0; } }

@media only screen and (min-width: 1024px) {
  body .payment .aside {
    width: 34.34343%;
    float: right;
    margin-right: 0;
    padding: 0; } }

.instantweb .aside {
  padding: 0;
  overflow-x: hidden; }
  @media only screen and (min-width: 1024px) {
    .instantweb .aside {
      padding: 0 0 30px 0; } }

/*Search results*/
.main.search {
  max-width: 100%;
  padding: 0; }
  .main.search .branding {
    padding: 10px;
    max-width: 1520px;
    margin: 0 auto;
    min-height: 60px; }

.main.search .content {
  width: 100%;
  margin: 0;
  padding: 0;
  box-shadow: none;
  clear: both;
  position: relative;
  height: auto; }
  @media only screen and (min-width: 768px) {
    .main.search .content {
      width: 69%;
      float: right; } }
  @media only screen and (min-width: 1024px) {
    .main.search .content {
      width: 75%; } }
  @media only screen and (min-width: 1280px) {
    .main.search .content {
      width: 79%; } }

.main.search .aside {
  float: left;
  padding: 0px;
  transform: translateX(-100%);
  width: 95%;
  height: 100%;
  position: fixed;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  background: none;
  top: 0;
  padding: 10px 10px 20px 10px;
  transition: transform 0.1s ease-in; }
  @media only screen and (min-width: 768px) {
    .main.search .aside {
      width: 30%;
      margin: 0 1% 0 0;
      position: relative;
      box-shadow: none;
      padding: 0;
      transform: translateX(0); } }
  @media only screen and (min-width: 1024px) {
    .main.search .aside {
      width: 25%;
      margin-right: 0;
      padding: 0 0 30px 0; } }
  @media only screen and (min-width: 1280px) {
    .main.search .aside {
      width: calc(20% - 50px);
      margin: 0 50px 0 0; } }
  .main.search .aside.active {
    transform: translateX(0);
    transition: transform 0.1s ease-in;
    z-index: 10;
    background: white; }
    .main.search .aside.active .aside-underlay {
      display: block;
      background-color: rgba(255, 255, 255, 0.5);
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 6%; }

.main.confirmation {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0; }
  @media only screen and (min-width: 1100px) {
    .main.confirmation {
      max-width: 1024px; } }
  @media only screen and (min-width: 1280px) {
    .main.confirmation {
      max-width: 1140px; } }

.mod-filters-inner {
  overflow-y: auto;
  height: 100%;
  padding-top: 40px; }
  @media only screen and (min-width: 768px) {
    .mod-filters-inner {
      overflow: initial;
      padding: 0 10px;
      margin-right: 30px; } }

.main.search.blank .content {
  width: 100%;
  top: 0;
  overflow: inherit;
  position: inherit; }
  @media only screen and (min-width: 1024px) {
    .main.search.blank .content {
      top: 110px;
      overflow: hidden; } }

.search .content-outer {
  max-width: 1520px;
  margin: 0 auto;
  clear: both;
  padding: 20px 0; }

.fold-container {
  margin-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .fold-container {
      overflow: hidden;
      margin-bottom: 20px; }
      .fold-container:before, .fold-container:after {
        content: "";
        display: table; }
      .fold-container:after {
        clear: both; } }

.fold-left,
.fold-right {
  width: 100%;
  display: block; }

.fold-left {
  margin-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .fold-left {
      margin-bottom: 20px; } }

@media only screen and (min-width: 768px) {
  .fold-left {
    width: 60%;
    float: left;
    position: relative;
    margin-bottom: 0; }
  .fold-right {
    width: 38%;
    float: right;
    position: relative; } }

@media only screen and (min-width: 1024px) {
  .fold-left {
    width: 60.975%; } }

@media only screen and (min-width: 1280px) {
  .fold-left {
    width: 68.975%; }
  .fold-right {
    width: 30%; } }

/*Booking system*/
.main.booking {
  max-width: 100%; }

.booking-outer,
.branding,
.partner-branding {
  background: white;
  padding-left: 15px;
  padding-right: 15px; }

.partner-branding,
.main.booking .branding,
.main.booking .breadcrumb-outer,
.booking-outer {
  max-width: 1140px;
  margin: 0 auto; }

.partner-outer .partner-branding {
  padding: 10px 15px; }

.partner-outer h1 {
  display: inline-block; }

.main.confirmation,
.partner-outer {
  background: white; }

body .payment.payment3dsParent {
  overflow: initial;
  /*make sure that 3ds has scrollbars enabled*/ }

.payment3ds {
  max-width: 100%;
  min-width: 365px;
  font-size: 14px; }
  .payment3ds .aside {
    padding: 0; }
  .payment3ds .content {
    width: 100%;
    margin-right: 0; }

.arnsbergMenu {
  display: inline-block;
  position: relative;
  top: 0px; }
  @media only screen and (min-width: 768px) {
    .arnsbergMenu {
      top: -15px; } }
  .arnsbergMenu li {
    display: inline-block;
    margin: 0 5px 0 0; }
    @media only screen and (min-width: 1024px) {
      .arnsbergMenu li {
        margin: 0 0 0 35px; } }
  .arnsbergMenu .item1 a {
    color: #0069b4; }
  .arnsbergMenu .item2 a {
    color: #c80000; }
  .arnsbergMenu .item3 a {
    color: #5fa200; }
  .arnsbergMenu .item4 a {
    color: #e76d00; }
  .arnsbergMenu span {
    display: block;
    font-family: Agfa Rotis Sans Serif,Arial,Helvetica,Verdana,sans-serif;
    line-height: 11px;
    text-align: left; }
    @media only screen and (min-width: 768px) {
      .arnsbergMenu span {
        line-height: 17px; } }
  .arnsbergMenu .mainMenuSubtitle {
    font-size: 11px;
    text-transform: uppercase; }
    @media only screen and (min-width: 768px) {
      .arnsbergMenu .mainMenuSubtitle {
        font-size: 20px; } }
  .arnsbergMenu .mainMenuTitle {
    font-size: 10px;
    padding-bottom: 2px; }
    @media only screen and (min-width: 768px) {
      .arnsbergMenu .mainMenuTitle {
        font-size: 18px; } }

.template-7 .content {
  background-color: white; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.mod-user-header {
  width: 100%; }
  .mod-user-header_top-inner {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 95%;
    display: flex;
    align-items: center;
    min-height: 40px; }
    @media only screen and (min-width: 1100px) {
      .mod-user-header_top-inner {
        max-width: 1024px; } }
    @media only screen and (min-width: 1280px) {
      .mod-user-header_top-inner {
        max-width: 1140px; } }
    .b_IE10 .mod-user-header_top-inner,
    .b_InternetExplorer11 .mod-user-header_top-inner {
      padding: 10px; }
  .template-7 .mod-user-header_top {
    background-color: #f0f0f0;
    border-bottom: solid 1px #cacaca; }
  .template-10 .mod-user-header_top {
    background-color: #f0f0f0;
    border-bottom: solid 1px #cacaca; }
  .template-9 .mod-user-header_top {
    background-color: #f0f0f0;
    border-bottom: solid 1px #cacaca; }
  .template-11 .mod-user-header_top {
    background-color: #111111; }
  .template-12 .mod-user-header_top {
    background-color: #f0f0f0;
    border-bottom: solid 1px #cacaca; }
  .booking .mod-user-header_top {
    background-color: #f0f0f0;
    border-bottom: solid 1px #cacaca; }
  .mod-user-header_center-inner {
    margin: 0 auto;
    max-width: 95%; }
    @media only screen and (min-width: 1100px) {
      .mod-user-header_center-inner {
        max-width: 1024px; } }
    @media only screen and (min-width: 1280px) {
      .mod-user-header_center-inner {
        max-width: 1140px; } }
  .mod-user-header_bottom-inner {
    margin: 0 auto;
    padding: 10px 0;
    max-width: 95%; }
    @media only screen and (min-width: 1100px) {
      .mod-user-header_bottom-inner {
        max-width: 1024px; } }
    @media only screen and (min-width: 1280px) {
      .mod-user-header_bottom-inner {
        max-width: 1140px;
        padding: 10px; } }
    .template-7 .mod-user-header_bottom-inner,
    .template-9 .mod-user-header_bottom-inner,
    .template-10 .mod-user-header_bottom-inner,
    .template-12 .mod-user-header_bottom-inner {
      background-color: #fff; }
  .template-12 .mod-user-header_bottom .header-content {
    position: relative; }
  .mod-user-header_messaging {
    width: 100%; }
    .mod-user-header_messaging-inner {
      position: relative;
      margin: 0 auto;
      max-width: 95%;
      box-sizing: border-box;
      background: #f0f0f0; }
      @media only screen and (min-width: 1100px) {
        .mod-user-header_messaging-inner {
          max-width: 1024px; } }
      @media only screen and (min-width: 1280px) {
        .mod-user-header_messaging-inner {
          max-width: 1140px; } }
  .mod-user-header .mod-selectors {
    width: 100%;
    text-align: right; }
    .mod-user-header .mod-selectors:before, .mod-user-header .mod-selectors:after {
      content: "";
      display: table; }
    .mod-user-header .mod-selectors:after {
      clear: both; }
    .booking .mod-user-header .mod-selectors {
      margin-left: auto; }
    .mod-user-header .mod-selectors .cp-tooltip {
      z-index: 20; }

header .mod-language {
  display: inline-block;
  padding: 0;
  position: relative; }
  @media only screen and (min-width: 480px) {
    header .mod-language {
      border-left: 1px solid rgba(215, 216, 216, 0.4);
      padding: 0 0 0 20px; } }

header .language-inner {
  display: none;
  font-size: 14px;
  right: 0;
  left: auto; }

header .language-inner .select-icon {
  color: #000; }

header .language-value:focus {
  overflow: hidden; }

header .currency-value.active:after,
header .language-value.active:after {
  content: "\e60c"; }

header .language-inner a {
  padding: 0 10px;
  margin: 0;
  display: block;
  border-top: 1px dotted #d7d8d8;
  width: auto;
  height: 36px;
  line-height: 36px;
  text-align: left; }

header .language-inner a:first-child {
  border: none; }

header .language-inner.cp-tooltip {
  width: 190px;
  top: 50px; }

header .language-inner.cp-tooltip:before {
  left: auto;
  right: 10px; }

header .mod-currency {
  display: inline-block;
  margin-right: 0;
  padding: 0 10px 0 0;
  position: relative;
  height: 30px; }

header .language-value,
header .currency-value {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  padding-right: 5px;
  position: relative;
  vertical-align: middle;
  width: auto;
  padding-right: 20px; }
  @media only screen and (min-width: 1333px) {
    header .language-value,
    header .currency-value {
      padding-right: 30px; } }

header .currency-value:after,
header .language-value:after {
  content: "\e60d";
  display: inline-block;
  font-family: "Booking-glyphs";
  font-size: 39px;
  margin-right: -10px;
  position: absolute;
  right: 0;
  top: 0; }

header .currency-inner.cp-tooltip:before {
  left: auto;
  right: 10px; }

header .cp-tooltip-large {
  display: none;
  width: 220px;
  right: 0;
  left: auto;
  top: 50px;
  z-index: 20; }
  @media only screen and (min-width: 768px) {
    header .cp-tooltip-large {
      width: 320px; } }

header .cp-tooltip-large .scrollable {
  overflow-y: auto;
  max-height: 300px; }

header .cp-tooltip-large .first-child {
  width: 100%;
  font-weight: 800; }

header .cp-tooltip-large li {
  display: block;
  float: left;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
  vertical-align: middle;
  min-width: 33.33%;
  padding: 0 15px;
  text-align: left; }

header .cp-tooltip-large a {
  color: #000; }

header .cp-tooltip-large li.active a {
  font-weight: 400; }

header .cp-tooltip-large span {
  display: inline-block;
  min-width: 30px; }

header .language-value span {
  display: inline-block; }

header .branding {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px; }
  header .branding .branding-inner {
    width: 100%;
    text-align: center;
    float: none; }
    @media only screen and (min-width: 1920px) {
      header .branding .branding-inner {
        width: 70%;
        margin: 0 auto; } }

header.toprooms.header-partner {
  padding: 0;
  border: 0 none; }

header.toprooms .logo {
  font-size: 1em;
  color: #383a3d; }
  @media only screen and (min-width: 480px) {
    header.toprooms .logo {
      font-size: 1.125em; } }
  @media only screen and (min-width: 768px) {
    header.toprooms .logo {
      font-size: 1.75em;
      padding: 3px 0; } }

header.toprooms .price-average {
  line-height: 34px;
  text-align: right;
  margin-bottom: 10px;
  color: #db0148; }
  header.toprooms .price-average span {
    font-size: 18px;
    font-weight: 800;
    position: relative;
    top: 2px; }
  header.toprooms .price-average .small {
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    padding: 0 10px; }
  @media only screen and (min-width: 768px) {
    header.toprooms .price-average {
      width: 38%;
      float: right; }
      header.toprooms .price-average span {
        font-size: 22px; }
      header.toprooms .price-average .small {
        float: none; } }
  @media only screen and (min-width: 1024px) {
    header.toprooms .price-average {
      margin-top: 10px; } }

@media only screen and (min-width: 768px) {
  header.toprooms .room-name-container {
    width: 60%;
    float: left; } }

@media only screen and (min-width: 1024px) {
  header.toprooms .room-name-container {
    margin-top: 10px; } }

header.toprooms .branding-inner {
  text-align: left; }
  header.toprooms .branding-inner address {
    margin: 5px 0 10px; }
    header.toprooms .branding-inner address a {
      font-size: 12px; }
  @media only screen and (min-width: 1920px) {
    header.toprooms .branding-inner {
      width: 100%; } }

header .logo {
  color: #646464;
  font-size: 1em;
  display: inline-block;
  transition: all 0.2s ease-in; }
  header .logo.default-text a {
    font-size: 1.375em;
    font-weight: 400; }

header address {
  font-size: 0.75em;
  line-height: 1;
  padding: 10px 15px;
  margin: 0; }
  @media only screen and (min-width: 1920px) {
    header address {
      padding: 0; } }

header address a {
  position: relative;
  padding-left: 15px; }
  header address a:before {
    content: "\e607";
    font-family: "Booking-glyphs";
    font-size: 38px;
    font-style: normal;
    left: -13px;
    position: absolute;
    top: -10px; }

header picture img {
  width: 100%;
  display: block; }

.branding .logo {
  cursor: pointer;
  max-width: 100%; }

.logo {
  display: inline-block; }
  .logo img {
    max-width: 70%;
    height: auto; }
    @media only screen and (min-width: 480px) {
      .logo img {
        max-width: 80%; } }
    @media only screen and (min-width: 768px) {
      .logo img {
        max-width: 100%; } }

.header-item {
  font-size: 0.875em;
  display: inline-block; }

.link-home {
  float: left; }

.main.search .mod-selectors {
  right: 0;
  top: 5px;
  position: absolute;
  margin: 0;
  width: 40%; }
  @media only screen and (min-width: 768px) {
    .main.search .mod-selectors {
      top: 15px;
      text-align: right; } }
  .main.search .mod-selectors .header-item {
    padding: 0;
    text-align: right; }
    @media only screen and (min-width: 768px) {
      .main.search .mod-selectors .header-item {
        display: inline-block;
        margin-right: 15px; } }

.booking .sticky-header {
  background: #f9f9f9;
  padding: 0;
  border: none;
  min-height: 50px;
  border-bottom: 1px solid #ccc; }
  .booking .sticky-header .mod-selectors {
    position: relative;
    width: 100%;
    margin: 0;
    top: 10px;
    padding: 0 10px; }
    @media only screen and (min-width: 1024px) {
      .booking .sticky-header .mod-selectors {
        padding: 0 5px; } }

.main.search .header {
  background: white;
  padding: 0;
  position: relative;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); }
  .main.search .header h1 {
    max-width: 70%;
    line-height: 0; }
  .main.search .header img {
    height: auto; }

.security-badge {
  display: none; }
  @media only screen and (min-width: 1024px) {
    .security-badge {
      background-image: url("/ui/wl/4.126/images/norton-secure-seal-min.png");
      background-repeat: no-repeat;
      background-position: 0 0;
      display: block;
      width: 80px;
      height: 40px;
      background-size: contain;
      position: relative;
      top: -4px;
      float: right; } }

.booking .toprooms .mod-selectors {
  position: absolute;
  right: 15px;
  top: -75px;
  width: 40%; }
  @media only screen and (min-width: 480px) {
    .booking .toprooms .mod-selectors {
      width: 380px;
      text-align: right; } }
  @media only screen and (min-width: 768px) {
    .booking .toprooms .mod-selectors {
      top: -80px; } }

.breadcrumb-container + .branding .mod-selectors {
  top: -80px; }

.logo.arkells-logo img {
  max-width: 100px; }
  @media only screen and (min-width: 1024px) {
    .logo.arkells-logo img {
      top: 130px; } }

.logo.arnsberg img {
  max-width: 60px; }

.instantweb .mod-gallery {
  background-color: white; }

.instantweb header.header {
  text-align: center;
  padding: 0;
  position: relative; }
  @media only screen and (min-width: 1024px) {
    .instantweb header.header {
      padding: 0px; } }
  .instantweb header.header .header-details {
    padding: 10px 0; }
    @media only screen and (min-width: 1024px) {
      .instantweb header.header .header-details {
        padding: 25px 0; } }

.instantweb .logo img {
  margin: 0 auto; }

.instantweb.template-10 .mod-selectors, .instantweb.template-8 .mod-selectors {
  position: relative; }

.template-7 header.header {
  background: white; }

.toprooms .language-inner .select-icon:hover, .toprooms .language-inner .select-icon:focus, .toprooms .language-inner .select-icon:active {
  color: #db0148; }

.toprooms .cp-tooltip-large li a:focus, .toprooms .cp-tooltip-large li a:hover, .toprooms .cp-tooltip-large li a:active, .toprooms .cp-tooltip-large li a.active {
  color: #db0148; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

/* ==========================================================================
	Navs - 
   ========================================================================== */
/*Menu toggle*/
nav {
  text-align: left;
  position: relative;
  z-index: 3;
  padding: 0 10px; }
  @media only screen and (min-width: 1024px) {
    nav {
      padding: 0; } }
  nav li {
    display: block;
    position: relative; }
    @media only screen and (min-width: 1024px) {
      nav li {
        overflow: hidden;
        height: 43px; } }
  nav .menu-toggle > a {
    display: block;
    text-align: left;
    width: 50%;
    float: left;
    padding: 10px 0; }
  nav .menu-toggle .menu {
    clear: both; }
  nav .menu-toggle .menu-icon {
    font-size: 28px;
    position: absolute; }
  nav .menu-toggle .menu-text {
    padding-left: 20px;
    line-height: 30px; }
  nav .menu-toggle ul {
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden; }
  nav .menu-toggle li a {
    display: block;
    padding: 10px;
    text-transform: capitalize;
    color: #111111;
    font-weight: normal;
    font-size: 0.875em; }
    @media only screen and (min-width: 1024px) {
      nav .menu-toggle li a {
        padding: 0 10px;
        height: 44px;
        line-height: 44px; } }
  nav .menu-toggle li a.active {
    font-weight: bold; }
  nav .menu-toggle .cp-button {
    font-size: 0.875em;
    height: 34px;
    line-height: 34px;
    padding: 0 20px 0 15px;
    z-index: 2;
    position: absolute;
    top: 5px;
    right: 0; }
    nav .menu-toggle .cp-button:before {
      background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll -172px -150px transparent;
      content: "";
      height: 5px;
      position: absolute;
      right: 10px;
      top: 16px;
      width: 9px;
      z-index: 1; }
    nav .menu-toggle .cp-button.active:before {
      background-position: -197px -150px; }
  nav .menu-toggle.active ul {
    opacity: 1;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px; }

.nav-controls {
  display: none; }

@media only screen and (min-width: 1024px) {
  .nav-controls {
    background: transparent;
    height: 44px;
    position: absolute;
    right: -1px;
    top: 0px;
    width: 8%;
    z-index: 1; }
  .nav-controls:before {
    content: "";
    height: 44px;
    left: -20px;
    position: absolute;
    width: 20px;
    z-index: 2; }
  .icon-nav {
    background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll -95px -110px rgba(0, 0, 0, 0);
    display: inline-block;
    height: 44px;
    position: relative;
    text-indent: -999em;
    width: 25px;
    z-index: 1;
    top: 0px; }
  .icon-arrow-left.icon-nav {
    margin-left: 10px; }
    .icon-arrow-left.icon-nav:before {
      box-shadow: -12px 0 4px 0 rgba(0, 0, 0, 0.4);
      content: "";
      height: 44px;
      left: 0;
      position: absolute;
      top: 0;
      width: 1px; }
  .icon-arrow-right.icon-nav {
    background-position: -117px -110px; }
  .header .menu-toggle > a,
  .mod-user-header .menu-toggle > a {
    display: none; }
  .header .menu,
  .mod-user-header .menu {
    display: block;
    height: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 92%; }
    .header .menu::-webkit-scrollbar,
    .mod-user-header .menu::-webkit-scrollbar {
      width: 0 !important; }
  .header .menu-toggle ul,
  .mod-user-header .menu-toggle ul {
    height: auto;
    opacity: 1; }
  .header .menu-toggle li,
  .mod-user-header .menu-toggle li {
    float: left;
    border-top: none; }
  .header-content {
    width: 100%; }
  .header-content-outer {
    position: relative;
    padding: 20px 0;
    background: white; } }

.template-7 .nav-controls,
.template-12 .nav-controls {
  width: 20%; }

.template-7 .mod-user-header .menu,
.template-12 .mod-user-header .menu {
  width: 80%; }

.jcarousel-control {
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  height: 95px;
  width: 30px;
  z-index: 2;
  cursor: pointer; }
  .jcarousel-control:before {
    content: "";
    width: 2px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    position: absolute;
    top: calc(50% - 2px); }
  .jcarousel-control:after {
    content: "";
    width: 2px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    position: absolute;
    top: calc(50% - 19px); }

.jcarousel-control_prev {
  left: 0; }
  .jcarousel-control_prev:before {
    transform: rotate(-45deg);
    left: 12px; }
  .jcarousel-control_prev:after {
    transform: rotate(45deg);
    left: 12px; }

.jcarousel-control_next {
  right: 0; }
  .jcarousel-control_next:before {
    transform: rotate(45deg);
    right: 12px; }
  .jcarousel-control_next:after {
    transform: rotate(-45deg);
    right: 12px; }

.jcarousel-thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px; }
  .jcarousel-thumb > ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0; }
  .jcarousel-thumb li {
    width: auto;
    height: 95px;
    margin: 0 2px;
    float: left;
    cursor: pointer; }
    .jcarousel-thumb li:first-of-type {
      margin-left: 0; }
    .jcarousel-thumb li:last-of-type {
      margin-right: 0; }
    .b_InternetExplorer .jcarousel-thumb li {
      flex: 1 1 auto; }
  .jcarousel-thumb_small li {
    height: 76px; }
  .jcarousel-thumb_small .jcarousel-control {
    height: 76px; }
  .jcarousel-thumb img {
    width: auto;
    height: 100%;
    display: block; }
  .jcarousel-thumb .jcarousel-control:before {
    width: 1px;
    height: 16px;
    top: 50%; }
  .jcarousel-thumb .jcarousel-control:after {
    width: 1px;
    height: 16px;
    top: calc(50% - 12px); }

.jcarousel-hero {
  width: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px; }
  .jcarousel-hero > ul {
    width: auto;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; }
  .jcarousel-hero li {
    width: 100%;
    height: 100%;
    margin: 0;
    flex: 0 0 100%;
    float: left; }
    .jcarousel-hero li:first-of-type {
      margin-left: 0; }
    .jcarousel-hero li:last-of-type {
      margin-right: 0; }
  .jcarousel-hero .jcarousel-control {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px; }
  .jcarousel-hero .jcarousel-control_prev:after, .jcarousel-hero .jcarousel-control_prev:before {
    left: 20px; }
  .jcarousel-hero .jcarousel-control_next:after, .jcarousel-hero .jcarousel-control_next:before {
    right: 20px; }

.booking .jcarousel-default img,
.booking .jcarousel-control-default {
  height: calc(95px * 1); }

.booking .jcarousel-medium img,
.booking .jcarousel-control-medium {
  height: calc(95px * 2); }

.booking .jcarousel-large img,
.booking .jcarousel-control-large {
  height: calc(95px * 3); }

.booking .jcarousel-thumb li {
  height: auto; }

/*clearfix*/
.group {
  *zoom: 1; }

.group:before, .group:after {
  display: table;
  content: "";
  line-height: 0; }

.group:after {
  clear: both; }

/*/clearfix*/
/** /font-icons if you are not using font icons you can just remove this part/**/
[data-icon]:before {
  font-family: 'Slide-icons';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/** / End of font-icons /**/
.lightGallery {
  overflow: hidden !important; }

#lightGallery-Gallery img {
  border: none !important; }

#lightGallery-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  background: #0d0d0d; }

#lightGallery-outer .lightGallery-slide {
  position: relative; }

/*lightGallery starting effects*/
#lightGallery-Gallery.opacity {
  opacity: 1;
  transition: opacity 1s ease 0s;
  -moz-transition: opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s;
  -o-transition: opacity 1s ease 0s;
  -ms-transition: opacity 1s ease 0s; }

#lightGallery-Gallery.opacity .thumb_cont {
  opacity: 1; }

#lightGallery-Gallery.fadeM {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
  -moz-transition: opacity 0.5s ease 0s;
  -webkit-transition: opacity 0.5s ease 0s;
  -o-transition: opacity 0.5s ease 0s;
  -ms-transition: opacity 0.5s ease 0s; }

/*lightGallery starting effects*/
/*lightGallery core*/
#lightGallery-Gallery {
  height: 100%;
  opacity: 0;
  width: 100%;
  position: relative;
  transition: opacity 1s ease 0s;
  -moz-transition: opacity 1s ease 0s;
  -webkit-transition: opacity 1s ease 0s;
  -o-transition: opacity 1s ease 0s;
  -ms-transition: opacity 1s ease 0s; }

/**/
#lightGallery-slider {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
  white-space: nowrap; }

/**/
#lightGallery-slider .lightGallery-slide {
  background: url(../img/loading.gif) no-repeat scroll center center transparent;
  display: inline-block;
  height: 100%;
  text-align: center;
  width: 100%; }

#lightGallery-slider .lightGallery-slide.complete {
  background-image: none; }

#lightGallery-Gallery.showAfterLoad .lightGallery-slide > * {
  opacity: 0; }

#lightGallery-Gallery.showAfterLoad .lightGallery-slide.complete > * {
  opacity: 1; }

#lightGallery-slider.slide .lightGallery-slide, #lightGallery-slider.useLeft .lightGallery-slide {
  position: absolute;
  opacity: 0.4; }

#lightGallery-slider.fadeM .lightGallery-slide {
  position: absolute;
  left: 0;
  opacity: 0; }

#lightGallery-slider.animate .lightGallery-slide {
  position: absolute;
  left: 0; }

#lightGallery-slider.fadeM .current {
  opacity: 1;
  z-index: 9; }

#lightGallery-slider .lightGallery-slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px; }

#lightGallery-Gallery.opacity .lightGallery-slide img, #lightGallery-Gallery.opacity .lightGallery-slide iframe {
  transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1); }

.lightGallery-slide img, .lightGallery-slide iframe {
  transform: scale3d(0.5, 0.5, 0.5);
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  -o-transform: scale3d(0.5, 0.5, 0.5);
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.5s ease 0s; }

#lightGallery-Gallery.fadeM .lightGallery-slide img, #lightGallery-Gallery.fadeM .lightGallery-slide iframe {
  transform: scale3d(0.5, 0.5, 0.5);
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  -o-transform: scale3d(0.5, 0.5, 0.5); }

#lightGallery-slider.fadeM.on .current {
  opacity: 1;
  transition: opacity 0.5s ease 0s;
  -moz-transition: opacity 0.5s ease 0s;
  -webkit-transition: opacity 0.5s ease 0s;
  -o-transition: opacity 0.5s ease 0s;
  -ms-transition: opacity 0.5s ease 0s; }

#lightGallery-slider.fadeM .lightGallery-slide {
  transition: opacity 0.4s ease 0s;
  -moz-transition: opacity 0.4s ease 0s;
  -webkit-transition: opacity 0.4s ease 0s;
  -o-transition: opacity 0.4s ease 0s;
  -ms-transition: opacity 0.4s ease 0s; }

#lightGallery-slider.slide .lightGallery-slide {
  transform: translate3d(100%, 0px, 0px);
  -moz-transform: translate3d(100%, 0px, 0px);
  -ms-transform: translate3d(100%, 0px, 0px);
  -webkit-transform: translate3d(100%, 0px, 0px);
  -o-transform: translate3d(100%, 0px, 0px); }

#lightGallery-slider.slide.on .lightGallery-slide {
  opacity: 0; }

#lightGallery-slider.slide .lightGallery-slide.current {
  opacity: 1 !important;
  transform: translate3d(0px, 0px, 0px) !important;
  -moz-transform: translate3d(0px, 0px, 0px) !important;
  -ms-transform: translate3d(0px, 0px, 0px) !important;
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
  -o-transform: translate3d(0px, 0px, 0px) !important; }

#lightGallery-slider.slide .lightGallery-slide.prevSlide {
  opacity: 0;
  transform: translate3d(-100%, 0px, 0px);
  -moz-transform: translate3d(-100%, 0px, 0px);
  -ms-transform: translate3d(-100%, 0px, 0px);
  -webkit-transform: translate3d(-100%, 0px, 0px);
  -o-transform: translate3d(-100%, 0px, 0px); }

#lightGallery-slider.slide .lightGallery-slide.nextSlide {
  opacity: 0;
  transform: translate3d(100%, 0px, 0px);
  -moz-transform: translate3d(100%, 0px, 0px);
  -ms-transform: translate3d(100%, 0px, 0px);
  -webkit-transform: translate3d(100%, 0px, 0px);
  -o-transform: translate3d(100%, 0px, 0px); }

#lightGallery-slider.useLeft .lightGallery-slide {
  left: 100%; }

#lightGallery-slider.useLeft.on .lightGallery-slide {
  opacity: 0; }

#lightGallery-slider.useLeft .lightGallery-slide.current {
  opacity: 1 !important;
  left: 0% !important; }

#lightGallery-slider.useLeft .lightGallery-slide.prevSlide {
  opacity: 0;
  left: -100%; }

#lightGallery-slider.useLeft .lightGallery-slide.nextSlide {
  opacity: 0;
  left: 100%; }

#lightGallery-slider.slide.on .lightGallery-slide, #lightGallery-slider.slide.on .current, #lightGallery-slider.slide.on .prevSlide, #lightGallery-slider.slide.on .nextSlide {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s; }

#lightGallery-slider.speed .lightGallery-slide, #lightGallery-slider.speed .current, #lightGallery-slider.speed .prevSlide, #lightGallery-slider.speed .nextSlide {
  transition-duration: inherit !important;
  -moz-transition-duration: inherit !important;
  -webkit-transition-duration: inherit !important;
  -o-transition-duration: inherit !important;
  -ms-transition-duration: inherit !important; }

#lightGallery-slider.timing .lightGallery-slide, #lightGallery-slider.timing .current, #lightGallery-slider.timing .prevSlide, #lightGallery-slider.timing .nextSlide {
  transition-timing-function: inherit !important;
  -moz-transition-timing-function: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  -o-transition-timing-function: inherit !important;
  -ms-transition-timing-function: inherit !important; }

#lightGallery-slider .lightGallery-slide img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  cursor: -moz-grabbing;
  cursor: grab;
  cursor: -webkit-grab;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle; }

#lightGallery-Gallery .thumb_cont .thumb_inner {
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s; }

@-webkit-keyframes rightEnd {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@keyframes rightEnd {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@-webkit-keyframes leftEnd {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@keyframes leftEnd {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

.lightGallery-slide .object.rightEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative; }

.lightGallery-slide .object.leftEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative; }

/*lightGallery core*/
/*action*/
#lightGallery-action a {
  margin: 0 3px 0 0 !important;
  border-radius: 2px;
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  display: inline-block !important;
  display: inline-block;
  vertical-align: middle;
  *display: inline;
  *zoom: 1;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  width: 28px;
  height: 28px;
  font-family: 'Slide-icons';
  color: #FFF;
  cursor: pointer; }

#lightGallery-action a.disabled {
  opacity: 0.6;
  filter: alpha(opacity=60);
  cursor: default;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.65) !important; }

#lightGallery-action a:hover, #lightGallery-action a:focus {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85); }

#lightGallery-action a#lightGallery-prev:before, #lightGallery-action a#lightGallery-next:after {
  left: -20px;
  bottom: 3px;
  position: absolute; }

#lightGallery-action a#lightGallery-prev:before {
  content: "\e01d"; }

#lightGallery-action a#lightGallery-next:after {
  content: "\e01b"; }

/*action*/
/*counter*/
#lightGallery_counter {
  bottom: 52px;
  text-align: center;
  width: 100%;
  position: absolute;
  z-index: 9;
  color: #FFFFFF; }

/*lightGallery Thumb*/
#lightGallery-Gallery .thumb_cont {
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #000000;
  transition: max-height 0.4s ease-in-out;
  z-index: 9;
  max-height: 0;
  opacity: 0; }

#lightGallery-Gallery .thumb_cont .thumb_inner {
  margin-left: -12px;
  padding: 12px;
  max-height: 290px;
  overflow-y: auto;
  box-sizing: content-box; }

#lightGallery-Gallery .thumb_cont .thumb_info {
  background-color: #333;
  padding: 7px 20px; }

#lightGallery-Gallery .thumb_cont .thumb_info .count {
  color: #ffffff;
  font-weight: bold;
  font-size: 12px; }

#lightGallery-Gallery .thumb_cont .thumb_info .close {
  color: #FFFFFF;
  display: block;
  float: right !important;
  width: 28px;
  position: relative;
  height: 28px;
  border-radius: 2px;
  margin-top: -4px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.65);
  transition: background-color 0.3s ease 0s;
  z-index: 1090;
  cursor: pointer; }

#lightGallery-Gallery .thumb_cont .thumb_info .close i:after {
  left: 6px;
  position: absolute;
  top: 4px; }

#lightGallery-Gallery .thumb_cont .thumb_info .close i:after, #lightGallery-close:after {
  content: "\e01a";
  font-family: 'Slide-icons';
  font-style: normal;
  font-size: 16px; }

#lightGallery-Gallery .thumb_cont .thumb_info .close:hover {
  text-decoration: none;
  background-color: #000;
  background-color: black; }

#lightGallery-Gallery .thumb_cont .thumb {
  display: inline-block !important;
  vertical-align: middle;
  text-align: center;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  margin-bottom: 4px;
  height: 75px;
  width: 50px;
  opacity: 0.6;
  filter: alpha(opacity=60);
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color linear .2s, opacity linear .2s; }

@media (min-width: 800px) {
  #lightGallery-Gallery .thumb_cont .thumb {
    width: 94px;
    height: 94px; } }

#lightGallery-Gallery .thumb_cont .thumb > img {
  height: auto;
  max-width: 100%; }

#lightGallery-Gallery .thumb_cont .thumb.active, #lightGallery-Gallery .thumb_cont .thumb:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  border-color: #ffffff; }

/*lightGallery Thumb*/
/*lightGallery Video*/
#lightGallery-slider .video_cont {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle; }

#lightGallery-slider .video_cont {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

#lightGallery-slider .video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative; }

#lightGallery-slider .video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

/*lightGallery Video*/
/*lightGallery Close*/
#lightGallery-close {
  color: #FFFFFF;
  height: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 28px;
  z-index: 1090;
  cursor: pointer;
  background-color: #000;
  border-radius: 2px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.65);
  transition: background-color 0.3s ease;
  -webkit-backface-visibility: hidden; }

#lightGallery-close:after {
  position: absolute;
  right: 6px;
  top: 3px; }

#lightGallery-close:hover {
  text-decoration: none;
  background-color: #000; }

/**/
.external#lightGallery-outer {
  overflow-x: hidden;
  overflow-y: auto; }

.external #lightGallery-Gallery {
  margin: auto;
  width: 600px;
  height: auto;
  background-color: white; }

.external #lightGallery-slider.on .lightGallery-slide {
  overflow: hidden;
  background-color: white; }

.external #lightGallery-slider .lightGallery-slide {
  min-height: 200px !important;
  background-color: white;
  margin-top: 60px; }

.external #lightGallery-slider .ext {
  float: left; }

.external #lightGallery-slider.slide .lightGallery-slide.current {
  height: auto !important; }

.external #lightGallery-slider.slide .lightGallery-slide {
  opacity: 0; }

/**/
.customHtml {
  background: none repeat scroll 0 0 black;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: Arial, sans-serif;
  height: 70px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9; }

.customHtml p {
  font-size: 14px; }

.customHtml > h4 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 15px; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 48px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 0.875em;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:after {
    color: white;
    content: '';
    font-family: "Booking-glyphs";
    opacity: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    position: absolute;
    font-size: 2.375em; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    content: '\e60e'; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    content: '\e60f'; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75); }
  .mfp-arrow-left {
    transform-origin: 0; }
  .mfp-arrow-right {
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mod-widget {
  background: white;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  float: left; }
  @media only screen and (min-width: 768px) {
    .mod-widget {
      padding: 30px;
      margin-bottom: 20px; } }
  .mod-widget img {
    max-width: 100%; }
  .mod-widget.mod-search-widget .mod-search .column-2 {
    width: 100%; }
  .mod-widget object.cp-pdf-object {
    max-height: 420px; }

@media only screen and (min-width: 768px) {
  .aside-mobileFriendly .mod-widget {
    padding: 0px 30px; } }

.aside-mobileFriendly .mod-widget .mod-widgetContent {
  margin: 0; }

.aside-mobileFriendly .mod-widget:first-child {
  margin-top: 10px; }
  @media only screen and (min-width: 1024px) {
    .aside-mobileFriendly .mod-widget:first-child {
      margin-top: 30px; } }

@media only screen and (min-width: 768px) {
  .mod-summaryWidgetsWithBG .mod-widget {
    padding: 30px; } }

@media only screen and (min-width: 1024px) {
  .mod-summaryWidgetsWithBG .mod-widget:first-child {
    margin-top: 0px; } }

.mod-summaryWidgetsWithBG .mod-widget.mod-search-widget {
  padding: 0; }


.link-bg {
  background-color: #db0148; }
  .link-bg:hover, .link-bg:focus {
    background-color: #db0148; }

.mod-heroIntro {
  padding: 15px 10px;
  clear: both; }
  @media only screen and (min-width: 1920px) {
    .mod-heroIntro {
      padding: 25px 30px; } }

.mod-heroIntro p {
  margin: 0;
  padding: 0; }

.mod-heroIntro address {
  font-size: 0.875em;
  padding-left: 16px;
  color: #cacaca; }

.mod-heroIntro .details {
  clear: both;
  overflow: hidden;
  padding-top: 10px;
  text-align: right; }

@media only screen and (min-width: 768px) {
  .mod-heroIntro .details p {
    width: 47.36842%;
    float: left;
    margin-right: 5.26316%; } }

.mod-heroIntro .details div {
  text-align: right; }
  @media only screen and (min-width: 768px) {
    .mod-heroIntro .details div {
      width: 47.36842%;
      float: right;
      margin-right: 0; } }

.hero-price-details {
  position: relative;
  top: 5px; }
  @media only screen and (min-width: 1920px) {
    .hero-price-details {
      top: 10px; } }

@media only screen and (min-width: 1920px) {
  .hero-price-details .intro-text {
    position: relative;
    top: -6px; } }

.intro {
  overflow: hidden;
  clear: both; }

@media only screen and (min-width: 768px) {
  .intro .column:first-child {
    width: 61.53846%;
    float: left;
    margin-right: 2.5641%; } }

@media only screen and (min-width: 768px) {
  .intro .column {
    width: 35.89744%;
    float: right;
    margin-right: 0; } }

.intro .column-last {
  display: none; }
  @media only screen and (min-width: 768px) {
    .intro .column-last {
      display: block; } }

.likes-outer {
  display: inline-block;
  padding: 5px 0; }
  @media only screen and (min-width: 768px) {
    .likes-outer {
      float: right;
      padding: 0; } }

.likes-outer .likes {
  top: 0; }

.likes-title {
  padding-right: 5px; }
  @media only screen and (min-width: 768px) {
    .likes-title {
      position: relative;
      top: -1px; } }

.icon-dropdown {
  position: relative;
  display: block; }
  .icon-dropdown:after {
    content: "\e60d";
    position: absolute;
    font-family: "Booking-glyphs";
    font-size: 38px;
    line-height: 24px; }

.active .icon-dropdown:after {
  content: "\e60c"; }

.mod-heroIntro .icon-dropdown {
  float: right;
  padding-left: 20px; }

.mod-heroLarge {
  z-index: 1; }
  .mod-heroLarge.is--hiddenLarge {
    display: none; }

.mod-heroLarge-picture {
  background-position: 30% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 190px;
  position: relative;
  clear: both;
  z-index: 1;
  transition: all .2s ease-in; }
  @media only screen and (min-width: 480px) {
    .mod-heroLarge-picture {
      height: 305px; } }
  @media only screen and (min-width: 768px) {
    .mod-heroLarge-picture {
      height: 405px;
      display: block; } }
  @media only screen and (min-width: 1024px) {
    .mod-heroLarge-picture {
      height: 505px; } }
  @media only screen and (min-width: 1920px) {
    .mod-heroLarge-picture {
      height: 650px; } }

.mod-heroLarge-picture:hover {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4) inset;
  transition: all .2s ease-in; }

.mod-heroLargeFooter {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  bottom: calc(100% - 131px);
  padding: 5px 10px;
  position: absolute;
  width: 100%;
  z-index: 2; }
  @media only screen and (min-width: 768px) {
    .mod-heroLargeFooter {
      padding: 10px;
      display: block; } }
  .mod-heroLargeFooter .image-counter {
    display: inline;
    padding: 0;
    color: #646464; }

.mod-imageCount {
  width: 48.71795%;
  float: left;
  margin-right: 2.5641%; }

.mod-heroLargeFooter a {
  float: right;
  text-align: right;
  padding-right: 24px; }

.mod-heroLargeFooter.active {
  background: none;
  bottom: 20px; }

.mod-heroLargeFooter.active a {
  padding: 0 30px 0 20px;
  width: auto; }

.mod-heroLargeFooter.active a:after {
  background: none; }

#hero-picture #map-canvas:after {
  background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll -200px -180px rgba(255, 255, 255, 0.6);
  content: "";
  height: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 45px;
  visibility: visible; }
  @media only screen and (min-width: 768px) {
    #hero-picture #map-canvas:after {
      right: 20px;
      top: 20px; } }
  @media only screen and (min-width: 1920px) {
    #hero-picture #map-canvas:after {
      right: 30px;
      top: 30px; } }

#hero-picture #map-canvas.no-icon:after {
  visibility: hidden; }

.hero-arrowLeft:before,
.hero-arrowRight:after {
  background-repeat: no-repeat;
  content: '';
  position: absolute;
  width: 25px;
  height: 45px;
  top: 17px; }

.hero-arrowLeft:before {
  background-image: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg");
  background-position: -150px -177px;
  left: 20px; }

.hero-arrowRight:after {
  right: 20px;
  background-image: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg");
  background-position: -6px -177px; }

.hero-arrowLeft,
.hero-arrowRight {
  position: absolute;
  text-indent: -999em;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  width: 74px;
  height: 80px; }

.hero-arrowLeft {
  left: 30px; }

.hero-arrowRight {
  right: 30px; }

.hero-galleryCta {
  height: 100%;
  position: absolute;
  right: 0;
  text-indent: -999em;
  top: 0;
  width: 100%; }

.instantweb .hero-galleryCta:after {
  background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll -200px -180px rgba(255, 255, 255, 0.6);
  content: "";
  height: 45px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 45px; }

#map-canvas {
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1; }

.section {
  padding: 10px 10px 0; }
  @media only screen and (min-width: 1024px) {
    .section {
      padding: 30px 30px 0; } }

.section-full, .mod-notifications {
  padding: 10px; }
  @media only screen and (min-width: 1024px) {
    .section-full, .mod-notifications {
      padding: 30px; } }

.mod-notifications {
  background: #f0f0f0;
  clear: both; }

.mod-notice ul {
  font-size: 0.875em;
  line-height: 100%;
  margin-left: 0; }

.mod-notice li {
  line-height: 22px;
  margin-top: 5px;
  display: inline-block;
  max-width: 95%; }

.mod-notice li:first-child {
  margin-top: 0; }

.mod-notice h5 span {
  text-transform: uppercase;
  padding-bottom: 15px;
  max-width: 90%; }

.mod-notice {
  background: white;
  border: 1px solid rgba(100, 100, 100, 0.2);
  margin: 10px 0 0;
  padding: 10px;
  position: relative;
  border-radius: 3px; }

.mod-notice:first-child {
  margin: 0; }

.mod-notice-last {
  margin: 0; }

.mod-notice-warning {
  background: #fbf0c3 url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIzNXB4IiBoZWlnaHQ9IjMzcHgiIHZpZXdCb3g9IjAgMCAzNSAzMyIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzUgMzMiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0MwODEyRiIgZD0iTTM0LjcsMjkuOEwxOS41LDEuMkMxOS4xLDAuNCwxOC4zLDAsMTcuNSwwaDBjLTAuOCwwLTEuNiwwLjQtMS45LDEuMkwwLjMsMjkuOGMtMC40LDAuNy0wLjMsMS41LDAuMSwyLjINCglDMC43LDMyLjYsMS40LDMzLDIuMiwzM2gzMC42YzAuOCwwLDEuNS0wLjQsMS45LTEuMUMzNS4xLDMxLjMsMzUuMSwzMC40LDM0LjcsMjkuOCBNMTcuNSwyOC42Yy0xLjIsMC0yLjItMS0yLjItMi4yczEtMi4yLDIuMi0yLjINCgljMS4yLDAsMi4yLDEsMi4yLDIuMlMxOC43LDI4LjYsMTcuNSwyOC42IE0xOS43LDE5LjhjMCwxLjItMSwyLjItMi4yLDIuMmMtMS4yLDAtMi4yLTEtMi4yLTIuMlYxMWMwLTEuMiwxLTIuMiwyLjItMi4yDQoJYzEuMiwwLDIuMiwxLDIuMiwyLjJWMTkuOHoiLz4NCjwvc3ZnPg0K") no-repeat scroll 10px 50%;
  border-color: #a3620a;
  color: #a3620a;
  overflow: hidden;
  padding-left: 55px; }
  .mod-notice-warning.mod-notice a {
    color: #a3620a;
    font-size: 14px; }
  .mod-notice-warning.mod-notice span {
    display: block;
    line-height: 16px;
    color: #a3620a; }
    @media only screen and (min-width: 768px) {
      .mod-notice-warning.mod-notice span {
        line-height: 18px; } }
  .mod-notice-warning.mod-notice .last-column {
    float: right; }
    .mod-notice-warning.mod-notice .last-column .cp-button {
      color: white;
      background: #c0812f;
      height: auto;
      line-height: 1;
      padding: 10px; }

.mod-notice-error {
  color: #92090e;
  background: #fadbd8;
  border: 1px solid #fadbd8; }

.mod-notice-success {
  color: #619246;
  background: #cbf3db; }

.ui-tooltip-custom-close,
.cp-close {
  display: block;
  font-size: 0;
  position: absolute;
  right: 10px; }
  .ui-tooltip-custom-close:after,
  .cp-close:after {
    content: "\e907";
    font-family: "Booking-glyphs";
    text-indent: 0;
    font-size: 14px; }

.payment .mod-notifications-outer {
  display: block;
  left: 50%;
  position: fixed;
  top: 50%;
  max-width: 260px;
  z-index: 10;
  transform: translate(-50%, -50%);
  /*Hide title for payment page server errors*/ }
  @media only screen and (min-width: 480px) {
    .payment .mod-notifications-outer {
      max-width: 480px; } }
  @media only screen and (min-width: 768px) {
    .payment .mod-notifications-outer {
      max-width: 600px; } }
  .payment .mod-notifications-outer .mod-notifications {
    vertical-align: middle;
    padding: 0;
    background: none; }
  .payment .mod-notifications-outer .mod-notice {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    width: 100%;
    padding-right: 35px; }
  .payment .mod-notifications-outer .mod-notice-error {
    cursor: pointer; }
  .payment .mod-notifications-outer .mod-notice-error > h5 {
    display: none; }

.mod-search {
  position: relative;
  min-height: 64px;
  clear: both;
  text-align: left;
  float: left;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .mod-search {
      display: table;
      width: 100%;
      min-height: auto; }
      .mod-search:after {
        clear: both;
        display: table;
        content: ''; } }
  @media only screen and (min-width: 1100px) {
    .mod-search {
      display: block; } }

.search-inner.master-container .mod-search-inner {
  padding: 10px; }

.booking-outer .mod-search {
  background-color: #f0f0f0;
  padding: 10px;
  border: 1px solid #646464; }

.main.search.mod-search {
  min-height: 30px; }

.mod-results .mod-search {
  margin: 10px 0; }

.cp-button-price-wrapper {
  position: relative;
  float: left;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .cp-button-price-wrapper {
      float: right;
      width: auto; } }
  .cp-button-price-wrapper .button-overlay {
    display: none; }
  .cp-button-price-wrapper button[disabled] + .button-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block; }

.mod-search .cp-input {
  width: 100%;
  margin: 0 0 10px 0; }
  .mod-search .cp-input:hover {
    border-color: #383a3d; }
  @media only screen and (min-width: 768px) {
    .mod-search .cp-input {
      width: 260px;
      margin: 0 10px 0 0;
      display: block;
      float: left; } }

.mod-search .tooltip-holder:hover {
  border-color: #383a3d;
  cursor: pointer; }

.mod-search .column-1 {
  width: 49%;
  display: inline-block;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .mod-search .column-1 {
      margin-right: 10px;
      margin-bottom: 10px; } }
  @media only screen and (min-width: 1100px) {
    .mod-search .column-1 {
      width: 15%;
      min-width: 150px;
      margin-right: 10px;
      margin-bottom: 0; } }

.mod-search {
  /* firefox 19+ */
  /* ie */ }
  .mod-search .icon-input::-webkit-input-placeholder {
    color: black; }
  .mod-search .icon-input::-moz-placeholder {
    color: black; }
  .mod-search .icon-input:-ms-input-placeholder {
    color: black; }
  .mod-search .icon-input:-moz-placeholder {
    color: black; }

.svg .mod-search .icon-calendar {
  color: black;
  width: 100%;
  float: left;
  background: url("/ui/wl/4.126/images/sprites/search/calendar-sprite.svg") right 11px no-repeat, url("/ui/wl/4.126/images/sprites/search/calendar-sprite.svg") 3px -23px no-repeat;
  background-color: white;
  cursor: pointer;
  font-size: 13px; }

.mod-search .column-3 {
  width: 49%;
  display: inline-block;
  position: relative; }
  @media only screen and (min-width: 1100px) {
    .mod-search .column-3 {
      width: 15%;
      min-width: 140px;
      margin-right: 10px; } }

.mod-search .column-2 {
  width: 49%;
  display: inline-block;
  position: relative; }
  @media only screen and (min-width: 1100px) {
    .mod-search .column-2 {
      width: 15%;
      min-width: 150px;
      margin-right: 10px; } }
  .mod-search .column-2 .ui-selectmenu-button {
    float: left; }

.mod-search .cp-button-price {
  position: relative;
  float: right;
  width: 100%;
  margin-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .mod-search .cp-button-price {
      top: 22px;
      width: auto;
      font-size: 0.875em; } }

.pr {
  clear: both;
  position: relative;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .pr {
      display: inline-block;
      width: 70%; } }
  @media only screen and (min-width: 1100px) {
    .pr {
      width: 35%;
      clear: none; } }

.room-counter {
  margin: 0;
  font-size: 14px; }
  .room-counter span {
    background-color: #383a3d;
    border-radius: 100%;
    color: white;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    padding: 0 7px;
    text-align: center; }

.mod-search .cp-inputValues {
  background-image: none;
  clear: both;
  min-height: 44px;
  display: block;
  padding: 11px 0 0 38px;
  width: auto;
  overflow-y: auto;
  border: 1px solid #d7d8d8;
  background-color: white;
  cursor: pointer; }
  .mod-search .cp-inputValues:before {
    content: "";
    height: 20px;
    position: absolute;
    width: 40px;
    margin-left: -26px;
    right: 0; }
  @media only screen and (min-width: 320px) {
    .mod-search .cp-inputValues {
      min-width: 100%;
      max-width: 100%;
      max-height: inherit; } }
  @media only screen and (min-width: 768px) {
    .mod-search .cp-inputValues {
      width: 100%;
      max-height: 44px; } }
  @media only screen and (min-width: 1100px) {
    .mod-search .cp-inputValues {
      min-width: 100%;
      max-width: 100%; } }
  .mod-search .cp-inputValues.icon-guest {
    background: url("/ui/wl/4.126/images/sprites/search/calendar-sprite.svg") right 10px no-repeat, url("/ui/wl/4.126/images/sprites/search/calendar-sprite.svg") 3px -60px no-repeat;
    background-color: white; }

.mod-search-filters.mod-search .cp-inputValues {
  max-width: 20em;
  min-width: 20em;
  width: auto; }

.mod-search .cp-inputValues span {
  text-decoration: none;
  font-size: 13px;
  color: black;
  display: inline-block;
  margin: 0 10px 5px 0;
  list-style: none;
  height: 26px;
  line-height: 26px;
  padding: 0 5px 0 0;
  vertical-align: middle;
  position: relative;
  top: -2px;
  transition: color .2s ease-in; }

.cp-inputValues .default {
  background: none;
  border: 1px solid white;
  cursor: initial;
  padding: 0; }

.cp-inputValues-action {
  display: inline-block;
  height: 20px;
  position: relative;
  text-indent: -9999em;
  top: 1px;
  width: 17px;
  left: 5px;
  cursor: pointer; }
  .svg .cp-inputValues-action {
    background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll 0 -145px transparent; }
  .no-svg .cp-inputValues-action {
    background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine.png") no-repeat scroll 0 -145px transparent; }

.mod-search .cp-inputValues {
  background: url("/ui/wl/4.126/images/search-form-sprite.svg") no-repeat scroll 5px 5px transparent;
  background-color: white; }

.booking .sticky {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .booking .sticky .mod-search {
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5); } }

/*Search results*/
.mod-search-filters.mod-search {
  padding: 0; }
  .mod-search-filters.mod-search .cp-input {
    margin: 0;
    width: 100%;
    color: black; }
  .mod-search-filters.mod-search .column-outer.cloned {
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%; }
  .mod-search-filters.mod-search .cp-inputValues {
    width: 100%;
    max-width: 100%;
    min-width: 100%; }
    @media only screen and (min-width: 768px) {
      .mod-search-filters.mod-search .cp-inputValues {
        min-width: 280px; } }
  .mod-search-filters.mod-search .first-child {
    /*outline removal from chrome and safari*/ }
    .mod-search-filters.mod-search .first-child:focus {
      outline-color: transparent;
      outline-style: none; }
    @media only screen and (min-width: 1024px) {
      .mod-search-filters.mod-search .first-child {
        width: 188px;
        padding-left: 10px; } }
  .mod-search-filters.mod-search .second-child {
    width: 49.36709%;
    float: left;
    margin-right: 1.26582%; }
  .mod-search-filters.mod-search .third-child {
    width: 49.36709%;
    float: right;
    margin-right: 0; }
  .mod-search-filters.mod-search .ui-datepicker table {
    width: 100%; }

.column-outer .column-inner:before, .column-outer .column-inner:after {
  display: table;
  content: ''; }

.column-outer .column-inner:after {
  clear: both; }

.column-outer .column-inner:nth-child(2n) {
  background-color: #f0f0f0; }

.column-outer .room {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px 3px 0 0;
  color: white;
  display: inline-block;
  font-size: 14px;
  padding: 0 5px; }

.column-outer .room-inner {
  clear: both;
  display: block; }

.column-outer.overflow {
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto; }
  .column-outer.overflow + .faded-container {
    background: #cfcfcf;
    background: radial-gradient(ellipse at center, #cfcfcf 0%, rgba(255, 255, 255, 0) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfcfcf', endColorstr='$colour--white', GradientType=1 );
    display: block;
    height: 20px;
    margin-top: -10px;
    overflow: hidden;
    position: relative;
    width: 100%; }
    .column-outer.overflow + .faded-container:after {
      background-color: white;
      border-top: 1px solid #ccc;
      bottom: 0;
      content: "";
      height: 11px;
      position: absolute;
      width: 100%; }

.mod-search-filters .invalid #eviivo-search-destination-tooltip {
  display: block; }

.heading {
  float: left;
  width: 100%; }

.instantweb .mod-search {
  border-bottom: none; }

.instantweb .mod-search {
  background: #383a3d;
  padding: 10px;
  float: none; }
  .instantweb .mod-search label {
    color: white; }
  .instantweb .mod-search.mod-search-date-range {
    background: white; }
  .instantweb .mod-search.searchDone {
    background: #383a3d; }
    .instantweb .mod-search.searchDone button.cp-button-text {
      background: #383a3d; }
  .instantweb .mod-search.searchExpanded {
    background: white; }
    .instantweb .mod-search.searchExpanded button.cp-button-text {
      background: none; }

.cp-tooltip {
  background: white;
  left: -10px;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px;
  display: none;
  padding: 10px;
  width: 260px;
  position: absolute;
  z-index: 4; }
  @media only screen and (min-width: 768px) {
    .cp-tooltip {
      top: 64px;
      left: 0; } }

.cp-tooltip:before {
  background: transparent;
  content: "";
  left: 10px;
  position: absolute;
  top: -18px;
  border-color: transparent transparent white transparent;
  border-style: solid;
  border-width: 10px;
  width: 0;
  height: 0; }

.mod-search .cp-tooltip:before,
.mod-search .cp-tooltip:after {
  background: transparent;
  content: "";
  left: 25px;
  position: absolute;
  bottom: 100%;
  top: auto;
  border: solid transparent;
  width: 0;
  height: 0;
  pointer-events: none; }

.mod-search .cp-tooltip:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: white;
  border-width: 10px;
  margin-left: -10px; }

.mod-search .cp-tooltip:before {
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: #D7D8D8;
  border-width: 11px;
  margin-left: -11px; }

.cp-tooltip .column-outer .column:first-child {
  width: 48.71795%;
  float: left;
  margin-right: 2.5641%; }

.cp-tooltip .column-outer .column {
  width: 48.71795%;
  float: right;
  margin-right: 0; }

.cp-tooltip .column-outer {
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%; }

.column-outer .room {
  clear: both;
  display: inline-block; }

.cp-tooltip .ui-selectmenu-button {
  width: 100% !important;
  text-align: left;
  margin: 0 0 10px 0; }
  .cp-tooltip .ui-selectmenu-button.ui-state-disabled {
    background-color: #cacaca;
    border-color: #d7d8d8;
    padding: 0 10px; }

.cp-tooltip .cp-button-small {
  width: auto; }

#btn-addRoom {
  border-radius: 3px 0 0 3px; }

#btn-removeRoom {
  border-radius: 0 3px 3px 0;
  margin-left: -4px;
  border-left: 1px solid white; }

.actions {
  margin-left: 3.5em;
  height: 3em; }

.actions button {
  width: 100%;
  height: 100%; }

.cp-tooltip .room-actions,
.cp-tooltip .room-container {
  clear: both;
  display: block; }

.room-actions {
  float: right; }
  .room-actions span {
    font-size: 14px; }

.ui-tooltip {
  box-shadow: 0 1px 1px rgba(100, 100, 100, 0.25), 0 0 1px rgba(100, 100, 100, 0.35);
  position: absolute;
  max-width: 300px;
  border-radius: 3px;
  z-index: 1000;
  background-color: black;
  color: white; }
  .ui-tooltip.tooltip-error {
    background-color: #b33535; }
  .ui-tooltip.tooltip-white {
    background-color: white;
    color: black; }
  .ui-tooltip .ui-tooltip-content {
    font-size: 14px;
    line-height: 21px;
    color: inherit;
    background-color: inherit;
    border-radius: inherit;
    padding: 15px;
    position: relative;
    z-index: 1; }
    .ui-tooltip .ui-tooltip-content li {
      border-top: 1px solid rgba(255, 255, 255, 0.4);
      font-size: 14px;
      line-height: 16px;
      margin-bottom: 10px;
      padding-top: 10px;
      position: relative; }
      .ui-tooltip .ui-tooltip-content li:first-child {
        border: medium none;
        padding-top: 0; }
      .ui-tooltip .ui-tooltip-content li .block {
        display: block; }
      .ui-tooltip .ui-tooltip-content li .small {
        color: rgba(255, 255, 255, 0.8);
        font-size: 13px; }
      .ui-tooltip .ui-tooltip-content li:after {
        content: attr(data-value);
        position: absolute;
        text-align: center;
        width: 100%;
        bottom: -16px;
        z-index: 2; }
      .ui-tooltip .ui-tooltip-content li:before {
        background: black;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 6px;
        bottom: -17px;
        content: "";
        display: inline-block;
        height: 15px;
        left: calc(50% - 20px);
        margin: 0 auto;
        position: absolute;
        width: 40px;
        z-index: 1; }
      .ui-tooltip .ui-tooltip-content li:last-child:after, .ui-tooltip .ui-tooltip-content li:last-child:before {
        content: none;
        border: none;
        background: none; }
  .ui-tooltip .arrow {
    position: absolute;
    width: 25px;
    height: 25px;
    box-shadow: 0 0 9px 0 black;
    transform: rotate(45deg);
    background-color: inherit; }
    .ui-tooltip .arrow.top, .ui-tooltip .arrow.bottom {
      left: 50%;
      margin-left: -12.5px; }
    .ui-tooltip .arrow.top {
      top: -7.5px; }
    .ui-tooltip .arrow.bottom {
      bottom: -7.5px; }
    .ui-tooltip .arrow.left, .ui-tooltip .arrow.right {
      top: 50%;
      margin-top: -12.5px; }
    .ui-tooltip .arrow.left {
      left: -12.5px; }
    .ui-tooltip .arrow.right {
      right: -12.5px; }

.cp-tip {
  background: #db0148;
  border-radius: 10em;
  color: white;
  display: inline-block;
  font-size: 14px;
  height: 20px;
  line-height: 20px;
  margin: 0 3px;
  text-align: center;
  width: 20px;
  cursor: help;
  position: relative;
  cursor: help; }
  .cp-tip a {
    border-bottom: 1px dotted; }

.cp-tipTransparent {
  background: inherit;
  border-radius: 0;
  color: initial;
  font-size: inherit;
  height: inherit;
  line-height: inherit;
  margin: inherit;
  text-align: inherit;
  width: inherit; }

.ui-selectmenu-menu {
  z-index: 940; }

.tooltip-maps {
  z-index: 2;
  /*search results map overlay tooltip*/ }

.mod-search .cp-tooltip-info {
  left: 0;
  position: absolute;
  background: #fff6df;
  border: 1px solid #feba02;
  font-size: 14px;
  color: black;
  top: 64px;
  z-index: 6; }
  .mod-search .cp-tooltip-info:after, .mod-search .cp-tooltip-info:before {
    bottom: 100%;
    left: 25px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .mod-search .cp-tooltip-info:after {
    border-color: rgba(255, 246, 223, 0);
    border-bottom-color: #fff6df;
    border-width: 11px;
    margin-left: -11px; }
  .mod-search .cp-tooltip-info:before {
    border-color: rgba(254, 186, 2, 0);
    border-bottom-color: #feba02;
    border-width: 12px;
    margin-left: -12px; }
  .mod-search .cp-tooltip-info .column-outer {
    display: inline-block;
    max-width: 90%;
    line-height: 18px; }
  .mod-search .cp-tooltip-info.infotip .cp-hide:before {
    color: black; }

@media only screen and (min-width: 768px) {
  .search .mod-search-filters.mod-search .cp-tooltip {
    top: 46px; } }

.search .mod-search-filters.mod-search .cp-tooltip-info {
  top: 46px;
  z-index: 10; }

.tooltip-holder {
  position: relative;
  display: block; }

.cp-hide {
  display: inline-block;
  color: black; }
  .cp-hide:before {
    content: '\e601';
    display: block;
    font-family: Booking-glyphs;
    font-size: 34px;
    position: absolute;
    text-indent: 0;
    right: 0;
    top: 5px; }

.cp-tooltip-info {
  width: 250px; }

.cp-tip-closable {
  position: relative; }

.awards {
  background: url("/ui/wl/4.126/images/sprites/search/awards-icons-ratings.png") no-repeat 0 20px transparent;
  width: 16px;
  height: 16px;
  display: inline-block;
  text-indent: -9999em;
  position: relative;
  top: 2px; }
  .instantweb .awards {
    line-height: 1;
    top: 0; }
  .awards.award-aa {
    background-position: 0 0;
    /*1-AA*/ }
  .awards.award-welsh-tourist-board {
    background-position: 0 -16px;
    /*2-Welsh Tourist Board*/ }
  .awards.award-visit-england {
    background-position: 0 -32px;
    /*-Visit England*/ }
  .awards.award-visit-scotland {
    background-position: 0 -48px;
    /*4-Visit Scotland*/ }
  .awards.award-holiday-cottages-group, .awards.award-5 {
    background-position: 0 -64px;
    /*5-Holiday Cottages Group*/ }
  .awards.award-jersey-tourist-board, .awards.award-6 {
    background-position: 0 -80px;
    /*6-Jersey Tourist Board*/ }
  .awards.award-isle-of-man-tourist-board, .awards.award-7 {
    background-position: 0 -96px;
    /*7-Isle of Man Tourist Board*/ }
  .awards.award-northern-ireland-tourist-board, .awards.award-8 {
    background-position: 0 -112px;
    /*8-Northern Ireland Tourist Board*/ }
  .awards.award-norfolk-country-cottages, .awards.award-9 {
    background-position: 0 -128px;
    /*9-Norfolk Country Cottages*/ }
  .awards.award-10 {
    background-position: 0 -144px;
    /*No logo ||					10-Holiday Cottages Group - Scotland*/ }
  .awards.award-welcome-to-yorkshire, .awards.award-11 {
    background-position: 0 -160px;
    /*11-Welcome to Yorkshire*/ }
  .awards.award-guernsey-tourist-board, .awards.award-12 {
    background-position: 0 -176px;
    /*12-Guernsey Tourist Board*/ }
  .awards.award-national-tourist-board, .awards.award-13 {
    background-position: 0 -192px;
    /*No logo ||					13-National Tourist Board*/ }
  .awards.award-dorset-holiday-cottages, .awards.award-14 {
    background-position: 0 -208px;
    /*No logo ||						14-Dorset Holiday Cottages*/ }
  .awards.award-cotswolds-tourism, .awards.award-15 {
    background-position: 0 -224px;
    /*15-Cotswolds Tourism*/ }
  .awards.award-self-assessed {
    background-position: 0 -240px; }

/*Star Ratings*/
.ratings {
  display: inline-block;
  position: relative;
  width: 74px;
  height: 21px;
  top: 0px;
  margin-right: 3px;
  overflow: hidden; }
  .ratings:before {
    content: "\e90a";
    font-family: Booking-glyphs;
    font-size: 56px;
    position: absolute;
    color: #FFCF57;
    left: -15px; }
  .ratings.ratings-5 {
    width: 112px; }
  .ratings.ratings-4 {
    width: 86px; }
  .ratings.ratings-3 {
    width: 68px; }
  .ratings.ratings-2 {
    width: 46px; }

.mod-ranking {
  position: relative;
  display: inline-block;
  line-height: 24px;
  margin: 0 0 5px 0;
  top: 10px;
  height: 24px; }

.mod-slidingContent.active .mod-slideContent-sliding {
  display: block; }

.mod-slidingContent.active .mod-slideContent-main {
  display: none; }

.mod-slidingContent .mod-slideContent-sliding {
  display: none; }

.breadcrumb-outer {
  background: #f9f9f9;
  border-top: 1px solid #d7d8d8;
  border-bottom: 1px solid #d7d8d8;
  padding: 0 10px; }

.breadcrumb {
  margin: 0 auto;
  clear: both;
  max-width: 1520px;
  overflow: hidden; }
  .breadcrumb li {
    color: #383a3d;
    display: inline-block;
    font-size: 12px;
    list-style: outside none none;
    padding: 0 5px 0 30px;
    position: relative;
    text-transform: capitalize;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    /*hide first two list items EVDEV-6981*/ }
    .breadcrumb li:first-child {
      background: none;
      padding-left: 30px;
      margin-left: 5px; }
      .breadcrumb li:first-child:before {
        content: '\e611';
        font-family: Booking-glyphs;
        font-size: 22px;
        color: #383a3d;
        left: 5px; }
    .breadcrumb li:nth-child(1), .breadcrumb li:nth-child(2) {
      display: none; }
      @media only screen and (min-width: 768px) {
        .breadcrumb li:nth-child(1), .breadcrumb li:nth-child(2) {
          display: inline-block; } }
    .breadcrumb li:before {
      content: '\e60f';
      font-family: Booking-glyphs;
      left: -10px;
      position: absolute;
      font-size: 41px;
      color: #d7d8d8;
      font-weight: 100; }
  .breadcrumb .active {
    font-weight: 400; }

.main.booking .back-link {
  background: #f9f9f9;
  border-top: 1px solid #d7d8d8;
  border-bottom: 1px solid #d7d8d8; }
  .main.booking .back-link .breadcrumb-outer {
    border: none;
    padding: 0; }

.back-link-container,
.breadcrumb-container {
  width: 100%;
  background: #f9f9f9;
  border-top: 1px solid #d7d8d8;
  border-bottom: 1px solid #d7d8d8; }
  @media only screen and (min-width: 768px) {
    .back-link-container,
    .breadcrumb-container {
      display: block; } }
  .back-link-container .breadcrumb-outer,
  .breadcrumb-container .breadcrumb-outer {
    border: 0 none;
    background-color: transparent;
    max-width: 1140px; }

.back-link-container .breadcrumb li {
  padding: 0 5px 0 0;
  font-weight: bold;
  font-size: 16px;
  display: block; }
  .back-link-container .breadcrumb li:first-child {
    padding-left: 0; }
    .back-link-container .breadcrumb li:first-child:before {
      content: '';
      left: 0; }

.main .breadcrumb-container {
  display: none; }

.main.eviivocoop .breadcrumb-container,
.main.tripadvisor .breadcrumb-container,
.main.toprooms .breadcrumb-container {
  display: block; }

.mod-contentWithSidebar {
  background: #cacaca;
  padding: 10px;
  margin: 0;
  clear: both; }
  @media only screen and (min-width: 768px) {
    .mod-contentWithSidebar {
      background: #f0f0f0;
      padding: 30px; } }
  .mod-contentWithSidebar.contentWithNoWidgets .content {
    width: 100%;
    padding-top: 10px; }
  .mod-contentWithSidebar .title {
    font-size: 1.125em;
    text-transform: uppercase;
    color: black;
    background: none;
    font-weight: 400;
    border-top: 0;
    padding: 20px 10px; }
    @media only screen and (min-width: 768px) {
      .mod-contentWithSidebar .title {
        background: white;
        font-size: 1.375em; } }
  .mod-contentWithSidebar .column {
    margin-bottom: 20px; }
    .mod-contentWithSidebar .column.column-desciption {
      margin-bottom: 0; }
      .mod-contentWithSidebar .column.column-desciption p {
        padding: 0; }
  .mod-contentWithSidebar .column li {
    display: inline-block;
    line-height: 26px;
    list-style: outside none none;
    margin-right: 5px;
    padding-left: 30px;
    vertical-align: middle; }
  .mod-contentWithSidebar h4.subtitle {
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid #d7d8d8;
    padding: 0 0 10px 0; }
  .mod-contentWithSidebar .mod-article li,
  .mod-contentWithSidebar p {
    color: #383a3d; }

.content-inner {
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .content-inner {
      padding: 0 10px; } }

.aside .mod-widgetContent {
  color: #646464;
  margin-bottom: 20px;
  font-size: 14px; }

.main .mod-contact ul li {
  padding-left: 0; }

@media only screen and (min-width: 768px) {
  .mod-contact-columns .column-1 {
    width: 48.97959%;
    float: left;
    margin-right: 2.04082%; } }

@media only screen and (min-width: 768px) {
  .mod-contact-columns .column-2 {
    width: 48.97959%;
    float: right;
    margin-right: 0; } }

.mod-contact-columns address {
  font-style: normal; }

.mod-contact-columns .item {
  display: block; }
  .mod-contact-columns .item span {
    display: block;
    min-width: 150px;
    margin-right: 10px; }
    @media only screen and (min-width: 768px) {
      .mod-contact-columns .item span {
        display: inline-block; } }

.mod-googleMap {
  clear: both;
  position: relative; }
  .mod-googleMap .maps a {
    position: relative; }
  .mod-googleMap .maps img {
    max-width: 320px; }
  .mod-googleMap .cp-button-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px; }

.cp-map-address {
  overflow: hidden;
  padding: 15px 0; }
  .cp-map-address address span {
    display: block; }
  @media only screen and (min-width: 768px) {
    .cp-map-address .col-1 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; } }
  @media only screen and (min-width: 768px) {
    .cp-map-address .col-2 {
      width: 49.15254%;
      float: right;
      margin-right: 0; } }

.mod-summaryAside {
  margin: 0 0 20px;
  padding: 0 0 15px 0;
  overflow: hidden;
  border-bottom: solid 1px #D7D8D8;
  /*styles fot items which priced per adults and children.*/ }
  .mod-summaryAside.no-border {
    border-bottom: 0 none;
    margin-bottom: 10px;
    padding-bottom: 0; }
  .mod-summaryAside_spacer {
    border-bottom: solid 1px #444;
    margin: 15px 0; }
  .mod-summaryAside .address-icon {
    position: relative;
    padding: 0 0 0 25px;
    display: block;
    margin-bottom: 15px; }
    .mod-summaryAside .address-icon:before {
      content: "\e916";
      font-family: 'Booking-glyphs';
      font-size: 24px;
      position: absolute;
      left: 0;
      color: #646464; }
  .mod-summaryAside .column-row-4.poa-payment {
    background-color: transparent;
    color: black;
    padding-bottom: 5px; }
  .mod-summaryAside small,
  .mod-summaryAside address {
    color: #646464;
    font-style: normal;
    font-size: 14px; }
  .mod-summaryAside .column-row-2 .room:first-child .column:first-child strong {
    padding-bottom: 10px; }
  .mod-summaryAside .column-row-1 .column-last,
  .mod-summaryAside .column-row-2 .column-last {
    text-align: left; }
  .mod-summaryAside .column-row-3 .column,
  .mod-summaryAside .column-row-4 .column {
    width: 48.71795%;
    float: left;
    margin-right: 2.5641%; }
  .mod-summaryAside .column-row-3 .column-last,
  .mod-summaryAside .column-row-4 .column-last {
    width: 48.71795%;
    float: right;
    margin-right: 0;
    text-align: right; }
  .mod-summaryAside .column-row-3 .column-last span,
  .mod-summaryAside .column-row-4 .column-last span {
    display: inline-block; }
  .mod-summaryAside .column-1-3 {
    float: left; }
  .mod-summaryAside .column-2-3 {
    float: left; }
  .mod-summaryAside .column-3-3 {
    width: 49.15254%;
    float: right;
    margin-right: 0; }
  .mod-summaryAside .column-row.column-row-2 {
    padding-bottom: 0; }
  .mod-summaryAside .column-row p {
    clear: both;
    margin: 0;
    font-size: 14px;
    color: black; }
    .mod-summaryAside .column-row p.text-lighter {
      color: #646464; }
  .mod-summaryAside .column-row-4 {
    padding: 0;
    line-height: 1.2; }
  .mod-summaryAside .column-row .column-4-2 {
    width: 49.27536%;
    float: left;
    margin-right: 1.44928%; }
  .mod-summaryAside .column-row .column-4-3 {
    width: 49.27536%;
    float: right;
    margin-right: 0;
    text-align: right; }
  .mod-summaryAside .booking-charge {
    overflow: hidden;
    font-size: 13px;
    color: #646464;
    margin-bottom: 5px; }
    .mod-summaryAside .booking-charge .column-1 {
      width: 63.76812%;
      float: left;
      margin-right: 1.44928%;
      line-height: 14px; }
    .mod-summaryAside .booking-charge .column-last {
      width: 34.78261%;
      float: right;
      margin-right: 0;
      text-align: right; }
  .mod-summaryAside p {
    line-height: 1; }
  .mod-summaryAside .icon-calendar {
    position: relative; }
  .mod-summaryAside .icon-calendar:before {
    content: "";
    height: 25px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 25px; }
  .mod-summaryAside .room:first-child {
    padding: 0; }
  .mod-summaryAside .room {
    clear: both;
    padding-top: 10px; }
  .mod-summaryAside .column p small {
    color: #619246; }
  .mod-summaryAside .payment-content.card-payment {
    padding: 10px 20px; }
  .mod-summaryAside .text-lighter {
    color: #646464; }
  .mod-summaryAside .small {
    font-size: 14px;
    line-height: 16px; }
  .mod-summaryAside .tiny {
    font-size: 12px;
    line-height: 13px; }
  .mod-summaryAside .price-deal {
    font-size: 0.875em;
    font-weight: normal;
    color: rgba(100, 100, 100, 0.4);
    text-decoration: line-through;
    padding-right: 3px; }
  .mod-summaryAside .promo-text {
    display: block;
    font-size: 0.875em;
    font-weight: normal;
    line-height: 1;
    margin: -5px 0 0;
    padding: 0; }
  .mod-summaryAside .text-large {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 18px; }
  .mod-summaryAside .text-medium {
    font-weight: 400;
    margin-top: 5px; }
  .mod-summaryAside .align-right {
    text-align: right; }
  .mod-summaryAside .text-large-lighter {
    color: #111111; }
  .mod-summaryAside .h3 {
    font-size: 1em;
    margin-bottom: 10px; }
  .mod-summaryAside .half-line-break {
    width: 50%; }
  .mod-summaryAside_containerless {
    background: transparent;
    padding: 0 30px;
    margin-bottom: 0; }
  .mod-summaryAside .promo-row .column {
    width: 74.35897%;
    float: left;
    margin-right: 2.5641%; }
  .mod-summaryAside .promo-row .column-last {
    width: 23.07692%;
    float: right;
    margin-right: 0; }
  .mod-summaryAside .payment-total .column {
    width: 40.67797%;
    float: left;
    margin-right: 1.69492%; }
  .mod-summaryAside .payment-total .column-last {
    width: 57.62712%;
    float: right;
    margin-right: 0; }
  .mod-summaryAside .checkin-checkout {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    width: 100%; }
    @media only screen and (min-width: 480px) {
      .mod-summaryAside .checkin-checkout {
        width: 60%; } }
    @media only screen and (min-width: 1024px) {
      .mod-summaryAside .checkin-checkout {
        width: 100%; } }
    .mod-summaryAside .checkin-checkout .dates {
      width: 35.89744%;
      float: left;
      margin-right: 2.5641%;
      font-size: 14px;
      color: #646464;
      margin: 0; }
      .mod-summaryAside .checkin-checkout .dates .dates-condition {
        font-size: 13px;
        line-height: 1.2;
        color: #646464; }
      .mod-summaryAside .checkin-checkout .dates .date {
        font-size: 18px;
        color: black; }
      .mod-summaryAside .checkin-checkout .dates .day {
        font-size: 16px; }
      .mod-summaryAside .checkin-checkout .dates span {
        display: block;
        margin-bottom: 5px; }
    .mod-summaryAside .checkin-checkout .arrow {
      width: 23.07692%;
      float: left;
      margin-right: 2.5641%;
      text-align: center;
      -ms-grid-row-align: center;
          align-self: center;
      margin: 0; }
      .mod-summaryAside .checkin-checkout .arrow:before {
        content: "\e91d";
        font-family: 'Booking-glyphs';
        font-size: 24px; }
    .mod-summaryAside .checkin-checkout .checkout-time {
      width: 35.89744%;
      float: right;
      margin-right: 0;
      text-align: right; }
  @media only screen and (min-width: 480px) {
    .mod-summaryAside .payment-booking-details_wrap-inner {
      display: flex;
      align-items: center; } }
  @media only screen and (min-width: 620px) {
    .mod-summaryAside .payment-booking-details_wrap-inner {
      align-items: flex-start; } }
  @media only screen and (min-width: 1024px) {
    .mod-summaryAside .payment-booking-details_wrap-inner {
      display: block; } }
  .mod-summaryAside .property-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    margin-bottom: 20px; }
    @media only screen and (min-width: 480px) {
      .mod-summaryAside .property-image {
        display: block;
        max-width: 40%;
        margin-right: 20px; } }
    @media only screen and (min-width: 768px) {
      .mod-summaryAside .property-image {
        display: block;
        max-width: 50%;
        margin-right: 20px; } }
    @media only screen and (min-width: 1024px) {
      .mod-summaryAside .property-image {
        max-width: 100%;
        margin-right: 0; } }
  .mod-summaryAside .text-bold {
    font-weight: 700; }
  .mod-summaryAside .room {
    color: #646464;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap; }
  .mod-summaryAside .room-info {
    flex: 1 1 auto;
    width: 40%; }
  .mod-summaryAside .room-price {
    flex: 0 0 40%; }
  .mod-summaryAside .room-name {
    color: black;
    font-size: 14px; }
  .mod-summaryAside .room-promo-applied {
    background-color: #494b4e;
    color: white;
    font-size: 12px;
    margin-right: 5px;
    padding: 2px;
    text-align: center; }
  .mod-summaryAside .room-occupancy {
    font-size: 13px; }
  .mod-summaryAside .room-original-price {
    font-size: 16px;
    text-decoration: line-through;
    text-align: right; }
  .mod-summaryAside .room-final-price {
    color: black;
    font-size: 16px; }
  .mod-summaryAside .room-price-inline {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end; }
  .mod-summaryAside .room-row {
    margin-bottom: 3px; }
  .mod-summaryAside .room-cancellation-policy {
    margin-bottom: 15px; }
  .mod-summaryAside .room-details_half-seperator {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px; }
    .mod-summaryAside .room-details_half-seperator .room-details_line {
      border-bottom: solid 1px #D7D8D8;
      width: 30%; }
  .mod-summaryAside .payment-total_heading {
    font-size: 16px;
    color: black;
    font-weight: 700; }
  .mod-summaryAside .payment-total_approx-text {
    font-size: 13px;
    color: #646464; }
  .mod-summaryAside .payment-total_approx-total {
    font-size: 16px;
    color: black;
    font-weight: 700; }
  .mod-summaryAside .payment-total_total {
    font-size: 16px;
    color: black;
    font-weight: 700; }
  .mod-summaryAside .payment-total_including-tax {
    font-size: 13px;
    color: #646464; }
  .mod-summaryAside .booking-taxes_row {
    font-size: 13px;
    color: #646464; }
  .mod-summaryAside .booking-taxes_total {
    font-size: 16px;
    color: #2E2C2D; }
  .mod-summaryAside .stay-duration {
    font-size: 14px; }
  .mod-summaryAside .pay-now_title, .mod-summaryAside .pay-now_total, .mod-summaryAside .pay-now_approx-total {
    font-size: 16px;
    color: black;
    font-weight: 700; }
  .mod-summaryAside .pay-now_approx {
    font-size: 14px;
    color: #646464; }
  .mod-summaryAside .price-per-guest {
    position: relative; }
    .mod-summaryAside .price-per-guest .column-last.price {
      position: absolute;
      top: 0;
      width: auto;
      right: 0; }
    .mod-summaryAside .price-per-guest .column.booking-extra {
      margin-bottom: 0; }
    .mod-summaryAside .price-per-guest .adults-children {
      margin: -20px 0 0 5px; }
      .mod-summaryAside .price-per-guest .adults-children .adults,
      .mod-summaryAside .price-per-guest .adults-children .children {
        font-size: 13px; }

.adults-children {
  opacity: 0.6; }

.expandable-selector.has-total {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.expandable-selector label {
  font-size: 14px;
  color: #646464;
  cursor: pointer; }
  .expandable-selector label:after {
    font-family: 'Booking-glyphs';
    content: "\e91a";
    font-size: 10px;
    color: #646464;
    display: inline-block;
    position: relative;
    left: 5px;
    top: 1px; }

.expandable-selector_total {
  font-size: 14px;
  color: #646464; }

.expandable-container {
  font-size: 13px;
  color: #646464;
  display: none; }
  .expandable-container p {
    padding: 0;
    margin: 5px 0; }

.mod_collapsable.active .expandable-container {
  display: block; }

.mod_collapsable.active .expandable-selector label:after {
  content: "\e91b"; }

.lighter-text {
  color: #646464; }

.cancellation-policy {
  padding: 5px 0 0; }

.mod-summaryWidgets .mod-summaryAside {
  background: none;
  padding: 0; }

.svg .mod-summaryAside .icon-calendar {
  background: none; }

.payment .item-value {
  position: relative;
  top: 5px; }

.payment .block {
  float: left;
  width: 100%;
  margin-bottom: 5px; }

.payment .bed-details {
  display: none; }

#extras-and-totals-container hr:last-child {
  display: none; }

.payment .mod-promo_collapsable {
  overflow: initial;
  float: left;
  width: 100%; }

.booking-charge .small {
  font-size: 14px; }

.booking-charge .strong {
  font-weight: bold; }

.extras-summary-container {
  font-size: 12.8px; }
  .extras-summary-container .small {
    font-size: 12.8px; }
  .extras-summary-container .price {
    font-size: 16px; }

.mod-sticky {
  background: rgba(56, 58, 61, 0.99);
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 3px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  display: none;
  overflow: hidden; }

.instantweb .mod-sticky {
  position: relative;
  z-index: 0; }

.mod-sticky-inner {
  margin: 0 auto;
  padding: 15px 10px;
  max-width: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .mod-sticky-inner {
      padding: 15px 30px; } }
  @media only screen and (min-width: 1920px) {
    .mod-sticky-inner {
      max-width: 1140px; } }

.mod-sticky button {
  float: right; }

.main .mod-sticky .mod-sticky-inner .column a {
  display: inline-block;
  color: white;
  line-height: 16px; }

.mod-sticky-inner .column {
  width: 74.57627%;
  float: left;
  margin-right: 1.69492%;
  margin-bottom: 0; }

.mod-sticky-inner .column-last {
  width: 23.72881%;
  float: right;
  margin-right: 0; }

.mod-sticky-inner i {
  font-style: normal; }

.main .mod-sticky-inner a {
  display: inline-block;
  font-size: 13px;
  padding: 0 10px 0 0;
  color: white; }

.main .mod-sticky-inner a.selected {
  color: #db0148;
  position: relative;
  padding-left: 20px; }
  .main .mod-sticky-inner a.selected:before {
    content: "\e901";
    font-family: "Booking-glyphs";
    font-size: 20px;
    position: absolute;
    left: 0; }

.mod-sticky-inner h4 {
  color: white;
  border: 0;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-transform: uppercase; }

footer {
  padding: 10px;
  font-size: 0.8125em; }
  @media only screen and (min-width: 1024px) {
    footer {
      padding: 20px; } }
  footer .column {
    display: inline-block; }
  footer address {
    display: inline;
    font-style: normal; }
  footer .info-details {
    float: none;
    top: 0;
    display: inline-block; }

.info-details {
  line-height: 16px;
  text-align: center; }
  @media only screen and (min-width: 1024px) {
    .info-details {
      display: block;
      position: relative; } }
  .info-details span {
    color: #646464;
    display: inline-block;
    padding-left: 25px;
    position: relative; }
  .info-details .icon:before {
    content: "";
    margin-left: 0;
    position: absolute;
    display: block;
    left: 0;
    font-family: 'eviivo-facilities-icon';
    font-size: 25px;
    top: 1px; }
  .info-details .icon-phone:before {
    content: "\e975"; }
  .info-details .icon-email:before {
    content: "\e977"; }
  .info-details .icon-phone {
    margin-right: 5px; }

.mod-footer {
  padding: 10px;
  clear: both; }
  .mod-footer li {
    font-size: 14px;
    display: inline-block;
    margin-right: 5px; }

.search .mod-footer {
  border-top: 1px solid #cacaca; }
  .search .mod-footer li {
    font-size: 13px; }

.template-7 footer {
  background: white;
  color: black; }
  .template-7 footer .info-details span,
  .template-7 footer a {
    color: black; }

.cp-poweredby {
  color: dimgray;
  font-size: 12px; }

.cp-feature-email,
.cp-feature-mobile,
.cp-feature-tel {
  position: relative;
  padding-left: 20px; }
  .cp-feature-email a:before,
  .cp-feature-mobile a:before,
  .cp-feature-tel a:before {
    content: "";
    margin: -6px 0 0 -20px;
    position: absolute;
    display: inline-block;
    font-family: 'eviivo-facilities-icon';
    font-size: 21px;
    top: 4px; }

.cp-feature-mobile a:before,
.cp-feature-tel a:before {
  content: "\e975";
  margin-top: -7px; }

.cp-feature-email a:before {
  content: "\e977";
  margin-left: -22px; }

.cp-feature-address a {
  padding-left: 15px; }
  .cp-feature-address a:before {
    content: "\e607";
    font-family: "Booking-glyphs";
    font-size: 34px;
    font-style: normal;
    position: absolute;
    margin: -9px 0 0 -24px; }

.mod-article {
  padding: 15px 10px; }
  .mod-article.image-not-uploaded .mod-article-content {
    width: 100%; }
  @media only screen and (min-width: 1024px) {
    .mod-article {
      padding: 25px 30px; } }
  .mod-article_image {
    width: 200px;
    height: 150px;
    display: flex;
    justify-content: center; }
    .mod-article_image img {
      max-width: 100%;
      max-height: 100%;
      -ms-grid-row-align: center;
          align-self: center; }
  .mod-article .img-left {
    float: left;
    padding: 0 10px 10px 0; }
    @media only screen and (min-width: 1024px) {
      .mod-article .img-left {
        padding: 0 20px 20px 0; } }
  .mod-article .img-right {
    float: right;
    padding: 0 0 10px 10px; }
    @media only screen and (min-width: 1024px) {
      .mod-article .img-right {
        padding: 0 0 20px 20px; } }

.mod-contentWithSidebar .mod-article {
  padding: 15px 10px; }

.mod-contentWithSidebar .mod-article p {
  padding: 0; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.dialogue-outer {
  background: rgba(100, 100, 100, 0.2);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0; }

.dialogue-inner {
  display: table-cell;
  vertical-align: middle; }

.dialogue-data.hidden {
  display: none; }

.dialogue-content {
  margin: 0 auto;
  position: relative;
  background: white;
  border: 1px solid #d7d8d8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  width: 90%;
  max-width: 1000px;
  padding: 0px; }
  .dialogue-content .content {
    background: none; }
    .dialogue-content .content .banner-title {
      padding-left: 30px;
      font-size: 16px;
      font-weight: normal; }
      .dialogue-content .content .banner-title:before {
        font-size: 24px; }
    .dialogue-content .content .info-details {
      font-size: 16px; }
  .dialogue-content .dialogue-items .item-group input {
    width: 100%; }
  .dialogue-content .dialogue-items li {
    border-top: 1px solid #d7d8d8;
    display: block;
    overflow: hidden;
    padding: 5px 10px; }
    .dialogue-content .dialogue-items li:first-child {
      border: none; }
    .dialogue-content .dialogue-items li .table-title {
      display: block; }
      @media only screen and (min-width: 768px) {
        .dialogue-content .dialogue-items li .table-title {
          width: 66.10169%;
          float: left;
          margin-right: 1.69492%; } }
    .dialogue-content .dialogue-items li .value {
      display: block; }
      @media only screen and (min-width: 768px) {
        .dialogue-content .dialogue-items li .value {
          text-align: right;
          width: 32.20339%;
          float: right;
          margin-right: 0; } }

.active .cp-button-2 {
  display: none; }

.dialogue-header {
  border-bottom: 1px solid #e4e4e4;
  overflow: hidden;
  padding: 15px 20px;
  min-height: 45px;
  position: relative; }
  .dialogue-header h3 {
    width: 74.35897%;
    float: left;
    margin-right: 2.5641%;
    font-size: 16px;
    font-weight: 400; }
  .dialogue-header .cp-link {
    width: 25px;
    min-height: 45px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px; }
    .dialogue-header .cp-link:before {
      content: "\e917";
      font-family: 'Booking-glyphs';
      font-size: 24px;
      left: 10px;
      top: 10px;
      position: absolute; }

.mod-dialogueBox {
  color: black;
  padding: 0 10px;
  margin: 10px 0;
  height: auto;
  max-height: 80vh; }
  .mod-dialogueBox:before, .mod-dialogueBox:after {
    content: "";
    display: table; }
  .mod-dialogueBox:after {
    clear: both; }
  @media only screen and (min-width: 1024px) {
    .mod-dialogueBox {
      padding: 0 20px;
      margin: 20px 0; } }
  .payment-process .mod-dialogueBox {
    text-align: center;
    color: black;
    background-image: url("/ui/wl/4.126/images/sprites/search/oval-dark.svg");
    background-repeat: no-repeat;
    background-position: center calc(100% - 50px); }
  @media only screen and (min-width: 1024px) {
    .mod-dialogueBox {
      max-height: 50vh; } }
  .mod-dialogueBox .booking-status {
    display: none; }
  .mod-dialogueBox .room.small-promos {
    margin: 10px 0; }
    .mod-dialogueBox .room.small-promos .block {
      display: none; }
  .mod-dialogueBox .cp-input {
    margin-right: 5px; }
  .dialogue-map .mod-dialogueBox {
    height: 70vh;
    max-height: 350px; }
    @media only screen and (min-width: 1024px) {
      .dialogue-map .mod-dialogueBox {
        max-height: 500px; } }

.space-pre-line .mod-dialogueBox,
.space-pre-line .mod-dialogueBox p {
  white-space: pre-line; }

/* Pop up scrollable */
.is--scrollable .mod-dialogueBox {
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 14px; }
  @media only screen and (min-width: 1024px) {
    .is--scrollable .mod-dialogueBox {
      -webkit-overflow-scrolling: touch; } }

.payment-process .cp-link {
  display: none; }

.payment-process h3 {
  padding: 0 0 10px 0; }

.dialogue-small .dialogue-content {
  max-width: 300px; }

.dialogue-small .mod-dialogueBox {
  height: 200px; }

.dialogue-medium .dialogue-content {
  max-width: 450px; }

.dialogue-medium .mod-dialogueBox {
  height: 300px; }

.dialogue-large .dialogue-content {
  max-width: 600px; }

.dialogue-large .mod-dialogueBox {
  height: 400px; }

.dialogue-extraLarge .dialogue-content {
  max-width: 1000px; }

.dialogue-extraLarge .mod-dialogueBox {
  height: 667px; }

.dialogue-height--auto .mod-dialogueBox {
  height: auto; }
  .dialogue-height--auto .mod-dialogueBox:after {
    clear: both;
    content: "";
    display: block;
    height: 0px;
    width: 100%; }

.is--scrollable .mod-dialogueBox {
  height: auto;
  max-height: 400px;
  overflow: auto; }

.browser-support ul {
  margin: 0 auto;
  overflow: hidden;
  width: 440px; }

.browser-support li {
  display: inline-block;
  margin-right: 15px; }

.browser-support li:last-child {
  margin: 0; }

.browser-support ul a {
  background: url("/ui/wl/4.126/images/browser-icons.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
  display: block;
  height: 70px;
  text-indent: -9999em;
  width: 65px;
  float: left; }

.browser-support .chrome {
  background-position: 0 0; }

.browser-support .firefox {
  background-position: -73px 0; }

.browser-support .opera {
  background-position: -148px 0; }

.browser-support .safari {
  background-position: -216px 0; }

.browser-support .explorer {
  background-position: -296px 0; }

.browser-support .cp-link {
  padding-right: 0; }

/* -- 3DS Specific --*/
#threeDSPopup.dialogue-outer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  overflow-x: hidden; }

#threeDSPopup iframe {
  height: 100%;
  width: 100%; }

.mod-searchAlternatives {
  margin: 0 15px; }
  @media only screen and (min-width: 768px) {
    .mod-searchAlternatives {
      margin: 0; } }
  .mod-searchAlternatives li {
    width: 100%;
    background: #f0f0f0;
    display: inline-block;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    margin: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid #d7d8d8; }
    @media only screen and (min-width: 768px) {
      .mod-searchAlternatives li {
        width: 22%; } }
  .mod-searchAlternatives li span {
    display: block; }
  .mod-searchAlternatives .alternative-title {
    margin: 0 10px 10px 0;
    color: black; }
  .mod-searchAlternatives span.cp-button {
    font-size: 0.875em;
    height: auto;
    line-height: 16px;
    padding: 10px; }

.mod-contentWithSidebar .mod-searchAlternatives {
  padding: 10px 20px 20px; }

.facility-set h4 {
  margin-bottom: 10px; }

.icon-list {
  margin: 0; }
  .icon-list .icon-list_item {
    page-break-inside: avoid;
    position: relative;
    margin-bottom: 2px; }
    .icon-list .icon-list_item:before {
      content: '';
      content: "\e901";
      font-family: "Booking-glyphs";
      font-size: 14px;
      position: relative;
      margin-right: 4px; }
    .icon-list .icon-list_item.icon-hygiene:before {
      content: "\e91e";
      font-size: 18px; }
  @media only screen and (min-width: 620px) {
    .icon-list.column-layout {
      -moz-column-count: 2;
           column-count: 2;
      -moz-column-gap: 20px;
           column-gap: 20px; } }
  @media only screen and (min-width: 1024px) {
    .icon-list.column-layout {
      -moz-column-count: 3;
           column-count: 3;
      -moz-column-gap: 20px;
           column-gap: 20px; } }
  @media only screen and (min-width: 1280px) {
    .icon-list.column-layout {
      -moz-column-count: 4;
           column-count: 4;
      -moz-column-gap: 20px;
           column-gap: 20px; } }
  .icon-list.float-layout li {
    float: left;
    margin: 0 10px 0 20px;
    font-size: .875em;
    color: #000;
    padding: 0;
    line-height: 23px;
    min-height: 24px;
    vertical-align: middle;
    position: relative;
    min-width: 30px;
    white-space: normal; }
  .icon-list li {
    font-size: 14px;
    color: black; }
  .icon-list.white li {
    color: white;
    float: none;
    display: inline-block; }

.mod-contentWithSidebar .mod-facilities-lists {
  padding: 0 10px; }

@media only screen and (min-width: 620px) {
  .mod-contentWithSidebar .icon-list.column-layout {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 20px;
         column-gap: 20px; } }

@media only screen and (min-width: 1024px) {
  .mod-contentWithSidebar .icon-list.column-layout {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 20px;
         column-gap: 20px; } }

.mod-contentWithSidebar .icon-list.float-layout li {
  float: left;
  margin-right: 10px;
  margin-left: 20px; }

.mod-facilities h3, .mod-facilities ul, .mod-facilities ol, .mod-facilities p {
  padding: 0 0 15px;
  margin: 0; }

.mod-facilities .icon-list li {
  color: dimgray;
  font-size: 16px; }

.mod-facilities .cp-link {
  font-size: 16px;
  display: block;
  margin-bottom: 10px; }

.mod-facilities .policies-table {
  table-layout: fixed;
  font-size: 16px;
  color: dimgray;
  margin-bottom: 10px; }
  .mod-facilities .policies-table td {
    width: 225px; }
  .mod-facilities .policies-table small {
    font-size: 12px; }

.section-block {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px; }
  .section-block .section-block-title {
    margin: 0 0 20px 0; }
  .section-block .section-block-details {
    color: dimgray;
    font-size: 0.875em; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.tagline {
  margin: 10px 0;
  color: #646464;
  font-size: 0.875em;
  font-weight: normal;
  display: none;
  line-height: 21px;
  background: initial; }
  @media only screen and (min-width: 480px) {
    .tagline {
      width: 50%; } }
  @media only screen and (min-width: 768px) {
    .tagline {
      margin: 0 0 0 10px;
      display: inline-block;
      position: relative;
      top: 10px; } }

.tagline-light {
  padding: 0;
  line-height: 1.2;
  height: auto;
  vertical-align: top; }

.confirmation .lynton-tagline,
.payment .lynton-tagline,
.search .lynton-tagline {
  top: 23px; }

.link-bg, .mod-paginate .current a {
  background-color: #db0148; }
  .link-bg:hover, .mod-paginate .current a:hover, .link-bg:focus, .mod-paginate .current a:focus {
    background-color: #db0148; }

.mod-paginate {
  text-align: center; }
  .mod-paginate ul {
    font-size: 0;
    /*fixes inline-block issue*/ }
  .mod-paginate li {
    display: inline-block; }
  .mod-paginate li a {
    background: white;
    background-clip: padding-box;
    border: 1px solid #d7d8d8;
    display: none;
    font-size: 14px;
    line-height: 34px;
    min-height: 34px;
    padding: 0 15px;
    border-left: 0; }
    @media only screen and (min-width: 768px) {
      .mod-paginate li a {
        display: inline-block; } }
  .mod-paginate li:first-child a {
    border-left: 1px solid #d7d8d8;
    border-radius: 3px 0 0 3px; }
  .mod-paginate li:last-child a {
    border-radius: 0 3px 3px 0; }
  .mod-paginate li a:hover,
  .mod-paginate li a:focus,
  .mod-paginate .current a {
    background: #db0148;
    color: white; }
  .mod-paginate .current a {
    box-shadow: 0 0 3px inset rgba(0, 0, 0, 0.2); }
  .mod-paginate .current a,
  .mod-paginate .arrow a {
    display: inline-block; }

.search .mod-paginate {
  margin: 20px 0;
  clear: both;
  border-top: 1px solid #d7d8d8;
  padding: 10px 0; }
  .search .mod-paginate li {
    background: white;
    border: 1px solid #d7d8d8;
    display: inline-block;
    font-size: 14px;
    height: 34px;
    line-height: 34px;
    padding: 0;
    border-left: none; }
    .search .mod-paginate li a {
      background: none;
      border: medium none;
      display: inline-block;
      font-size: inherit;
      height: 34px;
      line-height: 34px;
      padding: 0 10px; }
    .search .mod-paginate li:first-child {
      border-left: 1px solid #d7d8d8;
      border-radius: 3px 0 0 3px; }
    .search .mod-paginate li:last-child {
      border-radius: 0 3px 3px 0; }
    .search .mod-paginate li a:hover,
    .search .mod-paginate li a:focus,
    .search .mod-paginate li .current a {
      background: #db0148;
      color: white; }
  .search .mod-paginate .mod-paginate-item {
    padding: 0 10px; }

.mod-paginate-outer {
  clear: both;
  padding: 20px 0;
  overflow: hidden; }
  .mod-paginate-outer .mod-paginate {
    margin: 10px auto;
    padding: 0;
    display: inline-block;
    border: none;
    width: 90%; }
    @media only screen and (min-width: 480px) {
      .mod-paginate-outer .mod-paginate {
        width: 59.59596%;
        float: right;
        margin-right: 0;
        margin: 0; } }
    .mod-paginate-outer .mod-paginate ul {
      text-align: center; }
      @media only screen and (min-width: 480px) {
        .mod-paginate-outer .mod-paginate ul {
          text-align: left; } }
  .mod-paginate-outer .mod-numberOfRecords {
    font-size: 13px;
    text-align: left;
    float: left; }
    @media only screen and (min-width: 480px) {
      .mod-paginate-outer .mod-numberOfRecords {
        width: 39.39394%;
        float: left;
        margin-right: 1.0101%; } }
    .mod-paginate-outer .mod-numberOfRecords .ui-selectmenu-button {
      height: 33px;
      line-height: 33px; }

.link-bg, .review-percentage {
  background-color: #db0148; }
  .link-bg:hover, .review-percentage:hover, .link-bg:focus, .review-percentage:focus {
    background-color: #db0148; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.mod-reviews {
  padding: 10px 0 0;
  margin: 0;
  overflow: hidden; }

.mod-contentWithSidebar .mod-reviews {
  padding: 0; }

.mod-contentWithSidebar .mod-reviews section {
  text-align: left;
  padding: 15px 10px; }

.mod-contentWithSidebar .mod-reviews h2 {
  padding: 20px 10px; }

.mod-reviews section {
  background: white;
  padding: 15px 10px;
  overflow: hidden;
  height: auto; }
  @media only screen and (min-width: 1920px) {
    .mod-reviews section {
      padding: 25px 30px; } }

@media only screen and (min-width: 768px) {
  .mod-reviews header {
    width: 47.36842%;
    float: left;
    margin-right: 5.26316%; } }

.mod-reviews .mod-filter {
  text-align: right; }
  @media only screen and (min-width: 768px) {
    .mod-reviews .mod-filter {
      width: 47.36842%;
      float: right;
      margin-right: 0; } }

.mod-filter .ui-selectmenu-button {
  min-width: 160px; }

.mod-reviews h3, .mod-reviews h4, .mod-reviews ul, .mod-reviews ol, .mod-reviews p {
  padding: 0 0 15px;
  margin: 0; }

.mod-reviews h3 {
  padding: 0; }

.mod-reviews li, .mod-reviews p {
  color: #646464; }

.mod-contentWithSidebar .mod-reviews li, .mod-contentWithSidebar .mod-reviews p {
  padding: 0; }

.column-review-content h4 {
  padding: 0 0 5px; }

.mod-contentWithSidebar .mod-reviews h4 {
  border: none; }

.column-review-content p {
  padding: 10px 0 0; }
  .column-review-content p .icon-dropdown {
    margin-top: 10px; }

.mod-guestRatings li {
  margin: 5px 0;
  position: relative;
  padding-left: 35px;
  text-align: right;
  height: 25px; }

.rating {
  margin: 5px 0; }

.mod-guestRatings li:before {
  content: "";
  height: 25px;
  position: absolute;
  top: 0;
  width: 25px;
  left: 0; }
  .svg .mod-guestRatings li:before {
    background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") repeat-x scroll 0 -225px transparent; }
  .no-svg .mod-guestRatings li:before {
    background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine.png") repeat-x scroll 0 -225px transparent; }

.mod-guestRatings li.ratings-1:before {
  background-position: -125px -225px;
  width: 25px; }

.mod-guestRatings .ratings-2:before {
  width: 50px; }

.mod-guestRatings .ratings-3:before {
  width: 75px; }

.mod-guestRatings .ratings-4:before {
  width: 100px; }

.mod-guestRatings .ratings-5:before {
  width: 125px; }

.review-rating {
  border: 1px solid #d7d8d8;
  display: inline-block;
  height: 19px;
  width: 74%;
  position: relative;
  overflow: hidden; }
  @media only screen and (min-width: 480px) {
    .review-rating {
      width: 45%; } }

.review-rating i {
  border-left: 1px solid #d7d8d8;
  display: block;
  float: left;
  height: 20px;
  position: relative;
  width: 20%;
  z-index: 2; }

.review-rating i:first-child {
  border: none; }

.review-percentage {
  background: #db0148;
  display: block;
  height: 18px;
  left: 0;
  position: absolute; }

.review-title {
  display: inline-block;
  width: 100%; }
  @media only screen and (min-width: 480px) {
    .review-title {
      width: 29%; } }

.review-average {
  display: inline-block;
  text-align: right;
  width: 24%; }

@media only screen and (min-width: 768px) {
  .mod-summary .mod-guestRatings {
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%; } }

@media only screen and (min-width: 768px) {
  .mod-summary .mod-reviewSumarry {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%;
    border-right: 1px solid #d7d8d8;
    border-left: 1px solid #d7d8d8; } }

@media only screen and (min-width: 768px) {
  .mod-summary .mod-reviewAverage {
    width: 23.72881%;
    float: right;
    margin-right: 0; } }

.mod-reviews .mod-reviews-item {
  margin: 0 -10px; }
  @media only screen and (min-width: 768px) {
    .mod-reviews .mod-reviews-item {
      margin: 0;
      padding: 25px 0; } }

@media only screen and (min-width: 768px) {
  .mod-reviewSumarry,
  .mod-guestRatings,
  .mod-reviewAverage {
    padding: 0 10px; } }

@media only screen and (min-width: 1024px) {
  .mod-reviewSumarry,
  .mod-guestRatings,
  .mod-reviewAverage {
    padding: 0 20px; } }

.mod-reviewAverage ul {
  position: relative;
  padding: 0; }

.mod-reviewAverage .rating:before {
  border-top: 1px solid #cccccc;
  content: "";
  margin-top: 13px;
  position: absolute;
  right: 0;
  width: 90%; }

.mod-contentWithSidebar .mod-reviewAverage .rating:before {
  display: none; }

.bar {
  background: #db0148;
  border-radius: 0 0 5px 5px;
  bottom: 0;
  height: 30px;
  left: 0;
  position: absolute;
  width: 100%; }

.value {
  bottom: 0;
  color: white;
  font-size: 2.25em;
  font-weight: 900;
  left: 0;
  letter-spacing: -1px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%; }

.average {
  background: white;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d7d8d8;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
  height: 100%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 13px;
  width: 20%;
  min-width: 80px; }

.review-item {
  float: left;
  padding: 30px 10px;
  position: relative;
  width: 100%;
  border-top: 1px solid #d7d8d8; }
  @media only screen and (min-width: 1024px) {
    .review-item {
      padding: 30px 20px; } }

.review-item-details {
  display: none; }

.review-item article {
  clear: both;
  padding-top: 20px; }
  @media only screen and (min-width: 768px) {
    .review-item article {
      clear: none;
      padding-top: 0; } }

.review-item:nth-child(2n) {
  background: #f9f9f9; }

@media only screen and (min-width: 768px) {
  .review-item .column-review-avatar {
    width: 10.25641%;
    float: left;
    margin-right: 2.5641%; } }

.column-review-avatar span {
  display: block;
  text-align: left;
  font-size: 0.875em;
  line-height: 14px; }
  @media only screen and (min-width: 768px) {
    .column-review-avatar span {
      text-align: center; } }

.avatar-date {
  color: #646464; }

.avatar {
  height: 48px;
  float: left;
  width: 48px;
  margin-right: 20px;
  position: relative;
  /* Single */
  /* Young Couple */
  /* Mature Couple */
  /* Same Sex */
  /* Family With Young Children */
  /* Adults */
  /* Family With Older Children */
  /* With Colegue */ }
  @media only screen and (min-width: 768px) {
    .avatar {
      margin: 0 auto;
      float: none; } }
  .avatar:before {
    content: "";
    margin-left: 0;
    position: absolute;
    display: block;
    left: 0;
    font-family: 'eviivo-facilities-icon';
    font-size: 48px;
    top: 11px; }
  .avatar.avatar-category-1:before {
    content: '\e955'; }
  .avatar.avatar-category-2:before {
    content: '\e957'; }
  .avatar.avatar-category-3:before {
    content: '\e953'; }
  .avatar.avatar-category-4:before {
    content: '\e954'; }
  .avatar.avatar-category-5:before {
    content: '\e952'; }
  .avatar.avatar-category-6:before {
    content: '\e950'; }
  .avatar.avatar-category-7:before {
    content: '\e951'; }
  .avatar.avatar-category-8:before {
    content: '\e956'; }

.avatar-name {
  font-weight: 600;
  text-transform: capitalize; }

.avatar-details {
  position: relative; }

.avatar-category {
  margin: 0 auto;
  max-width: 80%; }

@media only screen and (min-width: 768px) {
  .review-item .column-review-content {
    width: 61.53846%;
    float: left;
    margin-right: 2.5641%; } }

.review-item .column-review-rating {
  text-align: center;
  font-size: 4em;
  color: #5d9e9a;
  line-height: 1;
  text-align: right;
  position: absolute;
  right: 30px;
  top: 20px; }
  @media only screen and (min-width: 768px) {
    .review-item .column-review-rating {
      width: 23.07692%;
      float: right;
      margin-right: 0;
      top: 15px;
      position: static;
      padding-right: 10px; } }

.review-address {
  color: #646464;
  font-size: 0.875em;
  margin-top: 20px; }

.review-ratings {
  background: rgba(204, 204, 204, 0.4);
  border-radius: 5px;
  color: #444444;
  font-size: 16px;
  margin: 10px 0;
  padding: 15px;
  font-size: 0.875em; }

.review-ratings span {
  display: block;
  padding: 0 0 10px 0; }

.review-response {
  font-size: 0.875em;
  padding: 20px;
  position: relative;
  /*top: -20px;*/
  top: 10px;
  width: 100%;
  display: block; }
  .review-response h5 {
    padding-left: 25px; }
  .review-response:after {
    content: "";
    height: 20px;
    position: absolute;
    top: 17px;
    width: 20px; }
    .svg .review-response:after {
      background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") repeat-x scroll 0 -50px transparent; }
    .no-svg .review-response:after {
      background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine.png") repeat-x scroll 0 -50px transparent; }

.review-response.cp-tooltip {
  top: 10px; }

/* --- Instantweb overides --- */
@media only screen and (min-width: 768px) {
  .mod-contentWithSidebar .content {
    padding: 0 10px 30px; }
  .mod-contentWithSidebar .mod-contentWithSidebar .mod-reviews .mod-body {
    padding: 0 0 20px 0;
    width: 100%; }
  .mod-contentWithSidebar .mod-summary .mod-guestRatings,
  .mod-contentWithSidebar .mod-summary .mod-reviewSumarry,
  .mod-contentWithSidebar .mod-summary .mod-reviewAverage {
    padding: 10px; }
  .mod-contentWithSidebar .mod-summary .mod-guestRatings {
    width: 30%;
    float: left;
    margin-right: 5.26316%;
    margin: 0; }
  .mod-contentWithSidebar .mod-summary .mod-reviewSumarry {
    width: 43%;
    float: left;
    margin-right: 5.26316%;
    margin: 0; }
  .mod-contentWithSidebar .mod-summary .mod-reviewAverage {
    width: 27%;
    float: left;
    margin-right: 5.26316%;
    margin: 0; }
  .mod-contentWithSidebar .review-title {
    width: 45%; }
  .mod-contentWithSidebar .review-rating {
    width: 35%; }
  .mod-contentWithSidebar .review-average {
    width: 15%; }
  .mod-contentWithSidebar .average {
    left: 30px;
    top: 3px; }
  .mod-contentWithSidebar .value {
    left: 20px;
    width: 65%;
    bottom: 15px; }
  .mod-contentWithSidebar .review-item .column-review-avatar {
    width: 15.25424%;
    float: left;
    margin-right: 1.69492%; }
  .mod-contentWithSidebar .review-item .column-review-content {
    width: 66.10169%;
    float: left;
    margin-right: 1.69492%; }
    .mod-contentWithSidebar .review-item .column-review-content p {
      padding-top: 10px; }
  .mod-contentWithSidebar .review-item .column-review-rating {
    width: 15.25424%;
    float: right;
    margin-right: 0; }
  .mod-contentWithSidebar .avatar {
    left: 0;
    margin: 0 auto;
    float: none; } }

.reviews-section {
  position: relative;
  min-height: 100px; }
  .reviews-section .mod-loader {
    min-height: 200px; }
    .reviews-section .mod-loader a {
      color: #db0148; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.cp-textSecondary, .results-option-list, .results-option-list a,
.results-option-list li, .persist {
  color: #619246; }

.mod-results {
  padding: 0;
  margin: 0;
  clear: both; }
  @media only screen and (min-width: 1024px) {
    .mod-results {
      margin-bottom: 20px; }
      .mod-contentWithSidebar .mod-results {
        border: 0 none; } }

.mod-room-options {
  clear: both;
  display: flex;
  padding: 10px 0 0 0; }
  .mod-room-options li {
    text-align: center;
    display: inline-block;
    padding: 30px 10px 10px 10px;
    box-sizing: border-box;
    font-size: 13px;
    align-self: baseline;
    position: relative; }
    .mod-room-options li:before {
      font-family: "Booking-glyphs";
      font-size: 24px;
      margin: auto;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
  .mod-room-options .icon-room-size:before {
    content: "\e90d"; }
  .mod-room-options .icon-occupancy:before {
    content: "\e90b"; }
  .mod-room-options .icon-bed-config:before {
    content: "\e90c"; }

@media only screen and (min-width: 1024px) {
  .thumb-size-default .result-container-left {
    width: 25%; }
  .thumb-size-default .result-container-right {
    width: 75%; } }

@media only screen and (min-width: 1024px) {
  .thumb-size-medium .result-container-left {
    width: 35%; }
  .thumb-size-medium .result-container-right {
    width: 65%; } }

@media only screen and (min-width: 1024px) {
  .thumb-size-large .result-container-left {
    width: 45%; }
  .thumb-size-large .result-container-right {
    width: 55%; } }

.mod-contentWithSidebar .mod-results {
  padding: 0; }

h2 {
  font-size: 1em;
  display: block;
  margin: 0 0 15px 0;
  font-weight: 400; }
  @media only screen and (min-width: 1024px) {
    h2 {
      font-size: 1.125em; } }

h3.results-heading {
  background-color: #383a3d;
  padding: 15px 10px;
  color: white;
  font-size: 1.125em;
  margin-bottom: 10px;
  font-weight: 100; }
  @media only screen and (min-width: 1024px) {
    h3.results-heading {
      padding: 10px;
      margin-left: -10px;
      margin-right: -10px;
      margin-top: -5px;
      font-size: 1.5em; } }

.form-help {
  font-size: 14px;
  line-height: 1;
  margin: 10px 0 0;
  padding: 0; }

.mod-contentWithSidebar .mod-results h2 {
  border-bottom: 1px solid #d7d8d8;
  background: white;
  color: #646464;
  font-weight: 400;
  padding: 20px 10px;
  text-transform: uppercase; }

.results-option-list {
  padding: 0;
  margin: 0;
  width: calc(100% - 80px);
  float: right;
  margin-bottom: 10px; }
  @media only screen and (min-width: 768px) {
    .results-option-list {
      float: none;
      width: 100%; } }
  .results-option-list li {
    display: inline-block;
    line-height: 14px;
    list-style: outside none none;
    margin-right: 5px;
    padding-left: 25px;
    vertical-align: middle;
    width: auto;
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 14px; }
    @media only screen and (min-width: 768px) {
      .results-option-list li {
        line-height: 24px; } }
    .results-option-list li:before {
      margin-left: -25px;
      content: "\e901";
      font-family: "Booking-glyphs";
      font-size: 24px;
      position: relative;
      top: 6px; }
    .results-option-list li.icon-bed-config:before {
      content: "\e900";
      font-size: 24px;
      top: 7px; }

.column-desciption {
  clear: both; }

.results-item {
  width: 100%;
  position: relative;
  background: white;
  overflow: hidden;
  min-height: 85px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  margin: 0 0 30px 0; }
  .results-item:hover {
    background: white;
    outline: 2px solid rgba(0, 0, 0, 0.2); }
  @media only screen and (min-width: 768px) {
    .results-item {
      border-bottom: 1px solid #d7d8d8;
      position: relative; }
      .results-item:after {
        background-color: #f0f0f0;
        width: 22%;
        border-left: 1px solid #d7d8d8;
        position: absolute;
        height: 100%;
        content: '';
        right: 0; } }
  .results-item header {
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
    width: 100%; }
  .results-item h3 {
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 10px; }
    @media only screen and (min-width: 768px) {
      .results-item h3 {
        font-size: 1.25em; } }
  .results-item .features {
    margin: 10px 0;
    clear: both; }
    @media only screen and (min-width: 620px) {
      .results-item .features {
        clear: none; } }

.result-info .icon-list_item {
  display: inline-block; }

.result-info .accordion-rooms {
  margin-top: 10px; }

.extra-info {
  width: 100%;
  overflow: hidden;
  clear: both; }

@media only screen and (min-width: 768px) {
  .results-item-gallery .extra-info,
  .results-item-gallery .result-info,
  .results-item-gallery header {
    width: calc(100% - 110px);
    float: right; } }

.mod-contentWithSidebar .results-item {
  padding: 0; }

.mod-contentWithSidebar .results-item-group,
.mod-contentWithSidebar .results-item {
  margin: 0 0 10px 0; }

.mod-contentWithSidebar .grouped-group {
  padding: 10px; }

.mod-contentWithSidebar .results-item {
  border-bottom: 1px solid #d7d8d8; }

.results-item.results-item-gallery-selected {
  box-shadow: 0 0 5px inset rgba(0, 0, 0, 0.2); }

.results-item.results-item-gallery-selected,
.results-item:hover {
  transition: all .2s ease-in;
  background: #fafafa; }

.grouped-group {
  padding: 0 10px;
  border: solid 2px #383a3d; }

.group-content .button-container,
.group-content .radio-buttonsSpecials {
  text-align: right; }

.likes {
  font-weight: normal;
  padding-left: 25px;
  text-transform: none;
  font-size: 16px;
  position: relative; }
  .svg .likes {
    background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll -275px -123px transparent; }
  .no-svg .likes {
    background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine.png") no-repeat scroll -275px -123px transparent; }

.results-item ol, .results-item p {
  padding: 0 0 15px;
  margin: 0; }

.mod-rateItem .results-option-list {
  padding: 0; }

@media only screen and (min-width: 768px) {
  .mod-rateItem-info {
    width: 60%;
    float: left; } }

.mod-ratePlans .results-option-list li:before {
  font-size: 1.25em;
  top: 3px; }

.mod-ratePlans .results-option-list li {
  line-height: 18px; }

.persist {
  font-weight: bold;
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1.125em;
  margin-bottom: 5px; }

.persist.results-option-list li:before {
  content: ""; }

.price {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap; }
  @media only screen and (min-width: 1024px) {
    .price {
      font-size: 1.75em; } }

.cp-extraCost {
  line-height: 1;
  vertical-align: top;
  width: 100%; }

.price-details {
  width: 49.57983%;
  float: left;
  margin-right: 0.84034%; }
  @media only screen and (min-width: 768px) {
    .price-details {
      width: 100%;
      float: none;
      margin: 0;
      text-align: right; } }
  .price-details .cp-poa {
    text-align: left; }

.button-container .book {
  width: 49.57983%;
  float: right;
  margin-right: 0; }
  @media only screen and (min-width: 768px) {
    .button-container .book {
      width: 100%; } }

.button-container .show-prices {
  width: 100%; }

.button-container .cp-poa {
  text-align: left; }

.price-deal {
  font-size: 0.875em;
  font-weight: 400;
  color: rgba(100, 100, 100, 0.4);
  text-decoration: line-through;
  padding-right: 10px;
  position: relative; }
  @media only screen and (min-width: 1024px) {
    .price-deal {
      font-size: 1.5em; } }

.results-price button {
  width: auto; }
  @media only screen and (min-width: 768px) {
    .results-price button {
      float: right;
      margin: 10px 0;
      width: auto; } }

.results-price .text-link {
  display: table;
  width: 100%;
  height: 100%; }
  .results-price .text-link .show-prices {
    display: table-cell;
    height: 100%;
    vertical-align: middle; }
  .results-price .text-link button {
    background-image: none;
    background-color: transparent;
    border: 0 none;
    font-size: 14px;
    color: #db0148;
    width: 100%;
    float: none;
    display: table-cell;
    line-height: 1.1; }
    .results-price .text-link button:before {
      content: "\e60c";
      font-family: 'Booking-glyphs';
      transform: scale(3);
      display: inline-block;
      line-height: 1;
      margin-right: 5px; }

.results-price .radio-buttons {
  margin: 5px 0 0; }
  @media only screen and (min-width: 1920px) {
    .results-price .radio-buttons {
      margin: 5px 0 10px; } }

.results-price {
  padding: 10px;
  clear: both;
  display: table;
  width: 100%; }
  .results-price:before, .results-price:after {
    content: "";
    display: table; }
  .results-price:after {
    clear: both; }
  @media only screen and (min-width: 768px) {
    .results-price {
      width: 100%;
      margin: 0;
      clear: none;
      display: block; } }

.instantweb .results-price {
  border-left: none; }

.results-details {
  clear: both; }

.mod-ratePlans {
  clear: both;
  padding: 10px;
  margin: 10px 0 0 0;
  border: 1px solid #f0f0f0; }
  .mod-ratePlans .mod-rateItem {
    clear: both;
    position: relative;
    padding: 10px;
    border-top: 1px solid #f0f0f0; }
    .mod-ratePlans .mod-rateItem:first-of-type {
      border-top: 0 none; }
      @media only screen and (min-width: 768px) {
        .mod-ratePlans .mod-rateItem:first-of-type {
          border-top: 1px solid #f0f0f0; } }
  .mod-ratePlans .mod-rateItem:last-child {
    padding-bottom: 0; }
  .mod-ratePlans .mod-rateItem:first-child {
    border: medium none; }
  .mod-ratePlans .price {
    font-size: 1.25em;
    font-weight: 400; }
  .mod-ratePlans .price-deal {
    font-size: 0.875em;
    font-weight: 400; }
  .mod-ratePlans h4 {
    width: 100%;
    font-weight: 400;
    margin-bottom: 10px; }
  .mod-ratePlans .cp-button-rates {
    margin: 0; }
  .mod-ratePlans .price.price-deal span {
    margin: 0;
    padding: 0; }
  .mod-ratePlans strong {
    padding: 0 10px 10px;
    display: none; }
    @media only screen and (min-width: 768px) {
      .mod-ratePlans strong {
        display: block; } }
  .mod-ratePlans ul {
    clear: both; }
  .mod-ratePlans .results-option-list {
    width: 100%; }
  .mod-ratePlans .button-container .book {
    width: 32.77311%;
    float: right;
    margin-right: 0; }
    @media only screen and (min-width: 768px) {
      .mod-ratePlans .button-container .book {
        width: 100%; } }
  .mod-ratePlans .results-price {
    position: relative;
    width: 100%; }
  @media only screen and (min-width: 768px) {
    .mod-ratePlans .results-price {
      width: 35%;
      float: right;
      padding: 0;
      border: none; } }

.instantweb .results-price .button-container,
.instantweb .mod-rateItem .radio-buttonsSpecials {
  text-align: right; }

.no-bookings .results-details {
  width: 100%; }

.accordion {
  clear: both;
  overflow: hidden; }

.accordion-content .column:first-child {
  padding-right: 10px; }

@media only screen and (min-width: 768px) {
  .accordion-content-item {
    padding-right: 10px; } }

.accordion-content-item li,
.column p {
  color: black; }

.accordion .accordion-toggle {
  display: block;
  margin: 0 0 10px 0;
  position: relative;
  text-align: left; }
  .accordion .accordion-toggle:after {
    content: "\e60d";
    font-family: "Booking-glyphs";
    display: inline-block;
    margin-left: 5px;
    font-size: 38px;
    position: absolute; }
  @media only screen and (min-width: 768px) {
    .accordion .accordion-toggle {
      display: none;
      text-align: left;
      padding-right: 15px;
      margin: 0; } }
  .extra-info .accordion .accordion-toggle {
    background-color: #f8f8f8;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 3px;
    margin-bottom: 5px;
    padding: 5px 10px; }
    .extra-info .accordion .accordion-toggle:after {
      position: absolute;
      right: 10px;
      top: 2px; }

.accordion.active .accordion-toggle:after {
  content: "\e60c"; }

/*.accordion li { 
	list-style:none;
	display:inline-block;
}*/
.accordion-content {
  display: none;
  overflow: hidden;
  padding-top: 20px; }
  .extra-info .accordion-content {
    padding: 10px 0; }
  @media only screen and (min-width: 1024px) {
    .accordion-content {
      padding-top: 0; } }
  .accordion-content h4 {
    margin-bottom: 5px; }
  @media only screen and (min-width: 768px) {
    .accordion-content {
      display: block; } }

.mod-results-actions {
  padding: 0 10px; }
  @media only screen and (min-width: 1920px) {
    .mod-results-actions {
      border-top: 1px solid #db0148;
      padding: 0 30px;
      text-align: right;
      margin-top: -10px; } }

.mod-results-actions .cp-button {
  width: 100%;
  position: relative; }
  @media only screen and (min-width: 1920px) {
    .mod-results-actions .cp-button {
      width: auto;
      padding-right: 40px; } }

@media only screen and (min-width: 1920px) {
  .mod-results-actions .cp-button:before {
    content: "";
    height: 14px;
    position: absolute;
    right: 10px;
    top: 16px;
    width: 26px; }
    .svg .mod-results-actions .cp-button:before {
      background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine-no-facilities.svg") no-repeat scroll -224px -150px transparent; }
    .no-svg .mod-results-actions .cp-button:before {
      background: url("/ui/wl/4.126/images/sprites/booking/sprite-booking-engine.png") no-repeat scroll -224px -150px transparent; }
  .mod-results-actions.active .cp-button:before {
    background-position: -249px -150px; } }

.results-gallery {
  width: 100%;
  height: 100%;
  min-height: 50px;
  overflow: hidden;
  display: block;
  position: relative; }
  @media only screen and (min-width: 480px) {
    .results-gallery {
      height: 250px; } }
  @media only screen and (min-width: 768px) {
    .results-gallery {
      width: 29.29293%;
      float: left;
      margin-right: 1.0101%;
      height: auto; } }
  .results-gallery header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0; }
  .results-gallery h3 {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 5px; }

.results-gallery li {
  list-style: none;
  padding: 0 0 6.24%; }

@media only screen and (min-width: 1024px) {
  .results-gallery-single {
    width: 100%; } }

@media only screen and (min-width: 768px) {
  .results-gallery-single {
    width: 70.2%;
    float: left;
    margin-right: 10px; } }

@media only screen and (min-width: 768px) {
  .results-item-single .results-gallery-single {
    width: 94.5%; } }

.results-gallery-single img {
  max-width: 100%;
  height: auto;
  color: transparent; }

.results-gallery-thumbs {
  display: none;
  float: left; }
  @media only screen and (min-width: 480px) {
    .results-gallery-thumbs {
      width: 22.25%;
      display: block; } }

.results-gallery-thumbs ul {
  padding: 0; }

.results-gallery-thumbs a {
  border: 1px solid white;
  display: block; }

.results-gallery-thumbs a.active {
  border: 1px solid #646464; }

.results-gallery-thumbs img {
  max-width: 100%;
  height: auto;
  display: block; }

/*Groups*/
.results-item-group {
  margin-top: 10px;
  clear: both;
  position: relative; }

.results-item-group .group-title {
  background: #383a3d;
  border-top: 1px solid #d7d8d8;
  color: white;
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .results-item-group .group-title {
      padding: 20px 30px; } }

.results-item-group .group-title:first-child {
  border-top: 0; }

.result-container-left {
  width: 100%;
  display: block;
  padding: 10px;
  overflow: hidden; }
  .search-mode .result-container-left {
    min-height: 175px; }
  @media only screen and (min-width: 768px) {
    .result-container-left {
      width: 78%;
      float: left; } }

.result-container-right {
  width: 100%;
  display: block; }
  @media only screen and (min-width: 768px) {
    .result-container-right {
      width: 22%;
      float: right;
      position: relative;
      z-index: 1; } }

.results-header {
  clear: both;
  display: table;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .results-header {
      clear: none;
      display: inline; } }

.results-thumbnail {
  float: left;
  margin: 0 10px 10px 0;
  position: relative;
  cursor: pointer; }
  .results-thumbnail a:before {
    position: absolute;
    color: white;
    content: "\e616";
    font-family: "Booking-glyphs";
    transition: opacity 0.2s linear;
    opacity: 1;
    right: 5px;
    bottom: 5px; }
  .results-thumbnail img {
    display: flex;
    width: 70px;
    height: 70px;
    display: block;
    max-width: 100%;
    max-height: 100%;
    align-self: center;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover; }
    @media only screen and (min-width: 768px) {
      .results-thumbnail img {
        width: 100px; } }

.results-slide {
  display: none; }
  .results-slide.active-slide {
    position: fixed;
    z-index: 999;
    display: block;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%); }
    @media only screen and (min-width: 620px) {
      .results-slide.active-slide {
        width: 600px; } }
    @media only screen and (min-width: 1024px) {
      .results-slide.active-slide {
        width: 800px; } }
  .results-slide li img {
    width: 100%;
    height: auto;
    display: block; }

.coop-button {
  display: block;
  text-align: center;
  clear: both; }
  .coop-button .cp-button {
    display: block;
    margin: 10px auto; }
    .coop-button .cp-button span:before {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAQAAABIkb+zAAABeUlEQVR4Ae3VMUoDURSF4ddpcC0SAiq4zkScIosQ7CW4iIjZhGKVNHMsLwgemBDj++Gc2z/+Dwam/b4sy7Isy7JMCw3a6aBj137cSd6pa3I301o1HGCmV4kMWEtkwEJiAwY6YEcHHOgA/8Bf3L2+oIDKRwIqHwmofCSg8nkAn/8JANj8OwDA5jcAwOUDAC4fAHD5AIDLBwBcPgDg8gEAlw8AuPy+AT7/Vg0AcPkAgMsHAFw+AeDzp985AT4fAHD5AIDLBwBcfs8An/9R+R0DfD4A4PIJgAn53f3IfD4A4PIBAJcPALh8AMDlAwAuv2+Az79RAwBcPgDg8gEAl88APJt8BOBKG5MPABRBlQ8CFKHyUYAiVD4LUISnygcA/AUQQAABBBBAAAEc1NP20wHv6mnb6YBH9bTldMBco3rZqOvpgKZBvWyldgzgUhv1sBddeIAjDBr/+eNZmfwCmJvrQW/a69zba6tlffseQLgATn8BBBBAAAEEEMA3RRZtbNZOXhwAAAAASUVORK5CYII=");
      background-position: 0 0;
      background-repeat: no-repeat;
      background-size: 100% auto;
      content: "";
      display: inline-block;
      height: 20px;
      margin-right: 5px;
      position: relative;
      top: 5px;
      width: 20px; }
    @media only screen and (min-width: 620px) {
      .coop-button .cp-button {
        display: inline-block; } }

.results-item-group {
  position: relative; }
  .results-item-group .lightbox,
  .results-item-group .close,
  .results-item-group .results-slider {
    display: none; }

.accordion-rooms.expanded .gicon-expad:after {
  content: "\e60c"; }

.accordion-rooms .gicon-expad:before {
  content: ""; }

.accordion-rooms .gicon-expad:after {
  content: "\e60d";
  font-size: 34px;
  position: absolute;
  margin: -8px 0 0 -8px; }

.accordion-rooms .accordion-rooms-toggle {
  display: none;
  font-family: "Source Sans Pro", arial, sans-serif;
  font-size: 14px; }
  .accordion-rooms .accordion-rooms-toggle:after {
    font-family: 'Booking-glyphs'; }

@media only screen and (min-width: 768px) {
  .accordion-rooms .accordion-rooms-toggle {
    display: block; }
  .accordion-rooms .accordion {
    display: none; } }

.mod-price-helper {
  text-align: right;
  clear: both;
  padding: 5px 0; }

.result-info .icon-list {
  padding: 0;
  margin: 0 0 10px 0; }
  .result-info .icon-list:after {
    content: '';
    clear: both;
    display: table; }
  .svg .result-info .icon-list.icon-none .icon-list_item:before,
  .no-svg .result-info .icon-list.icon-none .icon-list_item:before {
    background: none;
    border-radius: 30px; }
  .result-info .icon-list .icon-list_item {
    font-size: 14px;
    color: black;
    padding-left: 30px;
    display: block;
    list-style: none;
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
    margin-bottom: 5px;
    min-height: 24px;
    margin-left: 0;
    line-height: 24px; }
    .result-info .icon-list .icon-list_item:before {
      content: "\e976";
      margin-left: 0;
      position: absolute;
      left: 1px;
      font-family: 'eviivo-facilities-icon';
      font-size: 24px; }
    @media only screen and (min-width: 480px) {
      .result-info .icon-list .icon-list_item {
        display: inline-block; } }
    .result-info .icon-list .icon-list_item.icon-list-none {
      padding-left: 0; }
      .result-info .icon-list .icon-list_item.icon-list-none:before {
        content: ''; }

.result-info .mod-contentWithSidebar .property-facilities .icon-list_item,
.result-info .mod-contentWithSidebar .parking-facilities .icon-list_item,
.result-info .mod-contentWithSidebar .children-facilities .icon-list_item,
.result-info .mod-contentWithSidebar .business-facilities .icon-list_item,
.result-info .mod-contentWithSidebar .room-facilites .icon-list_item {
  margin-bottom: 5px;
  font-size: 0.8125em;
  width: 100%;
  display: block; }
  @media only screen and (min-width: 480px) {
    .result-info .mod-contentWithSidebar .property-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .parking-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .children-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .business-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .room-facilites .icon-list_item {
      width: 48%;
      display: inline-block; } }
  @media only screen and (min-width: 1920px) {
    .result-info .mod-contentWithSidebar .property-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .parking-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .children-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .business-facilities .icon-list_item,
    .result-info .mod-contentWithSidebar .room-facilites .icon-list_item {
      width: 32%;
      display: inline-block; } }

.result-info .mod-facilities .icon-list .icon-list_item {
  float: none;
  display: block;
  text-indent: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.result-info .icon-list_item {
  /*Double Bed*/
  /*Single Bed*/
  /*Twin Two single Bed*/
  /*Super King size Bed*/
  /*King size Bed*/
  /*Queen-size Bed*/
  /*Bunk bed*/
  /*Fold out bed*/
  /*Futon bed*/
  /*Sofa bed*/
  /*Twin Double beds Bed*/
  /*Four poster bed*/
  /*Triple (3 single beds) bed*/
  /*Quad (4 single beds) bed*/
  /*Bathtub*/
  /*Bathtub/shower combination*/
  /*Shower*/
  /*Bidet*/
  /*Grab bars in bathroom*/
  /*En suite*/
  /*Shared bathroom*/
  /*Jacuzzi*/
  /*Private bathroom*/
  /*Private toilet*/
  /*Shared toilet*/
  /*Spa*/
  /*Spa bath*/
  /*Max sleeps icon*/
  /*Adjoining rooms*/
  /*Air conditioning*/
  /*Alarm clock*/
  /*Balcony/Terrace*/
  /*Colour TV*/
  /*Desk*/
  /*Desk with lamp*/
  /*Dining guide*/
  /*Direct dial phone*/
  /*Fire alarm with light*/
  /*Fireplace*/
  /*Iron*/
  /*Ironing board*/
  /*Refrigerator*/
  /*Safe*/
  /*Telephone*/
  /*Trouser press*/
  /*Aircon per room*/
  /*Pets allowed*/
  /*DVD player*/
  /*Family room*/
  /*CD player*/
  /*High speed internet*/
  /*Internet Access*/
  /*Wireless internet access*/
  /*Hairdryer*/
  /*No smoking*/
  /*Hypoallergenic bed*/
  /*Hypoallergenic pillows*/
  /*Freeview*/
  /*Sky TV*/
  /*Tea and Coffee making facilities*/
  /*24-hour reception*/
  /*Adjoining rooms*/
  /*Air conditioning*/
  /*Airport/Train/Bus pick-up service*/
  /*Baggage store */
  /*Bar */
  /*BBQ/Picnic area*/
  /*Beauty/Spa facilities */
  /*Dry cleaning*/
  /*DVD/Video/Games rental */
  /*Entertainment*/
  /*Internet access (high speed) in public areas*/
  /*Internet access (wireless) in public areas*/
  /*Ironing facilities*/
  /*Lift*/
  /*Lounge*/
  /*No-smoking*/
  /*Pool*/
  /*Porter service*/
  /*Prayer mats*/
  /*Restaurant*/
  /*Room service*/
  /*Room service (24 hour) */
  /*Sauna */
  /*Stables */
  /*Steam room  */
  /*Wakeup call */
  /*Wedding services */
  /* Lock-up facility for bicycles*/
  /*Yoga room */
  /*Ayurvedic massage*/
  /*Spa pool*/
  /*Pillow service*/
  /*Hairdryers*/
  /*Kitchen facilities */
  /*Laundry facilities */
  /*Transfers*/
  /*Personal chef */
  /*Butler*/
  /*Currency exchange */
  /*Conference/banquet facilities  */
  /*Parking facilities  */
  /*On site parking  */
  /*Free parking  */
  /*Off site parking  */
  /*Secure parking  */
  /*Valet parking  */
  /*Long term parking  */
  /*Baby listening/monitoring  */
  /*Babysitting  */
  /*Children's menu  */
  /*Cots  */
  /*Games available  */
  /*Highchairs  */
  /*Children's play area */ }
  .result-info .icon-list_item.icon-bed-feature-1:before {
    content: "\e973"; }
  .result-info .icon-list_item.icon-bed-feature-2:before {
    content: "\e972"; }
  .result-info .icon-list_item.icon-bed-feature-3:before {
    content: "\e971"; }
  .result-info .icon-list_item.icon-bed-feature-4:before {
    content: "\e96c"; }
  .result-info .icon-list_item.icon-bed-feature-5:before {
    content: "\e96b"; }
  .result-info .icon-list_item.icon-bed-feature-6:before {
    content: "\e96a"; }
  .result-info .icon-list_item.icon-bed-feature-7:before {
    content: "\e969"; }
  .result-info .icon-list_item.icon-bed-feature-8:before {
    content: "\e968"; }
  .result-info .icon-list_item.icon-bed-feature-9:before {
    content: "\e967"; }
  .result-info .icon-list_item.icon-bed-feature-10:before {
    content: "\e966"; }
  .result-info .icon-list_item.icon-bed-feature-11:before {
    content: "\e970"; }
  .result-info .icon-list_item.icon-bed-feature-12:before {
    content: "\e96d"; }
  .result-info .icon-list_item.icon-bed-feature-13:before {
    content: "\e96f"; }
  .result-info .icon-list_item.icon-bed-feature-14:before {
    content: "\e96e"; }
  .result-info .icon-list_item.icon-bath-feature-1:before {
    content: "\e965"; }
  .result-info .icon-list_item.icon-bath-feature-2:before {
    content: "\e964"; }
  .result-info .icon-list_item.icon-bath-feature-3:before {
    content: "\e963"; }
  .result-info .icon-list_item.icon-bath-feature-4:before {
    content: "\e962"; }
  .result-info .icon-list_item.icon-bath-feature-5:before {
    content: "\e961"; }
  .result-info .icon-list_item.icon-bath-feature-6:before {
    content: "\e95f"; }
  .result-info .icon-list_item.icon-bath-feature-7:before {
    content: "\e960"; }
  .result-info .icon-list_item.icon-bath-feature-8:before {
    content: "\e95e"; }
  .result-info .icon-list_item.icon-bath-feature-9:before {
    content: "\e95d"; }
  .result-info .icon-list_item.icon-bath-feature-10:before {
    content: "\e95c"; }
  .result-info .icon-list_item.icon-bath-feature-11:before {
    content: "\e95b"; }
  .result-info .icon-list_item.icon-bath-feature-12:before {
    content: "\e95a"; }
  .result-info .icon-list_item.icon-bath-feature-13:before {
    content: "\e959"; }
  .result-info .icon-list_item.icon-icon-sleeps:before {
    content: "\e978"; }
  .result-info .icon-list_item.icon-room-facility-1:before {
    content: "\e901"; }
  .result-info .icon-list_item.icon-room-facility-2:before {
    content: "\e902"; }
  .result-info .icon-list_item.icon-room-facility-3:before {
    content: "\e904"; }
  .result-info .icon-list_item.icon-room-facility-4:before {
    content: "\e908"; }
  .result-info .icon-list_item.icon-room-facility-5:before {
    content: "\e949"; }
  .result-info .icon-list_item.icon-room-facility-6:before {
    content: "\e914"; }
  .result-info .icon-list_item.icon-room-facility-7:before {
    content: "\e915"; }
  .result-info .icon-list_item.icon-room-facility-8:before {
    content: "\e916"; }
  .result-info .icon-list_item.icon-room-facility-9:before {
    content: "\e917"; }
  .result-info .icon-list_item.icon-room-facility-10:before {
    content: "\e91d"; }
  .result-info .icon-list_item.icon-room-facility-11:before {
    content: "\e91e"; }
  .result-info .icon-list_item.icon-room-facility-12:before {
    content: "\e928"; }
  .result-info .icon-list_item.icon-room-facility-13:before {
    content: "\e929"; }
  .result-info .icon-list_item.icon-room-facility-14:before {
    content: "\e920"; }
  .result-info .icon-list_item.icon-room-facility-15:before {
    content: "\e93d"; }
  .result-info .icon-list_item.icon-room-facility-16:before {
    content: "\e946"; }
  .result-info .icon-list_item.icon-room-facility-17:before {
    content: "\e948"; }
  .result-info .icon-list_item.icon-room-facility-18:before {
    content: "\e902"; }
  .result-info .icon-list_item.icon-room-facility-19:before {
    content: "\e94f"; }
  .result-info .icon-list_item.icon-room-facility-20:before {
    content: "\e919"; }
  .result-info .icon-list_item.icon-room-facility-21:before {
    content: "\e91b"; }
  .result-info .icon-list_item.icon-room-facility-22:before {
    content: "\e90f"; }
  .result-info .icon-list_item.icon-room-facility-23:before {
    content: "\e924"; }
  .result-info .icon-list_item.icon-room-facility-24:before {
    content: "\e927"; }
  .result-info .icon-list_item.icon-room-facility-36:before, .result-info .icon-list_item.icon-room-facility-37:before, .result-info .icon-list_item.icon-room-facility-25:before {
    content: "\e927"; }
  .result-info .icon-list_item.icon-room-facility-26:before {
    content: "\e922"; }
  .result-info .icon-list_item.icon-room-facility-27:before {
    content: "\e930"; }
  .result-info .icon-list_item.icon-room-facility-28:before {
    content: "\e925"; }
  .result-info .icon-list_item.icon-room-facility-29:before {
    content: "\e926"; }
  .result-info .icon-list_item.icon-room-facility-30:before {
    content: "\e91f"; }
  .result-info .icon-list_item.icon-room-facility-31:before {
    content: "\e940"; }
  .result-info .icon-list_item.icon-room-facility-32:before {
    content: "\e945"; }
  .result-info .icon-list_item.icon-property-facility-1:before {
    content: "\e900"; }
  .result-info .icon-list_item.icon-property-facility-2:before {
    content: "\e901"; }
  .result-info .icon-list_item.icon-property-facility-3:before {
    content: "\e902"; }
  .result-info .icon-list_item.icon-property-facility-4:before {
    content: "\e90c"; }
  .result-info .icon-list_item.icon-property-facility-5:before {
    content: "\e907"; }
  .result-info .icon-list_item.icon-property-facility-6:before {
    content: "\e909"; }
  .result-info .icon-list_item.icon-property-facility-7:before {
    content: "\e90a"; }
  .result-info .icon-list_item.icon-property-facility-8:before {
    content: "\e95a"; }
  .result-info .icon-list_item.icon-property-facility-9:before {
    content: "\e918"; }
  .result-info .icon-list_item.icon-property-facility-10:before {
    content: "\e919"; }
  .result-info .icon-list_item.icon-property-facility-11:before {
    content: "\e91a"; }
  .result-info .icon-list_item.icon-property-facility-42:before, .result-info .icon-list_item.icon-property-facility-12:before {
    content: "\e924"; }
  .result-info .icon-list_item.icon-property-facility-43:before, .result-info .icon-list_item.icon-property-facility-13:before {
    content: "\e927"; }
  .result-info .icon-list_item.icon-property-facility-14:before {
    content: "\e929"; }
  .result-info .icon-list_item.icon-property-facility-15:before {
    content: "\e92c"; }
  .result-info .icon-list_item.icon-property-facility-16:before {
    content: "\e92e"; }
  .result-info .icon-list_item.icon-property-facility-17:before {
    content: "\e930"; }
  .result-info .icon-list_item.icon-property-facility-18:before {
    content: "\e934"; }
  .result-info .icon-list_item.icon-property-facility-19:before {
    content: "\e935"; }
  .result-info .icon-list_item.icon-property-facility-20:before {
    content: "\e937"; }
  .result-info .icon-list_item.icon-property-facility-21:before {
    content: "\e939"; }
  .result-info .icon-list_item.icon-property-facility-22:before {
    content: "\e93b"; }
  .result-info .icon-list_item.icon-property-facility-23:before {
    content: "\e93c"; }
  .result-info .icon-list_item.icon-property-facility-24:before {
    content: "\e93e"; }
  .result-info .icon-list_item.icon-property-facility-25:before {
    content: "\e943"; }
  .result-info .icon-list_item.icon-property-facility-26:before {
    content: "\e944"; }
  .result-info .icon-list_item.icon-property-facility-27:before {
    content: "\e94b"; }
  .result-info .icon-list_item.icon-property-facility-28:before {
    content: "\e94c"; }
  .result-info .icon-list_item.icon-property-facility-29:before {
    content: "\e92d"; }
  .result-info .icon-list_item.icon-property-facility-30:before {
    content: "\e94e"; }
  .result-info .icon-list_item.icon-property-facility-31:before {
    content: "\e906"; }
  .result-info .icon-list_item.icon-property-facility-32:before {
    content: "\e934"; }
  .result-info .icon-list_item.icon-property-facility-33:before {
    content: "\e933"; }
  .result-info .icon-list_item.icon-property-facility-34:before {
    content: "\e922"; }
  .result-info .icon-list_item.icon-property-facility-35:before {
    content: "\e92a"; }
  .result-info .icon-list_item.icon-property-facility-36:before {
    content: "\e92b"; }
  .result-info .icon-list_item.icon-property-facility-37:before {
    content: "\e947"; }
  .result-info .icon-list_item.icon-property-facility-38:before {
    content: "\e93f"; }
  .result-info .icon-list_item.icon-property-facility-39:before {
    content: "\e90d"; }
  .result-info .icon-list_item.icon-property-facility-40:before {
    content: "\e913"; }
  .result-info .icon-list_item.icon-property-facility-41:before {
    content: "\e911"; }
  .result-info .icon-list_item.icon-parking-facility-static:before {
    content: "\e931"; }
  .result-info .icon-list_item.icon-parking-facility-1:before {
    content: "\e931"; }
  .result-info .icon-list_item.icon-parking-facility-2:before {
    content: "\e931"; }
  .result-info .icon-list_item.icon-parking-facility-3:before {
    content: "\e931"; }
  .result-info .icon-list_item.icon-parking-facility-4:before {
    content: "\e931"; }
  .result-info .icon-list_item.icon-parking-facility-5:before {
    content: "\e931"; }
  .result-info .icon-list_item.icon-parking-facility-6:before {
    content: "\e931"; }
  .result-info .icon-list_item.icon-children-facility-1:before {
    content: "\e905"; }
  .result-info .icon-list_item.icon-children-facility-2:before {
    content: "\e905"; }
  .result-info .icon-list_item.icon-children-facility-3:before {
    content: "\e921"; }
  .result-info .icon-list_item.icon-children-facility-4:before {
    content: "\e912"; }
  .result-info .icon-list_item.icon-children-facility-5:before {
    content: "\e94a"; }
  .result-info .icon-list_item.icon-children-facility-6:before {
    content: "\e923"; }
  .result-info .icon-list_item.icon-children-facility-7:before {
    content: "\e91a"; }

.via-search {
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }

.booking .results-item:nth-child(2n) .result-container-left {
  float: left; }

.mod-reviewsWidget span {
  line-height: 1;
  color: black;
  font-size: 13px; }

.mod-reviewsWidget .subtitle {
  display: block;
  font-weight: 400;
  font-size: 16px; }

.mod-reviewsWidget .row {
  display: block;
  width: 100%; }

.mod-reviewsWidget .row span {
  font-size: 14px;
  line-height: 24px;
  display: inline-block; }

.mod-reviewsWidget .likes {
  display: inline-block;
  float: right;
  background-position: -275px -120px;
  margin: 0; }

.mod-reviewsWidget .review-rating {
  width: 74%;
  display: inline-block; }

.mod-reviewsWidget .footer {
  margin: 10px 0 0;
  font-size: 14px; }

.mod-reviewsWidget a {
  float: right; }

.mod-reviewsWidget p {
  color: black; }

.mod-reviewsWidget .review-average {
  color: black;
  display: inline-block;
  font-size: 1.75em;
  font-weight: 500;
  letter-spacing: -3px;
  position: relative;
  top: -1px;
  width: 24%; }

.mod-reviewsWidget .overall-rating {
  margin: 10px 0; }

.mod-reviewsWidget .overall-rating-title {
  display: block; }

.section-light {
  padding: 10px;
  background: white; }
  @media only screen and (min-width: 1024px) {
    .section-light {
      padding: 20px; } }

.small-details {
  margin: 5px 0;
  padding: 0px;
  color: #646464; }
  .small-details p {
    font-size: 14px; }
  .small-details .text-block {
    display: block;
    font-size: 14px;
    line-height: 18px; }

.confirmation {
  color: black; }
  .confirmation p,
  .confirmation .text-block {
    font-size: initial;
    color: black; }

.mod-awards {
  padding: 10px;
  clear: both; }
  .mod-awards img {
    margin: 0 5px; }

.footer .mod-awards img {
  width: auto;
  height: 80px; }

.mod-loader {
  background: rgba(255, 255, 255, 0.9) url("/ui/wl/4.126/images/sprites/search/oval-dark.svg") no-repeat scroll center 60px/44px 44px;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  z-index: 1000;
  min-height: 300px;
  padding: 10px; }
  @media only screen and (min-width: 768px) {
    .mod-loader {
      position: absolute; } }
  .mod-loader span {
    top: 95px;
    position: relative;
    vertical-align: middle;
    text-align: center;
    display: block; }

@-webkit-keyframes slide-search {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

@keyframes slide-search {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); }
  50% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0.9); }
  100% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); } }

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); }
  50% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0.9); }
  100% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); } }

@-webit-keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(219, 1, 72, 0); }
  50% {
    box-shadow: 0 0 5px #db0148; }
  100% {
    box-shadow: 0 0 5px rgba(219, 1, 72, 0); } }

.ui-datepicker-inline {
  width: auto !important; }
  .ui-datepicker-inline.ui-datepicker th {
    border: 1px solid #d7d8d8;
    border-top: 0; }
  .ui-datepicker-inline.ui-datepicker td {
    border: 1px solid rgba(215, 216, 216, 0.5); }
  .ui-datepicker-inline.ui-datepicker table {
    width: 100%; }
  .ui-datepicker-inline .ui-datepicker-group-middle {
    padding: 0 5px; }

.mod-search-date-range .cp-button-price-wrapper .cp-button-text {
  display: none; }

.mod-search-date-range .close-btn {
  border-left: 0;
  display: block;
  height: 38px;
  position: relative;
  float: right;
  right: 0px;
  text-indent: -9999em;
  width: 26px;
  line-height: 24px; }
  .mod-search-date-range .close-btn:before {
    content: "\e601";
    display: block;
    font-family: "Booking-glyphs";
    font-size: 40px;
    position: absolute;
    text-indent: 0;
    top: 13px;
    right: -6px; }
  .mod-search-date-range .close-btn[disabled]:before, .mod-search-date-range .close-btn:disabled:before, .mod-search-date-range .close-btn.disabled:before {
    color: #cacaca;
    cursor: default; }

.mod-search-date-range .ui-datepicker-group {
  box-sizing: border-box;
  width: 100%;
  float: left; }

.mod-search-date-range .mod-search-inline {
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px;
  margin-top: 0px;
  margin-bottom: 20px;
  float: left;
  width: 100%;
  position: relative;
  background: white; }
  @media only screen and (min-width: 768px) {
    .mod-search-date-range .mod-search-inline {
      box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px;
      margin-top: 10px;
      margin-bottom: 0; } }
  .mod-search-date-range .mod-search-inline .ui-datepicker {
    box-shadow: none; }
    .mod-search-date-range .mod-search-inline .ui-datepicker td span,
    .mod-search-date-range .mod-search-inline .ui-datepicker td a {
      padding: 0; }
  @media only screen and (min-width: 768px) {
    .mod-search-date-range .mod-search-inline .calendar-display {
      width: 100%;
      margin: 0; }
      .mod-search-date-range .mod-search-inline .calendar-display .ui-datepicker-group {
        width: 50%; } }
  @media only screen and (min-width: 1024px) {
    .mod-search-date-range .mod-search-inline .calendar-display {
      width: 100%;
      margin: 0; }
      .mod-search-date-range .mod-search-inline .calendar-display .ui-datepicker-group {
        width: 33.33333%; } }

.mod-search-date-range .column {
  margin: 0;
  display: inline-block;
  float: left;
  min-width: initial;
  width: auto;
  position: relative; }
  .mod-search-date-range .column .cp-input {
    margin: 0;
    cursor: default; }
    .mod-search-date-range .column .cp-input:hover, .mod-search-date-range .column .cp-input:focus {
      border-color: #d7d8d8; }

.mod-search-date-range .column-dateRange {
  position: relative;
  z-index: 1; }
  .mod-search-date-range .column-dateRange .date-value,
  .mod-search-date-range .column-dateRange .numberOfNights {
    display: none; }
  .mod-search-date-range .column-dateRange .date-format-label {
    display: none; }
    @media only screen and (min-width: 1024px) {
      .mod-search-date-range .column-dateRange .date-format-label {
        display: inline-block; } }
  .mod-search-date-range .column-dateRange .cp-dates {
    display: block;
    height: 44px;
    line-height: 42px;
    font-size: 1em;
    float: left;
    color: black;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease;
    margin: 0 10px;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .mod-search-date-range .column-dateRange .cp-dates {
        font-size: 1.125em; } }
    @media only screen and (min-width: 1024px) {
      .mod-search-date-range .column-dateRange .cp-dates {
        font-size: 1.3125em; } }
  .mod-search-date-range .column-dateRange .close-btn:before {
    right: -15px;
    top: 13px; }
    @media only screen and (min-width: 1333px) {
      .mod-search-date-range .column-dateRange .close-btn:before {
        top: 10px; } }
  .mod-search-date-range .column-dateRange .cp-checkout {
    float: right; }

.mod-search-date-range .start-date-selected-state,
.mod-search-date-range .end-date-interim-state,
.mod-search-date-range .end-date-selected-state {
  display: none; }

.mod-search-date-range .cp-startDate-text, .mod-search-date-range .cp-endDate-text {
  position: relative; }

.mod-search-date-range .eviivo-start-date {
  margin: 0 10px 0 0; }

.mod-search-date-range .mod-inline-calendar-footer {
  padding: 10px;
  clear: both; }

.mod-search-date-range.arrival .cp-checkin {
  color: black; }

.mod-search-date-range.arrival .cp-checkout {
  color: rgba(0, 0, 0, 0.2); }

.mod-search-date-range.departure .eviivo-start-date .date-placeholder,
.mod-search-date-range.departure .cp-checkin .date-placeholder {
  display: none; }

.mod-search-date-range.departure .eviivo-start-date .start-date-selected-state,
.mod-search-date-range.departure .eviivo-start-date .date-value,
.mod-search-date-range.departure .cp-checkin .start-date-selected-state,
.mod-search-date-range.departure .cp-checkin .date-value {
  display: inline-block;
  color: rgba(0, 0, 0, 0.4); }

.mod-search-date-range.departure .eviivo-start-date .date-value,
.mod-search-date-range.departure .eviivo-start-date .numberOfNights,
.mod-search-date-range.departure .cp-checkin .date-value,
.mod-search-date-range.departure .cp-checkin .numberOfNights {
  font-size: 16px;
  line-height: 44px; }

.mod-search-date-range.departure .eviivo-end-date,
.mod-search-date-range.departure .cp-checkout {
  border-color: #db0148;
  color: black; }
  .mod-search-date-range.departure .eviivo-end-date .date-placeholder,
  .mod-search-date-range.departure .cp-checkout .date-placeholder {
    display: none; }
  .mod-search-date-range.departure .eviivo-end-date .end-date-interim-state,
  .mod-search-date-range.departure .eviivo-end-date .start-date-selected-state,
  .mod-search-date-range.departure .cp-checkout .end-date-interim-state,
  .mod-search-date-range.departure .cp-checkout .start-date-selected-state {
    display: inline-block; }

.mod-search-date-range.departure .mod-inline-calendar-dates {
  display: inline-block;
  width: auto;
  position: relative;
  left: 0; }

.mod-search-date-range.selected .date-placeholder, .mod-search-date-range.searchDone .date-placeholder {
  display: none; }

.mod-search-date-range.selected .mod-inline-calendar-dates, .mod-search-date-range.searchDone .mod-inline-calendar-dates {
  display: inline-block;
  width: auto;
  position: relative;
  left: 0; }

.mod-search-date-range.selected .start-date-selected-state,
.mod-search-date-range.selected .end-date-selected-state, .mod-search-date-range.searchDone .start-date-selected-state,
.mod-search-date-range.searchDone .end-date-selected-state {
  display: inline-block;
  color: rgba(0, 0, 0, 0.4); }

.mod-search-date-range.selected .date-value, .mod-search-date-range.searchDone .date-value {
  display: inline-block;
  font-size: 14px;
  line-height: 44px; }

@media only screen and (min-width: 1024px) {
  .mod-search-date-range.selected .numberOfNights, .mod-search-date-range.searchDone .numberOfNights {
    display: inline-block;
    font-size: 14px;
    line-height: 44px; } }

.mod-search-date-range.searchDone {
  padding: 10px;
  background: #383a3d; }
  .mod-search-date-range.searchDone .cp-button-price-wrapper {
    background: #383a3d;
    line-height: 1; }
  .mod-search-date-range.searchDone .column.column-dateRange,
  .mod-search-date-range.searchDone .inline-calendar-room-selection,
  .mod-search-date-range.searchDone .mod-inline-calendar-keys,
  .mod-search-date-range.searchDone .calendar-display {
    display: none; }
  .mod-search-date-range.searchDone .mod-inline-calendar-dates {
    padding: 0; }
  .mod-search-date-range.searchDone .mod-search-inline {
    box-shadow: none;
    float: right;
    width: auto;
    margin: 0; }
  .mod-search-date-range.searchDone .cp-button-price {
    display: none; }
  .mod-search-date-range.searchDone .cp-button-text {
    display: inline-block;
    float: right; }
  .mod-search-date-range.searchDone .cp-button-text,
  .mod-search-date-range.searchDone .numberOfNights,
  .mod-search-date-range.searchDone .cp-text-date {
    color: white; }
  .mod-search-date-range.searchDone .mod-inline-calendar-footer {
    padding: 0; }

.mod-search-date-range.searchExpanded {
  padding: 0;
  background: white; }
  .mod-search-date-range.searchExpanded .mod-search-inline {
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px;
    margin-top: 0px;
    margin-bottom: 20px;
    float: left;
    width: 100%;
    position: relative;
    background: white; }
    @media only screen and (min-width: 768px) {
      .mod-search-date-range.searchExpanded .mod-search-inline {
        box-shadow: rgba(0, 0, 0, 0.4) 0 0 6px;
        margin-top: 10px;
        margin-bottom: 0; } }
  .mod-search-date-range.searchExpanded .column.column-dateRange,
  .mod-search-date-range.searchExpanded .calendar-displayed {
    display: inline-block; }
  .mod-search-date-range.searchExpanded .inline-calendar-room-selection,
  .mod-search-date-range.searchExpanded .mod-inline-calendar-keys {
    display: none; }
    @media only screen and (min-width: 768px) {
      .mod-search-date-range.searchExpanded .inline-calendar-room-selection,
      .mod-search-date-range.searchExpanded .mod-inline-calendar-keys {
        display: inline-block; } }
  .mod-search-date-range.searchExpanded .cp-button-text,
  .mod-search-date-range.searchExpanded .numberOfNights,
  .mod-search-date-range.searchExpanded .cp-text-date {
    color: initial; }
  .mod-search-date-range.searchExpanded .mod-inline-calendar-footer {
    padding: 10px; }
  .mod-search-date-range.searchExpanded .cp-button-price-wrapper {
    background: initial;
    line-height: initial; }
  .mod-search-date-range.searchExpanded .cp-button-price-wrapper .cp-button-text {
    display: none; }
  .mod-search-date-range.searchExpanded .cp-button-price-wrapper .cp-button-price {
    display: block; }

.mod-search-date-range .numberOfNights {
  line-height: 44px;
  height: 44px;
  margin-left: 10px;
  float: left;
  color: black; }
  .mod-search-date-range .numberOfNights span {
    display: inline-block;
    position: relative;
    text-align: center; }

.mod-search-date-range .column-inner.mod-customDropdown-list-item .column {
  float: left;
  margin-right: 10px;
  width: 41%; }

.mod-search-date-range .column-inner.mod-customDropdown-list-item .column-delete {
  float: right;
  margin-right: 0;
  width: 10%; }

.mod-search-date-range .column-calendar-small {
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .mod-search-date-range .column-calendar-small {
      display: none;
      margin-top: 20px;
      margin-bottom: 10px; } }

.mod-search-date-range .cp-button-price {
  width: 100%;
  font-size: 1.3125em; }
  @media only screen and (min-width: 768px) {
    .mod-search-date-range .cp-button-price {
      width: auto;
      float: right;
      top: 0; } }

.mod-search-date-range .cp-inputValues {
  padding-right: 20px; }

.mod-search-date-range.selected .numberOfNights:before {
  color: #383a3d; }

.mod-inline-calendar-keys {
  display: none;
  float: right;
  position: relative;
  top: 10px; }
  @media only screen and (min-width: 768px) {
    .mod-inline-calendar-keys {
      display: inline-block; } }
  .mod-inline-calendar-keys .key-item {
    padding-left: 25px;
    position: relative;
    font-size: 0.6875em;
    margin-right: 5px;
    color: black;
    display: inline-block;
    line-height: 24px; }
    .mod-inline-calendar-keys .key-item:before {
      top: 0;
      height: 0;
      position: absolute;
      left: 0;
      width: 22px;
      height: 22px;
      border: 1px solid #d7d8d8;
      content: '';
      background-color: white; }
    .mod-inline-calendar-keys .key-item.unavailable:before {
      background: #555555; }
    .mod-inline-calendar-keys .key-item.noCheckIn:after {
      position: absolute;
      left: 0;
      width: 22px;
      height: 22px;
      background-color: #555555;
      height: 4px;
      top: 18px;
      content: ''; }
    .mod-inline-calendar-keys .key-item.minimumStay:after {
      position: absolute;
      left: 0;
      width: 22px;
      height: 22px;
      background-color: #db0148;
      height: 4px;
      top: 18px;
      content: ''; }
    .mod-inline-calendar-keys .key-item.yourStay:before {
      background: #db0148; }
  .mod-inline-calendar-keys .available,
  .mod-inline-calendar-keys .yourStay,
  .mod-inline-calendar-keys .minimumStay {
    display: none; }

.selected .noCheckIn,
.departure .noCheckIn {
  display: none; }

.selected .minimumStay,
.selected .yourStay,
.departure .minimumStay,
.departure .yourStay {
  display: inline-block; }

.mod-room-list-overlay-outer {
  background: white;
  border-left: 1px solid #d7d8d8;
  height: 100%;
  padding: 20px;
  position: relative; }

.show-filters {
  margin: 0;
  padding: 0 30px 0 0;
  position: relative; }
  @media only screen and (min-width: 768px) {
    .show-filters {
      display: block; } }
  .show-filters a:after {
    position: absolute;
    display: block;
    content: "\e60d";
    font-family: "Booking-glyphs";
    font-size: 38px;
    right: 0;
    top: 0; }

.active .show-filters a:after {
  content: "\e60c"; }

.mod-inline-calendar-notification {
  clear: both;
  padding: 15px; }
  .mod-inline-calendar-notification p {
    margin: 0;
    line-height: 1.3125em;
    font-size: 0.875em; }
  .mod-inline-calendar-notification.error {
    background: #b33535;
    color: white; }
  .mod-inline-calendar-notification.warning {
    background: #f0f0f0;
    color: black; }
  .mod-inline-calendar-notification.notification {
    background: #edf5d6;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 20px; }
    .mod-inline-calendar-notification.notification .mod-inline-calendar-notification-inner {
      border-left: 6px solid #5cb350;
      float: left; }
      .mod-inline-calendar-notification.notification .mod-inline-calendar-notification-inner p {
        color: #5cb350;
        padding-left: 10px; }

.mod-inline-calendar-dates {
  display: none;
  width: auto; }
  @media only screen and (min-width: 768px) {
    .mod-inline-calendar-dates {
      margin: 0 30px 0 0; } }

.mod-inline-calendar-dates.column-dateRange .close-btn {
  width: 29px;
  height: 28px;
  border-radius: 3px;
  top: 8px;
  margin-left: 10px; }
  .mod-inline-calendar-dates.column-dateRange .close-btn:before {
    color: white;
    top: 1px;
    left: -5px;
    right: 0; }

.mod-inline-calendar-dates .cp-text-date {
  border: none;
  padding: 0;
  float: left;
  position: relative; }

.error-text {
  display: none; }

.error p.error-text {
  display: block;
  padding: 10px;
  line-height: 1;
  background: #b33535;
  color: white; }

.inline-calendar-room-selection {
  display: block; }
  @media only screen and (min-width: 1024px) {
    .inline-calendar-room-selection {
      display: block; } }

.column-occupancy {
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .column-occupancy {
      width: auto; } }
  .column-occupancy .cp-tooltip.single-inventory label[for='cp-select-numberOfRooms-button'],
  .column-occupancy .cp-tooltip.single-inventory select.cp-select-numberOfRooms,
  .column-occupancy .cp-tooltip.single-inventory select.cp-select-numberOfRooms + span.ui-selectmenu-button {
    display: none; }
  .column-occupancy footer .cp-button {
    width: 100%; }

.calendar-overlay {
  position: relative; }
  .calendar-overlay .calendar-overlay-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: #f0f0f0;
    color: #646464;
    border: 1px solid #d7d8d8;
    border-top: 0; }
    .calendar-overlay .calendar-overlay-text p {
      font-size: 0.875em;
      line-height: 1.3125em; }
  .calendar-overlay table.ui-datepicker-calendar {
    visibility: hidden; }

@media only screen and (min-width: 1024px) {
  .mod-search-date-range .column-dateRange.column-dates {
    left: 33.333%;
    position: absolute;
    width: 28.333%; }
    .mod-search-date-range .column-dateRange.column-dates .cp-dates {
      margin: 0; } }

@media only screen and (min-width: 1280px) {
  .mod-search-date-range .column-dateRange.column-dates {
    width: 33.333%; } }

@media only screen and (min-width: 1024px) {
  .template-13 .mod-search-date-range .column-dateRange.column-dates,
  .template-14 .mod-search-date-range .column-dateRange.column-dates {
    left: 0;
    margin-left: 20px;
    position: relative;
    width: 28.333%; } }

@media only screen and (min-width: 1280px) {
  .template-13 .mod-search-date-range .column-dateRange.column-dates,
  .template-14 .mod-search-date-range .column-dateRange.column-dates {
    width: 28.333%; } }

.mod-search-date-range.mod-search-range-2-month .mod-inline-calendar-dates {
  margin: 0 0 0 10px; }
  .mod-search-date-range.mod-search-range-2-month .mod-inline-calendar-dates .date-value {
    font-size: 0.875em; }

.mod-search-date-range.mod-search-range-2-month .mod-search-inline .ui-datepicker-inline .ui-datepicker-group {
  padding: 0 5px;
  width: 50%; }

.mod-search-date-range.mod-search-range-2-month .mod-search-inline .date-value {
  margin: 0 10px; }

@-webkit-keyframes slide-search {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

@keyframes slide-search {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); }
  50% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0.9); }
  100% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); } }

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); }
  50% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0.9); }
  100% {
    box-shadow: 0 0 5px rgba(56, 58, 61, 0); } }

@-webit-keyframes pulse {
  0% {
    box-shadow: 0 0 5px rgba(219, 1, 72, 0); }
  50% {
    box-shadow: 0 0 5px #db0148; }
  100% {
    box-shadow: 0 0 5px rgba(219, 1, 72, 0); } }

.mod-customDropdown {
  position: relative;
  float: left; }
  .mod-customDropdown .cp-tooltip {
    padding: 0;
    min-width: 290px;
    top: 54px; }
    @media only screen and (min-width: 480px) {
      .mod-customDropdown .cp-tooltip {
        min-width: 300px; } }
    @media only screen and (min-width: 1024px) {
      .mod-customDropdown .cp-tooltip {
        min-width: 390px; } }
    .mod-customDropdown .cp-tooltip:before {
      border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0.2); }
    .mod-customDropdown .cp-tooltip:after {
      border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #e4e4e4; }
    .mod-customDropdown .cp-tooltip.top {
      top: auto;
      bottom: 54px; }
      .mod-customDropdown .cp-tooltip.top:before, .mod-customDropdown .cp-tooltip.top:after {
        bottom: auto;
        top: 100%;
        margin-top: -1px; }
      .mod-customDropdown .cp-tooltip.top:before {
        border-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); }
      .mod-customDropdown .cp-tooltip.top:after {
        border-color: #e4e4e4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); }
    .mod-customDropdown .cp-tooltip.left {
      left: initial;
      right: 0; }
      .mod-customDropdown .cp-tooltip.left:before, .mod-customDropdown .cp-tooltip.left:after {
        left: auto;
        right: 25px; }
    .mod-customDropdown .cp-tooltip header {
      background: #e4e4e4;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      padding: 10px;
      overflow: hidden; }
      .mod-customDropdown .cp-tooltip header h4 {
        position: relative;
        font-size: 1em;
        color: rgba(0, 0, 0, 0.8);
        font-weight: normal;
        float: left;
        width: 80%; }
      .mod-customDropdown .cp-tooltip header .close-btn {
        height: 22px;
        overflow: hidden;
        line-height: 24px; }
        .mod-customDropdown .cp-tooltip header .close-btn:before {
          top: 0; }
    .mod-customDropdown .cp-tooltip footer {
      background: #e4e4e4;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      padding: 10px;
      overflow: hidden;
      font-size: 0.875em; }
      .mod-customDropdown .cp-tooltip footer .cp-button {
        float: right;
        font-weight: normal; }
      .mod-customDropdown .cp-tooltip footer .cp-button-text {
        padding: 0 5px;
        font-size: 1em;
        float: left; }
  .mod-customDropdown .cp-input {
    clear: both;
    min-height: 44px;
    display: block;
    width: auto;
    overflow-y: auto;
    border: 1px solid #d7d8d8;
    cursor: pointer; }
    .mod-customDropdown .cp-input:before {
      background: white url("/ui/wl/4.126/images/sprites/search/search-form-sprite.svg") no-repeat scroll 15px 0;
      content: "";
      height: 20px;
      position: absolute;
      width: 40px;
      right: 10px; }
    @media only screen and (min-width: 320px) {
      .mod-customDropdown .cp-input {
        min-width: 100%;
        max-width: 100%;
        max-height: inherit; } }
    @media only screen and (min-width: 768px) {
      .mod-customDropdown .cp-input {
        width: 100%;
        max-height: 44px; } }
    @media only screen and (min-width: 1100px) {
      .mod-customDropdown .cp-input {
        min-width: 100%;
        max-width: 100%; } }
    .mod-customDropdown .cp-input span {
      font-size: 14px;
      color: black;
      display: inline-block;
      margin: 0 30px 5px 0;
      list-style: none;
      height: 26px;
      line-height: 26px;
      padding: 0 5px 0 0;
      vertical-align: middle;
      position: relative;
      top: -2px;
      transition: color .2s ease-in; }
  .mod-customDropdown p {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #d7d8d8;
    color: #646464;
    font-size: 16px;
    margin: 0 0 20px;
    padding: 0 0 5px; }
  .mod-customDropdown .mod-customDropdown-list li {
    margin-top: 10px; }
    .mod-customDropdown .mod-customDropdown-list li:first-child {
      margin: 0; }
  .mod-customDropdown.is--scrollable .mod-customDropdown-list {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto; }
  .mod-customDropdown .mod-select-group {
    padding: 10px; }
    .mod-customDropdown .mod-select-group select,
    .mod-customDropdown .mod-select-group .ui-selectmenu-button {
      width: 100%; }
  .mod-customDropdown .loading-overlay {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0.6; }
    .mod-customDropdown .loading-overlay.show {
      display: block; }
    .svg .mod-customDropdown .loading-overlay {
      background: url("/ui/wl/4.126/images/sprites/search/oval-dark.svg") no-repeat scroll center center rgba(255, 255, 255, 0.6); }
    .no-svg .mod-customDropdown .loading-overlay {
      background: url("/ui/wl/4.126/images/sprites/search/oval-dark.gif") no-repeat scroll center center rgba(255, 255, 255, 0.6); }

.mod-promo {
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #2c600f;
  background-color: #dfe9da;
  color: #2c600f;
  position: relative;
  display: table;
  width: 100%;
  font-size: 18px; }
  .mod-promo h4 {
    font-size: 1.25em; }
  @media only screen and (min-width: 768px) {
    .mod-promo {
      padding: 15px; } }
  .mod-promo .mod-promo-icon {
    display: none;
    vertical-align: top;
    text-align: center;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .mod-promo .mod-promo-icon {
        display: table-cell;
        height: 64px;
        width: 64px;
        vertical-align: middle; } }
    .mod-promo .mod-promo-icon:before {
      content: "";
      left: 50%;
      top: 50%;
      position: absolute;
      border: 3px solid #2c600f;
      border-radius: 10em;
      height: 34px;
      width: 34px;
      transform: translate(-50%, -50%); }
      @media only screen and (min-width: 768px) {
        .mod-promo .mod-promo-icon:before {
          height: 64px;
          width: 64px; } }
    .mod-promo .mod-promo-icon:after {
      content: "\e901";
      font-family: "Booking-glyphs";
      font-size: 18px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media only screen and (min-width: 768px) {
        .mod-promo .mod-promo-icon:after {
          font-size: 32px;
          width: 32px;
          height: 32px; } }
  .mod-promo .cp-close {
    color: #2c600f; }
  .mod-promo .mod-promo-cta .cp-button {
    font-size: 13px;
    background: #2c600f;
    color: white; }
    @media only screen and (min-width: 768px) {
      .mod-promo .mod-promo-cta .cp-button {
        font-size: 16px; } }
  .mod-promo.promo-type-wxi, .mod-promo.promo-type-wxc {
    background-color: #619246;
    color: white; }
    .mod-promo.promo-type-wxi .mod-promo-icon:before, .mod-promo.promo-type-wxc .mod-promo-icon:before {
      border-color: white; }
    .mod-promo.promo-type-wxi .mod-promo-cta .cp-button, .mod-promo.promo-type-wxc .mod-promo-cta .cp-button {
      background: #2c600f;
      border-color: white;
      color: white; }
  @media only screen and (min-width: 768px) {
    .mod-promo.promo-type-wxi {
      background-image: url("/ui/wl/4.126/images/promo/bgInstantDeal.png");
      background-repeat: repeat;
      background-position: 0 40%; } }
  .mod-promo.promo-type-wxi .mod-promo-icon:after {
    content: "\e903";
    font-size: 16px; }
    @media only screen and (min-width: 768px) {
      .mod-promo.promo-type-wxi .mod-promo-icon:after {
        font-size: 28px; } }
  @media only screen and (min-width: 768px) {
    .mod-promo.promo-type-wxc {
      background-image: url("/ui/wl/4.126/images/promo/bgPromoCode.png");
      background-repeat: repeat;
      background-position: 0 90%; } }
  .mod-promo.promo-type-wxc .mod-promo-icon:after {
    content: "\e904";
    font-size: 12px; }
    @media only screen and (min-width: 768px) {
      .mod-promo.promo-type-wxc .mod-promo-icon:after {
        font-size: 28px; } }
  .mod-promo.promo-type-wxcf {
    background-color: #fadbd8;
    border-color: #ff0101;
    color: #ff0101;
    padding: 5px; }
    @media only screen and (min-width: 768px) {
      .mod-promo.promo-type-wxcf {
        background-image: none; } }
    .mod-promo.promo-type-wxcf .mod-promo-icon {
      display: none; }
    .mod-promo.promo-type-wxcf .mod-promo-cta .cp-button {
      background: red;
      border-color: white;
      color: white; }
    .mod-promo.promo-type-wxcf .mod-promo-close {
      display: none; }
  .mod-promo.promo-type-wxwarn {
    background-color: #fbf0c3;
    border-color: #a3620a;
    color: #a3620a; }
    .mod-promo.promo-type-wxwarn .mod-promo-icon:before {
      border-color: #a3620a; }
    .mod-promo.promo-type-wxwarn .mod-promo-icon:after {
      content: "\e999";
      color: #a3620a;
      font-size: 26px; }
    .mod-promo.promo-type-wxwarn .mod-promo-cta .cp-button {
      background-color: #a3620a; }
    .mod-promo.promo-type-wxwarn .cp-close {
      color: #a3620a; }
  .mod-promo.promo-price {
    background-color: #eb1e23;
    color: white; }
    @media only screen and (min-width: 768px) {
      .mod-promo.promo-price {
        background-image: url("/ui/wl/4.126/images/promo/bgPromoPrice.png");
        background-repeat: repeat;
        background-position: 0 90%; } }
    .mod-promo.promo-price .mod-promo-icon:before {
      border-color: white; }
    .mod-promo.promo-price .mod-promo-icon:after {
      content: "\e905";
      font-size: 16px; }
      @media only screen and (min-width: 768px) {
        .mod-promo.promo-price .mod-promo-icon:after {
          font-size: 28px; } }
  .mod-promo.promo-type-wxpu .mod-promo-icon:before {
    border-color: #2c600f; }
  .mod-promo .mod-promo-content {
    display: block;
    padding: 20px 20px 20px 0; }
    @media only screen and (min-width: 768px) {
      .mod-promo .mod-promo-content {
        display: table-cell;
        vertical-align: middle;
        padding: 10px; } }
    .mod-promo .mod-promo-content h4 {
      margin-bottom: 0;
      font-style: normal;
      line-height: 1; }
    .mod-promo .mod-promo-content p {
      margin: 0;
      padding: 0;
      line-height: 1;
      color: #2c600f; }
  .mod-promo .mod-promo-cta {
    display: block; }
    @media only screen and (min-width: 768px) {
      .mod-promo .mod-promo-cta {
        min-width: 245px;
        float: none;
        display: table-cell;
        vertical-align: middle;
        text-align: right; } }
    .mod-promo .mod-promo-cta .cp-button {
      width: 100%; }
      @media only screen and (min-width: 768px) {
        .mod-promo .mod-promo-cta .cp-button {
          width: auto; } }
  .mod-promo .cp-close {
    right: 10px;
    top: 10px; }
  .mod-promo_collapsable .expandable-selector label {
    color: #db0148;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-right: 14px; }
    .mod-promo_collapsable .expandable-selector label:after {
      top: 50%;
      left: 100%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(219, 1, 72, 0);
      border-top-color: #db0148;
      border-width: 5px;
      margin-top: -3px; }
  .mod-promo_collapsable.active .expandable-selector label:after {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
    top: 0; }

.promo {
  background: #619246;
  border-radius: 3px;
  color: white;
  display: inline-block;
  font-size: 13px;
  height: auto;
  line-height: 14px;
  padding: 6px 6px 6px 30px;
  text-align: left;
  top: 0;
  width: auto;
  min-height: 24px;
  position: relative; }
  .promo:before {
    content: "\e906";
    font-family: "Booking-glyphs";
    font-size: 16px;
    left: 8px;
    position: absolute;
    color: white; }
  .promo:after {
    background: white;
    content: "";
    height: 100%;
    left: 25px;
    position: absolute;
    top: 0;
    width: 1px; }
  .promo.promo-type-wxi:before {
    content: "\e903";
    left: 8px; }
  .promo.promo-type-wxc:before {
    content: "\e904";
    left: 8px; }

.small-promos .promo,
.mod-rateItem .promo {
  padding: 4px 4px 4px 25px;
  min-height: 14px;
  font-size: 10px; }
  .small-promos .promo:before,
  .mod-rateItem .promo:before {
    font-size: 12px; }
  .small-promos .promo:after,
  .mod-rateItem .promo:after {
    left: 21px; }

#apply-promo {
  background-color: #2c600f;
  font-size: 14px; }

.promo-banner {
  background-color: #db0148;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 6px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 125px;
  max-width: 100%;
  margin-bottom: 20px;
  display: block; }
  .promo-banner.slide svg {
    fill: #db0148;
    width: 64px;
    height: 64px;
    position: relative; }
  .promo-banner.slide.start:before {
    left: calc(50% - 400px); }
  @media only screen and (min-width: 480px) {
    .promo-banner.slide.start .icon-banner {
      left: 75%;
      top: 50%;
      transform: translateY(-50%); } }
  @media only screen and (min-width: 768px) {
    .promo-banner.slide.start .icon-banner {
      left: 80%; } }
  .promo-banner.slide.start h2,
  .promo-banner.slide.start .secondary-copy p,
  .promo-banner.slide.start .secondary-copy p:nth-of-type(2n),
  .promo-banner.slide.start .secondary-copy p:nth-of-type(3n) {
    transform: translate(0, 0);
    background-color: transparent;
    color: white; }
  .promo-banner.slide.start h2 {
    padding-left: 0;
    transition: transform 0.3s 0.3s; }
  .promo-banner.slide.start .secondary-copy p {
    padding-left: 0;
    transition: transform 0.4s 0.4s; }
    .promo-banner.slide.start .secondary-copy p:nth-of-type(2n) {
      transition: transform 0.4s 0.5s; }
    .promo-banner.slide.start .secondary-copy p:nth-of-type(3n) {
      transition: transform 0.4s 0.6s; }
  @media only screen and (min-width: 768px) {
    .promo-banner.slide:before {
      content: "";
      width: 1000px;
      height: 1000px;
      border-radius: 80px;
      background-color: rgba(255, 255, 255, 0.5);
      position: absolute;
      top: -83px;
      left: -1000px;
      transform: rotate(45deg) translate(-50%, 0);
      transition: left 0.3s 0.2s, background-color 0.3s 3s;
      box-shadow: 0 0 250px 5px white inset;
      border: solid 2px rgba(0, 0, 0, 0.4); } }
  .promo-banner.slide .icon-banner {
    display: none; }
    @media only screen and (min-width: 480px) {
      .promo-banner.slide .icon-banner {
        background-color: rgba(0, 0, 0, 0.4);
        padding: 20px;
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 105px;
        height: 105px;
        top: 10px;
        left: -150px;
        border-radius: 100%;
        color: #db0148;
        text-align: center;
        z-index: 1;
        transform: translate(10px, 10px);
        transition: left 0.3s 0.2s; } }
    .promo-banner.slide .icon-banner:after {
      content: "";
      position: absolute;
      background-color: white;
      width: 98px;
      height: 98px;
      border-radius: 100%;
      top: 4px;
      left: 4px;
      z-index: 1; }
    .promo-banner.slide .icon-banner:before {
      content: "";
      position: absolute;
      background-color: rgba(255, 255, 255, 0.4);
      width: 100px;
      height: 100px;
      border-radius: 100%;
      top: 3px;
      left: 3px;
      z-index: 1; }
  .promo-banner.slide .num {
    display: block;
    font-size: 26px;
    font-weight: bold;
    padding-top: 3px;
    z-index: 3;
    position: relative; }
  .promo-banner.slide .small {
    position: relative;
    z-index: 3; }
  .promo-banner h2 {
    font-weight: normal;
    margin-top: 0;
    position: relative;
    transform: translate(150%, 0);
    font-size: 26px;
    text-transform: inherit; }
  .promo-banner .secondary-copy {
    margin: 0;
    position: relative; }
    .promo-banner .secondary-copy p {
      padding-left: 80px;
      transform: translate(150%, 0); }
      .promo-banner .secondary-copy p:nth-of-type(2n) {
        padding-left: 60px;
        transform: translate(150%, 0); }
      .promo-banner .secondary-copy p:nth-of-type(3n) {
        padding-left: 80px;
        transform: translate(150%, 0); }
  .promo-banner .icon-banner svg {
    fill: #db0148;
    width: 60px;
    height: 60px;
    display: inline-block;
    z-index: 10; }
  .promo-banner .promo-inner {
    box-sizing: border-box; }
  .promo-banner .promo-copy {
    width: 100%; }
    @media only screen and (min-width: 480px) {
      .promo-banner .promo-copy {
        width: 75%; } }
    @media only screen and (min-width: 768px) {
      .promo-banner .promo-copy {
        width: 65%;
        margin: 0 20px 0 50px; } }
    @media only screen and (min-width: 1024px) {
      .promo-banner .promo-copy {
        margin: 0 20px 0 120px; } }

.mod-overlay {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30; }
  .mod-overlay .cp-close {
    top: 10px;
    right: 10px;
    position: absolute; }
  .mod-overlay p {
    margin: 10px 0;
    position: relative; }
    .mod-overlay p .icon-lighting,
    .mod-overlay p .icon-bulb {
      padding-left: 25px; }
      .mod-overlay p .icon-lighting:before,
      .mod-overlay p .icon-bulb:before {
        font-family: Booking-glyphs;
        position: absolute;
        content: "\e904";
        font-size: 32px;
        left: 0; }
    .mod-overlay p .icon-lighting:before {
      content: "\e903"; }
  .mod-overlay .cp-input {
    margin-right: 10px; }
  .mod-overlay .error {
    color: #ff0101; }

.mod-overlay-popUp {
  background-color: #f0f0f0;
  border: 1px solid #d7d8d8;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  left: 0;
  margin: 0 auto;
  width: 400px;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 80px;
  z-index: 31; }

#apply-promo {
  background-color: #2c600f; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.image-counter {
  color: white;
  padding: 10px 0;
  z-index: 999; }

.is--hiddenLarge {
  display: none; }

.hide--heroImage {
  display: none !important; }

#cloned {
  display: none;
  visibility: hidden; }

.mod-gallery:before, .mod-gallery:after {
  content: "";
  display: table; }

.mod-gallery:after {
  clear: both; }

.mod-gallery .hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative; }
  @media only screen and (min-width: 1280px) {
    .mod-gallery .hero-image {
      height: 643px; } }
  .mod-gallery .hero-image img {
    width: 100%;
    height: auto; }
    @media only screen and (min-width: 1280px) {
      .mod-gallery .hero-image img {
        transform: translateY(-150px); } }
  .mod-gallery .hero-image-control {
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px; }
    .mod-gallery .hero-image-control:before {
      content: "";
      width: 2px;
      height: 24px;
      background-color: rgba(0, 0, 0, 0.6);
      display: block;
      position: absolute;
      top: calc(50% - 2px); }
    .mod-gallery .hero-image-control:after {
      content: "";
      width: 2px;
      height: 24px;
      background-color: rgba(0, 0, 0, 0.6);
      display: block;
      position: absolute;
      top: calc(50% - 19px); }
  .mod-gallery .hero-image-control_prev {
    left: 0; }
    .mod-gallery .hero-image-control_prev:before {
      transform: rotate(-45deg);
      left: 20px; }
    .mod-gallery .hero-image-control_prev:after {
      transform: rotate(45deg);
      left: 20px; }
  .mod-gallery .hero-image-control_next {
    right: 0; }
    .mod-gallery .hero-image-control_next:before {
      transform: rotate(45deg);
      right: 20px; }
    .mod-gallery .hero-image-control_next:after {
      transform: rotate(-45deg);
      right: 20px; }

.mod-gallery .trigger {
  cursor: pointer; }

.mod-gallery .large-image picture {
  position: relative;
  height: 350px;
  display: block;
  overflow: hidden; }
  .mod-gallery .large-image picture:before {
    position: absolute;
    color: white;
    content: "\e616";
    font-family: "Booking-glyphs";
    opacity: 1;
    right: 5px;
    bottom: 5px; }

.mod-gallery .large-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover; }

@media only screen and (min-width: 1024px) {
  .mod-gallery .large-image picture {
    height: 100%; } }

.mod-gallery .image-fill {
  width: 100%; }
  .mod-gallery .image-fill .small-image-first,
  .mod-gallery .image-fill .small-image-second {
    display: none; }

.mod-gallery .cover {
  display: none; }

.mod-gallery .slide picture {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: black; }
  .instantweb .mod-gallery .slide picture {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center; }

.mod-gallery .slide img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  -ms-grid-row-align: center;
      align-self: center;
  width: auto; }
  @media (max-width: 1024px) {
    .instantweb .mod-gallery .slide img {
      max-height: 500px; } }
  @media (max-width: 768px) {
    .instantweb .mod-gallery .slide img {
      max-height: 405px; } }
  @media (max-width: 620px) {
    .instantweb .mod-gallery .slide img {
      max-height: 380px; } }
  @media (max-width: 480px) {
    .instantweb .mod-gallery .slide img {
      max-height: 330px; } }
  @media (max-width: 320px) {
    .instantweb .mod-gallery .slide img {
      max-height: 220px; } }

@media only screen and (min-width: 1024px) {
  .mod-gallery {
    margin-bottom: 0; }
    .mod-gallery .slide picture {
      height: 600px; }
    .b_InternetExplorer .mod-gallery .slide img {
      margin: 0; }
    .mod-gallery .flex-slide img {
      width: 100%;
      height: 100%;
      display: block;
      cursor: pointer;
      -o-object-fit: cover;
         object-fit: cover; }
    .mod-gallery .right-side-container {
      width: 35%;
      float: right; }
    .mod-gallery .lightbox {
      display: none; }
    .mod-gallery .trigger.open {
      cursor: auto; }
    .mod-gallery .image-fill {
      display: block;
      visibility: visible;
      float: left;
      overflow: hidden; }
      .mod-gallery .image-fill img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
      .mod-gallery .image-fill .large-image {
        width: 66.5%;
        float: left;
        height: 379px; }
      .mod-gallery .image-fill .small-image-first,
      .mod-gallery .image-fill .small-image-second {
        display: block;
        line-height: 0;
        position: relative;
        float: right;
        width: 32.77%;
        height: 187px;
        overflow: hidden; }
      .mod-gallery .image-fill picture {
        display: block;
        height: 100%; }
      .mod-gallery .image-fill .small-image-first {
        margin-bottom: 5px; }
    .mod-gallery a.trigger {
      color: white;
      text-align: center;
      font-size: 14px;
      text-decoration: underline;
      display: block;
      background-color: rgba(0, 0, 0, 0.5);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 40% 0; }
    .mod-gallery .large-image picture:before {
      content: "";
      display: none; } }

.set-gallery {
  overflow: hidden; }
  .set-gallery .slider-secondary-nav {
    display: block; }
  .set-gallery .mod-gallery .flexslider .slides > li {
    display: block; }
  .set-gallery .mod-gallery.gallery-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    float: none; }
  .set-gallery .lightbox {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    display: block;
    z-index: 998; }
  .set-gallery .close {
    color: #fff;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 3em;
    cursor: pointer;
    display: inline-block;
    visibility: visible;
    z-index: 999; }

.results-slide .flex-control-thumbs {
  padding: 10px 0 0;
  display: flex;
  flex-wrap: nowrap; }
  .results-slide .flex-control-thumbs li {
    margin: 0 5px 0 0; }
    .no-flexbox .results-slide .flex-control-thumbs li {
      margin: 0 5px 5px 0;
      max-width: 65px;
      float: left; }
    .mod-contentWithSidebar .results-slide .flex-control-thumbs li {
      padding: 0; }

.mod-gallery-inner {
  position: relative;
  display: block;
  margin-bottom: 15px; }
  @media only screen and (min-width: 1024px) {
    .mod-gallery-inner {
      height: 643px;
      width: 100%; } }

.mod-heroLarge {
  position: relative; }
  .mod-heroLarge .secondary-close {
    color: #fff;
    position: absolute;
    display: none;
    right: 0;
    top: 10px;
    z-index: 25;
    text-shadow: 0 1px 1px #333; }
    .mod-heroLarge .secondary-close:after {
      content: "\e601";
      font-family: "Booking-glyphs";
      font-size: 60px;
      text-indent: 0; }
  .mod-heroLarge #hero-nav {
    display: none;
    transition: margin-top 0.5s;
    margin-top: 0;
    visibility: visible;
    margin-bottom: 15px; }
    .mod-heroLarge #hero-nav .custom-navigation {
      opacity: 1; }
    .mod-heroLarge #hero-nav .flex-direction-nav a:before {
      font-size: 22px; }
      @media only screen and (min-width: 1024px) {
        .mod-heroLarge #hero-nav .flex-direction-nav a:before {
          font-size: 40px; } }
    .mod-heroLarge #hero-nav .flex-prev,
    .mod-heroLarge #hero-nav .flex-next {
      height: 76px; }
    @media only screen and (min-width: 620px) {
      .mod-heroLarge #hero-nav {
        display: block; }
        .mod-heroLarge #hero-nav .slide,
        .mod-heroLarge #hero-nav .flex-slide {
          margin: 0 2px;
          cursor: pointer; }
        .mod-heroLarge #hero-nav .flex-slide {
          height: 76px; } }
  .mod-heroLarge .mod-heroLargeFooter {
    display: none; }
    @media only screen and (min-width: 768px) {
      .mod-heroLarge .mod-heroLargeFooter {
        padding: 10px;
        display: block;
        bottom: 0;
        background: rgba(255, 255, 255, 0.7);
        position: absolute;
        width: 100%;
        z-index: 20; } }
    .mod-heroLarge .mod-heroLargeFooter .image-counter {
      display: inline;
      padding: 0;
      color: #646464; }
  .mod-heroLarge .cp-button {
    position: absolute;
    bottom: 35px;
    right: 0; }
  .mod-heroLarge .show-gallery-btn {
    position: absolute;
    bottom: 10px;
    right: 10px; }
  .mod-heroLarge.map-view #hero-slider {
    opacity: 0;
    z-index: 0; }
  .MyWebsite.booking .mod-heroLarge.map-view #map-canvas {
    opacity: 1;
    transform: scale(1);
    z-index: 1; }
  .mod-heroLarge.map-view .mod-heroLargeFooter {
    background: rgba(255, 255, 255, 0);
    width: 95%; }
    .mod-heroLarge.map-view .mod-heroLargeFooter .image-counter {
      display: none; }
  .mod-heroLarge.map-view #hero-nav {
    margin-top: -90px;
    visibility: hidden; }
    .mod-heroLarge.map-view #hero-nav .custom-navigation {
      opacity: 0; }

.mod-gallery-inner #map-canvas {
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1; }
  .MyWebsite.booking .mod-gallery-inner #map-canvas {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0; }
    @media only screen and (min-width: 1024px) {
      .MyWebsite.booking .mod-gallery-inner #map-canvas {
        height: 600px;
        margin: 0 0 15px;
        padding: 0px;
        z-index: 0;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.3s; } }

.ui-datepicker .ui-state-selected a,
.ui-datepicker .ui-state-selected span {
  color: black;
  background-color: rgba(219, 1, 72, 0.4); }

.ui-datepicker {
  /*removing arrow pointer*/ }
  .ui-datepicker .arr-past span,
  .ui-datepicker .arr-past a,
  .ui-datepicker .dep-past span,
  .ui-datepicker .dep-past a,
  .ui-datepicker .selected-past span,
  .ui-datepicker .selected-past a {
    background: #eaeaea;
    color: #cacaca;
    text-decoration: line-through;
    cursor: not-allowed; }
  .ui-datepicker .arr-forcedDeparture span,
  .ui-datepicker .arr-forcedDeparture a,
  .ui-datepicker .arr-closed span,
  .ui-datepicker .arr-closed a,
  .ui-datepicker .arr-afterClosed span,
  .ui-datepicker .arr-afterClosed a,
  .ui-datepicker .arr-unknown span,
  .ui-datepicker .arr-unknown a,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture span,
  .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture a,
  .ui-datepicker .dep-beforeCheckInDate.arr-closed span,
  .ui-datepicker .dep-beforeCheckInDate.arr-closed a,
  .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed span,
  .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed a,
  .ui-datepicker .dep-beforeCheckInDate.arr-unknown span,
  .ui-datepicker .dep-beforeCheckInDate.arr-unknown a,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .dep-afterClosed.arr-forcedDeparture span,
  .ui-datepicker .dep-afterClosed.arr-forcedDeparture a,
  .ui-datepicker .dep-afterClosed.arr-closed span,
  .ui-datepicker .dep-afterClosed.arr-closed a,
  .ui-datepicker .dep-afterClosed.arr-afterClosed span,
  .ui-datepicker .dep-afterClosed.arr-afterClosed a,
  .ui-datepicker .dep-afterClosed.arr-unknown span,
  .ui-datepicker .dep-afterClosed.arr-unknown a,
  .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture span,
  .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture a,
  .ui-datepicker .selected-beforeCheckInDate.arr-closed span,
  .ui-datepicker .selected-beforeCheckInDate.arr-closed a,
  .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed span,
  .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed a,
  .ui-datepicker .selected-beforeCheckInDate.arr-unknown span,
  .ui-datepicker .selected-beforeCheckInDate.arr-unknown a,
  .ui-datepicker .selected-checkOutDate.dep-closed span,
  .ui-datepicker .selected-checkOutDate.dep-closed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-closed span,
  .ui-datepicker .selected-afterCheckOutDate.dep-closed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown a {
    background-color: #555555;
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed; }
    .ui-datepicker .arr-forcedDeparture span:before,
    .ui-datepicker .arr-forcedDeparture a:before,
    .ui-datepicker .arr-closed span:before,
    .ui-datepicker .arr-closed a:before,
    .ui-datepicker .arr-afterClosed span:before,
    .ui-datepicker .arr-afterClosed a:before,
    .ui-datepicker .arr-unknown span:before,
    .ui-datepicker .arr-unknown a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-closed span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-closed a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-unknown span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-unknown a:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .dep-afterClosed.arr-forcedDeparture span:before,
    .ui-datepicker .dep-afterClosed.arr-forcedDeparture a:before,
    .ui-datepicker .dep-afterClosed.arr-closed span:before,
    .ui-datepicker .dep-afterClosed.arr-closed a:before,
    .ui-datepicker .dep-afterClosed.arr-afterClosed span:before,
    .ui-datepicker .dep-afterClosed.arr-afterClosed a:before,
    .ui-datepicker .dep-afterClosed.arr-unknown span:before,
    .ui-datepicker .dep-afterClosed.arr-unknown a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-closed span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-closed a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-unknown span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-unknown a:before,
    .ui-datepicker .selected-checkOutDate.dep-closed span:before,
    .ui-datepicker .selected-checkOutDate.dep-closed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-closed span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-closed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown a:before {
      background: none;
      height: 100%;
      width: 100%;
      position: relative; }
  .ui-datepicker .ui-state-disabled.dep-arrival span {
    background: #db0148;
    color: white;
    text-decoration: none; }
  .ui-datepicker .dep-beforeCheckInDate.arr-available span,
  .ui-datepicker .dep-beforeCheckInDate.arr-available a,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive span,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive a,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture span,
  .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture a,
  .ui-datepicker .dep-beforeCheckInDate.arr-closed span,
  .ui-datepicker .dep-beforeCheckInDate.arr-closed a,
  .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed span,
  .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed a,
  .ui-datepicker .dep-beforeCheckInDate.arr-unknown span,
  .ui-datepicker .dep-beforeCheckInDate.arr-unknown a,
  .ui-datepicker .dep-afterClosed.arr-available span,
  .ui-datepicker .dep-afterClosed.arr-available a,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive span,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive a,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .dep-afterClosed.arr-forcedDeparture span,
  .ui-datepicker .dep-afterClosed.arr-forcedDeparture,
  .ui-datepicker .dep-afterClosed.arr-closed span,
  .ui-datepicker .dep-afterClosed.arr-closed a,
  .ui-datepicker .dep-afterClosed.arr-afterClosed span,
  .ui-datepicker .dep-afterClosed.arr-afterClosed a,
  .ui-datepicker .dep-afterClosed.arr-unknown span,
  .ui-datepicker .dep-afterClosed.arr-unknown a,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture span,
  .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture a,
  .ui-datepicker .dep-beforeCheckInDate.arr-closed span,
  .ui-datepicker .dep-beforeCheckInDate.arr-closed a,
  .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed span,
  .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed a,
  .ui-datepicker .dep-beforeCheckInDate.arr-unknown span,
  .ui-datepicker .dep-beforeCheckInDate.arr-unknown a,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .dep-afterClosed.arr-forcedDeparture span,
  .ui-datepicker .dep-afterClosed.arr-forcedDeparture a,
  .ui-datepicker .dep-afterClosed.arr-closed span,
  .ui-datepicker .dep-afterClosed.arr-closed a,
  .ui-datepicker .dep-afterClosed.arr-afterClosed span,
  .ui-datepicker .dep-afterClosed.arr-afterClosed a,
  .ui-datepicker .dep-afterClosed.arr-unknown span,
  .ui-datepicker .dep-afterClosed.arr-unknown a,
  .ui-datepicker .selected-beforeCheckInDate.arr-available span,
  .ui-datepicker .selected-beforeCheckInDate.arr-available a,
  .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture span,
  .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture a,
  .ui-datepicker .selected-beforeCheckInDate.arr-closed span,
  .ui-datepicker .selected-beforeCheckInDate.arr-closed a,
  .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed span,
  .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed a,
  .ui-datepicker .selected-beforeCheckInDate.arr-unknown span,
  .ui-datepicker .selected-beforeCheckInDate.arr-unknown a,
  .ui-datepicker .selected-checkOutDate.dep-forcedDeparture.dep-maxLos span,
  .ui-datepicker .selected-checkOutDate.dep-forcedDeparture.dep-maxLos a,
  .ui-datepicker .selected-checkOutDate.dep-closed span,
  .ui-datepicker .selected-checkOutDate.dep-closed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-forcedDeparture.dep-maxLos span,
  .ui-datepicker .selected-afterCheckOutDate.dep-forcedDeparture.dep-maxLos a,
  .ui-datepicker .selected-afterCheckOutDate.dep-closed span,
  .ui-datepicker .selected-afterCheckOutDate.dep-closed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown a {
    position: relative; }
    .ui-datepicker .dep-beforeCheckInDate.arr-available span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-available a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-closed span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-closed a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-unknown span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-unknown a:before,
    .ui-datepicker .dep-afterClosed.arr-available span:before,
    .ui-datepicker .dep-afterClosed.arr-available a:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive span:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive a:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .dep-afterClosed.arr-forcedDeparture span:before,
    .ui-datepicker .dep-afterClosed.arr-forcedDeparture:before,
    .ui-datepicker .dep-afterClosed.arr-closed span:before,
    .ui-datepicker .dep-afterClosed.arr-closed a:before,
    .ui-datepicker .dep-afterClosed.arr-afterClosed span:before,
    .ui-datepicker .dep-afterClosed.arr-afterClosed a:before,
    .ui-datepicker .dep-afterClosed.arr-unknown span:before,
    .ui-datepicker .dep-afterClosed.arr-unknown a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-forcedDeparture a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-closed span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-closed a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-afterClosed a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-unknown span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-unknown a:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .dep-afterClosed.arr-forcedDeparture span:before,
    .ui-datepicker .dep-afterClosed.arr-forcedDeparture a:before,
    .ui-datepicker .dep-afterClosed.arr-closed span:before,
    .ui-datepicker .dep-afterClosed.arr-closed a:before,
    .ui-datepicker .dep-afterClosed.arr-afterClosed span:before,
    .ui-datepicker .dep-afterClosed.arr-afterClosed a:before,
    .ui-datepicker .dep-afterClosed.arr-unknown span:before,
    .ui-datepicker .dep-afterClosed.arr-unknown a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-available span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-available a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-forcedDeparture a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-closed span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-closed a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-afterClosed a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-unknown span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-unknown a:before,
    .ui-datepicker .selected-checkOutDate.dep-forcedDeparture.dep-maxLos span:before,
    .ui-datepicker .selected-checkOutDate.dep-forcedDeparture.dep-maxLos a:before,
    .ui-datepicker .selected-checkOutDate.dep-closed span:before,
    .ui-datepicker .selected-checkOutDate.dep-closed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-forcedDeparture.dep-maxLos span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-forcedDeparture.dep-maxLos a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-closed span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-closed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-forcedDeparture a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-closed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-afterClosed a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-unknown a:before {
      background: rgba(255, 255, 255, 0.5);
      content: "";
      height: 100%;
      left: 0;
      position: absolute;
      width: 100%; }
  .ui-datepicker .dep-cannotDepart.dep-minLos span,
  .ui-datepicker .dep-cannotDepart.dep-minLos a,
  .ui-datepicker .dep-cannotDepart.dep-minLos.dep-firstAvailableNight span,
  .ui-datepicker .dep-cannotDepart.dep-minLos.dep-firstAvailableNight a,
  .ui-datepicker .dep-cannotDepart.dep-ctd span,
  .ui-datepicker .dep-cannotDepart.dep-ctd a,
  .ui-datepicker .selected-checkOutDate.dep-cannotDepart.dep-ctd span,
  .ui-datepicker .selected-checkOutDate.dep-cannotDepart.dep-ctd a,
  .ui-datepicker .selected-afterCheckOutDate.dep-cannotDepart.dep-ctd span,
  .ui-datepicker .selected-afterCheckOutDate.dep-cannotDepart.dep-ctd a {
    position: relative; }
    .ui-datepicker .dep-cannotDepart.dep-minLos span:before,
    .ui-datepicker .dep-cannotDepart.dep-minLos a:before,
    .ui-datepicker .dep-cannotDepart.dep-minLos.dep-firstAvailableNight span:before,
    .ui-datepicker .dep-cannotDepart.dep-minLos.dep-firstAvailableNight a:before,
    .ui-datepicker .dep-cannotDepart.dep-ctd span:before,
    .ui-datepicker .dep-cannotDepart.dep-ctd a:before,
    .ui-datepicker .selected-checkOutDate.dep-cannotDepart.dep-ctd span:before,
    .ui-datepicker .selected-checkOutDate.dep-cannotDepart.dep-ctd a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-cannotDepart.dep-ctd span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-cannotDepart.dep-ctd a:before {
      bottom: 0;
      height: 0;
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      content: '';
      background: #db0148;
      z-index: 1; }
  .ui-datepicker .dep-cannotDepart.dep-ctd span,
  .ui-datepicker .dep-cannotDepart.dep-ctd a,
  .ui-datepicker .selected-checkOutDate.dep-cannotDepart.dep-ctd span,
  .ui-datepicker .selected-checkOutDate.dep-cannotDepart.dep-ctd a,
  .ui-datepicker .selected-afterCheckOutDate.dep-cannotDepart.dep-ctd span,
  .ui-datepicker .selected-afterCheckOutDate.dep-cannotDepart.dep-ctd a {
    cursor: not-allowed; }
  .ui-datepicker .arr-cannotArrive.arr-minLos span,
  .ui-datepicker .arr-cannotArrive.arr-minLos a,
  .ui-datepicker .arr-cannotArrive span,
  .ui-datepicker .arr-cannotArrive a,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive span,
  .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive a,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive span,
  .ui-datepicker .dep-afterClosed.arr-cannotArrive a,
  .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive span,
  .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive a,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive span,
  .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive a {
    position: relative;
    cursor: not-allowed; }
    .ui-datepicker .arr-cannotArrive.arr-minLos span:before,
    .ui-datepicker .arr-cannotArrive.arr-minLos a:before,
    .ui-datepicker .arr-cannotArrive span:before,
    .ui-datepicker .arr-cannotArrive a:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive span:before,
    .ui-datepicker .dep-beforeCheckInDate.arr-cannotArrive a:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive span:before,
    .ui-datepicker .dep-afterClosed.arr-cannotArrive a:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive span:before,
    .ui-datepicker .selected-beforeCheckInDate.arr-cannotArrive a:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive span:before,
    .ui-datepicker .selected-afterCheckOutDate.dep-afterClosed.arr-cannotArrive a:before {
      bottom: 0;
      height: 0;
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      content: '';
      background: #555555;
      z-index: 1; }
  .ui-datepicker .selected-checkInDate a,
  .ui-datepicker .selected-lastNight a {
    color: white;
    background-color: #db0148;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
    position: relative; }
  .ui-datepicker .selected-arrival a,
  .ui-datepicker selected-arrival span,
  .ui-datepicker .dep-checkInDate span,
  .ui-datepicker .dep-checkInDate a,
  .ui-datepicker .selected-checkInDate span,
  .ui-datepicker .selected-checkInDate a,
  .ui-datepicker .selected-interim span,
  .ui-datepicker .selected-interim a {
    background: #db0148;
    text-decoration: none;
    color: white; }
  .ui-datepicker .selected-interim a,
  .ui-datepicker .selected-interim span {
    background: #db0148;
    color: white;
    text-decoration: none; }
  .ui-datepicker:before {
    content: "";
    height: 100%;
    left: -1px;
    position: absolute;
    top: 0;
    width: 1px; }
  .ui-datepicker .selected-arrival:after {
    border-right: 1px solid #db0148;
    content: "";
    position: absolute; }
  .ui-datepicker .selected-checkOutDate span,
  .ui-datepicker .selected-checkOutDate a {
    position: relative;
    box-shadow: inset 0 0 9px rgba(0, 0, 0, 0.24); }
    .ui-datepicker .selected-checkOutDate span:after,
    .ui-datepicker .selected-checkOutDate a:after {
      background: none;
      width: 0;
      content: '';
      position: absolute;
      z-index: 2;
      left: 0;
      height: 0;
      border-style: solid;
      border-width: 22px 0 22px 15px;
      border-color: transparent transparent transparent #db0148; }
    .ui-datepicker .selected-checkOutDate span.ui-state-default:focus, .ui-datepicker .selected-checkOutDate span.ui-state-default:hover,
    .ui-datepicker .selected-checkOutDate a.ui-state-default:focus,
    .ui-datepicker .selected-checkOutDate a.ui-state-default:hover {
      background: none !important;
      color: black; }

.departure .ui-datepicker .dep-forcedDeparture a:hover,
.departure .ui-datepicker .dep-available a:hover {
  position: relative;
  background: none;
  color: black;
  box-shadow: none; }
  .departure .ui-datepicker .dep-forcedDeparture a:hover:after,
  .departure .ui-datepicker .dep-available a:hover:after {
    background: none;
    width: 0;
    content: '';
    position: absolute;
    z-index: 2;
    left: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 0 22px 15px;
    border-color: transparent transparent transparent #db0148; }

.departure .ui-datepicker .hover-interim a,
.departure .ui-datepicker .hover-interim span {
  background: rgba(219, 1, 72, 0.8);
  color: white; }

.mod-direction {
  margin-bottom: 10px; }
  .mod-direction_heading {
    background-repeat: no-repeat;
    padding: 2px 0 0 40px;
    margin-bottom: 10px; }
  .mod-direction_road {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABEElEQVRIS+3VvS5FQRTF8d+tRCWhEAWlykclHsGzqIkGjY8KvVfxCKLyUSkpREGiUWjIiHHvHWfumcnNLYip117/vdeeOadjxKczYn//gNaEcxHtYQtjrQ5dwSnWU30TYBoPOMN5IWAVa5jBY29NE2ADx1jGVSFgCZfYxEkb4AITmC80j7JbvGBlEGAWdzjETiXgANuYw32sTSMKgiCsiSd6xZhCY6HBz5MCrrFQ2Xkqv8FiDvA+pPkP33SCCNj9iireqEHceHNCNPtpMjnAFJ4xjteWqcJjfMMknkoBcYLQ3VELIE4QasIXoG+3uQmGXcW3798G1P6Meq94NqL40PoeS+FCGmtruyxkdWW/H/ABYG4wGXHT2hEAAAAASUVORK5CYII="); }
  .mod-direction_train {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABNklEQVRIS+3VPy8FQRQF8N8TIkJEKwpqCjWFREElClH5Bj4BGkTDl1CqFEKn00hEp9BKCHpBIv5nZDdZm9nd9168aN40k8ycuefcczP31rR41VocXxnBFJYxiAGMoTMR9IEr3OMRuzjEV15wjKAXB5hpMLtzzOIh+y5GsIelBoOn8CBsoYogKOhvkuAFPWUEXXhNALHs3hOfAy6/Uv/DXcD9rHyQNkFwpW6Lmqxzm6DauLprsIYdrCR7LHQMU0rQgTeEvQ/PCL3pqUB4HhM+WDc+iz5aOL/EKFJ1q9guIMhjzjBR1YsWsV9tdRQxjZMqgnA/j3WMZ2ZAEWew5QJbOKpnHqSYYZxiCMeYyzYxbGATN5jEXUxB2US7zQQPGaVdNhsn1CbU6BojjRI0WYbfz/516P9JBt9jME4ZgIzibgAAAABJRU5ErkJggg=="); }
  .mod-direction_air {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABPUlEQVRIS+3VvyuFURzH8dclShhtJjNlY7aJQQbKxipZbJSSzWgxiH9AFIMsZhaDovwDmJEkvzp1rk63597nKHfiuzz1POd83p/zOed7noomV6XJ+n4C2MAS1rCaaywX0IIXtOEJ3b8NCMKvUfQtgrIYuSv4B5TG2dSIerGFscTGPuZxX2at0Sa3YgHr6CwQesQKNvFZD1QPMIhdhGdZXWAWl0UDawFdsVMXEZort97jSpbxnE5KASHjkHXIPK0HHGM6vvzAXtyT2uhuMYeTqkAKCC6qru9wiAOcxsG1ndyOEUxgEj2Jq2/dFHCNoyh6XrNxZcc06AxF2BT6ilbQKO8yQN25f+Mu6sA2ZpIcdmInh39Ew8qJKDTQQIHKFfp/A3ATz3XohTMMYxTj6Wn56VVRZiz7e05E2WJFA78AG6NAGWoxJEoAAAAASUVORK5CYII="); }
  .mod-direction_coach, .mod-direction_bus {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABG0lEQVRIS+3Vuy4FURjF8d9xCYJGR62joPEOKuEVzkO49MJLeAWi8g4aClodUWkQjnt2MiMzkz1nLskREruZzGTt9f++b++s6Rjw6gzYXxkgfF9DF9OYxTyGkoLecYUb3OMAx/gsFhwDzOAEKw27O8Uq7rL7YoBDrDc0T+VH2KgCPGG8JeAZE/0Ao3hJBE0vQDr/4PGWQoom/4Awmd8zopYXqX4Hfx+wjX1sJs9YRzFN7UOewiMm8VAyr5imLyD4XGMOaXVb2CsBFDW3SfJ+y2NxsIudliccCsntjQFG0Mtkf13WB8ayORQ2lgVaCKvhxDk30wItFPOa+QmF99wqA5xhCZdYrGjhAgs4x3JdQN2xVOqaZn6l4Y938AUpOUIZuGuIngAAAABJRU5ErkJggg=="); }
  .mod-direction_boat {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABn0lEQVRIS9XVO0wVURAG4A8flQHpjJUmFgaIlQVRE6nAhMLYWNBDhNIOoSPx0VlqtLEkoRAaE+2w8FFQER8FGugo1QQbRcjcnE1O1l25cNcYp9udmf8/88/MOV3+snW1ib9TE7dn/p4BCfj/IriKe+hrU74i7ANuYSnPq5JoEyf2CV6ER+7JPxEcwY8U0G5/CryiT0fxs/hZBvlnBP24jjFsYwHz+JjJse8KBjLQszU9eZ+RRZPDaiUKuQJ09YANLtLO4R1aFeU9eIULHYIX6a9xsUywhjMNEXwusPIKHmCyIYKHmCpXcA1PGyIIrNZG5xUcwxfELnRisWS92CoTxPcyLneCjpcYqtvkGdxOzhizWXzH/VK1ERL+m+jGXOaPnDt1BOexiLd4jOcpcBg3MJiA3uARXiT/FUwkf+i/UkdQVqcHh1JvqpQLrX/hW52sVTfmcZzCSLrfD6f34Rk+Ib5PYxTT6W66m6rZwNecLCeI7kdyExYXYmsaqwhiVOMkMQ1P0vsQ+sZ0xcnD1pM/+hRA47iUKg/ZKgmaOPlvGLtgB1EZKKAZjgAAAABJRU5ErkJggg=="); }
  .mod-direction_underground, .mod-direction_metro {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABbElEQVRIS+3WO0hdQRDG8Z9RAoKgpWCTIqls1MpCrURCKomxEiGViKJdmvRpbARfSRmSKmKihZ2QtDaaSi1EtLH2UQghD2XhXFkX9e4VL1hkq8PON/PfmZ0dTo0qr5oqx3cToA6vMIwONCcH+Y1t7GALG1jDn/TA1wF6sYBnFWa3i/ECdOmaAobwmRszK8c8x2t8KgljwBPs4VG5KGXs//AU+0EXA2YwkTh/xzx+4CixNaAbI+hPbHOlWDFgE+2RcBaTmdm8w9tI+7NojisZHKMxEoXv00xAPc4i7Qma0hKFFquNRCG7X3icAQltHbfoX4S9Kxn8BzzMEmXc76UkvOLSyr7kl1jCIL4mtLD3BQNYRsWAFrRhtZis3xLAi8i2jsNKM3iPsYwahfcSpu9opYCgX8RUMe+fo7MIcoCP6MIHtCYHybqD4BOGXR9C8JXS6yyCvcF0oem5KyCjQtdKsjO4V8Bdg93qV/W/igupq1gZt+LkOgAAAABJRU5ErkJggg=="); }
  .mod-direction_direction {
    padding: 0 0 0 40px; }
  .mod-direction_message {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEzLDlIMTFWN0gxM00xMywxN0gxMVYxMUgxM00xMiwyQTEwLDEwIDAgMCwwIDIsMTJBMTAsMTAgMCAwLDAgMTIsMjJBMTAsMTAgMCAwLDAgMjIsMTJBMTAsMTAgMCAwLDAgMTIsMloiIC8+PC9zdmc+");
    background-repeat: no-repeat;
    padding: 6px 0 6px 40px;
    background-position: 0 50%;
    margin-bottom: 16px; }

.privacy {
  clear: both;
  width: 100%;
  padding: 20px; }
  .privacy h1 {
    margin-bottom: 20px; }

.privacy-content {
  background: white;
  margin-bottom: 20px; }
  .privacy-content p.pre-line {
    margin: 0; }

.privacy-aside {
  padding: 0; }
  .privacy-aside h3 {
    padding: 0 0 15px 0;
    font-size: 16px; }
  .privacy-aside p {
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 13px; }
  .privacy-aside .aside-block {
    margin-bottom: 20px; }
    .privacy-aside .aside-block:first-child {
      margin-top: 0; }

.cookiebar {
  background: black;
  background: rgba(0, 0, 0, 0.9);
  bottom: 0;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 100;
  left: 0;
  padding: 20px;
  font-size: 14px; }
  @media only screen and (min-width: 1100px) {
    .cookiebar {
      padding: 30px; } }
  .cookiebar .cookiebar-inner {
    max-width: 100%;
    margin: 0 auto; }
    @media only screen and (min-width: 1100px) {
      .cookiebar .cookiebar-inner {
        width: 1024px; } }
    @media only screen and (min-width: 1280px) {
      .cookiebar .cookiebar-inner {
        width: 1140px; } }
  .cookiebar p {
    padding: 0 0 10px 0;
    margin: 0; }
  .cookiebar .cp-text-small {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 100; }
  .cookiebar .cp-text-medium {
    color: white;
    font-weight: 400; }
  @media only screen and (min-width: 1100px) {
    .cookiebar .section-content {
      width: 74.57627%;
      float: left;
      margin-right: 1.69492%; } }
  .cookiebar .section-actions {
    margin: 20px 0; }
    @media only screen and (min-width: 1100px) {
      .cookiebar .section-actions {
        width: 23.72881%;
        float: right;
        margin-right: 0;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px; }
        .cookiebar .section-actions button {
          margin: 20px; } }

.result-container-left,
.result-container-right {
  padding: 0; }

.result-container-left {
  width: 100%;
  padding: 10px;
  display: inline-block; }
  .result-container-left img {
    max-width: 100%; }
  @media only screen and (min-width: 480px) {
    .result-container-left {
      padding: 20px;
      width: 35%; } }

.results-item:nth-child(2n) .result-container-left .results-option-list {
  width: 100%; }
  @media only screen and (min-width: 480px) {
    .results-item:nth-child(2n) .result-container-left .results-option-list {
      width: initial; } }

.results-item:nth-child(2n) .result-container-right {
  float: left; }
  .results-item:nth-child(2n) .result-container-right .results-option-list {
    width: 100%; }
    @media only screen and (min-width: 480px) {
      .results-item:nth-child(2n) .result-container-right .results-option-list {
        width: initial; } }

.results-option-list {
  float: left;
  margin: 0 0 10px; }

.result-container-right {
  width: 100%;
  float: right;
  padding: 10px; }
  @media only screen and (min-width: 480px) {
    .result-container-right {
      padding: 20px;
      width: 65%; } }
  @media only screen and (min-width: 768px) {
    .result-container-right .room-details {
      width: 69.38776%;
      float: left;
      margin-right: 2.04082%; } }
  .result-container-right .results-price {
    height: auto;
    background-color: transparent;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .result-container-right .results-price {
        width: 28.57143%;
        float: right;
        margin-right: 0; } }
    .result-container-right .results-price .cp-poa {
      display: inline-block; }

.results-thumbnail {
  width: 100%;
  margin: 0;
  height: auto; }
  .results-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover; }

.results-item header {
  width: 100%; }

.results-item .features {
  clear: both; }

.results-item:after {
  z-index: -1; }

h3.results-heading {
  margin: -5px 0 5px 0;
  color: black; }
  h3.results-heading.results-heading-popup {
    color: white; }

.contentWithNoWidgets .column {
  margin-bottom: 0;
  font-size: 16px; }

.results-price .text-link button {
  border-radius: 6px;
  padding: 6px;
  margin: 0; }

.column-desciption p,
.extra-info > p {
  font-size: 14px; }

.intro-description {
  display: none; }
  @media only screen and (min-width: 768px) {
    .intro-description {
      display: block; } }

footer .info-details {
  text-align: left; }
  @media only screen and (min-width: 768px) {
    footer .info-details {
      text-align: center; } }

.main .result-info,
.main .extra-info {
  width: 100%;
  float: none; }

.main .results-item {
  border: none; }
  .main .results-item header {
    margin: 0; }

.main .results-price {
  padding: 0; }

.main .accordion-rooms .accordion-rooms-toggle,
.main .icon-list .icon-list_item {
  font-size: 14px; }

.main .content.content-no-bg {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0; }

.mod-policies {
  display: block; }
  @media only screen and (min-width: 768px) {
    .mod-policies {
      display: flex; } }
  .mod-policies_heading {
    background-repeat: no-repeat;
    padding: 2px 0 0 40px;
    margin-bottom: 10px;
    width: 180px; }
  .mod-policies_checkin, .mod-policies_checkout {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjUgMTEuNDA3NkgxMy43NVYxMy43OTgyTDE1Ljc4MzMgMTQuOTkzNkwxNS4xNTgzIDE2LjA5NTZMMTIuNSAxNC41MzU4VjExLjQwNzZaTTE1LjgzMzMgNy4xNjg4OUg0LjE2NjY3VjE2LjQ5NDFIOC4wNTgzM0M3LjcgMTUuNzIyNiA3LjUgMTQuODU3OSA3LjUgMTMuOTUwOEM3LjUgMTIuMzc3IDguMTE0NTggMTAuODY3NiA5LjIwODU0IDkuNzU0NzJDMTAuMzAyNSA4LjY0MTg1IDExLjc4NjIgOC4wMTY2NCAxMy4zMzMzIDguMDE2NjRDMTQuMjI1IDguMDE2NjQgMTUuMDc1IDguMjIwMDkgMTUuODMzMyA4LjU4NDYyVjcuMTY4ODlaTTQuMTY2NjcgMTguMTg5NUMzLjI0MTY3IDE4LjE4OTUgMi41IDE3LjQyNjYgMi41IDE2LjQ5NDFWNC42MjU2N0MyLjUgMy42ODQ2NyAzLjI0MTY3IDIuOTMwMTggNC4xNjY2NyAyLjkzMDE4SDVWMS4yMzQ3SDYuNjY2NjdWMi45MzAxOEgxMy4zMzMzVjEuMjM0N0gxNVYyLjkzMDE4SDE1LjgzMzNDMTYuMjc1NCAyLjkzMDE4IDE2LjY5OTMgMy4xMDg4MSAxNy4wMTE4IDMuNDI2NzhDMTcuMzI0NCAzLjc0NDc0IDE3LjUgNC4xNzYgMTcuNSA0LjYyNTY3VjkuNzk2OUMxOC41MzMzIDEwLjg2NTEgMTkuMTY2NyAxMi4zMzE2IDE5LjE2NjcgMTMuOTUwOEMxOS4xNjY3IDE1LjUyNDcgMTguNTUyMSAxNy4wMzQxIDE3LjQ1ODEgMTguMTQ2OUMxNi4zNjQyIDE5LjI1OTggMTQuODgwNCAxOS44ODUgMTMuMzMzMyAxOS44ODVDMTEuNzQxNyAxOS44ODUgMTAuMyAxOS4yNDA3IDkuMjUgMTguMTg5NUg0LjE2NjY3Wk0xMy4zMzMzIDkuODM5MjhDMTIuMjYxNCA5LjgzOTI4IDExLjIzMzQgMTAuMjcyNSAxMC40NzU0IDExLjA0MzVDOS43MTc0OCAxMS44MTQ2IDkuMjkxNjcgMTIuODYwNCA5LjI5MTY3IDEzLjk1MDhDOS4yOTE2NyAxNi4yMjI4IDExLjEgMTguMDYyNCAxMy4zMzMzIDE4LjA2MjRDMTMuODY0MSAxOC4wNjI0IDE0LjM4OTcgMTcuOTU2IDE0Ljg4IDE3Ljc0OTRDMTUuMzcwNCAxNy41NDI4IDE1LjgxNTkgMTcuMjM5OSAxNi4xOTEyIDE2Ljg1ODFDMTYuNTY2NSAxNi40NzYzIDE2Ljg2NDIgMTYuMDIzMSAxNy4wNjczIDE1LjUyNDNDMTcuMjcwNSAxNS4wMjU0IDE3LjM3NSAxNC40OTA4IDE3LjM3NSAxMy45NTA4QzE3LjM3NSAxMS42Nzg5IDE1LjU2NjcgOS44MzkyOCAxMy4zMzMzIDkuODM5MjhaIiBmaWxsPSIjMjEyMTIxIi8+Cjwvc3ZnPgo="); }
  .mod-policies_child {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuOTk5OTIgMS42NjY2NkMxMC42NjMgMS42NjY2NiAxMS4yOTg4IDEuOTMwMDUgMTEuNzY3NyAyLjM5ODg5QzEyLjIzNjUgMi44Njc3MyAxMi40OTk5IDMuNTAzNjIgMTIuNDk5OSA0LjE2NjY2QzEyLjQ5OTkgNC44Mjk3IDEyLjIzNjUgNS40NjU1OCAxMS43Njc3IDUuOTM0NDJDMTEuMjk4OCA2LjQwMzI2IDEwLjY2MyA2LjY2NjY2IDkuOTk5OTIgNi42NjY2NkM5LjMzNjg4IDYuNjY2NjYgOC43MDA5OSA2LjQwMzI2IDguMjMyMTUgNS45MzQ0MkM3Ljc2MzMxIDUuNDY1NTggNy40OTk5MiA0LjgyOTcgNy40OTk5MiA0LjE2NjY2QzcuNDk5OTIgMy41MDM2MiA3Ljc2MzMxIDIuODY3NzMgOC4yMzIxNSAyLjM5ODg5QzguNzAwOTkgMS45MzAwNSA5LjMzNjg4IDEuNjY2NjYgOS45OTk5MiAxLjY2NjY2Wk05Ljk5OTkyIDcuNDk5OTlDMTEuMzU4MyA3LjQ5OTk5IDEyLjU5OTkgNy43OTE2NiAxMy43NDk5IDguMzc0OTlDMTQuODY2NiA4Ljk2NjY2IDE1LjQxNjYgOS42NzQ5OSAxNS40MTY2IDEwLjUwODNWMTUuMzE2N0MxNS40MTY2IDE2LjI1IDE0LjY5OTkgMTcuMDMzMyAxMy4yNDE2IDE3LjY1ODNWMTUuODMzM0MxMy4yNDE2IDE1LjA0MTcgMTIuNTI0OSAxNC40ODMzIDExLjA5MTYgMTQuMTQxN0MxMC42MjQ5IDE0LjAzMzMgMTAuMjU4MyAxMy45ODMzIDkuOTk5OTIgMTMuOTgzM0M5LjI3NDkyIDEzLjk4MzMgOC41ODMyNSAxNC4xMjUgNy45NDk5MiAxNC40MTY3QzcuMzA4MjUgMTQuNyA2LjkyNDkyIDE1LjA2NjcgNi43OTk5MiAxNS41MDgzQzcuOTE2NTggMTUuOTUgOC45ODMyNSAxNi4xNzUgOS45OTk5MiAxNi4xNzVMMTAuODMzMyAxNi4wOTE3VjE4LjI4MzNMOS45OTk5MiAxOC4zMzMzQzguODU4MjUgMTguMzMzMyA3Ljc3NDkyIDE4LjEgNi43NTgyNSAxNy42NTgzQzUuMjk5OTIgMTcuMDMzMyA0LjU4MzI1IDE2LjI1IDQuNTgzMjUgMTUuMzE2N1YxMC41MDgzQzQuNTgzMjUgOS42NzQ5OSA1LjEzMzI1IDguOTY2NjYgNi4yNDk5MiA4LjM3NDk5QzcuMzk5OTIgNy43OTE2NiA4LjY0OTkyIDcuNDk5OTkgOS45OTk5MiA3LjQ5OTk5Wk05Ljk5OTkyIDkuMTY2NjZDOS41NTc4OSA5LjE2NjY2IDkuMTMzOTcgOS4zNDIyNSA4LjgyMTQxIDkuNjU0ODFDOC41MDg4NSA5Ljk2NzM3IDguMzMzMjUgMTAuMzkxMyA4LjMzMzI1IDEwLjgzMzNDOC4zMzMyNSAxMS4yNzU0IDguNTA4ODUgMTEuNjk5MyA4LjgyMTQxIDEyLjAxMThDOS4xMzM5NyAxMi4zMjQ0IDkuNTU3ODkgMTIuNSA5Ljk5OTkyIDEyLjVDMTAuNDQxOSAxMi41IDEwLjg2NTkgMTIuMzI0NCAxMS4xNzg0IDEyLjAxMThDMTEuNDkxIDExLjY5OTMgMTEuNjY2NiAxMS4yNzU0IDExLjY2NjYgMTAuODMzM0MxMS42NjY2IDEwLjM5MTMgMTEuNDkxIDkuOTY3MzcgMTEuMTc4NCA5LjY1NDgxQzEwLjg2NTkgOS4zNDIyNSAxMC40NDE5IDkuMTY2NjYgOS45OTk5MiA5LjE2NjY2WiIgZmlsbD0iIzIxMjEyMSIvPgo8L3N2Zz4K"); }
  .mod-policies_smoking {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNjY2NzUgMTMuMzMzM0gxNC4xNjY3VjE1LjgzMzNIMS42NjY3NVYxMy4zMzMzWk0xNy4wODM0IDEzLjMzMzNIMTguMzMzNFYxNS44MzMzSDE3LjA4MzRWMTMuMzMzM1pNMTUuMDAwMSAxMy4zMzMzSDE2LjI1MDFWMTUuODMzM0gxNS4wMDAxVjEzLjMzMzNaTTE1LjcwODQgNi40NDE2NkMxNi4yMjUxIDUuOTMzMzIgMTYuNTQxNyA1LjIzMzMyIDE2LjU0MTcgNC40NTgzMkMxNi41NDE3IDIuOTE2NjYgMTUuMjkxNyAxLjY2NjY2IDEzLjc1MDEgMS42NjY2NlYyLjkxNjY2QzE0LjU4MzQgMi45MTY2NiAxNS4yOTE3IDMuNjA4MzIgMTUuMjkxNyA0LjQ1ODMyQzE1LjI5MTcgNS4zMDgzMiAxNC41ODM0IDUuOTk5OTkgMTMuNzUwMSA1Ljk5OTk5VjcuMjQ5OTlDMTUuNjE2NyA3LjI0OTk5IDE3LjA4MzQgOC43NzQ5OSAxNy4wODM0IDEwLjY0MTdWMTIuNUgxOC4zMzM0VjEwLjYzMzNDMTguMzMzNCA4Ljc4MzMyIDE3LjI2NjcgNy4xODMzMiAxNS43MDg0IDYuNDQxNjZaTTEzLjM1ODQgOC40OTk5OUgxMi4wODM0QzExLjI1MDEgOC40OTk5OSAxMC41NDE3IDcuNjgzMzIgMTAuNTQxNyA2LjgzMzMyQzEwLjU0MTcgNS45ODMzMiAxMS4yNTAxIDUuMzc0OTkgMTIuMDgzNCA1LjM3NDk5VjQuMTI0OTlDMTAuNTQxNyA0LjEyNDk5IDkuMjkxNzUgNS4zNzQ5OSA5LjI5MTc1IDYuOTE2NjZDOS4yOTE3NSA3LjY1NzA1IDkuNTg1ODcgOC4zNjcxMiAxMC4xMDk0IDguODkwNjZDMTAuNjMyOSA5LjQxNDIgMTEuMzQzIDkuNzA4MzIgMTIuMDgzNCA5LjcwODMySDEzLjM1ODRDMTQuMjMzNCA5LjcwODMyIDE1LjAwMDEgMTAuMzI1IDE1LjAwMDEgMTEuNDE2N1YxMi41SDE2LjI1MDFWMTEuMTMzM0MxNi4yNTAxIDkuNjI0OTkgMTQuOTE2NyA4LjQ5OTk5IDEzLjM1ODQgOC40OTk5OVoiIGZpbGw9IiMyMTIxMjEiLz4KPC9zdmc+Cg=="); }
  .mod-policies_pets {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuOTU4MzQgMi40OTk5OUM3Ljk0MTY3IDIuMzU4MzMgOC45ODMzNCAzLjQzMzMzIDkuMjgzMzQgNC45MTY2NkM5LjU4MzM0IDYuMzkxNjYgOS4wNDE2NyA3LjcwODMzIDguMDU4MzQgNy44NTgzM0M3LjA4MzM0IDguMDA4MzMgNi4wMzMzNCA2LjkzMzMzIDUuNzI1IDUuNDQ5OTlDNS40MTY2NyAzLjk3NDk5IDUuOTc1IDIuNjU4MzMgNi45NTgzNCAyLjQ5OTk5Wk0xMi45MTY3IDIuNDk5OTlDMTMuOTA4MyAyLjY1ODMzIDE0LjQ1ODMgMy45NzQ5OSAxNC4xNjY3IDUuNDQ5OTlDMTMuODUgNi45MzMzMyAxMi44MDgzIDguMDA4MzMgMTEuODI1IDcuODU4MzNDMTAuODMzMyA3LjcwODMzIDEwLjI5MTcgNi4zOTE2NiAxMC42IDQuOTE2NjZDMTAuOSAzLjQzMzMzIDExLjk0MTcgMi4zNTgzMyAxMi45MTY3IDIuNDk5OTlaTTIuNSA2LjMzMzMzQzMuNDUgNS45MjQ5OSA0Ljc0MTY3IDYuNjY2NjYgNS40MTY2NyA3Ljk1ODMzQzYuMDUgOS4yNzQ5OSA1LjgzMzM0IDEwLjY1ODMgNC44OTE2NyAxMS4wNjY3QzMuOTUgMTEuNDc1IDIuNjY2NjcgMTAuNzQxNyAyLjAwODM0IDkuNDMzMzNDMS4zNSA4LjEyNDk5IDEuNTgzMzQgNi43MzMzMyAyLjUgNi4zMzMzM1pNMTcuNSA2LjMzMzMzQzE4LjQxNjcgNi43MzMzMyAxOC42NSA4LjEyNDk5IDE3Ljk5MTcgOS40MzMzM0MxNy4zMzMzIDEwLjc0MTcgMTYuMDUgMTEuNDc1IDE1LjEwODMgMTEuMDY2N0MxNC4xNjY3IDEwLjY1ODMgMTMuOTUgOS4yNzQ5OSAxNC41ODMzIDcuOTU4MzNDMTUuMjU4MyA2LjY2NjY2IDE2LjU1IDUuOTI0OTkgMTcuNSA2LjMzMzMzWk0xNi4xMDgzIDE1LjMxNjdDMTYuMTQxNyAxNi4xIDE1LjU0MTcgMTYuOTY2NyAxNC44MjUgMTcuMjkxN0MxMy4zMzMzIDE3Ljk3NSAxMS41NjY3IDE2LjU1ODMgOS45MDgzNCAxNi41NTgzQzguMjUgMTYuNTU4MyA2LjQ2NjY3IDE4LjAzMzMgNSAxNy4yOTE3QzQuMTY2NjcgMTYuODgzMyAzLjU5MTY3IDE1LjggMy43IDE0LjlDMy44NSAxMy42NTgzIDUuMzQxNjcgMTIuOTkxNyA2LjIyNSAxMi4wODMzQzcuNCAxMC45MDgzIDguMjMzMzQgOC42OTk5OSA5LjkwODM0IDguNjk5OTlDMTEuNTc1IDguNjk5OTkgMTIuNDU4MyAxMC44NzUgMTMuNTgzMyAxMi4wODMzQzE0LjUwODMgMTMuMSAxNi4wNSAxMy45NTgzIDE2LjEwODMgMTUuMzE2N1oiIGZpbGw9IiMyMTIxMjEiLz4KPC9zdmc+Cg=="); }
  .mod-policies_accomodation-type {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAABn0lEQVRIS9XVO0wVURAG4A8flQHpjJUmFgaIlQVRE6nAhMLYWNBDhNIOoSPx0VlqtLEkoRAaE+2w8FFQER8FGugo1QQbRcjcnE1O1l25cNcYp9udmf8/88/MOV3+snW1ib9TE7dn/p4BCfj/IriKe+hrU74i7ANuYSnPq5JoEyf2CV6ER+7JPxEcwY8U0G5/CryiT0fxs/hZBvlnBP24jjFsYwHz+JjJse8KBjLQszU9eZ+RRZPDaiUKuQJ09YANLtLO4R1aFeU9eIULHYIX6a9xsUywhjMNEXwusPIKHmCyIYKHmCpXcA1PGyIIrNZG5xUcwxfELnRisWS92CoTxPcyLneCjpcYqtvkGdxOzhizWXzH/VK1ERL+m+jGXOaPnDt1BOexiLd4jOcpcBg3MJiA3uARXiT/FUwkf+i/UkdQVqcHh1JvqpQLrX/hW52sVTfmcZzCSLrfD6f34Rk+Ib5PYxTT6W66m6rZwNecLCeI7kdyExYXYmsaqwhiVOMkMQ1P0vsQ+sZ0xcnD1pM/+hRA47iUKg/ZKgmaOPlvGLtgB1EZKKAZjgAAAABJRU5ErkJggg=="); }
  .mod-policies_content {
    padding: 0 0 0 40px; }

.checkinout .mod-policies_heading {
  padding-top: 15px;
  background-position: 0 15px; }
  @media only screen and (min-width: 768px) {
    .checkinout .mod-policies_heading {
      width: 180px; } }

.mod-checkin-checkout {
  font-size: 12px;
  margin-bottom: 16px; }
  @media only screen and (min-width: 768px) {
    .mod-checkin-checkout {
      width: 400px; } }

.data {
  position: relative;
  height: 16px;
  color: #696969;
  width: 400px; }
  .data .from-label {
    display: block;
    position: absolute;
    left: 0;
    transform: translateX(-50%); }
  .data .to-label {
    display: block;
    position: absolute;
    right: 0;
    transform: translateX(50%); }
  .data .single-label {
    width: 100%;
    text-align: center;
    display: block; }
  .data .until-label {
    display: block;
    position: absolute;
    right: 0;
    transform: translateX(50%); }

.rail {
  width: 100%;
  height: 20px;
  border: solid 1px #bdbdbd;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5; }

.rail-bar {
  width: 100%;
  height: 100%;
  position: absolute; }

.rail-tooltip {
  font-size: 12px;
  padding: 4px;
  border: solid 1px #BDBDBD;
  border-radius: 4px;
  display: inline-block;
  margin-top: 5px;
  background-color: #fff;
  position: relative; }
  .rail-tooltip:before, .rail-tooltip:after {
    bottom: 100%;
    left: 30%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .rail-tooltip:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 5px;
    margin-left: -5px; }
  .rail-tooltip:before {
    border-color: rgba(189, 189, 189, 0);
    border-bottom-color: #bdbdbd;
    border-width: 6px;
    margin-left: -6px; }

.twentyfourhour .rail-bar {
  left: 30%; }

.range .rail-bar {
  left: 30%;
  width: 200px; }

.range .from-label {
  left: 30%; }

.range .to-label {
  right: 80px; }

.checkout .rail-bar {
  width: 200px; }

.checkout .until-label {
  right: 200px; }

.checkout .rail-tooltip {
  transform: translateX(100%); }
  .checkout .rail-tooltip:before, .checkout .rail-tooltip:after {
    left: 70%; }

.mod-accessibility {
  margin-bottom: 10px;
  display: block; }
  .mod-accessibility p {
    padding-left: 40px;
    background: url(data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPgo8dGl0bGU+YWNjZXNzaWJsZTwvdGl0bGU+CjxwYXRoIGZpbGw9IiMwMDAwMDAiIGQ9Ik0xMi44NDQgMThoMi4wNjNxLTAuMzI4IDEuNjQxLTEuNzgxIDIuODEzdC0zLjE0MSAxLjE3MnEtMi4wNjMgMC0zLjUxNi0xLjQ1M3QtMS40NTMtMy41MTZxMC0xLjY4OCAxLjE3Mi0zLjE0MXQyLjgxMy0xLjc4MXYyLjA2M3EtMC44OTEgMC4zMjgtMS40NTMgMS4xMDJ0LTAuNTYzIDEuNzU4cTAgMS4yMTkgMC44OTEgMi4xMDl0Mi4xMDkgMC44OTFxMC45ODQgMCAxLjc1OC0wLjU2M3QxLjEwMi0xLjQ1M3pNOS45ODQgOS4wOTRxMC0xLjEyNSAwLjk4NC0xLjc4MXQyLjAxNi0wLjA0N2gwLjA0N3YwLjA0N3EwLjMyOCAwLjE0MSAwLjYwOSAwLjQyMmwxLjMxMyAxLjQ1M3ExLjY4OCAxLjgyOCA0LjAzMSAxLjgyOHYxLjk2OXEtMi42MjUgMC00Ljk2OS0xLjkyMnYzLjQyMmgzcTAuNzk3IDAgMS4zODMgMC42MDl0MC41ODYgMS40MDZ2NS40ODRoLTEuOTY5di00Ljk2OWgtNS4wMTZxLTAuNzk3IDAtMS40MDYtMC42MDl0LTAuNjA5LTEuNDA2di01LjkwNnpNOS45ODQgMy45ODRxMC0wLjg0NCAwLjU4Ni0xLjQwNnQxLjQzLTAuNTYzIDEuNDMgMC41NjMgMC41ODYgMS40MDYtMC41ODYgMS40My0xLjQzIDAuNTg2LTEuNDMtMC41ODYtMC41ODYtMS40M3oiPjwvcGF0aD4KPC9zdmc+Cg==) no-repeat 0 0; }

.mod_announcement-infobox {
  padding: 15px; }
  .mod_announcement-infobox .mod_announcement-content p {
    padding: 0;
    margin: 0; }
  .mod_announcement-infobox .mod_announcement-content ul {
    padding: 0;
    margin: 0; }
  .mod_announcement-infobox .mod_announcement-content a {
    text-decoration: underline; }

.mod_announcement-popup {
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; }
  .mod_announcement-popup .dialogue-inner {
    vertical-align: top;
    display: block;
    margin-top: auto;
    margin-bottom: auto; }
  .mod_announcement-popup.dialogue-outer {
    background-color: rgba(0, 0, 0, 0.6); }
  .mod_announcement-popup .mod-dialogueBox {
    max-width: 640px; }
  .mod_announcement-popup .dialogue-content {
    padding-bottom: 40px;
    min-width: 280px;
    border: none;
    background: transparent;
    box-shadow: none; }
  .mod_announcement-popup .dialogue-header {
    background: transparent;
    border: none;
    z-index: 2;
    overflow: initial; }
    .mod_announcement-popup .dialogue-header .cp-link {
      border-radius: 10em;
      right: -20px;
      top: 20px;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
      outline: none;
      background: white; }
      .mod_announcement-popup .dialogue-header .cp-link:before {
        font-size: 18px;
        left: 14px;
        top: 12px;
        color: #111111; }
  .mod_announcement-popup .mod_announcement-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block; }
  .mod_announcement-popup .mod-dialogueBox {
    height: auto;
    max-height: initial;
    padding: 0;
    margin: 0; }
  .mod_announcement-popup .mod_announcement-content {
    padding: 15px; }
    .mod_announcement-popup .mod_announcement-content p {
      padding: 0;
      margin: 0; }
    .mod_announcement-popup .mod_announcement-content ul {
      padding: 0;
      margin: 0; }
    .mod_announcement-popup .mod_announcement-content a {
      text-decoration: underline; }
  .mod_announcement-popup.PST .mod_announcement-content {
    padding: 20px; }
    @media only screen and (min-width: 768px) {
      .mod_announcement-popup.PST .mod_announcement-content {
        padding: 40px; } }
  .mod_announcement-popup.PSI .mod_announcement-content {
    padding: 0; }

.template-13 .mod_announcement-infobox .mod-user-header_center-inner,
.template-14 .mod_announcement-infobox .mod-user-header_center-inner {
  max-width: 1024px; }

.cp-button {
  border-radius: 6px;
  transition: all .2s ease-in;
  font-size: 0.875em;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.8);
  border: none;
  background: #db0148;
  color: white;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  height: 44px;
  line-height: 44px;
  vertical-align: middle;
  padding: 0 20px; }
  @media only screen and (min-width: 1333px) {
    .cp-button {
      font-size: 1em; } }
  .cp-button[disabled] {
    box-shadow: none; }

.cp-button-text {
  color: #db0148;
  background: none;
  box-shadow: none;
  border: none;
  font-weight: normal; }

.cp-button.cp-button-text:hover,
.cp-button.cp-button-text:focus {
  box-shadow: none; }

@media only screen and (min-width: 1920px) {
  .mod-results-actions .cp-button {
    border-radius: 0 0 3px 3px;
    background-clip: padding-box;
    /* stops bg color from leaking outside the border: */ } }

.cp-button:hover,
.cp-button:focus {
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 10px inset;
  transition: all .2s ease-in; }

.cp-button[disabled]:hover,
.cp-button[disabled]:focus {
  box-shadow: none; }

.cp-button-special:hover,
.cp-button-special:focus {
  background: #db0148;
  color: white;
  transition: all .2s ease-in; }

.main .cp-button[disabled],
.main.search .cp-button[disabled] {
  background: #cacaca;
  color: #eee; }

.main .cp-button-text:disabled, .main .cp-button-text[disabled] {
  background: none;
  color: #cacaca; }

.cp-button-small {
  height: 22px;
  line-height: 22px;
  outline: none;
  padding: 10px;
  font-size: 0.875em;
  height: auto;
  line-height: 1; }

.cp-button-negative {
  background: #cacaca;
  color: black; }

.cp-button-medium {
  height: 29.33333px;
  line-height: 29.33333px;
  padding: 0 10px;
  font-size: 0.875em; }

.cp-button-rates {
  height: 29.33333px;
  line-height: 29.33333px;
  padding: 0 15px;
  font-size: 0.875em; }

.cp-button-invert {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.8); }

.cp-button-outline {
  background: transparent;
  border: 1px solid white;
  color: white; }

.cp-button-text {
  color: #db0148;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none; }
  .cp-button-text:hover {
    box-shadow: none;
    border: 0 none; }

.cp-button-icon:before {
  font-family: 'eviivo-facilities-icon';
  line-height: 1;
  position: relative;
  top: 4px; }

.cp-button-icon.icon-search:before {
  content: '\e979'; }

/* Iconography Base*/
.btn.icon {
  padding-left: 25px;
  background-repeat: no-repeat;
  position: relative; }

.icon:before {
  content: " ";
  height: 13px;
  left: 10px;
  position: absolute;
  top: 8px;
  width: 10px; }

.cp-button-fw {
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

/*payment*/
#submitPayment {
  height: auto;
  min-height: 44px;
  line-height: 1; }

#eviivo-search-nights .cp-close {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOC4xLjEsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxMnB4IiBoZWlnaHQ9IjEycHgiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTIgMTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgaWQ9ImljQ2xvc2UiPg0KCTxwb2x5Z29uIGZpbGw9IiMzODNBM0QiIHBvaW50cz0iMTEuNywxMC4yIDcuNCw2IDExLjcsMS44IDEwLjIsMC4zIDYsNC42IDEuOCwwLjMgMC4zLDEuOCA0LjYsNiAwLjMsMTAuMiAxLjgsMTEuNyA2LDcuNCANCgkJMTAuMiwxMS43IAkiLz4NCjwvZz4NCjwvc3ZnPg0K") no-repeat scroll 0 0 transparent;
  display: inline-block;
  height: 12px;
  overflow: hidden;
  text-indent: -9999em;
  width: 12px;
  float: right;
  position: relative;
  top: 13px; }

/*POA button**/
/*Usages: Search results*/
.cp-poa {
  border-radius: 3px;
  color: white;
  background: #619246;
  display: inline-block;
  font-size: 12px;
  line-height: 0.875em;
  padding: 5px;
  vertical-align: middle;
  margin: 2px; }
  @media only screen and (min-width: 480px) {
    .cp-poa {
      margin: 0 0 5px 0; } }

@charset "UTF-8";
input,
select,
textarea,
.cp-input {
  font-family: "Source Sans Pro", arial, sans-serif;
  font-size: 14px;
  /*Leave it like this, removes zooming effect on mobiles*/
  border: 1px solid #d7d8d8;
  color: #635f5b;
  padding: 0 10px;
  height: 44px;
  line-height: 1;
  vertical-align: middle;
  /*-webkit-appearance: none; if left like this, input's not visible on chrome browser*/
  border-radius: 0; }

.payment .extras-content input[type="checkbox"] {
  -webkit-appearance: checkbox; }

.cp-inline-checkbox input {
  display: inline-block;
  float: left;
  height: auto;
  line-height: 1;
  width: auto; }

.cp-inline-checkbox label {
  display: inline-block;
  float: left;
  margin-left: 5px;
  width: 90%;
  font-size: 13px; }

textarea {
  min-height: 80px;
  overflow: auto;
  padding: 14px 10px;
  width: 90%;
  resize: none;
  resize: vertical; }

.mod-search .active input,
span.ui-state-focus,
.checkbox-buttons .ui-state-focus,
input:focus,
select:focus,
textarea:focus {
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 4px inset;
  transition: all .2s ease-in;
  font-size: 14px;
  border: 1px solid #505050; }

textarea[readonly="readonly"],
textarea[readonly],
textarea[readonly="readonly"]:focus,
textarea[readonly]:focus,
input[readonly="readonly"],
input[readonly],
input[readonly="readonly"]:focus,
input[readonly]:focus {
  box-shadow: none;
  color: #999;
  background: #f0f0f0; }

textarea[disabled="disabled"],
textarea[disabled],
textarea[disabled="disabled"]:focus,
textarea[disabled]:focus,
input[disabled="disabled"],
input[disabled],
input[disabled="disabled"]:focus,
input[disabled]:focus {
  box-shadow: none;
  color: #999;
  background: #f0f0f0; }

.icon-input {
  background-repeat: no-repeat;
  padding-left: 37px;
  background-color: white; }

.column-row {
  clear: both;
  overflow: hidden;
  padding-bottom: 15px; }

:-ms-input-placeholder,
::-moz-placeholder,
:-moz-placeholder,
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2); }

/*fancy checkboxes*/
.form-item-checkbox {
  /* Base for label styling */
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled checkbox */
  /* accessibility */
  /* hover style just for information */ }
  .form-item-checkbox [type="checkbox"]:not(:checked),
  .form-item-checkbox [type="checkbox"]:checked {
    position: absolute;
    visibility: hidden;
    width: auto; }
  .form-item-checkbox [type="checkbox"]:not(:checked) + label,
  .form-item-checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    text-transform: none; }
  .form-item-checkbox [type="checkbox"]:not(:checked) + label:before,
  .form-item-checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 18px;
    height: 18px;
    border: 1px solid #d7d8d8;
    background: white;
    border-radius: 3px; }
  .form-item-checkbox [type="checkbox"]:not(:checked) + label:after,
  .form-item-checkbox [type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: -1px;
    left: 4px;
    font-size: 16px;
    color: black;
    transition: all .2s; }
  .form-item-checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0); }
  .form-item-checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1); }
  .form-item-checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
  .form-item-checkbox [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd; }
  .form-item-checkbox [type="checkbox"]:disabled:checked + label:after {
    color: #999; }
  .form-item-checkbox [type="checkbox"]:disabled + label {
    color: #aaa; }
  .form-item-checkbox [type="checkbox"]:checked:focus + label:before,
  .form-item-checkbox [type="checkbox"]:not(:checked):focus + label:before {
    border: 1px dotted blue; }
  .form-item-checkbox label:hover:before {
    border: 1px solid #111111 !important; }

.form-item-radio {
  /* Base for label styling */
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled checkbox */
  /* accessibility */
  /* hover style just for information */ }
  .form-item-radio [type="radio"]:not(:checked),
  .form-item-radio [type="radio"]:checked {
    position: absolute;
    visibility: hidden;
    width: auto; }
  .form-item-radio [type="radio"]:not(:checked) + label,
  .form-item-radio [type="radio"]:checked + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    text-transform: none; }
  .form-item-radio [type="radio"]:not(:checked) + label:before,
  .form-item-radio [type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left: 3px;
    top: -1px;
    width: 18px;
    height: 18px;
    border: 1px solid #d7d8d8;
    background: white;
    border-radius: 10em; }
  .form-item-radio [type="radio"]:not(:checked) + label:after,
  .form-item-radio [type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 9px;
    background-color: black;
    transition: all .2s;
    width: 6px;
    height: 6px;
    border-radius: 20em; }
  .form-item-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0); }
  .form-item-radio [type="radio"]:checked + label:after {
    opacity: 1;
    transform: scale(1); }
  .form-item-radio [type="radio"]:disabled:not(:checked) + label:before,
  .form-item-radio [type="radio"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd; }
  .form-item-radio [type="radio"]:disabled:checked + label:after {
    color: #999; }
  .form-item-radio [type="radio"]:disabled + label {
    color: #aaa; }
  .form-item-radio [type="radio"]:checked:focus + label:before,
  .form-item-radio [type="radio"]:not(:checked):focus + label:before {
    border: 1px dotted blue; }
  .form-item-radio label:hover:before {
    border: 1px solid #111111 !important; }

.form-item-checkbox,
.form-item-radio {
  display: inline-block;
  float: none;
  padding-right: 5px;
  width: auto; }
  .form-item-checkbox input,
  .form-item-checkbox label,
  .form-item-radio input,
  .form-item-radio label {
    float: left;
    height: 14px;
    line-height: 14px; }
  .form-item-checkbox input,
  .form-item-radio input {
    margin-right: 5px; }
  .form-item-checkbox label,
  .form-item-radio label {
    vertical-align: top;
    text-transform: capitalize;
    font-size: 0.875em;
    color: rgba(0, 0, 0, 0.8); }
  .form-item-checkbox .label-value-count,
  .form-item-radio .label-value-count {
    font-size: 0.875em;
    padding-left: 3px;
    color: rgba(100, 100, 100, 0.6); }

.invalid {
  border: 1px solid #ff0101; }

.error cp-input,
.mod-search-filters .invalid input.cp-input {
  color: #ff0101; }

.invalid::-webkit-input-placeholder {
  color: #ff0101 !important; }

.invalid::-moz-placeholder {
  color: #ff0101 !important; }

/* firefox 19+ */
.invalid:-ms-input-placeholder {
  color: #ff0101 !important; }

/* ie */
.invalid:-moz-placeholder {
  color: #ff0101 !important; }

.invalid input::-webkit-input-placeholder {
  color: #ff0101 !important; }

.invalid input::-moz-placeholder {
  color: #ff0101 !important; }

/* firefox 19+ */
.invalid input:-ms-input-placeholder {
  color: #ff0101 !important; }

/* ie */
.invalid input:-moz-placeholder {
  color: #ff0101 !important; }

/* removes ugly x from the field  http://geektnt.com/how-to-remove-x-from-search-input-field-on-chrome-and-ie.html */
input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

a {
  color: #db0148;
  text-decoration: none; }

.scroll-top {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 5px 0 0 5px;
  bottom: 20px;
  display: block;
  position: fixed;
  right: 0;
  font-size: 0;
  opacity: 1;
  height: 44px;
  width: 44px;
  text-indent: -999em;
  transition: opacity .2s ease-in;
  line-height: 21px; }
  .scroll-top:before {
    color: white;
    content: "\e60c";
    display: block;
    font-family: "Booking-glyphs";
    font-size: 68px;
    left: -9px;
    position: absolute;
    text-indent: 0;
    top: 8px; }

.not-scrolled .scroll-top {
  opacity: 0;
  transition: opacity .2s ease-in; }

.cp-link-qw,
.cp-linkCustom {
  color: white; }

.cp-link {
  color: #db0148;
  cursor: pointer; }

.cp-input-icon {
  padding: 11px 0 0 35px; }
  .cp-input-icon.icon-guest {
    padding-left: 39px; }

.icon-filter {
  background: white url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4yLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNHB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNCAxNiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTQgMTY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiMzODNBM0QiIGQ9Ik0wLDBoMTRsMCwwbDAsMHYxLjVoLTAuMUw4LjYsNi44VjE2bC0zLjEtMy4xVjYuOEwwLjEsMS41SDBWMHoiLz4NCjwvc3ZnPg==") no-repeat scroll 10px center; }

.cp-input-text {
  padding: 11px 0 0 10px; }

@charset "UTF-8";
label {
  display: block;
  font-weight: 400;
  line-height: 100%;
  vertical-align: top;
  padding-bottom: 3px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8); }

.custom-checkbox [type="checkbox"] {
  display: none; }

.custom-checkbox [type="checkbox"] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px; }

.custom-checkbox [type="checkbox"] + span:before {
  display: inline-block;
  content: "+ ";
  height: 20px;
  padding: 2px 0 0 4px;
  width: 20px;
  color: transparent;
  border-radius: 2px;
  position: absolute;
  left: 0;
  font-size: 14px;
  border: 1px solid black; }

.custom-checkbox :checked + span:before {
  color: #646464;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset;
  content: "✔"; }

.custom-checkbox [type="checkbox"][disabled] + span:before {
  cursor: default;
  border-color: rgba(0, 0, 0, 0.2);
  color: transparent; }

.custom-checkbox [type="checkbox"][disabled] + span {
  color: rgba(0, 0, 0, 0.4);
  cursor: default; }

.custom-checkbox [disabled]:checked + span:before {
  color: #cacaca; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.hr {
  border: 0;
  background: #d7d8d8;
  height: 1px;
  clear: both;
  margin: 10px 0;
  width: 100%; }

.pre-line {
  white-space: pre-line; }
  .pre-line br {
    display: block; }

[class^="gicon-"], [class*=" gicon-"] {
  font-family: 'Booking-glyphs';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.gicon-cross {
  display: none; }

.gicon-collapse:before {
  content: "\e600"; }

.gicon-cross:before {
  content: "\e601"; }

.gicon-expand:before {
  content: "\e602"; }

.gicon-external-link:before {
  content: "\e603"; }

.gicon-heart-solid:before {
  content: "\e604"; }

.gicon-heart-border:before {
  content: "\e605"; }

.gicon-marker-border:before {
  content: "\e606"; }

.gicon-marker-solid:before {
  content: "\e607"; }

.gicon-quick-look:before {
  content: "\e608"; }

.gicon-star-border:before {
  content: "\e609"; }

.gicon-star-solid:before {
  content: "\e610"; }

.gicon-house:before {
  content: "\e611"; }

.gicon-grid:before {
  content: "\e612"; }

.gicon-list:before {
  content: "\e613"; }

.gicon-thumb:before {
  content: "\e614"; }

.gicon-calendar:before {
  content: "\e60a"; }

.gicon-avatar:before {
  content: "\e60b"; }

.gicon-expaded:before {
  content: "\e60c"; }

.gicon-expad:before {
  content: "\e60d"; }

.gicon-arrow-left:before {
  content: "\e60e"; }

.gicon-arrow-right:before {
  content: "\e60f"; }

.cp--loading {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
  text-align: center; }
  .cp--loading .circle {
    width: 29px;
    height: 29px;
    border: 2px solid #aaa;
    border-radius: 10em;
    position: absolute;
    display: block;
    top: 10px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto auto; }
    .cp--loading .circle:before {
      width: 26px;
      height: 26px;
      position: absolute;
      left: 0;
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4yLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIyNnB4IiBoZWlnaHQ9IjI2cHgiIHZpZXdCb3g9IjAgMCAyNiAyNiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjYgMjY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtjbGlwLXBhdGg6dXJsKCNTVkdJRF8yXyk7fQ0KCS5zdDF7ZmlsbDojNjY2NjY2O30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHBvbHlnb24gaWQ9IlNWR0lEXzFfIiBwb2ludHM9IjM4LjIsMjguNyAyOC4zLDM4LjYgNi4xLDE2LjIgMTYsNi4zIDI2LDE2LjUgCQkiLz4NCgk8L2RlZnM+DQoJPGNsaXBQYXRoIGlkPSJTVkdJRF8yXyI+DQoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzFfIiAgc3R5bGU9Im92ZXJmbG93OnZpc2libGU7Ii8+DQoJPC9jbGlwUGF0aD4NCgk8ZyBjbGFzcz0ic3QwIj4NCgkJPGc+DQoJCQk8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTMsMmM2LjEsMCwxMSw0LjksMTEsMTFzLTQuOSwxMS0xMSwxMVMyLDE5LjEsMiwxM1M2LjksMiwxMywyIE0xMywwQzUuOCwwLDAsNS44LDAsMTNzNS44LDEzLDEzLDEzDQoJCQkJczEzLTUuOCwxMy0xM1MyMC4yLDAsMTMsMEwxMywweiIvPg0KCQk8L2c+DQoJPC9nPg0KPC9nPg0KPC9zdmc+DQo=) no-repeat 0 0;
      content: '';
      -webkit-animation: spin1 0.6s infinite linear;
              animation: spin1 0.6s infinite linear; }
    .cp--loading .circle:after {
      width: 26px;
      height: 26px;
      position: absolute;
      left: 0;
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4yLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIyNnB4IiBoZWlnaHQ9IjI2cHgiIHZpZXdCb3g9IjAgMCAyNiAyNiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjYgMjY7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtjbGlwLXBhdGg6dXJsKCNTVkdJRF8yXyk7fQ0KCS5zdDF7ZmlsbDojNjY2NjY2O30NCjwvc3R5bGU+DQo8Zz4NCgk8ZGVmcz4NCgkJPHBvbHlnb24gaWQ9IlNWR0lEXzFfIiBwb2ludHM9IjM4LjIsMjguNyAyOC4zLDM4LjYgNi4xLDE2LjIgMTYsNi4zIDI2LDE2LjUgCQkiLz4NCgk8L2RlZnM+DQoJPGNsaXBQYXRoIGlkPSJTVkdJRF8yXyI+DQoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzFfIiAgc3R5bGU9Im92ZXJmbG93OnZpc2libGU7Ii8+DQoJPC9jbGlwUGF0aD4NCgk8ZyBjbGFzcz0ic3QwIj4NCgkJPGc+DQoJCQk8cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTMsMmM2LjEsMCwxMSw0LjksMTEsMTFzLTQuOSwxMS0xMSwxMVMyLDE5LjEsMiwxM1M2LjksMiwxMywyIE0xMywwQzUuOCwwLDAsNS44LDAsMTNzNS44LDEzLDEzLDEzDQoJCQkJczEzLTUuOCwxMy0xM1MyMC4yLDAsMTMsMEwxMywweiIvPg0KCQk8L2c+DQoJPC9nPg0KPC9nPg0KPC9zdmc+DQo=) no-repeat 0 0;
      content: '';
      -webkit-animation: spin2 1s infinite linear;
              animation: spin2 1s infinite linear; }
  .cp--loading .cp--loading-text {
    display: inline-block;
    margin-top: 36px;
    max-width: 300px;
    padding: 0 10px;
    font-size: 14px; }

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@-webkit-keyframes spin1 {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }

@-webkit-keyframes spin2 {
  0% {
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

.field-validation-error {
  color: red;
  font-size: 14px;
  display: inline-block;
  line-height: 18px;
  vertical-align: top; }

.input-validation-error[placeholder],
.input-validation-error {
  border: 1px solid red;
  color: red; }

.mod-warning {
  color: dimgray;
  clear: both;
  background: #fcfcfc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  margin: 0;
  padding: 5px 15px;
  border-bottom: 1px solid #d7d8d8; }

.payment .field-validation-error {
  display: block; }

a {
  text-decoration: none; }

h2 {
  background: transparent;
  padding: 0; }

.mod-search {
  width: 100%; }
  .mod-search.open {
    display: block; }

.mod-search {
  display: none; }
  .mod-search label {
    color: white; }

.instantweb .mod-search.mod-search-date-range .requirementsSummary,
.instantweb .mod-search.mod-search-date-range label {
  color: black; }

.widget-container {
  background: white; }

.skip-navigation {
  display: none; }

.fluid-width-video-wrapper {
  height: 100%; }

.cp-pdf-wrapper {
  width: 100%;
  height: 100vh;
  max-height: 420px; }

.download-link {
  display: block;
  text-decoration: underline; }

.no-scroll {
  overflow: hidden; }

