/* Minification failed. Returning unminified contents.
(7713,34): run-time error CSS1062: Expected semicolon or closing curly-brace, found ':'
(7723,34): run-time error CSS1062: Expected semicolon or closing curly-brace, found ':'
 */
/*! Flickity v1.1.1
http://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  filter: alpha(opacity=60); /* IE8 */
  opacity: 0.6;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30); /* IE8 */
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25); /* IE8 */
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100); /* IE8 */
  opacity: 1;
}
/*
 * jquery.selectBoxIt.css 3.8.0
 * Author: @gregfranko
 */

/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/

/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  font: 14px Helvetica, Arial;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
  width: 220px; /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 30px; /* Height of the drop down */
  line-height: 30px; /* Vertically positions the drop down text */
  display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

/* Button Text */
.selectboxit-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;  /* Minimum Width of the dropdown list box options */
  *width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  border-radius: 6px;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Individual options */
 .selectboxit-option .selectboxit-option-anchor{
  padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
  text-indent: 5px; /* Horizontal Positioning of the select box option text */
  margin: 0;
  list-style-type: none;
}

/* The first Drop Down option */
.selectboxit-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: left;
}

.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
  color: #333333;
  background-color: #e6e6e6;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
}

.selectboxit-default-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.selectboxit-list {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
  color: #333333;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #ffffff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}
@charset "UTF-8";
/*=============================
 PRIVATE TRAVELLER STYLES
 v1.0
=============================*/
/*=============================
 + SETTINGS
=============================*/
/*// breakpoints
$bp-small: 569px;
$bp-medium: 819px;
$bp-large: 1069px;
$bp-xl: 1319px;

// grid variables
$gridColumns: 12;
$gridMaxWidth: 1170px;
$gutter: 20px;
$gridContentPadding: 20px; //not applied by default, add this variable to any elements where padding is required

// widths for limited-width content within content__container
$contentContainerWidth: 95%;
$contentContainerWidthMax: 1170px;*/
/*=============================
 + PALETTE
=============================*/
/*=============================
 + STYLES
=============================*/
/*Masthead*/
/*Inputs*/
/*UI colours*/
/*Text*/
/*Buttons*/
/*Borders*/
/* Tiles */
/*Footer*/
/*=============================
 + TYPEFACES & WEIGHTS
=============================*/
/*$h5FontFamily: $font2;
$h5FontSize: 11px;
$h5FontWeight: $font2bold;
$h5LineHeight: 1.25;
$h5TextTransform: none;
$h5LetterSpacing: 0;
$h5FontStyle:none;*/
/*sets margin on bottom of p tags*/
/*Lead Paragraph Styles*/
/* Note: Colours are set in settings.colours scss file*/
/*=============================
 + TOOLS
=============================*/
.grid:before, .row:before, .masthead:before, .masthead.grid--full-width:before, .grid:after, .row:after, .masthead:after, .masthead.grid--full-width:after {
    content: " ";
    display: table;
}

.grid:after, .row:after, .masthead:after, .masthead.grid--full-width:after {
    clear: both;
}

/*
 * 'rem' is a Sass mixin that converts pixel values to rem values for whatever property is passed to it.
 * It returns two lines of code — one of the regular pixel values (for IE), and another with the
 * converted rem values (for everyone else). Special thanks to Chris Epstein (http://chriseppstein.github.com)
 * and Martin Bavio (http://martinbavio.com) for the help and code!
 * 
 * Sample input:
 * .element {
 *   @include rem('padding',10px 0 2px 5px);
 * }
 * 
 * Sample output:
 * .element {
 *   padding: 10px 0 2px 5px;
 *   padding: 1rem 0 0.2rem 0.5rem;
 * }
 * 
 */
/*
Truncates the decimal part of a floating point number.
*/
/* BODY TEXT */
.grid:before, .row:before, .masthead:before, .masthead.grid--full-width:before, .grid:after, .row:after, .masthead:after, .masthead.grid--full-width:after {
    content: " ";
    display: table;
}

.grid:after, .row:after, .masthead:after, .masthead.grid--full-width:after {
    clear: both;
}

/*
 * 'rem' is a Sass mixin that converts pixel values to rem values for whatever property is passed to it.
 * It returns two lines of code — one of the regular pixel values (for IE), and another with the
 * converted rem values (for everyone else). Special thanks to Chris Epstein (http://chriseppstein.github.com)
 * and Martin Bavio (http://martinbavio.com) for the help and code!
 * 
 * Sample input:
 * .element {
 *   @include rem('padding',10px 0 2px 5px);
 * }
 * 
 * Sample output:
 * .element {
 *   padding: 10px 0 2px 5px;
 *   padding: 1rem 0 0.2rem 0.5rem;
 * }
 * 
 */
/*
Truncates the decimal part of a floating point number.
*/
/* BODY TEXT */
*, *:after, *:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*.grid {
    width: 100%;
    margin: 0 auto;
    padding: $gutter / 2;
    @include flexbox();
    flex: 0 1 auto;
    flex-flow: row wrap;
}*/
[class*='grid__col--'] {
    float: left;
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 25px;
    padding-left: 20px;
    width: 100%;
    /*min-height: 1px;*/
    flex: 0 0 auto;
    /*[class*='grid__col--'] {
        padding: {
            right: $gutter / 2;
            left: $gutter / 2;
        }
    }*/
}

.grid .content {
    float: left;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    /*&.padded {
        padding: $gridContentPadding;
    }*/
    /*border: 1px dashed rgba(130,130,130,0.3);  for testing */
}

.grid--equal-height .content, .content--equal-height {
    height: 100%;
}

.grid {
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    display: -ms-flexbox;
    display: flex;
    flex: 0 1 auto;
    flex-flow: row wrap;
    max-width: 1120px;
}

    .grid.grid--full-width {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

        .grid.grid--full-width .grid-inner--max-width {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
        }

.grid__col--1 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--1 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--2 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--2 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--3 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--3 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--4 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--4 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--5 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--5 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--6 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--6 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--7 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--7 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--8 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--8 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--9 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--9 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--10 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--10 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--11 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--11 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--12 {
    width: 100%;
}

@media only screen and (max-width: 568px) {
    .grid__col--12 {
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }
}

.grid__col--offset-1 {
    margin-left: 0;
}

.grid__col--offset-2 {
    margin-left: 0;
}

.grid__col--offset-3 {
    margin-left: 0;
}

.grid__col--offset-4 {
    margin-left: 0;
}

.grid__col--offset-5 {
    margin-left: 0;
}

.grid__col--offset-6 {
    margin-left: 0;
}

.grid__col--offset-7 {
    margin-left: 0;
}

.grid__col--offset-8 {
    margin-left: 0;
}

.grid__col--offset-9 {
    margin-left: 0;
}

.grid__col--offset-10 {
    margin-left: 0;
}

.grid__col--offset-11 {
    margin-left: 0;
}

.grid__col--offset-12 {
    margin-left: 0;
}

@media only screen and (min-width: 569px) {
    .grid {
        width: 100%;
        max-width: 1120px;
    }

        .grid.grid--full-width {
            max-width: 100%;
        }

    .grid__col--1 {
        width: 8.33333%;
    }

    .grid__col--2 {
        width: 16.66667%;
    }

    .grid__col--3 {
        width: 25%;
    }

    .grid__col--4 {
        width: 33.33333%;
    }

    .grid__col--5 {
        width: 41.66667%;
    }

    .grid__col--6 {
        width: 50%;
    }

    .grid__col--7 {
        width: 58.33333%;
    }

    .grid__col--8 {
        width: 66.66667%;
    }

    .grid__col--9 {
        width: 75%;
    }

    .grid__col--10 {
        width: 83.33333%;
    }

    .grid__col--11 {
        width: 91.66667%;
    }

    .grid__col--12 {
        width: 100%;
    }
}

@media only screen and (min-width: 819px) {
    .grid__col--offset-1 {
        margin-left: 8.33333%;
    }

    .grid__col--offset-2 {
        margin-left: 16.66667%;
    }

    .grid__col--offset-3 {
        margin-left: 25%;
    }

    .grid__col--offset-4 {
        margin-left: 33.33333%;
    }

    .grid__col--offset-5 {
        margin-left: 41.66667%;
    }

    .grid__col--offset-6 {
        margin-left: 50%;
    }

    .grid__col--offset-7 {
        margin-left: 58.33333%;
    }

    .grid__col--offset-8 {
        margin-left: 66.66667%;
    }

    .grid__col--offset-9 {
        margin-left: 75%;
    }

    .grid__col--offset-10 {
        margin-left: 83.33333%;
    }

    .grid__col--offset-11 {
        margin-left: 91.66667%;
    }

    .grid__col--offset-12 {
        margin-left: 100%;
    }
}

@media only screen and (min-width: 1029px) {
    .grid {
        width: 100%;
        max-width: 1120px;
    }

        .grid.grid--full-width {
            max-width: 100%;
        }
}

@media only screen and (max-width: 1268px) {
    .grid__col--1-x {
        width: 8.33333%;
    }

    .grid__col--2-x {
        width: 16.66667%;
    }

    .grid__col--3-x {
        width: 25%;
    }

    .grid__col--4-x {
        width: 33.33333%;
    }

    .grid__col--5-x {
        width: 41.66667%;
    }

    .grid__col--6-x {
        width: 50%;
    }

    .grid__col--7-x {
        width: 58.33333%;
    }

    .grid__col--8-x {
        width: 66.66667%;
    }

    .grid__col--9-x {
        width: 75%;
    }

    .grid__col--10-x {
        width: 83.33333%;
    }

    .grid__col--11-x {
        width: 91.66667%;
    }

    .grid__col--12-x {
        width: 100%;
    }

    .hidden--x {
        display: none;
    }
}

@media only screen and (max-width: 1027px) {
    .grid__col--1-l {
        width: 8.33333%;
    }

    .grid__col--2-l {
        width: 16.66667%;
    }

    .grid__col--3-l {
        width: 25%;
    }

    .grid__col--4-l {
        width: 33.33333%;
    }

    .grid__col--5-l {
        width: 41.66667%;
    }

    .grid__col--6-l {
        width: 50%;
    }

    .grid__col--7-l {
        width: 58.33333%;
    }

    .grid__col--8-l {
        width: 66.66667%;
    }

    .grid__col--9-l {
        width: 75%;
    }

    .grid__col--10-l {
        width: 83.33333%;
    }

    .grid__col--11-l {
        width: 91.66667%;
    }

    .grid__col--12-l {
        width: 100%;
    }

    .hidden--l {
        display: none;
    }
}

@media only screen and (max-width: 817px) {
    .grid__col--1-m {
        width: 8.33333%;
    }

    .grid__col--2-m {
        width: 16.66667%;
    }

    .grid__col--3-m {
        width: 25%;
    }

    .grid__col--4-m {
        width: 33.33333%;
    }

    .grid__col--5-m {
        width: 41.66667%;
    }

    .grid__col--6-m {
        width: 50%;
    }

    .grid__col--7-m {
        width: 58.33333%;
    }

    .grid__col--8-m {
        width: 66.66667%;
    }

    .grid__col--9-m {
        width: 75%;
    }

    .grid__col--10-m {
        width: 83.33333%;
    }

    .grid__col--11-m {
        width: 91.66667%;
    }

    .grid__col--12-m {
        width: 100%;
    }

    .hidden--m {
        display: none;
    }
}

@media only screen and (max-width: 567px) {
    .grid__col--1-s {
        width: 8.33333%;
    }

    .grid__col--2-s {
        width: 16.66667%;
    }

    .grid__col--3-s {
        width: 25%;
    }

    .grid__col--4-s {
        width: 33.33333%;
    }

    .grid__col--5-s {
        width: 41.66667%;
    }

    .grid__col--6-s {
        width: 50%;
    }

    .grid__col--7-s {
        width: 58.33333%;
    }

    .grid__col--8-s {
        width: 66.66667%;
    }

    .grid__col--9-s {
        width: 75%;
    }

    .grid__col--10-s {
        width: 83.33333%;
    }

    .grid__col--11-s {
        width: 91.66667%;
    }

    .grid__col--12-s {
        width: 100%;
    }

    .hidden--s {
        display: none;
    }
}

/*=============================
 + GENERIC
=============================*/
/*! https://github.com/nathansmith/960-Grid-System/blob/master/code/css/reset.css */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    /*
	Override the default (display: inline) for
	browsers that do not recognize HTML5 tags.

	IE8 (and lower) requires a shiv:
	http://ejohn.org/blog/html5-shiv
*/
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

b,
strong {
    /*
	Makes browsers agree.
	IE + Opera = font-weight: bold.
	Gecko + WebKit = font-weight: bolder.
*/
    font-weight: bold;
}

img {
    color: transparent;
    font-size: 0;
    vertical-align: middle;
    /*
	For IE.
	http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
    -ms-interpolation-mode: bicubic;
}

ol,
ul {
    list-style: none;
}

li {
    /*
	For IE6 + IE7:

	"display: list-item" keeps bullets from
	disappearing if hasLayout is triggered.
*/
    display: list-item;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th,
td,
caption {
    font-weight: normal;
    vertical-align: top;
    text-align: left;
}

q {
    quotes: none;
}

    q:before,
    q:after {
        content: '';
        content: none;
    }

sub,
sup,
small {
    font-size: 75%;
}

sub,
sup {
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

svg {
    /*
	For IE9. Without, occasionally draws shapes
	outside the boundaries of <svg> rectangle.
*/
    overflow: hidden;
}

/*! Yoyo reset */
a {
    /*
	Remove underline from links.
*/
    text-decoration: none;
}

input,
textarea,
select {
    /*
	Inputs should inherit font at full size.
*/
    font-family: inherit;
    font-size: 100%;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    /*-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;*/
    background-color: #1a1a1a;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

@media only screen and (max-width: 818px) {
    body {
        margin-top: 0;
    }
}

body.noverflow {
    overflow: hidden;
}

body.mob-open {
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
    outline: none;
}

img {
    display: block;
}

/*section, section.grid {
    margin-bottom: $sectionMarginBottom;
}*/
/*.block {
    float: left;
    display: inline-block;
    margin: 0;
    padding: $gutter;

    .block__contents {
        padding: $gutterInner;
    }
}*/
.three-col-css {
    -moz-column-count: 3;
    -ms-column-count: 3;
    -o-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    -moz-column-fill: auto;
    -ms-column-fill: auto;
    -o-column-fill: auto;
    -webkit-column-fill: auto;
    column-fill: auto;
}

.two-col-css {
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-fill: auto;
    -ms-column-fill: auto;
    -o-column-fill: auto;
    -webkit-column-fill: auto;
    column-fill: auto;
}

@media (max-width: 568px) {
    .two-col-css {
        -moz-column-count: 1;
        -ms-column-count: 1;
        -o-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
        -moz-column-fill: auto;
        -ms-column-fill: auto;
        -o-column-fill: auto;
        -webkit-column-fill: auto;
        column-fill: auto;
    }
}

.breadcrumbs a {
    display: inline-block;
    font-size: 12px;
    font-size: 1.2rem;
    color: white;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    opacity: 0.5;
}

    .breadcrumbs a:hover {
        opacity: 0.75;
        color: white;
    }

    .breadcrumbs a::after {
        content: '/';
        margin: 0 8px 0 10px;
    }

    .breadcrumbs a:last-of-type::after {
        content: '';
    }

.drop-shadow--short {
    box-shadow: 0 35px 55px -40px rgba(0, 0, 0, 0.9), 0 15px 80px 10px rgba(0, 0, 0, 0.1);
}

.drop-shadow--long {
    box-shadow: 40px 65px 55px -20px rgba(0, 0, 0, 0.3), 20px 65px 80px 10px rgba(0, 0, 0, 0.3);
}

::-moz-selection {
    background: #bca26b;
    color: #62512c;
}

::selection {
    background: #bca26b;
    color: #62512c;
}

.js [aos="fade"] {
    opacity: 0;
    transition-property: opacity;
}

    .js [aos="fade"].aos-animate {
        opacity: 1;
    }

/*=============================
 + ELEMENTS
=============================*/
h1, h2, h3, h4, h5, h6 {
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

h1 {
    font-size: 35px;
    font-size: 3.5rem;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-style: none;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 25px;
}

@media only screen and (max-width: 568px) {
    h1 {
        font-size: 23.33333px;
    }
}

.page-hero h1 {
    font-size: 100px;
    font-size: 10rem;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-style: none;
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 0;
}

@media only screen and (max-width: 568px) {
    .page-hero h1 {
        font-size: 50px;
    }
}

h2 {
    font-size: 30px;
    font-size: 3rem;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-style: none;
    line-height: 1.3;
    color: white;
    margin-bottom: 30px;
    /*@include mq-max($bp-small) {
        font-size: $h2FontSize/1.25;
    }*/
}

h3 {
    font-size: 18px;
    font-size: 1.8rem;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-style: none;
    line-height: 1.2;
    color: white;
    margin-bottom: 18px;
    /*@include mq-max($bp-small) {
        font-size: $h3FontSize/1.25;
    }*/
}

h4 {
    font-size: 16px;
    font-size: 1.6rem;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-style: none;
    line-height: 1.25;
    text-transform: none;
    letter-spacing: 0;
    color: white;
    margin-bottom: 16px;
}

@media only screen and (max-width: 568px) {
    h4 {
        font-size: 14.54545px;
    }
}

h5 {
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: subpixel-antialiased;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: #b4975a;
    margin-bottom: 0;
}

    h5 em {
        font-weight: 400i;
        font-style: italic;
    }

    h5 strong {
        font-weight: 700;
    }

    h5.lead {
        font-size: 14px;
        font-size: 1.4rem;
        font-family: Arial, sans-serif;
        font-weight: 700;
        line-height: 1.5;
        text-transform: none;
        letter-spacing: 0;
    }

    h5.serif {
        font-family: minion-pro, serif;
    }

    h5.italic {
        font-style: italic;
    }

h6 {
    font-size: 11px;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-style: none;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 11px;
    color: white;
}

p {
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: subpixel-antialiased;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: white;
    margin-bottom: 1em;
}

    p em {
        font-weight: 400i;
        font-style: italic;
    }

    p strong {
        font-weight: 700;
    }

    p.lead {
        font-size: 14px;
        font-size: 1.4rem;
        font-family: Arial, sans-serif;
        font-weight: 700;
        line-height: 1.5;
        text-transform: none;
        letter-spacing: 0;
    }

    p.serif {
        font-family: minion-pro, serif;
    }

    p.italic {
        font-style: italic;
    }

hr {
    width: 100%;
    margin: 10px 0;
    border-top: 1px solid white;
}

aside {
    padding: calc(20px * 1.5);
    background-color: #010101;
}

.block .block__contents aside {
    padding: calc(20px * 2);
    background-color: #010101;
}

.text-right {
    text-align: right;
}

a {
    cursor: pointer;
    font-weight: 100;
    font-size: inherit;
    -moz-transition: color, 0.3s, ease;
    -ms-transition: color, 0.3s, ease;
    -o-transition: color, 0.3s, ease;
    -webkit-transition: color, 0.3s, ease;
    transition: color, 0.3s, ease;
    color: inherit;
}

    a:hover {
        color: #ddd;
    }

/*=============================
 + LISTS
=============================*/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

    ul li {
        font-size: 1.3rem;
    }

        ul li a {
            font-style: normal;
        }

ol {
    list-style-type: decimal;
    list-style-position: inside;
}

    ul ul, ol ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    ol ol, ul ol {
        list-style-type: lower-latin;
        list-style-position: inside;
        margin-left: 15px;
        margin-left: 1.5rem;
    }

ul.bullets {
    list-style: disc;
    font-size: inherit;
    color: inherit;
}

    ul.bullets li {
        margin-bottom: 4px;
    }

    ul.bullets.bullets-sans {
        font-family: Arial, sans-serif;
        font-weight: 300;
    }

.three-col-css ul, .two-col-css ul {
    list-style-position: inside;
}

/*=============================
 + TABLES
=============================*/
table {
    width: 100%;
    margin: 30px 0 0;
    color: #eee;
    font-size: 14px;
    font-size: 1.4rem;
    border: none;
}

    table thead {
        border-top: 1px solid white;
        border-bottom: 1px solid white;
        font-family: minion-pro, serif;
        font-style: italic;
    }

        table thead th {
            padding: 7px;
            vertical-align: middle;
            text-align: center;
        }

        table thead img {
            max-width: 25px;
            max-height: 25px;
        }

    table tbody tr:first-of-type td {
        padding-top: 10px;
    }

    table tbody td {
        padding: 5px;
        vertical-align: middle;
        text-align: center;
        font-family: Arial, sans-serif;
    }

    table tbody img {
        max-width: 25px;
        max-height: 25px;
    }

    table.fixed {
        table-layout: fixed;
    }

    table.table--topless thead {
        border-top: none;
    }

.btn, button {
    cursor: pointer;
    display: inline-block;
    font-family: minion-pro, serif;
    line-height: 0;
    color: white;
    border: 1px solid #fff;
    -webkit-appearance: none;
    padding: 15px 30px;
    text-transform: uppercase;
    white-space: nowrap;
}

    .btn:hover, button:hover {
        color: #b4975a;
        background-color: #fff;
    }

    .btn--block, button.btn--block {
        display: block;
        max-width: 440px;
        font-size: 18px;
        font-size: 1.8rem;
        padding: 24px;
        text-align: center;
        margin: 12px 0;
    }

@media only screen and (max-width: 819px) {
    .btn--block, button.btn--block {
        max-width: 320px;
        font-size: 14px;
        font-size: 1.4rem;
        padding: 18px;
    }
}

.btn--badge, button.btn--badge {
    font-size: 10px;
    font-size: 1rem;
    padding: 4px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.btn--s, button.btn--s {
    padding: 10px 15px;
    display: inline-block;
}

.btn--m, button.btn--m {
    padding: 15px 30px;
    display: inline-block;
}

.btn--l, button.btn--l {
    padding: 15px 30px;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
}

.btn--cart, button.btn--cart {
    padding: 10px 30px 10px 30px;
    display: inline-block;
    position: relative;
}

    .btn--cart:after, button.btn--cart:after {
        content: '';
        width: 0;
        height: 100%;
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
        -moz-transition: width 0.3s ease;
        -ms-transition: width 0.3s ease;
        -o-transition: width 0.3s ease;
        -webkit-transition: width 0.3s ease;
        transition: width 0.3s ease;
        background-image: url("../img/svg/basket.svg");
        background-size: 15px;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .btn--cart:hover, button.btn--cart:hover {
        padding: 10px 45px 10px 15px;
    }

        .btn--cart:hover:after, button.btn--cart:hover:after {
            right: 0;
            width: 30px;
            background-color: #8c8c8c;
        }

@media only screen and (max-width: 568px) {
    .btn--s, button.btn--s, .btn--m, button.btn--m, .btn--l, button.btn--l, .btn--cart, button.btn--cart {
        text-align: center;
        display: block;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

/*=============================
 + OBJECTS
=============================*/
.wrap-me {
    width: 100%;
    -moz-transition: margin 0.5s 0.3s ease;
    -ms-transition: margin 0.5s 0.3s ease;
    -o-transition: margin 0.5s 0.3s ease;
    -webkit-transition: margin 0.5s 0.3s ease;
    transition: margin 0.5s 0.3s ease;
}

    .wrap-me.mob-open {
        -moz-transition: margin 0.5s 0s ease;
        -ms-transition: margin 0.5s 0s ease;
        -o-transition: margin 0.5s 0s ease;
        -webkit-transition: margin 0.5s 0s ease;
        transition: margin 0.5s 0s ease;
        margin-left: 250px;
        margin-right: -250px;
    }

.body-wrap {
    /*margin-top: -115px;*/
    max-width: 100vw;
}

    .body-wrap .content-wrap {
        -moz-transition: transform 0.3s ease;
        -ms-transition: transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        -webkit-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
    }

/*.mob-open .body-wrap {
    overflow-x: hidden;
    .content-wrap {
        box-shadow: -15px 0 25px rgba(0,0,0,0.2);
        @include prefix(transform, translateX(320px));
        @include transition(transform 0.3s ease);
    }
}*/
.bg-wrapper--full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
}

    .bg-wrapper--full > img {
        display: none;
    }

.image-bg, .js-background {
    background-size: cover;
    background-position: center center;
}

    .image-bg > img, .js-background > img {
        display: none;
    }

.page-hero-wrapper {
    width: 100%;
    height: calc(100vh - 115px);
}

    .page-hero-wrapper.page-hero-wrapper--half-height {
        height: calc(60vh - 115px);
    }

.map-wrapper {
    width: 100%;
    height: 80vh;
    display: block;
}

.modal-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99998;
    background-color: rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 569px) {
    .modal-wrapper {
        background-color: #262626;
    }
}

.modal-wrapper.hidden {
    display: none;
}

.modal-wrapper.save-changes {
    display: table;
    height: 100%;
    width: 100%;
    background-color: rgba(26, 188, 156, 0.85);
}

    .modal-wrapper.save-changes div {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

        .modal-wrapper.save-changes div p {
            margin: 0;
        }

.modal-wrapper .modal-back {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.modal-wrapper .modal-container {
    width: 410px;
    position: relative;
    padding: 50px;
    margin: 100px auto;
    background-color: #262626;
    z-index: 100000;
}

@media only screen and (max-width: 569px) {
    .modal-wrapper .modal-container {
        width: 100%;
        max-width: unset;
        padding: 60px 25px 25px 25px;
        margin: 0;
    }
}

.modal-wrapper .modal-container td {
    padding: 5px 0;
    vertical-align: top;
    text-align: left;
}

    .modal-wrapper .modal-container td:first-child {
        width: 80% !important;
    }

    .modal-wrapper .modal-container td:last-child {
        width: 20% !important;
    }

@media only screen and (max-width: 569px) {
    .modal-wrapper .modal-container td:last-child {
        text-align: right;
        padding-right: 5px;
    }
}

.modal-wrapper .modal-container.update {
    top: calc(50% - 250px);
}

.modal-wrapper .modal-container.complete p {
    margin: 0;
}

.modal-wrapper .modal-container .modal-close {
    position: absolute;
    height: 15px;
    width: 15px;
    top: 20px;
    right: 20px;
    font-family: minion-pro, serif;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    line-height: 13px;
    display: block;
    text-transform: uppercase;
}

.modal-wrapper .modal-container h3 {
    text-transform: uppercase;
}

.modal-wrapper .modal-container.complete {
    top: calc(50% - 87px);
    text-align: center;
}

.modal-wrapper .modal-container form {
    overflow: hidden;
    padding-bottom: 40px;
}

    .modal-wrapper .modal-container form .modal-input {
        float: left;
        height: 38px;
        width: 100%;
        margin-bottom: 7px;
    }

        .modal-wrapper .modal-container form .modal-input label {
            float: left;
            height: 100%;
            color: white;
            font-family: minion-pro, serif;
            font-size: 15px;
            line-height: 38px;
        }

        .modal-wrapper .modal-container form .modal-input input, .modal-wrapper .modal-container form .modal-input select {
            float: right;
            height: 100%;
            width: 200px;
            border: none;
            border-radius: 0;
            background: #595959;
            outline: none;
            color: white;
            font-family: minion-pro, serif;
            font-size: 15px;
            line-height: 38px;
            padding: 10px;
        }

            .modal-wrapper .modal-container form .modal-input input.input-validation-error, .modal-wrapper .modal-container form .modal-input select.input-validation-error {
                border: 1px solid red;
            }

    .modal-wrapper .modal-container form .modal-select {
        float: left;
        width: 100%;
    }

    .modal-wrapper .modal-container form .modal-textarea {
        float: left;
        width: 100%;
    }

        .modal-wrapper .modal-container form .modal-textarea label {
            float: left;
            height: 100%;
            color: white;
            font-family: minion-pro, serif;
            font-size: 15px;
            line-height: 38px;
            margin: 8px 0;
        }

        .modal-wrapper .modal-container form .modal-textarea textarea {
            float: left;
            height: 100px;
            width: 100%;
            border: none;
            border-radius: 0;
            background: #595959;
            outline: none;
            padding: 10px;
            color: white;
            font-family: minion-pro, serif;
            font-size: 15px;
            resize: none;
        }

    .modal-wrapper .modal-container form .modal-submit {
        float: left;
        cursor: pointer;
        font-family: minion-pro, serif;
        font-size: 18px;
        width: 100%;
        margin-top: 7px;
        background-color: #b4975a;
        text-transform: uppercase;
        text-align: center;
        color: #FFFFFF;
        padding: 8px 0 7px 0;
        border: none;
        outline: none;
    }

    .modal-wrapper .modal-container form .styled-select {
        width: 100%;
        height: 38px;
        margin-bottom: 8px;
        overflow: hidden;
    }

        .modal-wrapper .modal-container form .styled-select select {
            line-height: 38px;
            width: 100% !important;
            height: 38px;
            color: white;
            font-size: 15px;
            font-family: minion-pro, serif;
            line-height: 38px;
            text-indent: 5px;
            border: none;
            border-radius: 0;
            background: #595959;
            cursor: pointer;
        }

            .modal-wrapper .modal-container form .styled-select select option {
                background-color: #777;
                border: none;
                font-size: 14px;
                height: 30px;
                line-height: 30px;
                text-indent: 10px;
                cursor: pointer;
            }

img.responsive-image {
    width: 100%;
    height: auto !important;
}

.video-container {
    position: absolute;
}

.video-container {
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

video {
    top: 50%;
    left: 50%;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

    video.fillWidth {
        width: 100%;
    }

@media print {
    .no-print, .no-print * {
        display: none !important;
    }
}

.fullscreen-bg {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    z-index: -100;
}

    .fullscreen-bg .fullscreen-bg__video {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: auto;
        z-index: -1;
    }

    .fullscreen-bg .fullscreen-bg__text {
        position: absolute;
        top: 10%;
        left: 0;
        z-index: 1;
    }

        .fullscreen-bg .fullscreen-bg__text p, .fullscreen-bg .fullscreen-bg__text h1, .fullscreen-bg .fullscreen-bg__text h2, .fullscreen-bg .fullscreen-bg__text h3, .fullscreen-bg .fullscreen-bg__text h4, .fullscreen-bg .fullscreen-bg__text h5, .fullscreen-bg .fullscreen-bg__text h6 {
            color: white;
        }

/*=============================
 + COMPONENTS
=============================*/
/*=============================
 + slideshow SLIDER
=============================*/
.slideshow {
    position: relative;
    width: 100%;
    z-index: 100;
    overflow: hidden;
    min-height: 300px;
    height: 60vh;
    background-color: transparent;
}

@media only screen and (max-width: 1029px) {
    .slideshow {
        height: 50vh;
    }
}

@media only screen and (max-width: 819px) {
    .slideshow {
        height: 40vh;
    }
}

@media only screen and (max-width: 569px) {
    .slideshow {
        height: 30vh;
    }
}

.slideshow .header-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 31.25%;
}

    .slideshow .header-video iframe {
        position: absolute;
        width: 100%;
        height: 100%;
    }

.slideshow.drop-shadow--long {
    margin-bottom: 60px;
}

.slideshow.slideshow--hero .flickity-viewport {
    height: 100% !important;
}

.slideshow .slideshow-share {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
}

.slideshow .flickity-viewport {
    position: absolute;
    width: 100%;
}

.slideshow .slideshow__item {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

    .slideshow .slideshow__item img {
        display: none;
    }

.flickity-prev-next-button {
    -moz-transition: opacity 0.45s ease;
    -ms-transition: opacity 0.45s ease;
    -o-transition: opacity 0.45s ease;
    -webkit-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
    -moz-transition: left 0.3s ease;
    -ms-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    background: transparent;
    width: 40px;
    height: 40px;
}

    .flickity-prev-next-button.next svg {
        -moz-transition: left 0.3s ease;
        -ms-transition: left 0.3s ease;
        -o-transition: left 0.3s ease;
        -webkit-transition: left 0.3s ease;
        transition: left 0.3s ease;
        top: 10%;
        left: -20%;
        width: 80%;
        height: 80%;
    }

@media only screen and (max-width: 819px) {
    .flickity-prev-next-button.next svg {
        left: auto;
        right: 0;
    }
}

.flickity-prev-next-button.next svg path {
    fill: white;
}

.flickity-prev-next-button.previous svg {
    -moz-transition: left 0.3s ease;
    -ms-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    top: 10%;
    left: 40%;
    width: 80%;
    height: 80%;
}

@media only screen and (max-width: 819px) {
    .flickity-prev-next-button.previous svg {
        left: 0;
    }
}

.flickity-prev-next-button.previous svg path {
    fill: white;
}

.flickity-prev-next-button:hover {
    background: transparent;
    text-shadow: none;
    box-shadow: none;
}

.flickity-prev-next-button:active {
    opacity: 1;
}

@media only screen and (max-width: 819px) {
    .flickity-prev-next-button {
        height: 50px;
        width: 50px;
        padding: 0;
    }

        .flickity-prev-next-button.previous {
            left: 0;
        }

        .flickity-prev-next-button.next {
            right: 0;
        }
}

.slideshow.slideshow--full-screen {
    background-color: #262626;
    width: 100%;
    display: none;
    position: fixed;
    height: auto;
    top: 0;
    left: -99999px;
    right: 0;
    bottom: 0;
    padding-bottom: 0;
    z-index: 99998;
    opacity: 0;
    -moz-transition: opacity 1.5s ease, left 1.5s ease;
    -ms-transition: opacity 1.5s ease, left 1.5s ease;
    -o-transition: opacity 1.5s ease, left 1.5s ease;
    -webkit-transition: opacity 1.5s ease, left 1.5s ease;
    transition: opacity 1.5s ease, left 1.5s ease;
}

    .slideshow.slideshow--full-screen.slideshow--full-screen-shown {
        display: block;
        opacity: 1;
        top: 0;
        left: 0;
        -moz-transition: opacity 1.5s ease, left 1.5s ease;
        -ms-transition: opacity 1.5s ease, left 1.5s ease;
        -o-transition: opacity 1.5s ease, left 1.5s ease;
        -webkit-transition: opacity 1.5s ease, left 1.5s ease;
        transition: opacity 1.5s ease, left 1.5s ease;
    }

    .slideshow.slideshow--full-screen .slideshow-share {
        display: block !important;
        z-index: 999;
    }

    .slideshow.slideshow--full-screen .slideshow__navigation {
        position: absolute;
        bottom: 0;
        left: 50%;
        z-index: 99999;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 3rem 2rem;
        transform: translateX(-50%);
        visibility: 0;
    }

        .slideshow.slideshow--full-screen .slideshow__navigation .prev-next {
            font-size: 0;
        }

            .slideshow.slideshow--full-screen .slideshow__navigation .prev-next a.previous, .slideshow.slideshow--full-screen .slideshow__navigation .prev-next a.next {
                display: inline-block;
                width: 40px;
                height: 25px;
                background-size: 15px 15px;
                background-repeat: no-repeat;
            }

            .slideshow.slideshow--full-screen .slideshow__navigation .prev-next a.previous {
                border-right: 1px solid #262626;
                background-image: url(/Content/img/svg/slideshow-nav-arrow-01.svg);
                background-position: left center;
            }

            .slideshow.slideshow--full-screen .slideshow__navigation .prev-next a.next {
                background-image: url(/Content/img/svg/slideshow-nav-arrow-02.svg);
                background-position: right center;
            }

            .slideshow.slideshow--full-screen .slideshow__navigation .prev-next .slide-count {
                font-size: 12px;
                font-family: minion-pro, serif;
                font-style: italic;
                color: #777;
                vertical-align: top;
                display: inline-block;
                padding-top: 5px;
                margin-left: 40px;
            }

                .slideshow.slideshow--full-screen .slideshow__navigation .prev-next .slide-count span {
                    padding: 0 5px;
                }

                    .slideshow.slideshow--full-screen .slideshow__navigation .prev-next .slide-count span:first-of-type {
                        color: #262626;
                    }

        .slideshow.slideshow--full-screen .slideshow__navigation .slideshow__links {
            text-align: right;
        }

        .slideshow.slideshow--full-screen .slideshow__navigation .nav-links .nav-links__link {
            padding-top: 3px;
            padding-bottom: 0;
        }

            .slideshow.slideshow--full-screen .slideshow__navigation .nav-links .nav-links__link:last-of-type {
                vertical-align: top;
            }

                .slideshow.slideshow--full-screen .slideshow__navigation .nav-links .nav-links__link:last-of-type a {
                    padding-top: 1px;
                    vertical-align: top;
                }

            .slideshow.slideshow--full-screen .slideshow__navigation .nav-links .nav-links__link a {
                color: #777;
            }

            .slideshow.slideshow--full-screen .slideshow__navigation .nav-links .nav-links__link.nav-links__link--active a {
                color: #262626;
            }

    .slideshow.slideshow--full-screen.slideshow--full-screen-shown .slideshow__navigation {
        opacity: 1;
    }

    .slideshow.slideshow--full-screen .slideshow__item {
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
    }

        .slideshow.slideshow--full-screen .slideshow__item.is-selected .slideshow-cell-contents {
            opacity: 0;
        }

        .slideshow.slideshow--full-screen .slideshow__item img {
            display: none;
        }

    .slideshow.slideshow--full-screen .slideshow-io {
        width: auto;
        padding-top: 3px;
    }

        .slideshow.slideshow--full-screen .slideshow-io a {
            display: block;
            width: 12px;
            height: 12px;
            background-image: url(../img/svg/icon-close.svg);
            background-repeat: no-repeat;
            background-size: contain;
        }

.center-section-title h1 {
    text-align: center;
    margin-bottom: 40px;
}

/*=============================
 + SEARCH FORM
=============================*/
.masthead, .masthead.grid--full-width {
    position: relative;
    background: #262626;
    z-index: 1000;
    width: 100%;
    height: auto;
    padding: 0;
    /*box-shadow: 0 10px 15px -2px rgba(38,38,38, 0.8);*/
}

.faded-masthead .masthead.grid--full-width {
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
}

.masthead.masthead--fixed, .masthead.grid--full-width.masthead--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.masthead a, .masthead.grid--full-width a {
    color: #eee;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

    .masthead a:hover, .masthead.grid--full-width a:hover {
        color: #b4975a;
    }

    .masthead a.myaccount-link, .masthead.grid--full-width a.myaccount-link {
        color: #b4975a;
    }

@media only screen and (min-width: 1029px) {
    .masthead [class*='grid__col--'], .masthead.grid--full-width [class*='grid__col--'] {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 1027px) {
    .masthead, .masthead.grid--full-width {
        padding-top: 0;
        padding-bottom: 0;
    }

        .masthead [class*='grid__col--'], .masthead.grid--full-width [class*='grid__col--'] {
            padding-top: 10px;
            padding-bottom: 10px;
        }
}

.logo__link img {
    width: 300px;
    padding: 20px;
}

@media only screen and (max-width: 1000px) {
    .logo__link img {
        width: 125px;
        padding: 20px;
    }
}


.masthead__login-status {
    position: absolute;
    top: 0;
    right: 0;
    color: #b4975a;
    padding: 20px 20px 0 20px;
    font-family: minion-pro, serif;
    font-size: 12px;
    z-index: 1;
}

    .masthead__login-status a {
        margin-left: 5px;
    }

@media only screen and (max-width: 569px) {
    .masthead__login-status {
        /* position: static; */
        margin: 0 auto;
        z-index: 1;
    }

    .clock_widget {
        float: none !important;
        margin: 0 !important;
    }

    .masthead__login-status > a + a {
        float: right;
    }
}

.masthead__nav-col {
    width: 74% !important;
    position: relative;
    order: 4;
    /*height: 150px;*/
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 60px;
    height: auto;
}


@media only screen and (max-width: 1200px) {
    .masthead__logo-col {
        width: 60% !important;
        flex: none !important;
    }
}

@media only screen and (max-width: 1200px) {
    .masthead__nav-col {
        /*  width: 35% !important; */
        flex: none !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 819px) {
    .masthead__nav-col {
        height: auto;
        min-height: 60px;
    }
}

.site-search .site-search__field {
    position: relative;
    display: inline-block;
    width: calc(100% - 50px);
    padding: 10px 2px 5px 10px;
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 0;
    border-radius: 20px;
    border: none;
    box-sizing: border-box;
    vertical-align: bottom;
}

@media only screen and (max-width: 1028px) {
    .site-search .site-search__field {
        padding: 5px 2px 3px 10px;
    }
}

.site-search .site-search__button {
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 34px;
    margin-left: 5px;
    z-index: 60;
    border: none;
    display: inline-block;
    font-size: 0;
    background-color: transparent;
    background-image: url(/Content/img/svg/icon-search.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px;
    padding: 0 0;
    -moz-transition: background-color 0.23s ease;
    -ms-transition: background-color 0.23s ease;
    -o-transition: background-color 0.23s ease;
    -webkit-transition: background-color 0.23s ease;
    transition: background-color 0.23s ease;
}

@media only screen and (max-width: 1028px) {
    .site-search .site-search__button {
        height: 24px;
    }
}

.site-search .site-search__button:hover {
    background-color: #b3b3b3;
}

/*=============================
 + MENU
=============================*/
nav {
    display: inline-block;
    text-align: left;
    padding: 0 20px;
    vertical-align: top;
}

@media only screen and (max-width: 1200px) {
    nav {
        display: none;
    }
}

.menu {
    padding-bottom: 20px;
}

    .menu > div {
        flex: 0 0 auto;
    }

    .menu .menu__list {
        position: relative;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -webkit-box-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        height: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

@media only screen and (max-width: 819px) {
    .menu .menu__list {
        height: auto;
    }
}

.menu .menu__list .menu__item {
    position: relative;
    display: block;
    height: 100%;
    padding: 0 25px;
}

@media only screen and (max-width: 819px) {
    .menu .menu__list .menu__item {
        height: 60px;
    }
}

.menu .menu__list .menu__item a.menu__link {
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #eee;
    font-family: minion-pro, serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: #b4975a;
}

    .menu .menu__list .menu__item a.menu__link:hover,
    .menu .menu__list .menu__item a.menu__link:focus {
        outline: none;
        border-bottom: solid 1px #b4975a;
        color: #b4975a;
    }

.menu .menu__list .menu__item .submenu__list {
    display: none;
    position: absolute;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    min-width: 180px;
    padding: 12px 20px;
    background-color: #262626;
    padding-top: 30px;
}

    .menu .menu__list .menu__item .submenu__list .submenu__item {
        padding: 6px 0;
        border-bottom: none;
    }

        .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link {
            display: block;
            -webkit-font-smoothing: subpixel-antialiased;
            font-smoothing: subpixel-antialiased;
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.5;
            font-family: minion-pro, serif;
            font-weight: 400;
            color: #fff;
            text-align: center;
            white-space: nowrap;
            text-transform: uppercase;
        }

            .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link em {
                font-weight: 400i;
                font-style: italic;
            }

            .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link strong {
                font-weight: 700;
            }

            .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link.lead {
                font-size: 14px;
                font-size: 1.4rem;
                font-family: Arial, sans-serif;
                font-weight: 700;
                line-height: 1.5;
                text-transform: none;
                letter-spacing: 0;
            }

            .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link.serif {
                font-family: minion-pro, serif;
            }

            .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link.italic {
                font-style: italic;
            }

            .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link:hover {
                color: #b4975a;
            }

        .menu .menu__list .menu__item .submenu__list .submenu__item:last-child {
            border-bottom: none;
        }

.menu .menu__list .menu__item .menu__dropdown {
    display: none;
}

    .menu .menu__list .menu__item .menu__dropdown.open .menu__icon-top {
        display: none;
    }

    .menu .menu__list .menu__item .menu__dropdown.open .menu__icon-bottom {
        display: none;
    }

    .menu .menu__list .menu__item .menu__dropdown .menu__icon-top {
        width: 2px;
        height: 8px;
        display: block;
        background-color: white;
        position: absolute;
        top: 20px;
        right: 28px;
    }

    .menu .menu__list .menu__item .menu__dropdown .menu__icon-middle {
        width: 18px;
        height: 2px;
        display: block;
        background-color: white;
        position: absolute;
        top: 28px;
        right: 20px;
    }

    .menu .menu__list .menu__item .menu__dropdown .menu__icon-bottom {
        width: 2px;
        height: 8px;
        display: block;
        background-color: white;
        position: absolute;
        top: 30px;
        right: 28px;
    }

.menu .menu__list .menu__item:hover .submenu__list {
    display: block;
}

.menu .menu__list .menu__item.menu__item--current {
}

    .menu .menu__list .menu__item.menu__item--current .menu__link {
        color: #b4975a;
        border-bottom: solid 1px #b4975a;
    }


.mob-open .menu {
    display: block;
    padding: 0;
}

    .mob-open .menu .menu__list {
        position: relative;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
        list-style: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: #262626;
    }

@media only screen and (max-width: 568px) {
    .mob-open .menu .menu__list {
        width: 250px;
    }
}

.mob-open .menu .menu__list .menu__item {
    display: block;
    height: auto;
    min-height: 60px;
    line-height: 60px;
    padding: 0;
    flex-basis: 100%;
    border-top: 1px solid #404040;
    background: #262626;
}

    .mob-open .menu .menu__list .menu__item:first-child {
        border-top: none;
    }

    .mob-open .menu .menu__list .menu__item .menu__dropdown {
        position: absolute;
        display: block;
        top: -1px;
        right: -20px;
        height: 62px;
        width: 60px;
        cursor: pointer;
    }

        .mob-open .menu .menu__list .menu__item .menu__dropdown .open {
            display: none;
        }

    .mob-open .menu .menu__list .menu__item .submenu__list {
        position: static;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
        padding: 6px 0 30px 0;
        background-color: transparent;
    }

        .mob-open .menu .menu__list .menu__item .submenu__list.open {
            display: block !important;
        }

        .mob-open .menu .menu__list .menu__item .submenu__list .submenu__item {
            border-bottom: 0;
        }

            .mob-open .menu .menu__list .menu__item .submenu__list .submenu__item .submenu__link {
                color: rgba(255, 255, 255, 0.5);
            }

    .mob-open .menu .menu__list .menu__item:hover .submenu__list {
        display: none;
    }

    .mob-open .menu .menu__list .menu__item.menu__item--current .menu__link {
        color: #b4975a;
        border-bottom: solid 1px #b4975a;
    }

        .mob-open .menu .menu__list .menu__item.menu__item--current .menu__link:hover {
            color: #b4975a;
        }

.menu--line .menu__item {
    margin: 0;
    padding: 0 10px;
}

    .menu--line .menu__item a.menu__link {
        width: auto;
        height: 2.5em;
        text-align: center;
        color: #b5b5b5;
        -webkit-transition: color 0.3s;
        transition: color 0.3s;
    }

        .menu--line .menu__item a.menu__link:hover {
            color: #929292;
        }

        .menu--line .menu__item a.menu__link:focus {
            color: #929292;
        }

    .menu--line .menu__item.menu__item--current .menu__link {
        color: #eee;
        -webkit-transition: color 0.5s;
        transition: color 0.5s;
    }

.menu--line .menu__line {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    height: 2px;
    pointer-events: none;
    border: 1px solid #262626;
    border-width: 0 10px;
    background: #eee;
    -webkit-transition: -webkit-transform 0.5s, width 0.5s 0.1s;
    transition: transform 0.5s, width 0.5s;
    -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1);
    -webkit-transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
    transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
}

@media only screen and (max-width: 819px) {
    .menu--line .menu__line {
        display: none;
    }
}

@media screen and (max-width: 55em) {
    .menu--line .menu__line {
        top: 3em;
    }

    .menu--line .menu__item:nth-child(1).menu__item--current ~ .menu__line {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .menu--line .menu__item:nth-child(2).menu__item--current ~ .menu__line {
        -webkit-transform: translate3d(0, 3em, 0);
        transform: translate3d(0, 3em, 0);
    }

    .menu--line .menu__item:nth-child(3).menu__item--current ~ .menu__line {
        -webkit-transform: translate3d(0, 6em, 0);
        transform: translate3d(0, 6em, 0);
    }

    .menu--line .menu__item:nth-child(4).menu__item--current ~ .menu__line {
        -webkit-transform: translate3d(0, 9em, 0);
        transform: translate3d(0, 9em, 0);
    }

    .menu--line .menu__item:nth-child(5).menu__item--current ~ .menu__line {
        -webkit-transform: translate3d(0, 12em, 0);
        transform: translate3d(0, 12em, 0);
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .hamburger {
        display: block;
        position: absolute;
        z-index: 900;
        bottom: 8px;
        right: 0;
        left: 0;
        height: 60px;
        width: 60px;
        border: none;
        position: initial;
    }

        .hamburger .hamburger__icon {
            position: relative;
            top: 23px;
            display: block;
        }

            .hamburger .hamburger__icon .hamburger__line {
                display: block;
                width: 20px;
                height: 2px;
                background-color: white;
                margin: 0 0 4px 20px;
            }
}

.hamburger.mob-open .hamburger__icon .hamburger__line:first-child {
    transform: rotate(45deg);
    position: absolute;
    width: 18px;
    height: 2px;
    top: 6px;
    left: 4px;
}

.hamburger.mob-open .hamburger__icon .hamburger__line:nth-child(2) {
    display: none;
}

.hamburger.mob-open .hamburger__icon .hamburger__line:last-child {
    transform: rotate(135deg);
    position: absolute;
    width: 18px;
    height: 2px;
    top: 6px;
    left: 4px;
}

@media only screen and (max-width: 850px) {
    footer .footer-links a,
    footer .footer-main {
        display: block;
    }

    footer .footer-main {
        padding-bottom: 1em;
    }
}

footer {
    width: 100%;
    padding: 0;
    background-color: #262626;
}

    footer .footer-links a,
    footer .footer-main {
        margin-right: 1em;
        font-weight: bold;
    }

    footer a:hover {
        color: #8d8d8d;
    }

@media only screen and (min-width: 819px) {
    footer .grid-inner--max-width {
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
    }
}

footer .grid-inner--max-width > div {
    padding-top: 10px;
    padding-bottom: 10px;
}

footer .footer__main {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: #595959;
    padding: 50px 0 30px 0;
    background-color: black;
}

footer .footer__baseline {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: #404040;
    background-color: black;
}

footer ul {
    margin-bottom: 20px;
}

    footer ul li, footer ul a {
        color: white;
        font-size: 16px;
    }

footer a.madebyredspa {
    display: inline-block;
    width: 80px;
    height: 20px;
    font-size: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

    footer a.madebyredspa.madebyredspa--white {
        background-image: url(../img/svg/MadeByRedspa--WHITE.svg);
    }

    footer a.madebyredspa.madebyredspa--red {
        background-image: url(../img/svg/MadeByRedspa--WHITE.svg);
    }

    footer a.madebyredspa.madebyredspa--black {
        background-image: url(../img/svg/MadeByRedspa--WHITE.svg);
    }

.modal {
    height: 80%;
    width: 320px;
    position: absolute;
    z-index: 99999;
    top: 100%;
    left: -9999px;
    padding: 60px 20px 80px 20px;
    background-color: #262626;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

    .modal div form label {
        width: 100%;
    }

    .modal div form input {
        height: 35px;
        width: 100%;
    }

.modal-open .modal {
    left: 50%;
    top: 10%;
}

.modal-trigger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

.modal__header {
    width: 100%;
    background-color: #b4975a;
    padding: 10px 10px;
    text-align: center;
    position: relative;
}

    .modal__header p {
        margin: 0;
        padding: 0;
        font-size: 20px;
        font-size: 2rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        line-height: 1;
    }

    .modal__header a {
        position: absolute;
        right: 15px;
        top: 10px;
    }

.modal-login-wrapper {
    -moz-transition: opacity 0.6s ease-out;
    -ms-transition: opacity 0.6s ease-out;
    -o-transition: opacity 0.6s ease-out;
    -webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
}

.modal-login-hidden .modal-login-wrapper {
    visibility: hidden;
}

.modal-login-open .modal-login-wrapper {
    visibility: visible;
    position: fixed;
    opacity: 1;
}

.modal-login {
    width: 600px;
    height: 75%;
    position: absolute;
    z-index: 99999;
    top: 10%;
    left: -9999px;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #eae8e8;
}

    .modal-login .input--login {
        background-color: inherit !important;
        height: 30px !important;
        width: 300px !important;
        font-size: initial !important;
        border: 1px solid gray !important;
        padding-left: 5px !important;
        margin-bottom: 15px !important;
        display: inline-block;
    }

.modal-login-open .modal-login {
    left: 50%;
}

.featherlight .featherlight-content {
    background-color: #262626;
}

.featherlight .featherlight-inner {
    width: 300px;
}

    .featherlight .featherlight-inner form label {
        float: left;
        clear: both;
        width: 100%;
    }

    .featherlight .featherlight-inner form input {
        float: left;
        clear: both;
        height: 37px;
        width: 100%;
    }

.featherlight .featherlight-close-icon {
    color: #ffffff;
    outline: none;
}

/*=============================
 + ERC CONTENT
=============================*/
hr {
    margin: 0;
    border-color: #585858;
}

.mobile-only {
    display: block;
}

@media screen and (min-width: 818px) {
    .mobile-only {
        display: none;
    }
}

.page-content {
    padding-bottom: 40px;
}

    .page-content.page-content--gold-bg {
        background-color: #bca26b;
    }

        .page-content.page-content--gold-bg.globe-bg {
            background-position: center center;
            background-size: 105%;
            background-repeat: no-repeat;
        }

    .page-content.page-content--darkgrey-bg {
        background-color: #262626;
    }

        .page-content.page-content--darkgrey-bg h1, .page-content.page-content--darkgrey-bg h2 {
            color: #ffffff;
        }

        .page-content.page-content--darkgrey-bg.globe-bg {
            background-position: center center;
            background-size: 105%;
            background-repeat: no-repeat;
            background-image: url(/Content/images/globe_darkgrey.svg);
        }

        .page-content.page-content--darkgrey-bg.compass-background h1,
        .page-content.page-content--darkgrey-bg.my-account h1 {
            color: #b4975a;
        }

        .page-content.page-content--darkgrey-bg.my-account h1 {
            text-transform: none;
        }

        .page-content.page-content--darkgrey-bg .my-account__password-form input {
            background-color: rgba(255, 255, 255, 0.12) !important;
        }

    .page-content.page-content--black-bg {
        background-color: black;
    }

    .page-content .page-content__list {
        margin-left: 1em;
        list-style: disc;
    }

        .page-content .page-content__list li {
            -webkit-font-smoothing: subpixel-antialiased;
            font-smoothing: subpixel-antialiased;
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.5;
            font-family: Arial, sans-serif;
            font-weight: 400;
            color: white;
            margin-bottom: 0.25em;
        }

            .page-content .page-content__list li em {
                font-weight: 400i;
                font-style: italic;
            }

            .page-content .page-content__list li strong {
                font-weight: 700;
            }

            .page-content .page-content__list li.lead {
                font-size: 14px;
                font-size: 1.4rem;
                font-family: Arial, sans-serif;
                font-weight: 700;
                line-height: 1.5;
                text-transform: none;
                letter-spacing: 0;
            }

            .page-content .page-content__list li.serif {
                font-family: minion-pro, serif;
            }

            .page-content .page-content__list li.italic {
                font-style: italic;
            }

.extra--top-padding {
    padding-top: 50px;
}

.extra--bottom-padding {
    padding-bottom: 50px;
}

.less--top-padding {
    padding-top: 15px;
}

.less--bottom-padding {
    padding-bottom: 15px;
}

.no--bottom-padding {
    padding-bottom: 0;
}

.content--align-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.content--uppercase-button {
    font-size: 12px;
    font-size: 1.2rem;
    color: white;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .content--uppercase-button:hover {
        color: #ddd;
    }

.breadcrumbs__grid-item {
    padding-top: 2px;
    padding-bottom: 15px;
}

@media only screen and (max-width: 819px) {
    .breadcrumbs__grid-item {
        display: none;
    }
}

.slider-three--slider {
    padding: 0 10px;
    margin-bottom: 20px;
}

    .slider-three--slider .slider-three--item {
        padding: 0 10px;
    }

        .slider-three--slider .slider-three--item a {
            display: block;
            float: left;
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 62%;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            overflow: hidden;
        }

            .slider-three--slider .slider-three--item a img {
                width: 100%;
                transition: all 0.35s linear;
            }

@media screen and (min-width: 818px) {
    .slider-three--slider .slider-three--item a img {
        width: auto;
    }
}

.slider-three--slider .slider-three--item a > div {
    position: absolute;
    bottom: -20%;
    width: 100%;
    height: 50%;
    padding: 10px 12px;
    background-color: rgba(0, 0, 0, 0.6);
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    -o-transition: 0.35s;
    -webkit-transition: 0.35s;
    transition: 0.35s;
}

.slider-three--slider .slider-three--item a:hover img {
    transform: scale(1.2);
}

.slider-three--slider .slider-three--item a:hover > div {
    bottom: -10%;
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-four--slider {
    padding: 0 10px;
    margin-bottom: 20px;
}

    .slider-four--slider .slider-four--item {
        padding: 0 10px;
    }

        .slider-four--slider .slider-four--item a {
            display: block;
            float: left;
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 125%;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            overflow: hidden;
        }

            .slider-four--slider .slider-four--item a > div {
                position: absolute;
                bottom: -25%;
                width: 100%;
                height: 50%;
                padding: 10px 12px;
                background-color: rgba(0, 0, 0, 0.6);
                -moz-transition: 0.35s;
                -ms-transition: 0.35s;
                -o-transition: 0.35s;
                -webkit-transition: 0.35s;
                transition: 0.35s;
            }

            .slider-four--slider .slider-four--item a:hover > div {
                bottom: -15%;
                background-color: rgba(0, 0, 0, 0.8);
            }

.my-world a > div {
    text-align: center;
    background-color: rgba(0, 0, 0, 0) !important;
    height: 100% !important;
    bottom: 0px !important;
}

@media screen and (max-width: 850px) {
    .my-world {
        height: 200px !important;
    }

        .my-world a > div {
            text-align: center;
            background-color: rgba(0, 0, 0, 0) !important;
            height: 100% !important;
            bottom: 0px !important;
        }

        .my-world .flickity-viewport .flickity-slider .home-grid-item:first-child {
            border-right: none !important;
        }

        .my-world .flickity-viewport .flickity-slider .home-grid-item:last-child {
            border-left: none !important;
        }
}

.my-world a > div .info-button {
    font-family: minion-pro, serif;
    border: solid 1px #b4975a;
    width: 25%;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    right: 40%;
    position: absolute;
    margin-top: 20px;
}

.my-world a > div h3 {
    padding: 6px 0;
    margin-bottom: 0;
    font-size: 28px;
    margin-top: 40px;
}

.my-world a:hover > div {
    background-color: rgba(0, 0, 0, 0) !important;
    bottom: 0px !important;
}

.flickity-page-dots {
    position: relative;
    bottom: 0;
    height: 12px;
    text-align: center;
    padding: 0 10px;
    margin-top: 35px;
}

    .flickity-page-dots .dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        margin: 0 8px;
        background-color: white;
        border-radius: 50%;
        cursor: pointer;
        opacity: 1;
    }

        .flickity-page-dots .dot:before {
            content: "";
            display: block;
            position: relative;
            top: 3px;
            left: 3px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        .flickity-page-dots .dot.is-selected:before {
            background-color: black;
        }

@media only screen and (max-width: 819px) {
    .flickity-page-dots {
        height: 8px;
    }

        .flickity-page-dots .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            margin: 0 5px;
        }

            .flickity-page-dots .dot:before {
                top: 2px;
                left: 2px;
                width: 4px;
                height: 4px;
            }
}

.list-three-col .list-three-col--item {
    display: block;
    float: left;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

    .list-three-col .list-three-col--item img {
        width: 100%;
        transition: all 0.35s linear;
    }

@media screen and (min-width: 818px) {
    .list-three-col .list-three-col--item img {
        width: auto;
    }
}

.list-three-col .list-three-col--item > div {
    position: absolute;
    bottom: -20%;
    width: 100%;
    height: 50%;
    padding: 10px 12px;
    background-color: rgba(0, 0, 0, 0.6);
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    -o-transition: 0.35s;
    -webkit-transition: 0.35s;
    transition: 0.35s;
}

.list-three-col .list-three-col--item:hover img {
    transform: scale(1.2);
}

.list-three-col .list-three-col--item:hover > div {
}

@media only screen and (min-width: 820px) {
    .list-three-col .list-three-col--item {
        width: 31.333%;
        margin: 1%;
        height: 0;
        padding-bottom: 19.5%;
    }
}

@media only screen and (max-width: 819px) {
    .list-three-col .list-three-col--item {
        width: 100%;
        height: 40vh;
        margin: 2% 0;
    }
}

@media only screen and (max-width: 569px) {
    .list-three-col .list-three-col--item {
        height: 30vh;
    }
}

.list-pagination {
    text-align: right;
    padding-bottom: 5px;
    margin: 0 1%;
}

    .list-pagination a {
        display: inline-block;
        font-size: 12px;
        font-size: 1.2rem;
        color: white;
        font-family: Arial, sans-serif;
        text-transform: uppercase;
    }

        .list-pagination a:hover {
            opacity: 0.8;
        }

        .list-pagination a::after {
            content: '/';
            margin: 0 8px 0 10px;
        }

        .list-pagination a:last-of-type::after {
            content: '';
            margin: 0;
        }

.tile-grid {
    position: relative;
    height: 130vh;
}

    .tile-grid .tile-grid--item {
        display: block;
        position: absolute;
        width: calc(50% - 4px);
        margin: 2px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        overflow: hidden;
    }

        .tile-grid .tile-grid--item img {
            width: 100%;
            transition: all 0.35s linear;
        }

@media screen and (min-width: 818px) {
    .tile-grid .tile-grid--item img {
        width: auto;
    }
}

.tile-grid .tile-grid--item:nth-child(1) {
    top: 0;
    left: 0;
    height: calc(50vh - 4px);
}

.tile-grid .tile-grid--item:nth-child(2) {
    top: 0;
    left: 50%;
    height: calc(36vh - 4px);
}

.tile-grid .tile-grid--item:nth-child(3) {
    top: 50vh;
    left: 0;
    height: calc(33vh - 4px);
}

.tile-grid .tile-grid--item:nth-child(4) {
    top: 36vh;
    left: 50%;
    height: calc(47vh - 4px);
}

.tile-grid .tile-grid--item:nth-child(5) {
    top: 83vh;
    left: 0;
    width: calc(100% - 4px);
    height: calc(47vh - 4px);
}

@media only screen and (min-width: 820px) {
    .tile-grid .tile-grid--item:nth-child(5) > div {
        padding-bottom: 4.5%;
    }
}

.tile-grid .tile-grid--item > div {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
    padding: 12px 12px 9% 12px;
    background-color: rgba(0, 0, 0, 0.6);
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    -o-transition: 0.35s;
    -webkit-transition: 0.35s;
    transition: 0.35s;
}

@media only screen and (max-width: 569px) {
    .tile-grid .tile-grid--item > div {
        bottom: -15px;
    }
}

.tile-grid .tile-grid--item > div h2 {
    font-size: 26px;
    max-width: 440px;
    margin: 0 auto;
}

@media only screen and (max-width: 1029px) {
    .tile-grid .tile-grid--item > div h2 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 569px) {
    .tile-grid .tile-grid--item > div h2 {
        font-size: 18px;
    }
}

.tile-grid .tile-grid--item:hover img {
    transform: scale(1.2);
}

.tile-grid .tile-grid--item:hover > div {
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 819px) {
    .tile-grid {
        height: auto;
    }

        .tile-grid .tile-grid--item {
            position: relative;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 36vh !important;
            min-height: 350px;
            margin: 0 0 4px 0;
        }
}

.button-col--right {
    padding-top: 74px;
}

    .button-col--right .btn--block {
        margin-left: auto;
        margin-right: 0;
    }

@media only screen and (max-width: 819px) {
    .button-col--right {
        padding-top: 78px;
    }
}

@media only screen and (max-width: 569px) {
    .button-col--right {
        padding-top: 0;
    }

        .button-col--right .btn--block {
            margin-right: auto;
        }
}

.button--in-content {
    margin-top: 40px;
}

    .button--in-content + p {
        margin-top: 40px;
    }

@media only screen and (max-width: 819px) {
    .button--in-content {
        margin-top: 30px;
    }

        .button--in-content + p {
            margin-top: 30px;
        }
}

.position-relative {
    position: relative;
}

    .position-relative .content--align-bottom {
        position: absolute;
        bottom: 50px;
        text-align: center;
        z-index: 100;
    }

@media only screen and (max-width: 819px) {
    .position-relative .content--align-bottom {
        bottom: 20px;
    }
}

.position-relative .content--align-bottom h1 {
    margin: 0 0 15px 0;
}

.position-relative .content--align-bottom h2 {
    margin-bottom: 15px;
}

@media only screen and (max-width: 819px) {
    .position-relative .content--align-bottom h2 {
        font-size: 23.33333px;
    }
}

/* CHECKBOXES */
.checkbox {
    position: relative;
    width: 20px;
    width: 100%;
    margin: 10px 0;
}

    .checkbox label.checkbox-label {
        position: absolute;
        top: 2px;
        left: 0;
        width: 13px;
        height: 13px;
        border: 2px solid #fff;
        border-radius: 50%;
        cursor: pointer;
    }

        .checkbox label.checkbox-label:after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 5px;
            height: 5px;
            background-color: white;
            border-radius: 50%;
            opacity: 0;
        }

    .checkbox input[type=checkbox] {
        position: absolute;
        top: 0;
        left: 0;
        visibility: hidden;
    }

        .checkbox input[type=checkbox]:checked + label:after {
            opacity: 1;
        }

    .checkbox div {
        font-size: 14px;
        color: white;
        line-height: 17px;
        padding-left: 22px;
    }

/* HOME */
.homepage {
    background-color: black;
}

    .homepage .masthead {
        background: rgba(0,0,0,0.5);
    }

        .homepage .masthead .masthead__nav-col {
            background: none;
        }

            .homepage .masthead .masthead__nav-col .menu__item .menu__link {
                color: white;
                -moz-transition: 0.3s;
                -ms-transition: 0.3s;
                -o-transition: 0.3s;
                -webkit-transition: 0.3s;
                transition: 0.3s;
            }

            .homepage .masthead .masthead__nav-col .menu__item.menu__item--current .menu__link {
                color: #b4975a;
                border-bottom: solid 1px #b4975a;
            }



            .homepage .masthead .masthead__nav-col .menu__item .menu__link:hover {
                color: #b4975a;
                opacity: 0.65;
                border-bottom: solid 1px #b4975a;
            }

            .homepage .masthead .masthead__nav-col .menu__item .submenu__list {
                padding-top: 30px;
                background-color: black;
            }

                .homepage .masthead .masthead__nav-col .menu__item .submenu__list .submenu__item {
                    border-bottom: none !important;
                }

                    .homepage .masthead .masthead__nav-col .menu__item .submenu__list .submenu__item .submenu__link {
                        font-family: minion-pro, serif;
                        text-transform: uppercase;
                        color: white;
                        -moz-transition: 0.3s;
                        -ms-transition: 0.3s;
                        -o-transition: 0.3s;
                        -webkit-transition: 0.3s;
                        transition: 0.3s;
                    }

                        .homepage .masthead .masthead__nav-col .menu__item .submenu__list .submenu__item .submenu__link:hover {
                            color: #b4975a;
                        }

.home__background {
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
    position: relative;
    margin-top: -170px;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    z-index: -1;
}




    .home__background iframe {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .home__background .home-slider__item {
        display: none;
    }



    .home__background > * {
        height: inherit;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
    }

    .home__background:before {
        z-index: 9999;
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 57%;
        /* background: -moz-linear-gradient(top, black 0%, transparent 100%);
    /* FF3.6-15 */
        /* background: -webkit-linear-gradient(top, black 0%, transparent 100%); */
        /* Chrome10-25,Safari5.1-6 */
        /* background: linear-gradient(to bottom, black 0%, transparent 100%); */
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
        /* IE6-9 */
    }

    .home__background:after {
        z-index: 9999;
        content: "";
        position: absolute;
        bottom: -25px;
        width: 100%;
        height: 43%;
        /* background: -moz-linear-gradient(top, transparent 0%, black 100%);
    /* FF3.6-15 */
        /*  background: -webkit-linear-gradient(top, transparent 0%, black 100%);*/
        /* Chrome10-25,Safari5.1-6 */
        /*   background: linear-gradient(to bottom, transparent 0%, black 100%); */
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
        /* IE6-9 */
    }


    .home__background:after {
        bottom: 0;
    }


@media only screen and (max-width: 1029px) {
    .home__background {
        width: 100%;
        height: 56vw;
    }

    .home-background iframe {
    }
}

@media only screen and (max-width: 819px) {
    .home__background {
        height: 450px;
        margin-top: 0px !important;
        overflow: hidden;
    }
}

@media only screen and (max-width: 569px) {
    .home__background {
        height: 400px;
    }
}

.home--new-destinations.page-content--gold-bg.globe-bg {
    background-image: url("/Content/images/globe_gold.svg");
}



.new-dest::after {
    padding: 30px;
    margin: 0; /* probably not really needed? */
    content: "";
    width: 90%;
    right: 5%;
    position: absolute;
    border-bottom: solid 1px grey;
}

.home--new-destinations:first-of-type {
    background-color: transparent !important;
    background-image: none !important;
}



.home--featured-destinations.page-content--gold-bg.globe-bg {
    background-image: url("/Content/images/globe_gold.svg");
}



.featured-dest::after {
    padding: 30px;
    margin: 0; /* probably not really needed? */
    content: "";
    width: 90%;
    right: 5%;
    position: absolute;
    border-bottom: solid 1px grey;
}

.home--featured-destinations:first-of-type {
    background-color: transparent !important;
    background-image: none !important;
}



@media only screen and (max-width: 569px) {
}




.home--new-destinations h1 {
    text-align: center;
    margin-bottom: 40px;
}

.home--upcoming-events {
    padding-top: 25px;
}

@media only screen and (max-width: 819px) {
    .home--upcoming-events {
        padding-top: 15px;
    }
}

.home--upcoming-events h1 {
    text-align: center;
    margin-bottom: 40px;
}

.home--travel-inspiration {
    padding-top: 25px;
    padding-bottom: 50px;
}

@media only screen and (max-width: 819px) {
    .home--travel-inspiration {
        padding-top: 15px;
        padding-bottom: 30px;
    }
}

.home--travel-inspiration h1 {
    text-align: center;
    margin-bottom: 40px;
}

.home--my-world {
    padding-top: 25px;
}

@media only screen and (max-width: 819px) {
    .home--my-world {
        padding-top: 15px;
    }
}

.home--my-world h1 {
    text-align: center;
    margin-bottom: 40px;
}

/* PROPERTY */
.property--map-search {
    display: -ms-flexbox;
    display: flex;
}

    .property--map-search > div.property--map-search__form {
        padding-top: 60px;
        padding-bottom: 80px;
        background-color: #262626;
    }

@media only screen and (min-width: 970px) and (max-width: 1459px) {
    .property--map-search > div.property--map-search__form {
        width: 25%;
    }
}

@media only screen and (max-width: 969px) {
    .property--map-search > div.property--map-search__form {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}

.property--map-search > div.property--map-search__map {
    position: relative;
    padding: 0;
    background-color: #2c2c2c;
}

    .property--map-search > div.property--map-search__map #map-property {
        height: 580px;
    }

@media only screen and (min-width: 970px) and (max-width: 1459px) {
    .property--map-search > div.property--map-search__map {
        width: 55%;
    }

        .property--map-search > div.property--map-search__map #map-property {
            height: 505px;
        }
}

@media only screen and (max-width: 969px) {
    .property--map-search > div.property--map-search__map #map-property {
        height: 50vh;
    }
}

.property--map-search > div.property--map-search__continents {
    position: relative;
    background-color: #262626;
    overflow: hidden;
}

    .property--map-search > div.property--map-search__continents .continents {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .property--map-search > div.property--map-search__continents .continents .continents-inner {
            max-width: 125px;
            margin: 85px auto;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 {
                display: none;
                position: relative;
                top: 75px;
            }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-item {
                display: block;
                width: 100%;
                height: 0;
                padding-bottom: 100%;
                background-position: top center;
                background-repeat: no-repeat;
                background-size: cover;
                color: #706f6f;
                font-weight: bold;
                font-size: 11px;
                text-transform: uppercase;
                line-height: 14px;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-item span {
                    position: relative;
                    display: block;
                    text-align: center;
                }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-item:hover {
                    background-position: bottom center;
                    color: white;
                }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-item.active {
                    background-position: bottom center;
                    color: white;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #northamerica {
                margin-top: 0;
                background-image: url(/Content/images/map_northamerica.png);
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner #northamerica span {
                    top: 0;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #southamerica {
                margin-top: 30px;
                background-image: url(/Content/images/map_southamerica.png);
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner #southamerica span {
                    top: -20px;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #europe {
                margin-top: 20px;
                background-image: url(/Content/images/map_europe.png);
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner #europe span {
                    top: 0;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #asia {
                margin-top: 15px;
                background-image: url(/Content/images/map_asia.png);
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner #asia span {
                    top: -5px;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #africa {
                margin-top: 20px;
                background-image: url(/Content/images/map_africa.png);
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner #africa span {
                    top: -5px;
                }

        .property--map-search > div.property--map-search__continents .continents .continents-uparrow {
            position: absolute;
            top: 25px;
            left: 0;
            width: 100%;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-uparrow div {
                width: 30px;
                height: 30px;
                margin: 0 auto;
                border-bottom: 1px solid #b4975a;
                border-right: 1px solid #b4975a;
                -moz-transform: rotate(225deg);
                -ms-transform: rotate(225deg);
                -o-transform: rotate(225deg);
                -webkit-transform: rotate(225deg);
                transform: rotate(225deg);
                cursor: pointer;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-uparrow div:hover {
                    border-color: white;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-uparrow.inactive div {
                border-color: #706f6f;
                cursor: default;
            }

        .property--map-search > div.property--map-search__continents .continents .continents-downarrow {
            position: absolute;
            bottom: 25px;
            left: 0;
            width: 100%;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-downarrow div {
                width: 30px;
                height: 30px;
                margin: 0 auto;
                border-bottom: 1px solid #b4975a;
                border-right: 1px solid #b4975a;
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                cursor: pointer;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-downarrow div:hover {
                    border-color: white;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-downarrow.inactive div {
                border-color: #706f6f;
                cursor: default;
            }

@media only screen and (min-width: 970px) and (max-width: 1459px) {
    .property--map-search > div.property--map-search__continents .continents .continents-inner {
        max-width: 100px;
        margin: 75px auto;
    }

        .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 {
            top: 60px;
        }

        .property--map-search > div.property--map-search__continents .continents .continents-inner #northamerica {
            margin-top: 0;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #northamerica span {
                top: -5px;
            }

        .property--map-search > div.property--map-search__continents .continents .continents-inner #southamerica {
            margin-top: 30px;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #southamerica span {
                top: -25px;
            }

        .property--map-search > div.property--map-search__continents .continents .continents-inner #europe {
            margin-top: 20px;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #europe span {
                top: -5px;
            }

        .property--map-search > div.property--map-search__continents .continents .continents-inner #asia {
            margin-top: 15px;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #asia span {
                top: -10px;
            }

        .property--map-search > div.property--map-search__continents .continents .continents-inner #africa {
            margin-top: 20px;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner #africa span {
                top: -10px;
            }
}

@media only screen and (max-width: 969px) {
    .property--map-search > div.property--map-search__continents .continents {
        position: relative;
    }

        .property--map-search > div.property--map-search__continents .continents .continents-inner {
            max-width: none;
            margin: 20px 0 0 0;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 {
                float: left;
                display: block;
                width: 60%;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 .continents-item {
                    float: left;
                    width: 33.333%;
                    height: 0;
                    padding-bottom: 33.333%;
                    margin-top: 0 !important;
                }

                    .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 .continents-item span {
                        top: -20px !important;
                    }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 {
                float: left;
                top: 0;
                display: block;
                width: 40%;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 .continents-item {
                    float: left;
                    width: 50%;
                    height: 0;
                    padding-bottom: 50%;
                    margin-top: 0 !important;
                }

                    .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 .continents-item span {
                        top: -20px !important;
                    }

        .property--map-search > div.property--map-search__continents .continents .continents-uparrow, .property--map-search > div.property--map-search__continents .continents .continents-downarrow {
            display: none;
        }
}

@media only screen and (max-width: 560px) {
    .property--map-search > div.property--map-search__continents .continents .continents-inner {
        max-width: 125px;
        margin: 30px auto;
        overflow: hidden;
    }

        .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 {
            float: left;
            display: block;
            width: 100%;
        }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 .continents-item, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 .continents-item {
                width: 100%;
                padding-bottom: 100%;
            }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #northamerica, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #northamerica {
                margin-top: 0 !important;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #northamerica span, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #northamerica span {
                    top: 0 !important;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #southamerica, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #southamerica {
                margin-top: 40px !important;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #southamerica span, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #southamerica span {
                    top: -20px !important;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #europe, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #europe {
                margin-top: 30px !important;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #europe span, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #europe span {
                    top: 0 !important;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #asia, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #asia {
                margin-top: 25px !important;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #asia span, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #asia span {
                    top: -5px !important;
                }

            .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #africa, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #africa {
                margin-top: 30px !important;
            }

                .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set1 #africa span, .property--map-search > div.property--map-search__continents .continents .continents-inner .continents-set2 #africa span {
                    top: -5px !important;
                }
}

@media only screen and (min-width: 970px) and (max-width: 1459px) {
    .property--map-search > div.property--map-search__continents {
        width: 20%;
    }
}

@media only screen and (max-width: 969px) {
    .property--map-search > div {
        float: none;
        width: 100%;
    }
}

@media only screen and (max-width: 969px) {
    .property--map-search {
        display: block;
    }
}

.property--popular-locations {
    font-family: minion-pro, serif;
    color: white;
    font-size: 15px;
}

    .property--popular-locations h1 {
        margin-bottom: 0;
    }

    .property--popular-locations .grid__col--2 h4 {
        text-transform: uppercase;
        color: #1a1a1a;
        margin: 0 0 2px 0;
    }

    .property--popular-locations .grid__col--2 a {
        display: block;
    }

        .property--popular-locations .grid__col--2 a:hover {
            color: white;
            opacity: 0.75;
        }

        .property--popular-locations .grid__col--2 a + h4 {
            margin-top: 25px;
        }

@media only screen and (max-width: 819px) {
    .property--popular-locations .grid__col--2 {
        width: 100%;
        padding-bottom: 0;
    }

        .property--popular-locations .grid__col--2:last-child {
            padding-bottom: 25px;
        }
}

.search-results .search-results__header-row > div:first-child {
    padding-right: 0;
}

    .search-results .search-results__header-row > div:first-child h1 {
        color: white;
        margin-bottom: 0;
    }

        .search-results .search-results__header-row > div:first-child h1 span {
            font-size: 0.6em;
        }

.search-results .search-results__header-row > div:last-child {
    text-align: right;
}

    .search-results .search-results__header-row > div:last-child .bedroom {
        padding-left: 40px;
        cursor: default;
    }

        .search-results .search-results__header-row > div:last-child .bedroom:first-of-type {
            padding-left: 0;
        }

    .search-results .search-results__header-row > div:last-child .search-results__property-type-icon {
        display: inline-block;
        overflow: hidden;
    }

        .search-results .search-results__header-row > div:last-child .search-results__property-type-icon img {
            display: block;
            float: left;
            width: 42px;
            height: 42px;
            margin: 0 8px 0 20px;
            padding: 0;
        }

        .search-results .search-results__header-row > div:last-child .search-results__property-type-icon h3 {
            display: block;
            float: left;
            white-space: nowrap;
            line-height: 42px;
            margin-bottom: 0;
        }

@media only screen and (max-width: 1024px) {
    .search-results .search-results__header-row > div:last-child .search-results__property-type-icon img {
        width: 28px;
        height: 28px;
        margin: 0 10px 0 25px;
    }

    .search-results .search-results__header-row > div:last-child .search-results__property-type-icon h3 {
        font-size: 16px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 569px) {
    .search-results .search-results__header-row > div:last-child .search-results__property-type-icon {
        display: block;
        margin-bottom: 7px;
    }

        .search-results .search-results__header-row > div:last-child .search-results__property-type-icon img {
            margin-left: 0;
        }
}

.search-results .search-results__header-row > div:last-child .search-results__property-type-icon:first-child img {
    margin-left: 0;
}

@media only screen and (max-width: 819px) {
    .search-results .search-results__header-row > div:last-child {
        text-align: left;
        padding-top: 10px;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 819px) {
    .search-results .search-results__header-row > div {
        width: 100%;
    }
}

.search-results .search-results__content > div .search-results__form {
    max-width: 280px;
    padding: 25px 30px 35px 30px;
    border: 1px solid #585858;
}

    .search-results .search-results__content > div .search-results__form h3 {
        text-transform: uppercase;
    }

    .search-results .search-results__content > div .search-results__form .property-search-form__filter {
        margin-bottom: 0;
    }

        .search-results .search-results__content > div .search-results__form .property-search-form__filter .property-search-form__string {
            margin-bottom: 45px;
        }

@media only screen and (max-width: 819px) {
    .search-results .search-results__content > div {
        width: 100%;
    }

        .search-results .search-results__content > div .search-results__form {
            max-width: none;
        }
}

.search-results .search-results__content > div .search-results__listing .search-results__item {
    display: block;
    float: left;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

    .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 999;
        height: 70px;
        width: 70px;
        background-repeat: no-repeat;
    }

        .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite,
        .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite.is-favourite:hover {
            background-image: url(/content/images/favourite-unticked.png);
            background-position: center;
        }

            .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite:hover,
            .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite.is-favourite {
                background-image: url(/content/images/favourite-ticked.png);
                background-position: center;
            }



    .search-results .search-results__content > div .search-results__listing .search-results__item img.propimg {
        transition: all 0.35s linear;
        height: 100%;
        width: auto;
    }

@media screen and (max-width:600px) {
    .search-results .search-results__content > div .search-results__listing .search-results__item:hover img.propimg {
        transform: none !important;
    }

    .search-results .search-results__content > div .search-results__listing .search-results__item img.propimg:hover {
        transform: none !important;
        transition: none !important;
    }

    .search-results .search-results__content > div .search-results__listing .search-results__item img.propimg {
        transition: none !important;
    }

    .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite,
    .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite:hover {
        background-image: url(/content/images/favourite-unticked.png) !important;
        background-position: center;
    }

        .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite.is-favourite:hover,
        .search-results .search-results__content > div .search-results__listing .search-results__item .toggle-favourite.is-favourite {
            background-image: url(/content/images/favourite-ticked.png) !important;
            background-position: center;
        }
}

.search-results .search-results__content > div .search-results__listing .search-results__item .title-layer {
    position: absolute;
    bottom: -20%;
    width: 100%;
    height: 50%;
    padding: 10px 12px;
    background-color: rgba(0, 0, 0, 0.6);
    -moz-transition: 0.35s;
    -ms-transition: 0.35s;
    -o-transition: 0.35s;
    -webkit-transition: 0.35s;
    transition: 0.35s;
}

.search-results .search-results__content > div .search-results__listing .search-results__item:hover img.propimg {
    transform: scale(1.2);
}

.search-results .search-results__content > div .search-results__listing .search-results__item:hover .title-layer {
}

@media only screen and (min-width: 820px) {
    .search-results .search-results__content > div .search-results__listing .search-results__item {
        width: 48%;
        height: 250px;
    }

        .search-results .search-results__content > div .search-results__listing .search-results__item:nth-child(odd) {
            margin: 0 2% 4% 0;
        }

        .search-results .search-results__content > div .search-results__listing .search-results__item:nth-child(even) {
            margin: 0 0 4% 2%;
        }
}

@media only screen and (max-width: 819px) {
    .search-results .search-results__content > div .search-results__listing .search-results__item {
        width: 100%;
        height: 400px;
    }
}

.search-results .search-results__content > div .search-results__listing .search-results__item .listing__type-icons {
    position: absolute;
    bottom: 10px;
    right: 5px;
}

    .search-results .search-results__content > div .search-results__listing .search-results__item .listing__type-icons > div {
        float: left;
        width: 28px;
        margin: 0 5px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
    }

        .search-results .search-results__content > div .search-results__listing .search-results__item .listing__type-icons > div.exclusive {
            background-image: url(/Content/images/icon_residence.svg);
        }

        .search-results .search-results__content > div .search-results__listing .search-results__item .listing__type-icons > div.residence {
            background-image: url(/Content/images/icon_exclusive.svg);
        }

.property-search-form h3 {
    text-transform: uppercase;
    margin-bottom: 25px;
}

.property-search-form form * {
    font-family: minion-pro, serif;
    outline: none;
    text-transform: none;
}

.property-search-form form.property-search-form__filter {
    margin-bottom: 25px;
}

    .property-search-form form.property-search-form__filter button {
        display: block;
        border: none;
    }

        .property-search-form form.property-search-form__filter button:hover {
            color: white;
        }

        .property-search-form form.property-search-form__filter button[type="reset"] {
            font-size: 14px;
            font-style: italic;
            padding: 15px;
            margin: 13px 0 0 auto;
            background-color: #1a1a1a;
        }

        .property-search-form form.property-search-form__filter button[type="submit"] {
            font-size: 18px;
            width: 100%;
            padding: 20px;
            margin-top: 18px;
            background-color: #b4975a;
            text-transform: uppercase;
        }

    .property-search-form form.property-search-form__filter .searchResults-Search, .property-search-form form.property-search-form__filter .propertySearch-Search {
        cursor: pointer;
        font-size: 18px;
        width: 100%;
        margin-top: 18px;
        background-color: #b4975a;
        text-transform: uppercase;
        text-align: center;
        color: #ffffff;
        padding: 8px 0 7px 0;
    }

.property-search-form form div.property-search-form__string {
    position: relative;
    margin-top: 25px;
}

    .property-search-form form div.property-search-form__string input {
        width: 100%;
        height: 36px;
        color: white;
        font-size: 16px;
        font-style: italic;
        padding: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #585858;
        border-radius: 0;
        background: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        -webkit-appearance: none;
        appearance: none;
    }

    .property-search-form form div.property-search-form__string button.propertySearch-Image, .property-search-form form div.property-search-form__string button.searchResults-Image {
        position: absolute;
        top: 0;
        right: 0;
        width: 28px;
        height: 36px;
        padding: 0;
        border: none;
        margin-top: 0;
        background-color: transparent;
        background-image: url(/Content/images/icon_search.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: 13px;
        cursor: pointer;
    }

.property-search-form form .styled-select {
    width: 100%;
    height: 38px;
    margin-bottom: 8px;
    overflow: hidden;
}

    .property-search-form form .styled-select select {
        line-height: 38px;
        width: 100% !important;
        height: 38px;
        color: white;
        font-size: 15px;
        line-height: 38px;
        text-indent: 5px;
        border: none;
        border-radius: 0;
        background: #595959;
        cursor: pointer;
    }

        .property-search-form form .styled-select select option {
            background-color: #777;
            border: none;
            font-size: 14px;
            height: 30px;
            line-height: 30px;
            text-indent: 10px;
            cursor: pointer;
        }

.property-page {
    position: relative;
}

    .property-page #unmuter {
        background-image: url(/Content/images/unmuter.svg);
        background-size: contain;
        background-repeat: no-repeat;
        height: 52px;
        width: 50px;
        display: block;
        position: absolute;
        margin-left: 2em;
        bottom: 11em;
        z-index: 999;
        cursor: pointer;
    }

@media only screen and (max-width: 817px) {
    .property-page #unmuter {
        display: none !important;
    }
}

.property-page #unmuter.hidden {
    display: none;
}

.property-page #muter {
    background-image: url(/Content/images/muter.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 52px;
    width: 50px;
    display: block;
    position: absolute;
    margin-left: 2em;
    bottom: 11em;
    z-index: 999;
    cursor: pointer;
}

@media only screen and (max-width: 817px) {
    .property-page #muter {
        display: none !important;
    }
}

.property-page #muter.hidden {
    display: none;
}

.property-page .property-page__headings h1 {
    margin-bottom: 10px;
}

.property-page .property-page__headings h2 {
    font-size: 24px;
}

.property-page .property-page__button {
    width: 240px;
    color: #b4975a;
    font-family: minion-pro, serif;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 0;
    background-color: #FFFFFF;
    transition: opacity 0.35s linear;
    z-index: 99997;
}

.property-page__headings {
    display: inline-block;
    width: 69%;
}

.headings-div {
    width: 100%;
}

.property-page__enquire-now,
.experience-enquire-now {
    width: 180px !important;
    float: right;
    background-color: transparent !important;
    color: white !important;
    border: solid 1px white !important;
}

.property-page .property-page__button:hover {
    color: #b4975a;
}

.property-page .property-page__button.complete {
    opacity: 0;
    pointer-events: none;
}

.blog__buttons-div {
    width: 25%;
    display: inline-block;
}

.buttons-div {
    float: right;
    display: inline-block;
    width: 29%;
}

.blog_heading {
    width: 74%;
    display: inline-block;
}

.property-page_toggle.toggle-favourite {
    float: right;
    z-index: 99999;
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    margin-right: 20px;
    margin-top: 14px;
}

    .property-page_toggle.toggle-favourite, .property-page_toggle.toggle-favourite.is-favourite:hover {
        background-image: url(/content/images/favourite-unticked.png);
    }

        .property-page_toggle.toggle-favourite.is-favourite {
            background-image: url(/content/images/favourite-ticked.png);
        }

@media only screen and (max-width: 600px) {
    .property-page_toggle.toggle-favourite {
        background-image: url(/content/images/favourite-unticked.png);
    }

        .property-page_toggle.toggle-favourite.is-favourite, .property-page_toggle.toggle-favourite.is-favourite:hover {
            background-image: url(/content/images/favourite-ticked.png);
        }
}

@media only screen and (max-width: 800px) {
    .property-page__headings {
        width: 100%;
    }

    .buttons-div {
        display: block;
        margin-bottom: 20px;
        width: 100%;
        text-align: left !important;
        height: 40px;
    }

    .property-page__enquire-now, .experience-enquire-now {
        display: block;
        float: left !important;
    }

    .property-page_toggle.toggle-favourite {
        float: left !important;
        margin-left: 20px;
    }
}



@media only screen and (max-width: 600px) {

    .buttons-div {
        float: none;
        display: block;
        margin-bottom: 20px;
        width: 100%;
    }

    .property-page__headings {
        display: block;
    }
}

@media only screen and (max-width: 819px) {




    .property-page .property-page__button {
        display: inline-block !important;
        width: 110px !important;
        font-size: 15px !important;
    }

    .property-page__button.experience-enquire-now {
        display: block;
        float: none;
    }

    .property-page_toggle.toggle-favourite {
        float: none;
        display: inline-block;
        margin-left: 10px;
    }

    .property-page__enquire-now {
        float: none;
        display: inline-block;
    }



    .property-page .property-page__button.mobile-blog-button {
        display: none !important;
    }

    .blog__buttons-div {
        width: 100%;
        display: block !important;
        margin-bottom: 20px;
    }
}


.property-page .property-page__icon-info {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
}

#Facilities table, #Dining table, #Services table, #ActivitiesList table, #Airport table {
    width: 100% !important;
}

.facilities {
    border-top: solid 1px grey;
    padding-top: 20px;
}

    .facilities h2 {
        text-transform: uppercase;
    }

.facilitiesList li {
    width: 33%;
}

table.avg-temp-table tbody tr td {
    align: center;
    align-content: center;
    align-items: center;
    padding: 10px;
}

table.avg-temp-table tbody tr.avg-temp-table-head {
    border-top: solid 1px white;
    border-bottom: solid 1px white;
}

    table.avg-temp-table tbody tr.avg-temp-table-head th {
        font-style: italic;
        padding: 10px;
        align-content: center;
        text-align: center;
    }

.property-page .property-page__icon-info .property-page__icon-info--item, .property-page .property-page__icon-info #weatherApp {
    text-align: center;
    padding: 55px 5px 0 5px;
    background-repeat: no-repeat;
    background-position: top center;
}

    .property-page .property-page__icon-info .property-page__icon-info--item.location, .property-page .property-page__icon-info #weatherApp.location {
        background-size: 41px;
    }

    .property-page .property-page__icon-info .property-page__icon-info--item.airport, .property-page .property-page__icon-info #weatherApp.airport {
        background-size: 38px;
    }

@media only screen and (min-width: 820px) {
    .property-page .property-page__icon-info .property-page__icon-info--item.airport, .property-page .property-page__icon-info #weatherApp.airport {
        width: 120px;
    }
}

.property-page .property-page__icon-info .property-page__icon-info--item.timezone, .property-page .property-page__icon-info #weatherApp.timezone {
    background-size: 36px;
}

.property-page .property-page__icon-info .property-page__icon-info--item.weather, .property-page .property-page__icon-info #weatherApp.weather {
    background-size: 76px;
}

.property-page .property-page__icon-info .property-page__icon-info--item.dining, .property-page .property-page__icon-info #weatherApp.dining {
    background-size: 40px;
}

.property-page .property-page__icon-info .property-page__icon-info--item.familyfacilities, .property-page .property-page__icon-info #weatherApp.familyfacilities {
    background-size: 48px;
}

.property-page .property-page__icon-info .property-page__icon-info--item.airport, .property-page .property-page__icon-info #weatherApp.airport {
    background-size: 36px;
}

.property-page .property-page__icon-info .property-page__icon-info--item.additionalservices, .property-page .property-page__icon-info #weatherApp.additionalservices {
    background-position-y: 9px;
    background-size: 40px;
}

@media only screen and (max-width: 819px) {
    .property-page .property-page__icon-info .property-page__icon-info--item, .property-page .property-page__icon-info #weatherApp {
        width: 50%;
        margin: 25px 0;
    }
}

@media only screen and (max-width: 569px) {
    .property-page .property-page__icon-info .property-page__icon-info--item, .property-page .property-page__icon-info #weatherApp {
        width: 100%;
    }
}

.property-page .property-page__icon-info #weatherApp {
    padding-top: 0;
}

    .property-page .property-page__icon-info #weatherApp .property-page__icon-info--item {
        margin: 0 auto;
    }

@media only screen and (max-width: 819px) {
    .property-page .property-page__icon-info {
        flex-wrap: wrap;
    }
}

.property-page.property-page__reviews {
    padding-bottom: 0;
}







    .property-page.property-page__reviews .property-page__reviews--content {
        position: relative;
        top: -1px;
        width: 100%;
        height: auto;
    }

@media only screen and (max-width: 679px) {
    .property-page.property-page__reviews .property-page__reviews--content {
        border-top: none !important;
    }
}

.property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item {
    position: relative;
    width: 100%;
    z-index: 1;
}

@media only screen and (max-width: 679px) {
    .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item {
        border-top: 1px solid #a98f58;
    }
}



.property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner {
    width: 100%;
    max-width: 1120px;
    padding: 20px 20px;
    margin: 0 auto;
}

    .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__review-item {
        padding-bottom: 10px;
        border-bottom: 1px solid #d9cbac;
        margin-bottom: 25px;
    }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__review-item .name {
            text-transform: uppercase;
            margin-bottom: 3px;
        }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__review-item .date {
            font-family: minion-pro, serif;
            font-size: 14px;
            font-style: italic;
            color: #FFFFFF;
            margin-bottom: 1.5em;
        }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__review-item:last-child {
            padding-bottom: 0;
            border-bottom: none;
            margin-bottom: 0;
        }

    .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review {
        padding-top: 20px;
    }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__user-details {
            padding: 20px 20px 10px 20px;
            background-color: #FFFFFF;
        }

            .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__user-details .name {
                text-transform: uppercase;
                margin-bottom: 3px;
                color: #1a1a1a;
            }

            .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__user-details .date {
                font-family: minion-pro, serif;
                font-size: 14px;
                font-style: italic;
                color: #1a1a1a;
            }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__form textarea {
            display: block;
            width: 100%;
            color: #1a1a1a;
            font-size: 1.4rem;
            line-height: 1.5;
            line-height: 20px;
            padding: 20px;
            border: none;
            border-radius: 0;
            background-color: #FFFFFF;
            resize: none;
        }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__form ::-webkit-input-placeholder {
            color: #bfbfbf;
        }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__form ::-moz-placeholder {
            color: #bfbfbf;
            opacity: 1;
        }

        .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__form button {
            background-color: transparent;
            padding-left: 60px;
            padding-right: 60px;
            margin: 20px 0;
        }

            .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__form button:hover {
                background-color: #FFFFFF;
            }

@media only screen and (max-width: 569px) {
    .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__write-review .write-review__form button {
        width: 100%;
        max-width: unset;
        padding-left: 0;
        padding-right: 0;
    }
}

.property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__recommendation {
    padding-bottom: 10px;
    border-bottom: 1px solid #d9cbac;
    margin-bottom: 25px;
}

    .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__recommendation .name {
        text-transform: uppercase;
    }

    .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__recommendation .date {
        font-family: minion-pro, serif;
        font-size: 14px;
        font-style: italic;
        color: #FFFFFF;
        margin-bottom: 1.5em;
    }

    .property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--content-item .reviews--content-item__inner .reviews--content-item__recommendation:last-child {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

.property-page.property-page__reviews .property-page__reviews--content .property-page__reviews--close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.property-page.property-page__activities .property-page__activities--list h2 {
    text-transform: uppercase;
}

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

    .property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set .activities--list__icons--item {
        width: 25%;
        height: 120px;
        -webkit-font-smoothing: subpixel-antialiased;
        font-smoothing: subpixel-antialiased;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.5;
        font-family: Arial, sans-serif;
        font-weight: 400;
        line-height: 26px;
        color: white;
        white-space: nowrap;
        padding: 10px;
        background-size: 26px 26px;
        background-repeat: no-repeat;
        border: solid 1px #b4975a;
        margin: 10px;
    }

.activity-icon {
    background-size: 35px 35px !important;
    background-position: top center;
    text-align: center;
    padding-top: 25px !important;
    padding-bottom: 15px !important;
    background-origin: content-box, padding-box;
}

.activity-icon-name {
    text-align: center;
    padding-top: 50px;
}

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set .activities--list__icons--item em {
    font-weight: 400i;
    font-style: italic;
}

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set .activities--list__icons--item strong {
    font-weight: 700;
}

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set .activities--list__icons--item.lead {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: Arial, sans-serif;
    font-weight: 700;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set .activities--list__icons--item.serif {
    font-family: minion-pro, serif;
}

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set .activities--list__icons--item.italic {
    font-style: italic;
}

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-prev-next-button {
    width: 70px !important;
    height: 70px !important;
    padding: 15px 30px !important;
}

    .property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-prev-next-button.next {
        right: -85px !important;
    }

        .property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-prev-next-button.next svg {
            left: -20% !important;
        }

    .property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-prev-next-button.previous {
        left: -85px !important;
    }

        .property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-prev-next-button.previous svg {
            left: 40% !important;
        }

.property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-page-dots {
    display: none;
}

@media only screen and (max-width: 1229px) {
    .property-page.property-page__activities .property-page__activities--list {
        width: 100%;
    }

        .property-page.property-page__activities .property-page__activities--list h2 {
            text-align: center;
        }

        .property-page.property-page__activities .property-page__activities--list .activities--list__icons {
            max-width: 520px;
            margin: 0 auto;
        }
}

@media only screen and (max-width: 679px) {
    .property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-prev-next-button {
        display: none;
    }

    .property-page.property-page__activities .property-page__activities--list .activities--list__icons .flickity-page-dots {
        display: block;
        margin-top: 25px;
    }
}

@media only screen and (max-width: 569px) {
    .property-page.property-page__activities .property-page__activities--list .activities--list__icons .activities--list__icons--set .activities--list__icons--item {
        width: 50%;
    }
}

.property-page.property-page__activities .property-page__activities--cta {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .property-page.property-page__activities .property-page__activities--cta .activities--cta-item {
        width: 50%;
        max-width: 200px;
        text-align: center;
        padding-bottom: 20px;
    }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item:first-child {
            margin-right: 25px;
        }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item:last-child {
            margin-left: 25px;
        }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item .activities--cta-item__inner {
            width: 200px;
            height: 125px;
            padding: 10px 15px 0 15px;
            background-color: #bca26b;
        }

            .property-page.property-page__activities .property-page__activities--cta .activities--cta-item .activities--cta-item__inner .white-logo {
                margin-bottom: 15px;
            }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item p {
            white-space: nowrap;
            font-size: 13px;
            margin: 10px 0 0 0;
        }

            .property-page.property-page__activities .property-page__activities--cta .activities--cta-item p.activities--cta-item__text {
                width: 200px;
            }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item .activities--cta-item__inner {
            cursor: pointer;
        }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item .click-here {
            cursor: pointer;
            text-decoration: underline;
        }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item.activities--cta-item__videos .activities--cta-item__inner img {
            width: 42px;
            margin: 31px auto 0 auto;
        }

@media only screen and (max-width: 1229px) {
    .property-page.property-page__activities .property-page__activities--cta {
        justify-content: center;
        width: 100%;
        margin-top: 0;
    }
}

@media only screen and (max-width: 569px) {
    .property-page.property-page__activities .property-page__activities--cta {
        display: block;
    }

        .property-page.property-page__activities .property-page__activities--cta .activities--cta-item {
            margin: 0 auto !important;
            min-width: 200px;
        }
}

.property-page.property-page__activities-videos {
    height: 0;
    z-index: 101;
    display: none;
}

@media screen and (min-width: 818px) {
    .property-page.property-page__activities-videos {
        display: block;
        /*pointer-events: none;*/
    }
}

.property-page.property-page__activities-videos .activities-videos__inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
}

    .property-page.property-page__activities-videos .activities-videos__inner.header-video .slideshow {
        height: auto;
    }

    .property-page.property-page__activities-videos .activities-videos__inner .slideshow .slideshow__item {
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        background-color: #262626;
    }

        .property-page.property-page__activities-videos .activities-videos__inner .slideshow .slideshow__item .activities-videos__item--wrapper {
            position: relative;
            width: 100%;
            max-width: 1080px;
            margin: 0 auto;
        }

        .property-page.property-page__activities-videos .activities-videos__inner .slideshow .slideshow__item .activities-videos__item {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
        }

            .property-page.property-page__activities-videos .activities-videos__inner .slideshow .slideshow__item .activities-videos__item iframe {
                position: absolute;
                width: 100%;
                height: 100%;
            }

    .property-page.property-page__activities-videos .activities-videos__inner .activities-videos__close {
        position: absolute;
        top: 15px;
        right: 15px;
        height: 50px;
        width: 50px;
        padding: 10px;
        cursor: pointer;
        z-index: 102;
    }

.property-page.property-page__map {
    position: relative;
    padding-bottom: 0;
}

    .property-page.property-page__map > div {
        height: 60vh;
        text-align: center;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url(/Content/images/temp_map.jpg);
    }

@media only screen and (max-width: 1029px) {
    .property-page.property-page__map > div {
        height: 50vh;
    }
}

@media only screen and (max-width: 819px) {
    .property-page.property-page__map > div {
        height: 40vh;
    }
}

@media only screen and (max-width: 569px) {
    .property-page.property-page__map > div {
        height: 30vh;
    }
}

.property-page.property-page__average-temprain {
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: subpixel-antialiased;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: white;
}

    .property-page.property-page__average-temprain em {
        font-weight: 400i;
        font-style: italic;
    }

    .property-page.property-page__average-temprain strong {
        font-weight: 700;
    }

    .property-page.property-page__average-temprain.lead {
        font-size: 14px;
        font-size: 1.4rem;
        font-family: Arial, sans-serif;
        font-weight: 700;
        line-height: 1.5;
        text-transform: none;
        letter-spacing: 0;
    }

    .property-page.property-page__average-temprain.serif {
        font-family: minion-pro, serif;
    }

    .property-page.property-page__average-temprain.italic {
        font-style: italic;
    }

    .property-page.property-page__average-temprain .average-temprain__table .average-temprain__item {
        float: left;
        width: 8.333%;
        text-align: center;
        padding-bottom: 35px;
    }

        .property-page.property-page__average-temprain .average-temprain__table .average-temprain__item .month {
            font-family: minion-pro, serif;
            font-style: italic;
            padding: 10px 0;
            border-top: 1px solid white;
            border-bottom: 1px solid white;
        }

        .property-page.property-page__average-temprain .average-temprain__table .average-temprain__item .temperature {
            padding: 15px 0 5px 0;
        }

        .property-page.property-page__average-temprain .average-temprain__table .average-temprain__item .rainfall {
            padding-top: 5px;
        }

@media only screen and (max-width: 1029px) {
    .property-page.property-page__average-temprain .average-temprain__table .average-temprain__item {
        width: 16.666%;
    }
}

@media only screen and (max-width: 590px) {
    .property-page.property-page__average-temprain .average-temprain__table .average-temprain__item {
        width: 25%;
    }
}

@media only screen and (max-width: 400px) {
    .property-page.property-page__average-temprain .average-temprain__table .average-temprain__item {
        width: 33.333%;
    }
}

.club-slideshow-with-title {
    position: relative;
}

    .club-slideshow-with-title .club-slideshow-title {
        position: absolute;
        bottom: 0;
        width: 100%;
        z-index: 100;
    }

        .club-slideshow-with-title .club-slideshow-title div {
            max-width: 1120px;
            margin: 0 auto;
            padding: 5px 20px;
        }

            .club-slideshow-with-title .club-slideshow-title div p {
                text-transform: uppercase;
            }

/* MY ACCOUNT */
.my-account h1 {
    margin-bottom: 0;
}

.my-account .my-account__confirmation {
    display: block;
    float: left;
    overflow: hidden;
    text-align: left;
    margin: 0;
    padding-top: 17px;
    padding-left: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: green;
    transition: opacity 0.35s linear;
}

.my-account h2 {
    font-size: 26px;
    text-transform: uppercase;
    margin: 10px 0 0 0;
}

@media only screen and (max-width: 569px) {
    .my-account h2 {
        font-size: 21px;
    }
}

.my-account h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

@media only screen and (max-width: 569px) {
    .my-account h3 {
        font-size: 20px;
        padding-bottom: 25px;
    }
}

.my-account p {
    margin: 2em 0;
}

.my-account form * {
    outline: none;
}

.my-account form .my-account__form-item {
    margin: 4px 0 13px 0;
    clear: both;
    overflow: hidden;
}

    .my-account form .my-account__form-item label {
        float: left;
        display: block;
        width: 195px;
        height: 32px;
        -webkit-font-smoothing: subpixel-antialiased;
        font-smoothing: subpixel-antialiased;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.5;
        font-family: Arial, sans-serif;
        font-weight: 400;
        color: white;
        margin-bottom: 0;
        line-height: 32px;
    }

        .my-account form .my-account__form-item label em {
            font-weight: 400i;
            font-style: italic;
        }

        .my-account form .my-account__form-item label strong {
            font-weight: 700;
        }

        .my-account form .my-account__form-item label.lead {
            font-size: 14px;
            font-size: 1.4rem;
            font-family: Arial, sans-serif;
            font-weight: 700;
            line-height: 1.5;
            text-transform: none;
            letter-spacing: 0;
        }

        .my-account form .my-account__form-item label.serif {
            font-family: minion-pro, serif;
        }

        .my-account form .my-account__form-item label.italic {
            font-style: italic;
        }

@media only screen and (max-width: 1029px) {
    .my-account form .my-account__form-item label {
        width: 180px;
    }
}

@media only screen and (max-width: 569px) {
    .my-account form .my-account__form-item label {
        float: none;
        width: 100%;
    }
}

.my-account form .my-account__form-item .my-account__form-element {
    float: left;
    width: calc(95% - 195px);
}

    .my-account form .my-account__form-item .my-account__form-element input {
        display: block;
        height: 32px;
        font-family: Arial, sans-serif;
        font-size: 13px;
        padding: 0 8px;
        border: none;
    }

    .my-account form .my-account__form-item .my-account__form-element select {
        width: 100% !important;
        height: 32px;
        color: #aaa;
        font-size: 15px;
        line-height: 38px;
        text-indent: 5px;
        border: none;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.12);
        cursor: pointer;
    }

        .my-account form .my-account__form-item .my-account__form-element select option {
            background-color: #333333;
        }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__text-input {
        width: 100%;
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__phone-code {
        float: left;
        width: calc(36% - 4px);
        margin-right: 4px;
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__title {
        float: left;
        width: 25%;
        margin-right: 4px;
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__name {
        width: calc(75% - 4px);
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__phone-number {
        width: 64%;
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__birthday-day {
        float: left;
        width: 20%;
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__birthday-month {
        float: left;
        width: 20%;
        margin: 0 4px;
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__birthday-year {
        float: left;
        width: 35%;
        margin-right: 4px;
    }

    .my-account form .my-account__form-item .my-account__form-element input.my-account__birthday-age {
        float: left;
        width: calc(25% - 12px);
    }

    .my-account form .my-account__form-item .my-account__form-element input.error {
        border: 1px solid #f00;
    }

@media only screen and (max-width: 1029px) {
    .my-account form .my-account__form-item .my-account__form-element {
        width: calc(100% - 180px);
    }
}

@media only screen and (max-width: 569px) {
    .my-account form .my-account__form-item .my-account__form-element {
        float: none;
        width: 100%;
    }
}

.my-account form.my-account__main-form input {
    background-color: rgba(255, 255, 255, 0.12);
    color: #aaa;
}

/*.my-account form.my-account__main-form button {
    width: calc(95% - 195px);
    margin-left: 195px;
}*/

.my-account form.my-account__main-form button[type="button"] {
    background-color: black;
}

.my-account form.my-account__main-form button[type="submit"] {
    width: 95% !important;
    font-family: minion-pro, serif;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    transition: opacity 0.35s linear;
    z-index: 99997;
    background-color: transparent !important;
    color: white !important;
    border: solid 1px white !important;
    margin-top: 25px;
}

@media only screen and (max-width: 1029px) {
    .my-account form.my-account__main-form button {
        width: calc(100% - 180px);
        margin-left: 180px;
    }
}

@media only screen and (max-width: 569px) {
    .my-account form.my-account__main-form button {
        float: none;
        width: 100%;
        margin-left: 0;
    }

        .my-account form.my-account__main-form button[type="button"] {
            margin-top: 36px;
        }

        .my-account form.my-account__main-form button[type="submit"] {
            margin-top: 36px;
        }
}

.my-account form.my-account__password-form input {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.my-account form.my-account__password-form button {
    width: calc(95% - 195px);
    margin-left: 195px;
}

    .my-account form.my-account__password-form button[type="submit"] {
        background-color: #262626;
        margin-top: 4px;
    }

@media only screen and (max-width: 1029px) {
    .my-account form.my-account__password-form button {
        width: calc(100% - 180px);
        margin-left: 180px;
    }
}

@media only screen and (max-width: 569px) {
    .my-account form.my-account__password-form button {
        float: none;
        width: 100%;
        margin-left: 0;
    }

        .my-account form.my-account__password-form button[type="submit"] {
            margin-top: 36px;
        }
}

.my-account form.my-account__calendar-form .styled-select {
    float: left;
    width: 100%;
    height: 32px;
    margin: 0 8px 8px 0;
    overflow: hidden;
}

    .my-account form.my-account__calendar-form .styled-select select {
        line-height: 32px;
        width: 100% !important;
        height: 32px;
        color: #1a1a1a;
        font-size: 13px;
        line-height: 32px;
        text-indent: 5px;
        border: none;
        border-radius: 0;
        background: white;
        cursor: pointer;
    }

        .my-account form.my-account__calendar-form .styled-select select option {
            background-color: white;
            border: none;
            height: 30px;
            line-height: 30px;
            text-indent: 10px;
            cursor: pointer;
        }

    .my-account form.my-account__calendar-form .styled-select input {
        width: 100% !important;
        height: 32px;
        color: #1a1a1a;
        font-size: 13px;
        line-height: 33px;
        text-indent: 10px;
        border: none;
        border-radius: 0;
        background: #fff;
        cursor: pointer;
    }

        .my-account form.my-account__calendar-form .styled-select input::-webkit-input-placeholder {
            color: #1a1a1a;
        }

        .my-account form.my-account__calendar-form .styled-select input::-moz-placeholder {
            color: #1a1a1a;
        }

        .my-account form.my-account__calendar-form .styled-select input:-ms-input-placeholder {
            color: #1a1a1a;
        }

        .my-account form.my-account__calendar-form .styled-select input:-moz-placeholder {
            color: #1a1a1a;
        }

        .my-account form.my-account__calendar-form .styled-select input.DestinationCalendar {
            cursor: auto;
        }

.my-account form.my-account__calendar-form .my-account__select-short {
    width: calc(16.666% - 8px);
}

@media only screen and (max-width: 1029px) {
    .my-account form.my-account__calendar-form .my-account__select-short {
        width: calc(25% - 8px);
    }
}

@media only screen and (max-width: 819px) {
    .my-account form.my-account__calendar-form .my-account__select-short {
        width: calc(50% - 8px);
    }
}

@media only screen and (max-width: 569px) {
    .my-account form.my-account__calendar-form .my-account__select-short {
        width: 100%;
    }
}

.my-account form.my-account__calendar-form .my-account__select-short input.error, .my-account form.my-account__calendar-form .my-account__select-short select.error {
    border: 1px solid #f00;
}

.my-account form.my-account__calendar-form .my-account__select-long {
    width: calc(33.333% - 8px);
}

@media only screen and (max-width: 1029px) {
    .my-account form.my-account__calendar-form .my-account__select-long {
        width: calc(50% - 8px);
    }
}

@media only screen and (max-width: 569px) {
    .my-account form.my-account__calendar-form .my-account__select-long {
        width: 100%;
    }
}

.my-account form.my-account__calendar-form .my-account__select-long input.error, .my-account form.my-account__calendar-form .my-account__select-long select.error {
    border: 1px solid #f00;
}

.my-account form.my-account__calendar-form button {
    float: left;
    margin: 0 8px 8px 0;
}

    .my-account form.my-account__calendar-form button[type="reset"] {
        width: calc(16.666% - 8px);
        margin-left: 50%;
        background-color: black;
    }

    .my-account form.my-account__calendar-form button[type="submit"] {
        width: calc(33.333% - 8px);
        background-color: #b4975a;
    }

@media only screen and (max-width: 819px) {
    .my-account form.my-account__calendar-form button {
        margin-left: 0 !important;
    }
}

@media only screen and (max-width: 569px) {
    .my-account form.my-account__calendar-form button {
        width: 100% !important;
        margin: 0 0 8px 0 !important;
    }
}

.my-account form.my-account__booking-year-form {
    position: absolute;
    top: 0;
    right: 0;
}

    .my-account form.my-account__booking-year-form .styled-select {
        float: left;
        width: 100%;
        height: 32px;
        margin: 0 8px 8px 0;
        overflow: hidden;
    }

        .my-account form.my-account__booking-year-form .styled-select select {
            line-height: 32px;
            width: 100% !important;
            height: 32px;
            color: #1a1a1a;
            font-size: 13px;
            line-height: 32px;
            text-indent: 5px;
            border: none;
            border-radius: 0;
            background: white;
            cursor: pointer;
        }

            .my-account form.my-account__booking-year-form .styled-select select option {
                background-color: white;
                border: none;
                height: 30px;
                line-height: 30px;
                text-indent: 10px;
                cursor: pointer;
            }

@media only screen and (max-width: 569px) {
    .my-account form.my-account__booking-year-form {
        position: static;
    }
}

@media only screen and (max-width: 819px) {
    .my-account .my-account__form-column {
        width: 100%;
    }

        .my-account .my-account__form-column:not(:last-child) {
            padding-bottom: 0;
        }
}

@media only screen and (max-width: 569px) {
    .my-account .my-account__form-column:first-child {
        padding-top: 0;
    }
}

.my-account button {
    display: block;
    width: 100%;
    line-height: 40px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-transform: capitalize;
    padding: 0 8px;
    border: none;
    margin: 4px 0;
}

.my-account .my-account__details-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: subpixel-antialiased;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: white;
}

    .my-account .my-account__details-table em {
        font-weight: 400i;
        font-style: italic;
    }

    .my-account .my-account__details-table strong {
        font-weight: 700;
    }

    .my-account .my-account__details-table.lead {
        font-size: 14px;
        font-size: 1.4rem;
        font-family: Arial, sans-serif;
        font-weight: 700;
        line-height: 1.5;
        text-transform: none;
        letter-spacing: 0;
    }

    .my-account .my-account__details-table.serif {
        font-family: minion-pro, serif;
    }

    .my-account .my-account__details-table.italic {
        font-style: italic;
    }

    .my-account .my-account__details-table .my-account__details-th {
        display: table-row;
    }

    .my-account .my-account__details-table .my-account__details-tr {
        display: table-row;
    }

    .my-account .my-account__details-table .my-account__details-td {
        display: table-cell;
        border-width: 1px;
        border-style: solid;
        padding: 3px 8px;
    }

        .my-account .my-account__details-table .my-account__details-td > span {
            display: none;
        }

        .my-account .my-account__details-table .my-account__details-td.my-account__details-edit {
            font-size: 12px;
            text-align: right;
            background-color: transparent !important;
        }

@media only screen and (max-width: 819px) {
    .my-account .my-account__details-table {
        display: block;
    }

        .my-account .my-account__details-table .my-account__details-th {
            display: none;
        }

        .my-account .my-account__details-table .my-account__details-tr {
            display: block;
        }

        .my-account .my-account__details-table .my-account__details-td {
            display: block;
            border: none;
            margin: 1px 0;
        }

            .my-account .my-account__details-table .my-account__details-td > span {
                display: inline;
            }

                .my-account .my-account__details-table .my-account__details-td > span:after {
                    content: ": ";
                }
}

.my-account .my-account__details-table.my-account__details-table--bookings {
    margin: 10px 0 30px 0;
}

@media only screen and (max-width: 569px) {
    .my-account .my-account__details-table.my-account__details-table--bookings {
        margin-top: 0;
    }
}

.my-account .my-account__details-table.my-account__details-table--bookings .my-account__details-td {
    position: relative;
    width: 33.333%;
}

@media only screen and (max-width: 819px) {
    .my-account .my-account__details-table.my-account__details-table--bookings .my-account__details-td {
        width: 100%;
    }
}

.my-account .my-account__details-table.my-account__details-table--bookings .my-account__details-td:not(:first-child):not(:last-child) {
    border-left-width: 6px;
    border-right-width: 6px;
}

.my-account .my-account__details-table.my-account__details-table--bookings .my-account__details-td > div {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 8px;
}

.my-account.page-content--darkgrey-bg .my-account__details-tr .my-account__details-td {
    background-color: rgba(255, 255, 255, 0.12);
}

    .my-account.page-content--darkgrey-bg .my-account__details-tr .my-account__details-td > span {
        opacity: 0.25;
    }

.my-account.page-content--darkgrey-bg .my-account__details-td {
    border-color: #262626;
}

.my-account.page-content--darkgrey-bg .darkgrey-gold--switch {
    background-color: #b4975a !important;
}

.my-account.page-content--gold-bg .my-account__details-tr .my-account__details-td {
    background-color: rgba(255, 255, 255, 0.25);
}

    .my-account.page-content--gold-bg .my-account__details-tr .my-account__details-td > span {
        color: #b4975a;
    }

    .my-account.page-content--gold-bg .my-account__details-tr .my-account__details-td:last-child {
        margin-bottom: 15px;
    }

.my-account.page-content--gold-bg .my-account__details-td {
    border-color: #bca26b;
}

@media only screen and (max-width: 819px) {
    .my-account.my-account__lifestyle-manager .grid__col--12-s:last-of-type {
        padding-top: 0;
    }
}

@media only screen and (max-width: 569px) {
    .my-account.my-account__lifestyle-manager .grid__col--12-s:nth-last-of-type(2) {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.my-account.my-account__lifestyle-manager .manager-image img {
    width: 100%;
}

.my-account.my-account__lifestyle-manager .manager-name {
    -webkit-font-smoothing: subpixel-antialiased;
    font-smoothing: subpixel-antialiased;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    font-weight: 400;
    color: white;
    font-size: 18px;
    margin-bottom: 0.5em;
}

    .my-account.my-account__lifestyle-manager .manager-name em {
        font-weight: 400i;
        font-style: italic;
    }

    .my-account.my-account__lifestyle-manager .manager-name strong {
        font-weight: 700;
    }

    .my-account.my-account__lifestyle-manager .manager-name.lead {
        font-size: 14px;
        font-size: 1.4rem;
        font-family: Arial, sans-serif;
        font-weight: 700;
        line-height: 1.5;
        text-transform: none;
        letter-spacing: 0;
    }

    .my-account.my-account__lifestyle-manager .manager-name.serif {
        font-family: minion-pro, serif;
    }

    .my-account.my-account__lifestyle-manager .manager-name.italic {
        font-style: italic;
    }

.my-account.my-account__lifestyle-manager hr {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin-bottom: 1em;
}

.my-account.my-account__lifestyle-manager p {
    margin: 0 0 1em 0;
}

    .my-account.my-account__lifestyle-manager p a {
        text-decoration: underline;
    }

        .my-account.my-account__lifestyle-manager p a:hover {
            color: #FFFFFF;
        }

.my-account.my-account__lifestyle-manager .btn {
    max-width: 300px;
    font-family: Arial, sans-serif;
    text-transform: capitalize;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-top: 1em;
}

@media only screen and (max-width: 819px) {
    .my-account.my-account__lifestyle-manager .btn {
        margin-top: 1.5em;
    }
}

@media only screen and (max-width: 569px) {
    .my-account.my-account__lifestyle-manager .btn {
        max-width: unset;
        margin-top: 2em;
    }
}

.my-account.my-account__wish-list {
    background-color: #1a1a1a;
}

    .my-account.my-account__wish-list .wish-list__item {
        margin: 3em 0;
    }

        .my-account.my-account__wish-list .wish-list__item .wish-list__checkbox-list {
            margin: 2em 0 3em 0;
            overflow: hidden;
        }

            .my-account.my-account__wish-list .wish-list__item .wish-list__checkbox-list .checkbox {
                float: left;
                width: 25%;
                padding-right: 20px;
            }

@media only screen and (max-width: 1029px) {
    .my-account.my-account__wish-list .wish-list__item .wish-list__checkbox-list .checkbox {
        width: 33.333%;
    }
}

@media only screen and (max-width: 819px) {
    .my-account.my-account__wish-list .wish-list__item .wish-list__checkbox-list .checkbox {
        width: 50%;
    }
}

@media only screen and (max-width: 569px) {
    .my-account.my-account__wish-list .wish-list__item .wish-list__checkbox-list .checkbox {
        float: none;
        width: 100%;
    }
}

/*=============================
 + FAVOURITES & RECOMMENDED
==============================*/

.recommended h2,
.favourites h2 {
    padding-bottom: 20px;
    font-size: 1.8rem;
}

.recommended .recommended__content > div .recommended__listing .recommended__item,
.favourites .favourites__content > div .favourites__listing .favourites__item {
    display: block;
    float: left;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 250px;
}

    .recommended .recommended__content > div .recommended__listing .recommended__item .toggle-favourite,
    .favourites .favourites__content > div .favourites__listing .favourites__item .toggle-favourite {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 999;
        height: 24px;
        width: 24px;
        background-repeat: no-repeat;
    }

        .recommended .recommended__content > div .recommended__listing .recommended__item .toggle-favourite,
        .recommended .recommended__content > div .recommended__listing .recommended__item .toggle-favourite.is-favourite:hover,
        .favourites .favourites__content > div .favourites__listing .favourites__item .toggle-favourite,
        .favourites .favourites__content > div .favourites__listing .favourites__item .toggle-favourite.is-favourite:hover {
            background-image: url(/content/images/favourite-unticked.png);
        }

            .recommended .recommended__content > div .recommended__listing .recommended__item .toggle-favourite:hover,
            .recommended .recommended__content > div .recommended__listing .recommended__item .toggle-favourite.is-favourite,
            .favourites .favourites__content > div .favourites__listing .favourites__item .toggle-favourite:hover,
            .favourites .favourites__content > div .favourites__listing .favourites__item .toggle-favourite.is-favourite {
                background-image: url(/content/images/favourite-ticked.png);
            }

    .recommended .recommended__content > div .recommended__listing .recommended__item img.propimg,
    .favourites .favourites__content > div .favourites__listing .favourites__item img.propimg {
        transition: all 0.35s linear;
        height: 100%;
        width: auto;
        background-size: cover;
    }

    .recommended .recommended__content > div .recommended__listing .recommended__item .title-layer,
    .favourites .favourites__content > div .favourites__listing .favourites__item .title-layer {
        position: absolute;
        bottom: -20%;
        width: 100%;
        height: 50%;
        padding: 10px 12px;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.6);
        -moz-transition: 0.35s;
        -ms-transition: 0.35s;
        -o-transition: 0.35s;
        -webkit-transition: 0.35s;
        transition: 0.35s;
    }

    .recommended .recommended__content > div .recommended__listing .recommended__item:hover img.propimg,
    .favourites .favourites__content > div .favourites__listing .favourites__item:hover img.propimg {
        transform: scale(1.2);
    }

.prop-name {
    font-size: 20px !important;
}

.recommended .recommended__content > div .recommended__listing .recommended__item:hover .title-layer,
.favourites .favourites__content > div .favourites__listing .favourites__item:hover .title-layer {
}

@media only screen and (min-width: 820px) {
    .recommended .recommended__content > div .recommended__listing .recommended__item,
    .favourites .favourites__content > div .favourites__listing .favourites__item {
        width: 24.5%;
    }

        .recommended .recommended__content > div .recommended__listing .recommended__item:not(:first-child),
        .favourites .favourites__content > div .favourites__listing .favourites__item:not(:first-child) {
            margin: 0 0 1% 0.5%;
        }
}

@media only screen and (max-width: 819px) {
    .recommended .recommended__content > div .recommended__listing .recommended__item,
    .favourites .favourites__content > div .favourites__listing .favourites__item {
        width: 100%;
        margin-bottom: 4%;
    }

        .recommended .recommended__content > div .recommended__listing .recommended__item img.propimg,
        .favourites .favourites__content > div .favourites__listing .favourites__item img.propimg {
            width: 100%;
        }
}

.recommended .recommended__content > div .recommended__listing .recommended__item .listing__type-icons,
.favourites .favourites__content > div .favourites__listing .favourites__item .listing__type-icons {
    position: absolute;
    bottom: 10px;
    right: 5px;
}

    .recommended .recommended__content > div .recommended__listing .recommended__item .listing__type-icons > div,
    .favourites .favourites__content > div .favourites__listing .favourites__item .listing__type-icons > div {
        float: left;
        width: 28px;
        margin: 0 5px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
    }

        .recommended .recommended__content > div .recommended__listing .recommended__item .listing__type-icons > div.exclusive,
        .favourites .favourites__content > div .favourites__listing .favourites__item .listing__type-icons > div.exclusive {
            background-image: url(/Content/images/icon_residence.svg);
        }

        .recommended .recommended__content > div .recommended__listing .recommended__item .listing__type-icons > div.residence,
        .favourites .favourites__content > div .favourites__listing .favourites__item .listing__type-icons > div.residence {
            background-image: url(/Content/images/icon_exclusive.svg);
        }


/*=============================
 + TRUMPS - frrrrt
=============================*/
.editable-content img {
    max-width: 100%;
    height: auto !important;
}

.infobox .map-popup-inner {
    width: 300px;
    background-color: black;
    z-index: 1;
}
    /*.infobox .map-popup-inner img {
    float: left;
    width: 100px;
    height: 100px; }*/
    .infobox .map-popup-inner .image {
        background-size: cover;
        background-position: bottom center;
        display: block;
        height: 130px;
        width: 300px;
    }

    .infobox .map-popup-inner > div:nth-child(2) h6 {
        font-family: minion-pro, serif;
        font-size: 20px;
        color: #bca26b;
        padding: 1em 1em 0 1em;
        font-weight: normal;
    }

    .infobox .map-popup-inner .map-popup-contents .learn-more-link {
        padding: 0.5em 1em 1em;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 16px;
    }

        .infobox .map-popup-inner .map-popup-contents .learn-more-link a {
            display: block;
            padding: 0.5em;
            border: 1px solid #bca26b;
            width: 100%;
            text-align: center;
            color: white;
            font-size: 16px;
        }

    .infobox .map-popup-inner > div:nth-child(2) p {
        font-family: minion-pro, serif;
        font-size: 16px;
        font-style: italic;
        color: #808080;
        margin-bottom: 0;
    }

    .infobox .map-popup-inner .map-popup__close {
        position: absolute;
        top: 0;
        right: 0;
        width: 26px;
        height: 25px;
        cursor: pointer;
    }

        .infobox .map-popup-inner .map-popup__close:before {
            content: "";
            display: block;
            position: absolute;
            top: 12px;
            left: -14px;
            background-color: white;
            margin: 0 0 4px 20px;
            transform: rotate(45deg);
            position: absolute;
            width: 14px;
            height: 1px;
        }

        .infobox .map-popup-inner .map-popup__close:after {
            content: "";
            display: block;
            position: absolute;
            top: 12px;
            left: -14px;
            background-color: white;
            margin: 0 0 4px 20px;
            transform: rotate(135deg);
            position: absolute;
            width: 14px;
            height: 1px;
        }

.ui-icon {
    width: 10px;
    height: 10px;
}

.ui-icon,
.ui-widget-content .ui-icon, .ui-widget-header .ui-icon, .ui-state-default .ui-icon, .ui-state-hover .ui-icon,
.ui-state-focus .ui-icon, .ui-state-active .ui-icon, .ui-state-highlight .ui-icon, .ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: none !important;
}

span.ui-icon {
    right: 1.2em !important;
    margin-top: -11px !important;
    width: 15px;
    height: 15px;
    border-right: 1px solid black !important;
    border-bottom: 1px solid black !important;
}

span.ui-selectmenu-text {
    padding: 10px 15px !important;
}

.ui-widget,
.ui-widget .ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-size: 10px;
    font-size: 1rem;
    padding: 0px;
    margin-bottom: 1.5rem !important;
}

.ui-widget-content {
    color: black;
}

    .ui-widget-content a {
        color: #fff;
    }

    .ui-state-hover,
    .ui-widget-content .ui-state-hover,
    .ui-widget-header .ui-state-hover,
    .ui-state-focus,
    .ui-widget-content .ui-state-focus,
    .ui-widget-header .ui-state-focus {
        color: black;
    }

    .ui-state-default,
    .ui-widget-content .ui-state-default,
    .ui-widget-header .ui-state-default {
        font-weight: normal;
        color: black;
        padding: 0px;
        width: 100% !important;
    }

.ui-selectmenu-menu ul li {
    font-size: 15px !important;
}

.ui-selectmenu-menu .ui-menu .ui-menu-item {
    padding: 8px 10px !important;
}

.ui-selectmenu-open {
    z-index: 99999;
}

form.form--filter .ui-widget-content {
    color: white;
}

    form.form--filter .ui-state-default,
    form.form--filter .ui-widget-content .ui-state-default,
    form.form--filter .ui-widget-header .ui-state-default {
        font-weight: normal;
        color: white;
        padding: 0px;
    }

form.form--filter span.ui-selectmenu-text {
    padding: 9px 10px 8px !important;
    line-height: 1 !important;
}

form.form--filter span.ui-icon {
    right: 1.2em !important;
    margin-top: -9px !important;
    width: 10px;
    height: 10px;
    border-right: 1px solid white !important;
    border-bottom: 1px solid white !important;
}

.ui-widget-content {
    color: #000;
    padding: 5px 20px 20px;
    width: 409px;
    margin-top: -38px;
    margin-top: 0;
    margin-left: 0;
    background-color: #595959;
    border: none;
    font-size: 15px;
    color: white;
}

    .ui-widget-content .ui-datepicker-prev {
        float: left;
    }

    .ui-widget-content .ui-datepicker-next {
        float: right;
    }

    .ui-widget-content .ui-datepicker-title {
        clear: both;
        text-align: center;
        font-family: minion-pro,serif;
    }

    .ui-widget-content a {
        color: #fff;
        font-family: minion-pro, serif;
        font-size: 15px;
    }

    .ui-widget-content table thead {
        border-top: none;
        border-bottom: none;
        font-family: minion-pro, serif;
        font-style: normal;
    }

        .ui-widget-content table thead tr {
            height: 48px;
        }

            .ui-widget-content table thead tr th {
                padding: 7px;
                vertical-align: middle;
                text-align: center;
                color: #fff;
                font-family: minion-pro, serif;
                font-size: 15px;
            }

    .ui-widget-content table tbody tr:first-of-type td {
        padding-top: 0;
    }

    .ui-widget-content table tbody tr td {
        vertical-align: bottom;
        text-align: center;
        font-family: Arial,sans-serif;
        padding: 0;
    }

        .ui-widget-content table tbody tr td .ui-state-default {
            font-weight: normal;
            color: #fff;
            padding: 0;
            width: 43px !important;
            padding: 10px 10px;
            /* border: 1px solid black; */
            display: block;
            margin-left: 5px;
            background-color: #262626;
        }

.facts-bedroom {
    width: 19px;
    float: left;
    margin-top: 3px;
    margin-right: 15px;
}

.facts-bathroom {
    width: 19px;
    float: left;
    margin-top: 6px;
    margin-right: 15px;
}

.success-sent .Name {
    margin: 0;
}

.ui-datepicker {
    position: absolute;
    top: 0;
    padding: 20px !important;
    margin: 0 !important;
}

    .ui-datepicker .ui-datepicker-next .ui-icon, .ui-datepicker .ui-datepicker-prev .ui-icon {
        border: none !important;
    }

.expedition-master-container {
    position: relative;
    overflow: hidden;
    width: 1200px;
    margin: 0 auto;
}

    .expedition-master-container .expedition-container {
        position: relative;
        height: 540px;
        width: 598px;
        float: left;
        margin: 1px;
        background-size: cover;
    }

        .expedition-master-container .expedition-container .expedition-background {
            height: 100%;
            width: 100%;
            background-size: cover;
            background-position: bottom;
            transition: 0.4s;
        }

    .expedition-master-container .expedition-container-three {
        position: relative;
        height: 300px;
        width: 390px;
        float: left;
        margin: 5px;
        background-size: cover;
        overflow: hidden;
    }

        .expedition-master-container .expedition-container-three .expedition-background {
            height: 100%;
            width: 100%;
            background-size: cover;
            background-position: bottom;
            transition: 0.4s;
        }

    .expedition-master-container .expedition-container-four {
        position: relative;
        height: 225px;
        width: 290px;
        float: left;
        margin: 5px;
        background-size: cover;
        overflow: hidden;
    }

        .expedition-master-container .expedition-container-four .expedition-background {
            height: 100%;
            width: 100%;
            background-size: cover;
            background-position: bottom;
            transition: 0.4s;
        }

    .expedition-master-container .expedition-container-two {
        position: relative;
        height: 350px;
        width: 590px;
        float: left;
        margin: 5px;
        background-size: cover;
        overflow: hidden;
    }

        .expedition-master-container .expedition-container-two .expedition-background {
            height: 100%;
            width: 100%;
            background-size: cover;
            background-position: bottom;
            transition: 0.4s;
        }

@media screen and (max-width:1200px) {
    .expedition-container-two {
        width: 48% !important;
        height: 350px !important;
    }

    .expedition-container-three {
        width: 48% !important;
        height: 350px !important;
    }

    .expedition-container-four {
        width: 48% !important;
        height: 350px !important;
    }
}

@media screen and (max-width:600px) {

    .expedition-master-container {
        width: 100%;
        max-width: 300px;
    }

    .expedition-container-two {
        width: 100% !important;
        height: 350px !important;
    }

    .expedition-container-three {
        width: 100% !important;
        height: 350px !important;
    }

    .expedition-container-four {
        width: 100% !important;
        height: 350px !important;
    }
}

.expedition-background:hover {
    transform: scale(1.2);
}

.expedition-master-container .expedition-container-wide {
    position: relative;
    height: 400px;
    width: 1190px;
    float: left;
    margin: 5px;
    background-size: cover;
}

    .expedition-master-container .expedition-container-wide .expedition-background {
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: bottom;
    }

.expedition-master-container > a {
    font-size: 2em;
}

.expedition-master-container .expedition-footer {
    position: absolute;
    bottom: 0px;
    height: 90px;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .expedition-master-container .expedition-footer a {
        max-width: 80%;
    }

        .expedition-master-container .expedition-footer a h2 {
            margin: 0;
            font-size: 2em;
            color: white;
            text-align: center;
        }


@media only screen and (max-width: 1220px) {
    .expedition-master-container .expedition-container,
    .expedition-master-container .expedition-container-wide {
        width: 100%;
    }

    .expedition-master-container {
        width: 100%;
        max-width: 1220px;
    }
}

span.white {
    color: white !important;
}

div.expedition-intro {
    margin: 2em 0;
}

    div.expedition-intro p {
        font-size: 1.6rem;
    }

div.expedition-highlights ul {
    list-style-type: disc;
    color: white;
}

    div.expedition-highlights ul li {
        margin-bottom: 1em;
    }

@media only screen and (min-width: 800px) {
    div.expedition-highlights ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
        -webkit-column-gap: 40px;
        column-gap: 40px;
        -moz-column-gap: 40px;
        list-style-position: inside;
    }

        div.expedition-highlights ul li {
            text-indent: -1.4em;
        }
}

div.expedition-highlights h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

div.expedition-itinerary {
    padding-right: 5%;
}

    div.expedition-itinerary h3 {
        color: #b4975a;
        text-transform: uppercase;
    }

    div.expedition-itinerary h2 span.white {
        font-size: 25px;
    }

div.expedition-team img {
    display: block;
    margin-bottom: 30px;
}


@media screen and (max-width: 1027px) {
    div.expedition-team {
        margin-bottom: 300px;
    }

    div.related-expeditions {
        position: relative bottom: 0px;
    }
}

@media screen and (max-width: 600px) {
    div.expedition-team {
        margin-bottom: 600px;
    }

    div.related-expeditions {
        position: relative bottom: 0px;
    }
}

div.expedition-departuredates {
    width: 100%;
    padding: 1rem;
    border: solid 1px white;
}

.expedition-departuredates h2,
.expedition-team h2,
.related-expeditions h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

div.related-expedition {
    max-width: 335px;
    float: left;
    margin: 2px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    div.related-expedition h3 {
        display: block;
        position: absolute;
        width: 100%;
        height: 80px;
        left: 0;
        bottom: 0;
        padding: 20px;
        margin: 0;
        background: rgba(0, 0, 0, 0.5);
        text-transform: none;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div.related-expedition img {
        max-width: 100%;
        transition: 0.3s;
    }

    div.related-expedition:hover img {
        max-width: 100%;
        transform: scale(1.2);
    }

div.related-event {
    width: 32%;
    float: left;
    margin: 20px 0.6% 0;
    position: relative;
    overflow: hidden;
}

    div.related-event h3 {
        display: block;
        position: absolute;
        width: 100%;
        height: 80px;
        left: 0;
        bottom: 0;
        padding: 20px;
        margin: 0;
        background: rgba(0, 0, 0, 0.5);
        text-transform: none;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    div.related-event img {
        max-width: 100%;
        transition: 0.3s;
    }

    div.related-event:hover img {
        transform: scale(1.2);
    }


.compass-background {
    background: url("/content/images/ERC-Logo.png") no-repeat 100% 100px;
}

.compass-background-home {
    background: url("/Content/images/ERC-Logo.png") no-repeat 100% 100px;
    background-color: #1a1a1a;
    background-size: contain;
}

.home-heading {
    text-transform: none !important;
}

.new-destinations .flickity-page-dots {
    display: block !important;
    visibility: visible;
    margin-top: 0px !important;
}

.new-destinations .flickity-viewport {
    height: 300px !important;
}


.grid-image {
    width: 100%;
    height: auto !important;
    transition: 0.4s;
    opacity: 1 !important;
}

    .grid-image:hover {
        transform: scale(1.2);
    }

.home-grid-item a {
    width: 100% !important;
}

.new-destinations .home-grid-item {
    overflow: hidden;
    height: 280px;
    background-size: cover;
    padding: 0px !important;
    /* transition:0.4s; */
}

.new-dest {
    width: 100%;
    margin: 0px !important;
    max-width: 100% !important;
}

.new-destination-caption {
    bottom: 0;
    top: 70%;
    padding-top: 10px;
    text-align: center;
    width: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.4);
}

    .new-destination-caption h3 {
        font-size: 2.5em;
    }

.featured-destinations .home-grid-item {
    overflow: hidden;
    height: 280px;
    background-size: cover;
    padding: 0px !important;
    /* transition:0.4s; */
}

.featured-dest {
    width: 100%;
    margin: 0px !important;
    max-width: 100% !important;
}

.featured-destination-caption {
    bottom: 0;
    top: 70%;
    padding-top: 10px;
    text-align: center;
    width: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.4);
}

    .featured-destination-caption h3 {
        font-size: 2.5em;
    }

.my-world .flickity-viewport .flickity-slider .home-grid-item:first-child {
    border-right: solid 1px #b4975a;
}

.my-world .flickity-viewport .flickity-slider .home-grid-item:last-child {
    border-left: solid 1px #b4975a;
}

.globe-background {
    background: url("/content/images/ERC-Globe.png") no-repeat center center fixed #B59653;
    background-size: cover;
}

.slideshow-with-title-item.is-selected .carousel-img-div {
    opacity: 1;
    background-position: center center;
}

.carousel img {
    height: 600px;
    opacity: 0.3;
    background-position: center center;
}

    .carousel img.is-selected {
        opacity: 1;
    }

.carousel-img-div {
    height: 600px;
    width: 1120px;
    background-size: cover;
    opacity: 0.3;
    background-position: center center;
}

@media only screen and (max-width: 500px) {
    .carousel-img-div {
        height: 300px;
        width: 400px;
    }
}

@media only screen and (min-width: 501px) and (max-width:800px) {
    .carousel-img-div {
        height: 400px;
        width: 450px;
        max-width: 100%;
    }
}


@media only screen and (min-width: 801px) and (max-width:1000px) {
    .carousel-img-div {
        height: 450px;
        width: 700px;
        max-width: 100%;
    }
}

@media only screen and (min-width: 1001px) and (max-width:1200px) {
    .carousel-img-div {
        height: 500px;
        width: 1120px;
        max-width: 100%;
    }
}

.carousel-img-div.is-selected {
    opacity: 1;
}

.flickity-page-dots {
    display: none;
    visibility: hidden;
}

.slideshow-with-title-item.is-selected img {
    opacity: 1 !important;
}

.destination-types h1 {
    text-align: center;
    margin-bottom: 40px;
    text-transform: none;
}

.destination-types {
    margin-top: 80px;
}

.six-grid {
    display: block;
    position: relative;
    margin: 0.3%;
    float: left;
    overflow: hidden;
    width: 98%;
    height: 80vw;
}

@media only screen and (min-width: 400px) {
    .six-grid {
        width: 48%;
        height: 200px;
    }
}

@media only screen and (min-width: 700px) {
    .six-grid {
        width: 32.5%;
        height: 300px;
    }
}

.six-grid div {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .4s;
    width: 100%;
    height: 100%;
}

.six-grid h2 {
    color: white;
    font-size: 3rem;
    text-shadow: 1.5px 1.5px 4px black;
}

a.six-grid div:hover {
    transform: scale(1.2);
}




/* four grid hack */
.four-grid {
    display: block;
    position: relative;
    margin: 0.3%;
    float: left;
    overflow: hidden;
    width: 98%;
    height: 80vw;
}

@media only screen and (min-width: 400px) {
    .four-grid {
        width: 48%;
        height: 200px;
    }
}

@media only screen and (min-width: 700px) {
    .four-grid {
        width: 23.5%;
        height: 300px;
    }
}


.four-grid div {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .4s;
    width: 100%;
    height: 100%;
}

.four-grid h2 {
    color: white;
    font-size: 3rem;
    text-shadow: 1.5px 1.5px 4px black;
}

a.four-grid div:hover {
    transform: scale(1.2);
}
/* end: four grid hack */



p.search-legend {
    font-family: minion-pro, serif;
    padding-top: 30px;
    font-size: 1.4rem;
}

    p.search-legend img {
        height: 16px;
        display: inline;
    }

.experiences-video {
    margin-top: 128px;
    width: 100%;
    height: 56vw;
}

@media screen and (max-width: 1200px) {
    .experiences-video {
        margin-top: 165px;
    }

    .home__background::before {
        margin-top: 0px !important;
    }

    .home__background {
        margin-top: 0px !important;
    }
}

@media screen and (max-width: 1000px) {
    .experiences-video {
        margin-top: 105px;
    }
}

@media screen and (max-width: 750px) {
    .experiences-video {
        margin-top: 105px;
    }

    .home-video {
        margin-top: 0px !important;
    }
}

@media screen and (min-width: 1201px) {
    .experiences-video {
        margin-top: 0px;
    }

        .experiences-video.home-video {
            margin-top: -153px;
        }
}

.experiences-video iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.property-page .property-page__headings.experiences h2,
.property-page .property-page__headings.experiences h1,
.page-content.page-content--darkgrey-bg .related-expeditions h2 {
    color: #b4975a;
}

#qualities td {
    font-style: italic;
    background-image: url("/Content/assets/ActivityIcon_4.svg");
    background-size: 26px 26px;
    background-position: right center;
}

    #qualities td * {
        padding-right: 26px;
    }

#qualities tr {
    height: 100px;
}

#qualities {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px;
}

.faqs-section {
    margin-left: -100px;
    margin-right: -100px;
}

.faqs {
    margin-left: 100px;
    margin-right: 100px;
}

.rent-property h1 {
    text-transform: none !important;
    color: #b4975a !important;
}

.rent-a-property .submit {
    background-color: none !important;
    border: solid white 1px;
}

monograp
.rent-my-property-image {
    width: 75%;
    height: auto;
}

.inspiration-todos h2 {
    color: #b4975a !important;
}

.todo {
    width: 100%;
    height: 400px;
    border: solid 0.5px #b4975a;
    /*line-height:250px;*/
    text-align: center;
    /*margin: 10px;*/
}

.todo-info {
    width: 50%;
    display: inline-block;
    float: left;
    text-align: center;
    padding: 30px;
}


@media all and (max-width: 800px) {
    .todo {
        border: none;
    }

    .todo-info {
        width: 100%;
    }
}


.todo-info h3 {
    text-transform: uppercase;
    color: white !important;
    font-family: Arial,sans-serif;
    width: 60%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 20px;
}

.todo-info h6 {
    color: white;
    line-height: 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.todo .todo-info table {
    margin: 0;
    padding: 0;
    height: 240px;
}

    .todo .todo-info table td {
        vertical-align: middle;
        height: 100%;
    }


.todo-image {
    width: 50%;
    height: 100%;
    display: inline-block;
    float: right;
    text-align: center;
}

@media all and (max-width: 800px) {
    .todo-image {
        width: 100%;
    }
}

.todo-image h2 {
    color: white !important;
    padding-top: 61px;
    text-transform: uppercase;
}

.todo .todo__button {
    display: inline-block;
    width: 180px;
    color: #b4975a;
    font-family: minion-pro, serif;
    font-style: italic;
    font-size: 18px;
    text-align: center;
    z-index: 99997;
    color: #b4975a;
    margin-top: 5px;
}

    .todo .todo__button:hover {
        -moz-transition: color, 0.3s, ease;
        -ms-transition: color, 0.3s, ease;
        -o-transition: color, 0.3s, ease;
        -webkit-transition: color, 0.3s, ease;
        transition: color, 0.3s, ease;
        color: #eee;
    }


.recommendations {
    border: solid 0.5px white;
    padding: 20px;
    margin: 20px;
}

    .recommendations h2 {
        color: #b4975a !important;
        text-transform: uppercase;
    }

    .recommendations p {
        color: white;
        font-style: italic;
    }

.travel-inspiration {
    text-transform: none !important;
}

    .travel-inspiration h1 {
        color: #b4975a !important;
        text-transform: none !important;
    }

    .travel-inspiration h2 {
        color: white;
    }

.inspiration-intro {
    color: white !important;
    font-size: 1.3em !important;
    padding-top: 30px;
}

.property-page__headings .travel-inspiration h1 {
    border-bottom: 0px !important;
    border: 0px !important;
}

.related-expeditions.related-inspirations {
    padding: 20px;
}

    .related-expeditions.related-inspirations h2 {
        font-size: 3rem;
        margin: 10px 0;
    }

.related-expedition.related-inspiration {
    height: 300px !important;
    width: 32.9%;
    max-width: 400px !important;
}

    .related-expedition.related-inspiration img {
        height: 100% !important;
    }



@media all and (max-width: 800px) {
    .related-expedition.related-inspiration {
        width: 100%;
    }
}



/*
 * Video Gallery
 */

@media all and (min-width: 1200px) {
    .video-gallery-item {
        width: 32.7% !important;
        display: inline-block;
        height: 250px;
        position: relative;
        margin-right: 0.3%;
        margin-bottom: 4px;
    }
}

@media all and (max-width: 1199px) and (min-width: 800px) {
    .video-gallery-item {
        width: 49.5% !important;
        display: inline-block;
        height: 250px;
        position: relative;
        margin-right: 0.3%;
        margin-bottom: 4px;
    }
}

@media all and (max-width: 799px) {
    .video-gallery-item {
        width: 100% !important;
        display: inline-block;
        height: 350px;
        position: relative;
        margin-bottom: 4px;
    }
}

@media all and (min-width: 800px) {
    .video-gallery-item .expedition-background {
        height: 200px;
        background-size: cover;
        width: auto;
    }
}

@media all and (max-width: 799px) {
    .video-gallery-item .expedition-background {
        height: 300px;
        background-size: cover;
        width: auto;
    }
}

.video-gallery-item .expedition-background:hover {
    transform: scale(1);
}

.video-gallery-item a.play-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 50px;
    right: 0;
    z-index: 2;
    background: url(/content/images/play-video.png) center center no-repeat;
    opacity: 0.5;
    -moz-transition: opacity, 0.3s, ease;
    -ms-transition: opacity, 0.3s, ease;
    -o-transition: opacity, 0.3s, ease;
    -webkit-transition: opacity, 0.3s, ease;
    transition: opacity, 0.3s, ease;
}

    .video-gallery-item a.play-image:hover {
        opacity: 0.6;
    }

.video-gallery .video-gallery-container {
    position: relative;
    overflow: hidden;
    width: 1000px;
    margin: 0 auto;
}

.video-gallery-container .gallery-footer {
    bottom: 0px;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: auto;
    height: 50px;
    position: relative;
}

    .video-gallery-container .gallery-footer a {
        max-width: 80%;
    }

        .video-gallery-container .gallery-footer a h2 {
            margin: 0;
            font-size: 2em;
            color: white;
            text-align: center;
        }




.vgalleries-page.vgalleries-page__activities-videos {
    height: 0;
    z-index: 101;
    display: none;
}

/*@media screen and (min-width: 818px) {*/
.vgalleries-page.vgalleries-page__activities-videos {
    display: block;
    /*pointer-events: none;*/
}
    /*}*/

    .vgalleries-page.vgalleries-page__activities-videos .activities-videos__inner {
        position: absolute;
        top: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
    }

        .vgalleries-page.vgalleries-page__activities-videos .activities-videos__inner.header-video .slideshow {
            height: auto;
        }

        .vgalleries-page.vgalleries-page__activities-videos .activities-videos__inner .slideshow .slideshow__item {
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            background-color: #262626;
        }

            .vgalleries-page.vgalleries-page__activities-videos .activities-videos__inner .slideshow .slideshow__item .activities-videos__item--wrapper {
                position: relative;
                width: 100%;
                max-width: 1080px;
                margin: 0 auto;
            }

            .vgalleries-page.vgalleries-page__activities-videos .activities-videos__inner .slideshow .slideshow__item .activities-videos__item {
                position: relative;
                width: 100%;
                height: 0;
                padding-bottom: 56.25%;
            }

                .vgalleries-page.vgalleries-page__activities-videos .activities-videos__inner .slideshow .slideshow__item .activities-videos__item iframe {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                }

        .vgalleries-page.vgalleries-page__activities-videos .activities-videos__inner .activities-videos__close {
            position: absolute;
            top: 15px;
            right: 15px;
            height: 50px;
            width: 50px;
            padding: 10px;
            cursor: pointer;
            z-index: 102;
        }





.inspiration-filter-form form * {
    font-family: minion-pro, serif;
    outline: none;
    text-transform: none;
}

.inspiration-filter-form form {
    margin-bottom: 25px;
    height: 50px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    margin-top: 18px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    padding: 8px 0 7px 0;
}

    .inspiration-filter-form form button {
        display: block;
        border: none;
    }

        .inspiration-filter-form form button:hover {
            color: white;
        }

        .inspiration-filter-form form button[type="reset"] {
            font-size: 14px;
            font-style: italic;
            padding: 15px;
            margin: 13px 0 0 auto;
            background-color: #1a1a1a;
        }

        .inspiration-filter-form form button[type="submit"] {
            font-size: 18px;
            line-height: 38px;
            padding: 0;
            width: 100%;
            background-color: #b4975a;
            text-transform: uppercase;
        }

    .inspiration-filter-form form .styled-select {
        width: 100%;
        height: 38px;
        margin-bottom: 8px;
        overflow: hidden;
    }

        .inspiration-filter-form form .styled-select select {
            line-height: 38px;
            width: 100% !important;
            height: 38px;
            color: white;
            font-size: 15px;
            line-height: 38px;
            text-indent: 5px;
            border: none;
            border-radius: 0;
            background: #595959;
            cursor: pointer;
        }

            .inspiration-filter-form form .styled-select select option {
                background-color: #777;
                border: none;
                font-size: 14px;
                height: 30px;
                line-height: 30px;
                text-indent: 10px;
                cursor: pointer;
            }


/* Rent My Residence */

.rmr-box {
    display: flex;
    align-items: center;
    padding: 30px 20px 30px 130px;
    border: 1px solid #eeeeee;
    font-size: 1.8rem;
    font-style: italic;
    color: #eeeeee;
    margin-bottom: 20px;
    background-size: 72px;
    background-position: 25px 25px;
    background-repeat: no-repeat;
    height: 130px;
}

    .rmr-box.rmr-bell {
        background-image: url(/Content/images/RmrBell.svg);
    }

    .rmr-box.rmr-bed {
        background-image: url(/Content/images/RmrBed.svg);
    }

    .rmr-box.rmr-community {
        background-image: url(/Content/images/RmrCommunity.svg);
    }

    .rmr-box.rmr-maid {
        background-image: url(/Content/images/RmrMaid.svg);
    }

    .rmr-box.rmr-luxury {
        background-image: url(/Content/images/RmrLuxuryFurnishing.svg);
    }

    .rmr-box.rmr-swimming {
        background-image: url(/Content/images/RmrSwimmingPool.svg);
    }

.my-account .property-page__enquire-now {
    width: 260px !important;
    color: #b4975a;
    font-family: minion-pro, serif;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 0;
    background-color: #FFFFFF;
    transition: opacity 0.35s linear;
    z-index: 99997;
}

.faq-question {
    font-size: 2rem;
    color: #fff;
    padding-bottom: 2rem;
    cursor: pointer;
    -moz-transition: color, 0.3s, ease;
    -ms-transition: color, 0.3s, ease;
    -o-transition: color, 0.3s, ease;
    -webkit-transition: color, 0.3s, ease;
    transition: color, 0.3s, ease;
}

    .faq-question:hover {
        color: #333333;
    }

    .faq-question .faq-question-inner {
        display: inline-block;
        margin-left: 10px;
        width: calc(100% - 30px);
    }

    .faq-question .arrow {
        display: inline-block;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        border-radius: 0 2px 2px 2px;
        width: 10px;
        height: 10px;
        transform: rotate(45deg);
        margin: 5px 0 0 0;
        -moz-transition: color, 0.3s, ease;
        -ms-transition: color, 0.3s, ease;
        -o-transition: color, 0.3s, ease;
        -webkit-transition: color, 0.3s, ease;
        transition: color, 0.3s, ease;
        vertical-align: top;
    }

    .faq-question:hover .arrow {
        border-bottom-color: #333333;
        border-right-color: #333333;
    }

    .faq-question.open .arrow {
        transform: rotate(225deg);
        margin: 10px 0 0 0;
    }

.faq-answer {
}

    .faq-answer ol, .faq-answer ul {
        list-style-position: outside;
        margin-left: 25px !important;
        line-height: 2.2rem;
    }

    .faq-answer ol, .faq-answer p {
        padding: 0 0 2rem 0;
        margin: 0 0 0 5px;
        font-size: 1.6rem;
        color: #fff;
    }


.page-content.page-content--darkgrey-bg ul,
.page-content.page-content--darkgrey-bg ol {
    color: #fff;
}

img.club-elite-icon {
    display: block;
    float: right;
    z-index: 99999;
    margin-right: 20px;
    margin-top: 12px;
    width: 28px;
    height: 28px;
}

