@charset "UTF-8";
/* ==============================
global.css
---------------
Created By: Bone Digital Pty Ltd
Web: http://bone.digital/
Email: hello@bone.digital
Copyright (c) 2017 Bone Digital Pty Ltd
============================== */
/* Includes
------------------------------ */
/* ==============================
global.css
---------------
Created By: Bone Digital Pty Ltd
Web: http://bone.digital/
Email: hello@bone.digital
Copyright (c) 2017 Bone Digital Pty Ltd
============================== */
/* 
    -----
    Box Sizing
    -----
    @include box-sizing(border-box); 

    -----
    Flexbox
    -----
    @include flexbox
    @include inline-flex
    
    -----
    Flex Direction
    -----
    @include flex-direction($value: row)
    Values: row | row-reverse | column | column-reverse
    Default: row
        
    -----
    Flex Wrap
    -----
    @include flex-wrap($value: nowrap)
    Values: nowrap | wrap | wrap-reverse
    Default: nowrap
    
    -----
    Flex Flow
    -----
    @include flex-flow($values: (row nowrap))
    Values: <flex-direction> | <flex-wrap> 
    Default: row nowrap
    
    -----
    Order
    -----
    @include order($int: 0)
    Default: 0
    
    -----
    Flex Grow
    -----
    @include flex-grow($int: 0)
    Default: 0
    
    -----
    Flex Shrink
    -----
    @include flex-shrink($int: 1)
    Default: 1
    
    -----
    Flex Basis
    -----
    @include flex-basis($value: auto)
    Values: Like "width" 
    Default: auto
    
    -----
    Justify Content
    -----
    @include justify-content($value: flex-start)
    Values: flex-start | flex-end | center | space-between | space-around
    Default: flex-start
    
    -----
    Align Items
    -----
    @include align-items($value: stretch)
    Values: flex-start | flex-end | center | baseline | stretch
    Default: stretch
    
    -----
    Align Self
    -----
    @include align-self($value: auto)
    Values: auto | flex-start | flex-end | center | baseline | stretch
    Default: auto
    
    -----
    Align Content
    -----
    @include align-content($value: stretch)
    Values: flex-start | flex-end | center | space-between | space-around | stretch
    Default: stretch
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.gform_wrapper {
  max-width: 623px;
  margin: 0px auto;
}

.gform_wrapper .validation_message {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.gform_wrapper .validation_error {
  display: none;
}

.gform_wrapper form .gform_body {
  margin-bottom: 0px;
}

.gform_wrapper form .gform_body > .gform_fields {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gform_wrapper form .gform_body > .gform_fields > li {
  width: 100%;
  list-style: none;
  padding: 0px;
  margin-bottom: 35px;
}

.gform_wrapper form .gform_body > .gform_fields > li.gform_hidden {
  position: fixed;
  left: -9999px;
}

.gform_wrapper form .gform_body > .gform_fields > li:before {
  display: none;
}

.gform_wrapper form .gform_body > .gform_fields > li.gfield_error input[type="text"],
.gform_wrapper form .gform_body > .gform_fields > li.gfield_error input[type="email"],
.gform_wrapper form .gform_body > .gform_fields > li.gfield_error select,
.gform_wrapper form .gform_body > .gform_fields > li.gfield_error textarea {
  background: #bababa;
}

.gform_wrapper form .gform_body > .gform_fields > li:last-of-type {
  margin-bottom: 0px;
}

.gform_wrapper form .gform_body > .gform_fields > li a {
  color: #6b6c6e;
}

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div .ginput_container {
  width: 31%;
  position: relative;
}

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div .ginput_container:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 20px;
  content: '\f107';
  font-family: "FontAwesome";
  pointer-events: none;
}

.gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}

.gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li input[type="radio"] {
  margin: 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 4px;
}

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li input[type="checkbox"] {
  margin: 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 4px;
}

.gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select {
  position: relative;
  width: 100%;
}

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 20px;
  content: '\f107';
  font-family: "FontAwesome";
  pointer-events: none;
}

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
}

.gform_wrapper form .gform_body > .gform_fields > li.hide-label > .gfield_label {
  display: none;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"],
.gform_wrapper form .gform_body > .gform_fields > li select,
.gform_wrapper form .gform_body > .gform_fields > li textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  border: 0px;
  background: #fff;
  color: #231F20;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 0;
  padding: 10px 8px;
  resize: none;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea::-webkit-input-placeholder {
  /* Chrome */
  color: #231F20;
  text-transform: uppercase;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #231F20;
  text-transform: uppercase;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select::-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #231F20;
  opacity: 1;
  text-transform: uppercase;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #231F20;
  opacity: 1;
  text-transform: uppercase;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:focus,
.gform_wrapper form .gform_body > .gform_fields > li select:focus,
.gform_wrapper form .gform_body > .gform_fields > li textarea:focus {
  outline: 0px;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:focus::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:focus::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:focus::-webkit-input-placeholder {
  /* Chrome */
  color: #BABABA;
  text-transform: uppercase;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:focus:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:focus:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:focus:-ms-input-placeholder {
  /* IE 10+ */
  color: #BABABA;
  text-transform: uppercase;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus::-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:focus::-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:focus::-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:focus::-moz-placeholder {
  /* Firefox 19+ */
  color: #BABABA;
  opacity: 1;
  text-transform: uppercase;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:focus:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:focus:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:focus:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #BABABA;
  opacity: 1;
  text-transform: uppercase;
}

.gform_wrapper form .gform_body > .gform_fields > li.third {
  width: 31%;
}

.gform_wrapper form .gform_body > .gform_fields > li.half {
  width: 48%;
}

.gform_wrapper form .gform_body > .gform_fields > li.two-thirds {
  width: 65.5%;
}

.gform_wrapper form .gform_footer .gform_button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  border-radius: 0px;
  border: 0px;
  display: block;
  width: auto;
  max-width: initial;
  background: #fff;
  color: #000;
  font-family: 'CentSchbook';
  text-transform: uppercase;
  letter-spacing: normal;
  font-size: 16px;
}

.gform_wrapper form .gform_footer .gform_button:focus {
  outline: 0px;
}

body img.gform_ajax_spinner {
  display: none !important;
}

@font-face {
  font-family: 'CentSchbook';
  src: url("../fonts/CenturySchoolbookBT-Monospace.eot");
  src: url("../fonts/CenturySchoolbookBT-Monospace.eot?#iefix") format("embedded-opentype"), url("../fonts/CenturySchoolbookBT-Monospace.woff") format("woff"), url("../fonts/CenturySchoolbookBT-Monospace.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Self Modern';
  src: url("../fonts/SelfModern-Regular.eot");
  src: url("../fonts/SelfModern-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/SelfModern-Regular.woff") format("woff"), url("../fonts/SelfModern-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Maison';
  src: url("../fonts/MaisonNeueMono-Regular.eot");
  src: url("../fonts/MaisonNeueMono-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/MaisonNeueMono-Regular.woff") format("woff"), url("../fonts/MaisonNeueMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Self Modern Italic';
  src: url("../fonts/SelfModern-Italic.eot");
  src: url("../fonts/SelfModern-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/SelfModern-Italic.woff") format("woff"), url("../fonts/SelfModern-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?hu76he");
  src: url("../fonts/icomoon.eot?hu76he#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?hu76he") format("truetype"), url("../fonts/icomoon.woff?hu76he") format("woff"), url("../fonts/icomoon.svg?hu76he#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-close:before {
  content: "\e900";
}

.icon-arrow-right:before {
  content: "\e901";
}

.icon-arrow-left:before {
  content: "\e902";
}

.icon-arrow-down:before {
  content: "\e903";
}

.icon-tick:before {
  content: "\e904";
}

.icon-arrow-up:before {
  content: "\e905";
}

.icon-star-full:before {
  content: "\e906";
}

.icon-star-empty:before {
  content: "\e907";
}

.icon-minus:before {
  content: "\e908";
}

.icon-plus:before {
  content: "\e909";
}

/* ==============================
_base.css
---------------
Created By: Bone Digital Pty Ltd
Web: http://bone.digital/
Email: hello@bone.digital
Copyright (c) 2017 Bone Digital Pty Ltd
============================== */
/* Text
------------------------------ */
p {
  margin-top: 0px;
  margin-bottom: 18px;
  line-height: 18px;
}

bold,
strong {
  font-weight: normal;
}

h1 {
  font-size: 70px;
  font-family: 'Self Modern';
}

h2 {
  font-family: 'CentSchbook';
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 6px;
}

h3 {
  font-size: 30px;
  font-family: 'Self Modern';
}

h4 {
  font-family: 'Maison';
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 33px;
}

blockquote,
blockquote p {
  font-size: 20px;
  line-height: 24px;
  font-family: 'Self Modern';
}

.font-CentSchbook-upper {
  font-family: 'CentSchbook';
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Links and Buttons
------------------------------ */
a {
  text-decoration: none;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #231F20;
}

.mac a.button.button-short,
.mac button.button-short,
.mac input[type=submit].button-short {
  padding: 3px 6px 3px 8px;
}

.mac a.button.button-short span,
.mac button.button-short span,
.mac input[type=submit].button-short span {
  padding: 3px 6px 3px 8px !important;
}

.inner-wrapper > div:not(#newbook_content) a.button,
.inner-wrapper > div:not(#newbook_content) button,
.inner-wrapper > div:not(#newbook_content) input[type=submit] {
  font-family: 'Maison';
  font-size: 13px;
  text-transform: uppercase;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 13px;
  letter-spacing: 2px;
  background: #231F20;
  border: 0px;
  color: #fff;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 9px 8px 7px;
  text-align: center;
  display: inline-block;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: translateZ(0);
  -webkit-transform: translateZ(0) scale(1, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.inner-wrapper > div:not(#newbook_content) a.button:focus,
.inner-wrapper > div:not(#newbook_content) button:focus,
.inner-wrapper > div:not(#newbook_content) input[type=submit]:focus {
  outline: 0px;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-short,
.inner-wrapper > div:not(#newbook_content) button.button-short,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-short {
  padding: 4px 6px 2px 8px;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-short span,
.inner-wrapper > div:not(#newbook_content) button.button-short span,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-short span {
  padding: 4px 6px 2px 8px !important;
}

.inner-wrapper > div:not(#newbook_content) a.button span,
.inner-wrapper > div:not(#newbook_content) button span,
.inner-wrapper > div:not(#newbook_content) input[type=submit] span {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-has-arrow .button-inner,
.inner-wrapper > div:not(#newbook_content) button.button-has-arrow .button-inner,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-has-arrow .button-inner {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-has-arrow .button-inner i,
.inner-wrapper > div:not(#newbook_content) button.button-has-arrow .button-inner i,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-has-arrow .button-inner i {
  margin-left: 13px;
  display: block;
}

.inner-wrapper > div:not(#newbook_content) a.button span.hover,
.inner-wrapper > div:not(#newbook_content) button span.hover,
.inner-wrapper > div:not(#newbook_content) input[type=submit] span.hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 9px 8px 7px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.inner-wrapper > div:not(#newbook_content) a.button span.invisible,
.inner-wrapper > div:not(#newbook_content) button span.invisible,
.inner-wrapper > div:not(#newbook_content) input[type=submit] span.invisible {
  opacity: 0;
}

.inner-wrapper > div:not(#newbook_content) a.button span.normal,
.inner-wrapper > div:not(#newbook_content) button span.normal,
.inner-wrapper > div:not(#newbook_content) input[type=submit] span.normal {
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
  -webkit-transform: translateY(0);
  position: absolute;
  padding: 9px 8px 7px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.inner-wrapper > div:not(#newbook_content) a.button span.normal > span,
.inner-wrapper > div:not(#newbook_content) button span.normal > span,
.inner-wrapper > div:not(#newbook_content) input[type=submit] span.normal > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.inner-wrapper > div:not(#newbook_content) a.button i,
.inner-wrapper > div:not(#newbook_content) button i,
.inner-wrapper > div:not(#newbook_content) input[type=submit] i {
  font-size: 9px;
}

.inner-wrapper > div:not(#newbook_content) a.button:hover span.hover,
.inner-wrapper > div:not(#newbook_content) button:hover span.hover,
.inner-wrapper > div:not(#newbook_content) input[type=submit]:hover span.hover {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inner-wrapper > div:not(#newbook_content) a.button:hover span.normal,
.inner-wrapper > div:not(#newbook_content) button:hover span.normal,
.inner-wrapper > div:not(#newbook_content) input[type=submit]:hover span.normal {
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
}

.inner-wrapper > div:not(#newbook_content) a.button.button-grey,
.inner-wrapper > div:not(#newbook_content) button.button-grey,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-grey {
  background: #efedeb;
  color: #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-grey span,
.inner-wrapper > div:not(#newbook_content) button.button-grey span,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-grey span {
  background: #efedeb;
  color: #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-black,
.inner-wrapper > div:not(#newbook_content) button.button-black,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-black {
  background: #231F20;
  color: #fff;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-black span,
.inner-wrapper > div:not(#newbook_content) button.button-black span,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-black span {
  background: #231F20;
  color: #fff;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-white,
.inner-wrapper > div:not(#newbook_content) button.button-white,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-white {
  background: #fff;
  color: #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-white--bordered,
.inner-wrapper > div:not(#newbook_content) button.button-white--bordered,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-white--bordered {
  border: 1px solid #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-white span,
.inner-wrapper > div:not(#newbook_content) button.button-white span,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-white span {
  background: #fff;
  color: #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-grey,
.inner-wrapper > div:not(#newbook_content) button.button-grey,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-grey {
  background: #EFEDEB;
  color: #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-grey--bordered,
.inner-wrapper > div:not(#newbook_content) button.button-grey--bordered,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-grey--bordered {
  border: 1px solid #EFEDEB;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-grey span,
.inner-wrapper > div:not(#newbook_content) button.button-grey span,
.inner-wrapper > div:not(#newbook_content) input[type=submit].button-grey span {
  background: #EFEDEB;
  color: #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dates,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-add-kids,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-adults,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dropdown {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  background: #fff;
  line-height: 100%;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dates span,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-add-kids span,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-adults span,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dropdown span {
  color: #231F20;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dates > span,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-add-kids > span,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-adults > span,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dropdown > span {
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dates .button-label,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-add-kids .button-label,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-adults .button-label,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dropdown .button-label {
  display: inline-block;
  text-align: left;
}

.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dates .button-label i,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-add-kids .button-label i,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-adults .button-label i,
.inner-wrapper > div:not(#newbook_content) a.button.button-show-hide-dropdown .button-label i {
  font-size: 11px;
}

.inner-wrapper > div:not(#newbook_content) .home-search-wrapper-wrapper a.button.button-show-hide-dates {
  background: #231F20;
  padding: 0;
}

.inner-wrapper > div:not(#newbook_content) .home-search-wrapper-wrapper a.button.button-show-hide-dates span {
  color: #fff;
  padding: 17px 8px 15px;
}

.inner-wrapper > div:not(#newbook_content) .home-search-wrapper-wrapper a.button.button-show-hide-dates span > span {
  padding: 0 0 !important;
}

/* Layout
------------------------------ */
body {
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 100%;
}

input {
  border-radius: 0px;
}

.inner-wrapper {
  max-width: 1260px;
  margin: 0px auto;
  width: 100%;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: block;
}

nav ul li a {
  text-decoration: none;
}

body {
  --reveal-duration: 540ms;
  --reveal-delay: 0ms;
  --reveal-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal]:not([data-reveal="defer"]) {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

[data-reveal]:not([data-reveal="defer"]).reveal-waiting {
  opacity: 0;
}

[data-reveal]:not([data-reveal="defer"]).revealed {
  -webkit-transition: opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), -webkit-filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), -webkit-transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
  transition: opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), -webkit-filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), -webkit-transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
  transition: opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
  transition: opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), -webkit-filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay), -webkit-transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
}

.reveal-waiting[data-reveal="up"] {
  -webkit-transform: translate(0, 1rem);
          transform: translate(0, 1rem);
}

.reveal-waiting[data-reveal="down"] {
  -webkit-transform: translate(0, -1rem);
          transform: translate(0, -1rem);
}

.reveal-waiting[data-reveal="left"] {
  -webkit-transform: translate(1rem, 0);
          transform: translate(1rem, 0);
}

.reveal-waiting[data-reveal="right"] {
  -webkit-transform: translate(-1rem, 0);
          transform: translate(-1rem, 0);
}

.revealed[data-reveal-delay="short"] {
  --reveal-delay: 100ms;
}

.revealed[data-reveal-delay="medium"] {
  --reveal-delay: 200ms;
}

.revealed[data-reveal-delay="long"] {
  --reveal-delay: 400ms;
}

.revealed[data-reveal-delay="1"] {
  --reveal-delay: calc(100ms + 100ms);
}

.revealed[data-reveal-delay="2"] {
  --reveal-delay: calc(100ms + 200ms);
}

.revealed[data-reveal-delay="3"] {
  --reveal-delay: calc(100ms + 300ms);
}

.revealed[data-reveal-delay="4"] {
  --reveal-delay: calc(100ms + 400ms);
}

.revealed[data-reveal-delay="5"] {
  --reveal-delay: calc(100ms + 500ms);
}

.revealed[data-reveal-delay="6"] {
  --reveal-delay: calc(100ms + 600ms);
}

.revealed[data-reveal-delay="7"] {
  --reveal-delay: calc(100ms + 700ms);
}

.revealed[data-reveal-delay="8"] {
  --reveal-delay: calc(100ms + 800ms);
}

.revealed[data-reveal-delay="9"] {
  --reveal-delay: calc(100ms + 900ms);
}

.revealed[data-reveal-delay="10"] {
  --reveal-delay: calc(100ms + 1000ms);
}

.revealed[data-reveal-delay="11"] {
  --reveal-delay: calc(100ms + 1100ms);
}

.revealed[data-reveal-delay="12"] {
  --reveal-delay: calc(100ms + 1200ms);
}

.revealed[data-reveal-delay="13"] {
  --reveal-delay: calc(100ms + 1300ms);
}

.revealed[data-reveal-delay="14"] {
  --reveal-delay: calc(100ms + 1400ms);
}

.revealed[data-reveal-delay="15"] {
  --reveal-delay: calc(100ms + 1500ms);
}

.revealed[data-reveal-delay="16"] {
  --reveal-delay: calc(100ms + 1600ms);
}

.revealed[data-reveal-delay="17"] {
  --reveal-delay: calc(100ms + 1700ms);
}

.revealed[data-reveal-delay="18"] {
  --reveal-delay: calc(100ms + 1800ms);
}

.revealed[data-reveal-delay="19"] {
  --reveal-delay: calc(100ms + 1900ms);
}

.revealed[data-reveal-delay="20"] {
  --reveal-delay: calc(100ms + 2000ms);
}

.custom-dropdown-wrapper {
  background: #efedeb;
  width: 100%;
}

.custom-dropdown-wrapper .button {
  color: #231F20;
  background: #fff;
  width: 100%;
  line-height: 100%;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.custom-dropdown-wrapper .button.active {
  background: #231F20;
}

.custom-dropdown-wrapper .button.active span {
  color: #fff;
}

.custom-dropdown-wrapper .button span {
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.custom-dropdown {
  border: solid 1px #231F20;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}

.custom-dropdown a {
  display: block;
  padding: 9px 8px 7px;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  color: #BABABA;
  background: #fff;
  border-bottom: solid 1px #231F20;
  line-height: 100%;
}

.custom-dropdown a:hover {
  color: #231F20;
}

.custom-dropdown a.active {
  color: #231F20;
}

.custom-dropdown a:last-child {
  border-bottom: 0px;
}

.infants-dropdown-wrapper {
  margin-top: 10px;
}

.single-post #footer {
  margin-top: 50px;
}

.single-post #footer-mobile {
  padding-top: 35px;
}

.mac .journal-row .journal-item .journal-item-image-wrapper .journal-item-caption span {
  line-height: 1.4;
}

.mac .gform_wrapper form .gform_body > .gform_fields > li input[type="text"], .mac .gform_wrapper form .gform_body > .gform_fields > li input[type="email"], .mac .gform_wrapper form .gform_body > .gform_fields > li select, .mac .gform_wrapper form .gform_body > .gform_fields > li textarea {
  padding-top: 8px;
  padding-bottom: 5px;
}

.mac .journal-tag-bar .journal-tag-bar-inner .journal-tag-bar-popular-tag {
  padding-top: 3px;
}

.mac .newsletter-popup .gform_wrapper form .gform_footer .gform_button {
  padding-top: 7px;
}

.mac .post-2-header {
  padding-top: 101px;
}

@media screen and (max-width: 700px) {
  .mac .post-2-header {
    padding-top: 124px;
  }
}

.mac .post-2-header .post-2-header-image {
  margin-top: 17px;
}

@media screen and (max-width: 700px) {
  .mac .post-2-header .post-2-header-image {
    margin-top: 0px;
  }
}

.mac #news-ticker li a {
  padding: 13px 8px 12px;
}

.mac #news-ticker li a span {
  padding: 13px 8px 12px;
}

.mac .ticker-text {
  padding-top: 3px;
}

.light-menu.scrolled .post-nav svg path {
  fill: #231F20;
}

.light-menu.scrolled #header #menu-main-menu li:after {
  color: #231F20;
}

.light-menu.scrolled #header #menu-main-menu li a {
  color: #231F20;
}

.light-menu.scrolled .mobile-menu-trigger-wrapper span {
  background: #231F20;
}

.light-menu .mobile-menu-trigger-wrapper span {
  background: #fff;
}

.light-menu .logo-title-wrapper h1 {
  color: #fff;
}

.light-menu .post-nav svg path {
  fill: #fff;
}

.blog .journal-archive {
  min-height: calc(100vh - 237px);
}

.blog .newsletter-popup {
  bottom: 37px;
}

.blog .content-wrapper,
.single-post .content-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 700px) {
  .blog .logo-title-wrapper,
  .single-post .logo-title-wrapper {
    position: relative;
  }
}

.blog .logo-title-wrapper h1,
.single-post .logo-title-wrapper h1 {
  max-width: 280px;
}

.loading .journal-item {
  opacity: .5;
}

.journal-archive {
  padding-top: 180px;
}

@media screen and (max-width: 700px) {
  .journal-archive {
    padding-top: 140px;
  }
}

@media screen and (max-width: 1000px) {
  .post-nav {
    display: none;
  }
}

.post-nav svg {
  width: 100%;
  height: auto;
}

.post-nav svg path {
  background: #231F20;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-nav-prev {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 37px;
  width: 9px;
  z-index: 4;
}

.post-nav-next {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 37px;
  width: 9px;
  z-index: 4;
}

.post-2-header {
  padding-top: 103px;
  margin-bottom: 82px;
}

@media screen and (max-width: 700px) {
  .post-2-header {
    padding-top: 124px;
    margin-bottom: 35px;
  }
}

.post-2-header .post-2-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.post-2-header .post-2-header-left {
  width: 50%;
  background: #efedeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 728px;
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-left {
    width: 100%;
    height: auto;
    padding: 40px 30px;
  }
}

.post-2-header .post-2-header-left .post-2-header-left-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  max-width: 370px;
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-left .post-2-header-left-inner {
    max-width: 100%;
  }
}

.post-2-header .post-2-header-left h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-top: 54px;
  margin-bottom: 35px;
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-left h1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0px;
    font-size: 26px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-left .post-description {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.post-2-header .post-2-header-left .post-description p {
  font-family: 'Self Modern';
  letter-spacing: 0.5px;
  font-size: 20px;
  line-height: 1.3;
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-left .post-description p {
    font-size: 18px;
  }
}

.post-2-header .post-2-header-left .post-description p em {
  font-style: italic;
}

.post-2-header .post-2-header-left .post-description p b, .post-2-header .post-2-header-left .post-description p strong {
  font-weight: bold;
}

.post-2-header .post-2-header-left a {
  margin-bottom: 31px;
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-left a {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 25px;
  }
}

.post-2-header .post-2-header-image {
  width: 50%;
  height: 728px;
  margin-top: 15px;
}

@media screen and (max-width: 700px) {
  .post-2-header .post-2-header-image {
    width: 100%;
    height: 110vw;
    margin-top: 0px;
  }
}

.scrolling-text-promo {
  margin-top: 138px;
  margin-bottom: 160px;
}

#news-ticker {
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 30px;
  font-family: 'CentSchbook';
  min-height: 38px !important;
}

@media screen and (max-width: 700px) {
  #news-ticker {
    font-size: 20.4px;
    letter-spacing: 4px;
  }
}

#news-ticker .ticker-text {
  margin-right: 10px;
}

#news-ticker li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 38px !important;
}

#news-ticker li a {
  padding: 14px 8px 11px;
  margin: 0px 20px 0px 0px;
}

#news-ticker li a span {
  padding: 14px 8px 11px;
}

.search-results-heading {
  margin-bottom: 35px;
}

@media screen and (max-width: 700px) {
  .search-results-heading h3 {
    font-size: 20px;
    letter-spacing: .5px;
    line-height: 1.2;
  }
}

.post-1-header {
  position: relative;
  height: calc(100vh - 33vh);
}

@media screen and (max-width: 700px) {
  .post-1-header {
    height: 50vw;
  }
}

.post-1-header a {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -10px;
}

.post-title-wrapper {
  text-align: center;
  margin-bottom: 72px;
}

.post-title-wrapper h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-top: 54px;
  margin-bottom: 35px;
}

@media screen and (max-width: 700px) {
  .post-title-wrapper h1 {
    font-size: 26px;
  }
}

.post-title-wrapper .post-description p {
  font-family: 'Self Modern';
  letter-spacing: 0.5px;
  font-size: 20px;
  line-height: 1.2;
}

@media screen and (max-width: 400px) {
  .post-share {
    padding-top: 0px;
    padding-bottom: 35px;
  }
}

.post-share .inner-wrapper {
  text-align: center;
}

.post-share .inner-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 400px) {
  .post-share .inner-wrapper ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 370px) {
  .post-share .inner-wrapper ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.post-share .inner-wrapper ul li {
  margin: 0px 12px;
}

@media screen and (max-width: 400px) {
  .post-share .inner-wrapper ul li {
    margin: 0px;
  }
}

@media screen and (max-width: 370px) {
  .post-share .inner-wrapper ul li {
    width: 50%;
    margin-bottom: 5px;
    text-align: left;
  }
}

.post-share .inner-wrapper ul li a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
}

.newsletter-popup {
  position: fixed;
  bottom: 0px;
  right: 0;
  height: 271px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  padding-right: 140px;
  background: #231F20;
  z-index: 5;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsletter-popup.active {
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 700px) {
  .newsletter-popup {
    padding: 20px;
    height: auto;
  }
}

.newsletter-popup .gfield_required {
  display: none;
}

.newsletter-popup .ginput_container {
  width: 100%;
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

@media screen and (max-width: 700px) {
  .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 11px;
  }
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li:last-child {
  margin-bottom: 0px;
}

.newsletter-popup form {
  position: relative;
}

.newsletter-popup .gform_wrapper form .gform_footer .gform_button {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #BABABA;
  color: #fff;
  height: 33px;
  max-width: 93px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #BABABA;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsletter-popup .gform_wrapper form .gform_footer .gform_button:hover {
  background: #231F20;
  border: solid 1px #fff;
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="text"], .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="email"], .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li select, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li textarea {
  color: #231F20;
  text-transform: uppercase;
  height: 33px;
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-webkit-input-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-webkit-input-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li select::-webkit-input-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li textarea::-webkit-input-placeholder {
  /* Chrome */
  color: #BABABA;
  text-transform: uppercase;
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-ms-input-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-ms-input-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li select:-ms-input-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #BABABA;
  text-transform: uppercase;
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-moz-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-moz-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li select::-moz-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #BABABA;
  opacity: 1;
  text-transform: uppercase;
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-moz-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-moz-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li select:-moz-placeholder, .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li textarea:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #BABABA;
  opacity: 1;
  text-transform: uppercase;
}

.newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
  color: #fff;
  margin-bottom: 0px;
  width: 170px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 42px;
}

@media screen and (max-width: 700px) {
  .newsletter-popup .gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0px;
  }
}

.newsletter-popup .newsletter-popup-inner {
  height: 100%;
}

.newsletter-popup .newsletter-popup-inner .newsletter-popup-confirm {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #231F20;
  opacity: 0;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  font-family: 'Self Modern';
  letter-spacing: 0.5px;
  font-size: 20px;
  line-height: 1.2;
  z-index: 2;
}

.newsletter-popup .newsletter-popup-inner .newsletter-popup-confirm.active {
  opacity: 1;
  pointer-events: inherit;
}

.newsletter-popup .newsletter-popup-content {
  color: #fff;
  font-family: 'Self Modern';
  letter-spacing: 0.5px;
  font-size: 20px;
  line-height: 1.2;
  max-width: 322px;
  margin-bottom: 30px;
}

@media screen and (max-width: 700px) {
  .newsletter-popup .newsletter-popup-content {
    padding-right: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
  }
}

.newsletter-popup .newsletter-popup-trigger {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 15px;
  height: 15px;
  z-index: 3;
}

@media screen and (max-width: 700px) {
  .newsletter-popup .newsletter-popup-trigger {
    top: 20px;
    right: 20px;
  }
}

.large-promo {
  margin-bottom: 128px;
}

@media screen and (max-width: 700px) {
  .large-promo {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 700px) {
  .large-promo .inner-wrapper {
    padding: 0px;
  }
}

.large-promo .large-promo-inner {
  background: #fff;
  padding: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: 0;
  max-width: 1047px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 700px) {
  .large-promo .large-promo-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 28px 20px;
  }
}

.large-promo .large-promo-inner .large-promo-image {
  width: 320px;
  height: 320px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 63px;
}

@media screen and (max-width: 1000px) {
  .large-promo .large-promo-inner .large-promo-image {
    width: 27vw;
    height: 27vw;
  }
}

@media screen and (max-width: 700px) {
  .large-promo .large-promo-inner .large-promo-image {
    width: 188px;
    height: 188px;
    margin-right: 0px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-bottom: 36px;
  }
}

.large-promo .large-promo-inner .large-promo-content {
  position: relative;
  width: 100%;
}

.large-promo .large-promo-inner .large-promo-content h2 {
  margin-bottom: 68px;
  max-width: 400px;
}

@media screen and (max-width: 700px) {
  .large-promo .large-promo-inner .large-promo-content h2 {
    margin-bottom: 26px;
  }
}

.large-promo .large-promo-inner .large-promo-content p {
  max-width: 410px;
  margin-left: 100px;
}

@media screen and (max-width: 1000px) {
  .large-promo .large-promo-inner .large-promo-content p {
    max-width: 100%;
    margin-left: 30px;
    margin-bottom: 0px;
  }
}

.large-promo .large-promo-inner .large-promo-link {
  min-width: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1000px) {
  .large-promo .large-promo-inner .large-promo-link {
    position: static;
    margin-top: 26px;
  }
}

.active-tags {
  font-family: 'Maison';
  font-size: 13px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.active-tags .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.active-tags a {
  margin-right: 10px;
  margin-bottom: 5px;
}

.active-tags .active-tags-title {
  padding-top: 2px;
  margin-right: 10px;
  margin-bottom: 5px;
}

@media screen and (max-width: 700px) {
  .active-tags .active-tags-title {
    width: 100%;
    margin-bottom: 5px;
  }
}

.journal-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.journal-search-overlay.active {
  pointer-events: auto;
}

.journal-search-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 5;
  padding-top: 74px;
  padding-bottom: 45px;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-search-bar.active {
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 700px) {
  .journal-search-bar {
    padding-top: 60px;
  }
}

.journal-search-bar .journal-search-bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 700px) {
  .journal-search-bar .journal-search-bar-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.journal-search-bar .journal-search-bar-inner .search-tags {
  text-align: center;
}

@media screen and (max-width: 700px) {
  .journal-search-bar .journal-search-bar-inner .search-tags {
    width: 100%;
    text-align: left;
  }
}

.journal-search-bar .journal-search-bar-inner .search-tags > span {
  text-transform: uppercase;
  display: block;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 15px;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .journal-search-bar .journal-search-bar-inner .search-tags > span {
    text-align: left;
  }
}

.journal-search-bar .journal-search-bar-inner .search-tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 700px) {
  .journal-search-bar .journal-search-bar-inner .search-tags-list {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.journal-search-bar .journal-search-bar-inner .search-tags-list a {
  margin: 0px 5px 5px;
}

@media screen and (max-width: 700px) {
  .journal-search-bar .journal-search-bar-inner .search-tags-list a {
    margin-left: 0px;
  }
}

.journal-search-bar .journal-search-bar-inner .journal-search {
  width: 100%;
  max-width: 620px;
  position: relative;
  margin-bottom: 60px;
}

@media screen and (max-width: 700px) {
  .journal-search-bar .journal-search-bar-inner .journal-search {
    margin-bottom: 40px;
  }
}

.journal-search-bar .journal-search-bar-inner .journal-search button {
  position: absolute;
  right: 0;
  top: 14px;
  background: none;
  padding: 0px;
  width: 17px;
  height: 17px;
  display: block;
  background: url(../images/icon-search.svg) no-repeat center;
  background-size: contain;
  opacity: .2;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-search-bar .journal-search-bar-inner .journal-search button:hover {
  opacity: 1;
}

.journal-search-bar .journal-search-bar-inner .close-search-bar {
  position: absolute;
  right: 0;
  top: -40px;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 700px) {
  .journal-search-bar .journal-search-bar-inner .close-search-bar {
    top: -38px;
  }
}

.journal-search-bar .search-input {
  width: 100%;
  border: 0px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0px;
  background: none;
  border-bottom: solid 1px #BABABA;
  font-size: 30px;
  color: #231F20;
  font-family: 'Self Modern';
  letter-spacing: .5px;
  padding: 0px;
  border-radius: 0px;
}

.journal-search-bar .search-input::-webkit-input-placeholder {
  color: #BABABA;
  opacity: 1;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-search-bar .search-input:-ms-input-placeholder {
  color: #BABABA;
  opacity: 1;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-search-bar .search-input::-moz-placeholder {
  color: #BABABA;
  opacity: 1;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-search-bar .search-input:-moz-placeholder {
  color: #BABABA;
  opacity: 1;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-search-bar .search-input:focus {
  outline: 0px;
}

.journal-search-bar .search-input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.journal-search-bar .search-input:focus:-ms-input-placeholder {
  opacity: 0;
}

.journal-search-bar .search-input:focus::-moz-placeholder {
  opacity: 0;
}

.journal-search-bar .search-input:focus:-moz-placeholder {
  opacity: 0;
}

.journal-tag-bar-mobile {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  z-index: 4;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-tag-bar-mobile .journal-tag-bar-mobile-bottom {
  background: #231F20;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}

.journal-tag-bar-mobile .journal-tag-bar-mobile-bottom .journal-tag-bar-mobile-popular a {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
}

.journal-tag-bar-mobile .journal-tag-bar-mobile-bottom .journal-tag-bar-mobile-popular a:last-child {
  margin-bottom: 0px;
}

.journal-tag-bar-mobile .journal-tag-bar-mobile-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}

.journal-tag-bar-mobile .tag-bar-current-tag {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 12px;
  padding-right: 12px;
  background: #231F20;
  color: #fff;
  position: relative;
}

.journal-tag-bar-mobile .tag-bar-current-tag.active {
  -webkit-transform: translateY(-50%) rotateX(0deg);
          transform: translateY(-50%) rotateX(0deg);
}

.journal-tag-bar-mobile .tag-bar-current-tag:after {
  content: '';
  top: 50%;
  -webkit-transform: translateY(-50%) rotateX(180deg);
          transform: translateY(-50%) rotateX(180deg);
  right: 12px;
  width: 8px;
  height: 13px;
  background: url(../images/arrow-up-white.svg) no-repeat center;
  background-size: contain;
  display: block;
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-tag-bar-mobile span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
  margin-right: 10px;
  padding-top: 3px;
}

.journal-tag-bar-mobile .search-bar-trigger {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.journal-tag-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 4;
  padding: 9px 0px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-tag-bar .journal-tag-bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.journal-tag-bar .journal-tag-bar-inner .journal-tag-bar-popular {
  padding-top: 2px;
}

.journal-tag-bar .journal-tag-bar-inner .search-bar-trigger {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 20px;
}

.journal-tag-bar .journal-tag-bar-inner span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
  margin-right: 20px;
  padding-top: 3px;
}

.journal-tag-bar .journal-tag-bar-inner .journal-tag-bar-popular-tag {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  padding: 0px 4px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-tag-bar .journal-tag-bar-inner .journal-tag-bar-popular-tag:hover {
  background: #efedeb;
}

.journal-tag-bar .journal-tag-bar-inner .journal-tag-bar-popular-tag.active {
  color: #fff;
  background: #231F20;
}

.journal-tag-bar .journal-tag-bar-inner .journal-tag-bar-popular-tag.active:hover {
  background: #231F20;
}

.journal-row {
  margin-bottom: 128px;
}

@media screen and (max-width: 700px) {
  .journal-row {
    margin-bottom: 35px;
  }
}

.journal-row img {
  width: 100%;
  height: auto;
  display: inline-block;
}

.journal-row .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 1000px) {
  .journal-row .inner-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 700px) {
  .journal-row .inner-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.journal-row .journal-item {
  -webkit-transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (max-width: 1000px) {
  .journal-row .journal-item {
    width: calc(50% - 15px) !important;
    max-width: 100% !important;
    margin: 0px !important;
  }
}

@media screen and (max-width: 700px) {
  .journal-row .journal-item {
    width: 100% !important;
    margin-bottom: 35px !important;
  }
  .journal-row .journal-item:last-child {
    margin-bottom: 0px !important;
  }
}

.journal-row .journal-item.landscape {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.journal-row .journal-item.portrait {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.journal-row .journal-item.caption {
  max-width: 350px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media screen and (max-width: 1000px) {
  .journal-row .journal-item.caption {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.journal-row .journal-item.caption .journal-item-image-wrapper {
  margin-bottom: 40px;
}

.journal-row .journal-item.caption-image {
  display: block;
  margin: 0px auto;
}

.journal-row .journal-item.caption-image:hover .journal-item-caption-static span {
  background: #fff;
}

@media screen and (max-width: 1170px) {
  .journal-row .journal-item.caption-image {
    width: 100% !important;
  }
}

.journal-row .journal-item .caption-image-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 1170px) {
  .journal-row .journal-item .caption-image-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  .journal-row .journal-item .caption-image-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.journal-row .journal-item .caption-image-inner .caption-image-image {
  width: 479px;
  margin-right: 80px;
  padding-top: 10px;
}

@media screen and (max-width: 1170px) {
  .journal-row .journal-item .caption-image-inner .caption-image-image {
    width: calc(50% - 15px);
    margin-right: 0px;
  }
}

@media screen and (max-width: 700px) {
  .journal-row .journal-item .caption-image-inner .caption-image-image {
    width: 100%;
    padding-top: 0px;
  }
}

.journal-row .journal-item .caption-image-inner .journal-item-caption-static {
  width: 479px;
  padding-bottom: 56px;
}

@media screen and (max-width: 1170px) {
  .journal-row .journal-item .caption-image-inner .journal-item-caption-static {
    width: 100%;
    padding-bottom: 0px;
  }
}

.journal-row .journal-item .caption-image-inner .caption-image-title {
  position: relative;
}

@media screen and (max-width: 1170px) {
  .journal-row .journal-item .caption-image-inner .caption-image-title {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 700px) {
  .journal-row .journal-item .caption-image-inner .caption-image-title {
    width: 100%;
    margin-top: 10px;
  }
}

.journal-row .journal-item .caption-image-inner .caption-image-title-tag {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1170px) {
  .journal-row .journal-item .caption-image-inner .caption-image-title-tag {
    position: static;
    margin-top: 10px;
  }
}

.journal-row .journal-item h3 {
  font-size: 20px;
  letter-spacing: .5px;
  margin-bottom: 5px;
  line-height: 1.2;
}

.journal-row .journal-item .journal-item-caption-static {
  font-size: 30px;
  font-family: 'Self Modern';
  letter-spacing: .5px;
}

@media screen and (max-width: 700px) {
  .journal-row .journal-item .journal-item-caption-static {
    font-size: 26px;
  }
}

.journal-row .journal-item .journal-item-caption-static:hover span {
  background: #fff;
}

.journal-row .journal-item .journal-item-caption-static span {
  line-height: 1.5;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-row .journal-item .journal-item-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}

.journal-row .journal-item .journal-item-image-wrapper .journal-item-inner {
  position: relative;
  overflow: hidden;
}

.journal-row .journal-item .journal-item-image-wrapper .journal-item-inner:hover .journal-item-caption {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.journal-row .journal-item .journal-item-image-wrapper .journal-item-caption {
  font-size: 26px;
  padding: 10px;
  padding-top: 7px;
  font-family: 'Self Modern';
  letter-spacing: .5px;
  width: 80%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journal-row .journal-item .journal-item-image-wrapper .journal-item-caption span {
  background: #fff;
  line-height: 1.6;
}

.journal-row-1 .journal-item:nth-child(1) {
  margin-right: 180px;
}

.journal-row-1 .journal-item.portrait {
  max-width: 324px;
}

.journal-row-1 .journal-item.landscape {
  max-width: 518px;
}

.journal-row-2 .journal-item:nth-child(1) {
  margin-right: 220px;
  margin-left: 100px;
}

.journal-row-2 .journal-item.portrait {
  max-width: 324px;
}

.journal-row-2 .journal-item.landscape {
  max-width: 479px;
}

.journal-row-3 .inner-wrapper {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.journal-row-3 .journal-item.landscape:nth-of-type(odd) {
  max-width: 517px;
}

.journal-row-3 .journal-item:first-child {
  margin-right: 40px;
}

.journal-row-3 .journal-item.landscape:nth-of-type(even) {
  max-width: 622px;
}

.journal-row-3 .journal-item.portrait {
  max-width: 300px;
}

.journal-row-4 .journal-item.landscape {
  max-width: 580px;
}

.journal-row-4 .journal-item:first-child {
  margin-right: 100px;
  margin-left: 40px;
}

.journal-row-4 .journal-item.portrait {
  max-width: 380px;
}

.journal-row-5 .journal-item:nth-child(1) {
  margin-right: 200px;
  margin-left: 190px;
}

.journal-row-5 .journal-item.portrait {
  max-width: 300px;
}

.journal-row-5 .journal-item.landscape {
  max-width: 400px;
}

.post-type-archive-room .content-wrapper {
  padding-top: 40px;
}

@media screen and (max-width: 700px) {
  .post-type-archive-room .content-wrapper {
    padding-top: 50px;
  }
}

.room-archive-header .content-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 700px) {
  .room-archive-header .logo-title-wrapper {
    position: relative;
  }
}

.room-archive-header .logo-title-wrapper h1 {
  max-width: 280px;
}

.page-module {
  margin-bottom: 50px;
}

@media screen and (max-width: 700px) {
  .page-module {
    margin-bottom: 35px;
  }
}

.page-module img {
  display: block;
  max-width: 100%;
  height: auto;
}

.rich-content a {
  text-decoration: underline;
}

.rich-content p {
  line-height: 1.5;
}

.rich-content p em {
  font-style: italic;
}

.rich-content p b, .rich-content p strong {
  font-weight: bold;
}

.module-image .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.module-image.left .inner-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.module-image.right .inner-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.module-image.landscape .module-image-image {
  max-width: 941px;
}

.module-image.portrait .module-image-image {
  max-width: 354px;
}

.module-image .module-image-image {
  position: relative;
}

.module-image .module-image-image .module-image-caption {
  font-size: 11px;
  margin-top: 9px;
}

.module-two-column-image .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 700px) {
  .module-two-column-image .inner-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.module-two-column-image .module-image-caption {
  font-size: 11px;
  margin-top: 9px;
}

.module-two-column-image .module-image-image-left {
  margin-right: 30px;
  position: relative;
}

@media screen and (max-width: 700px) {
  .module-two-column-image .module-image-image-left {
    max-width: 100% !important;
    margin-right: 0px;
    margin-bottom: 35px;
  }
}

.module-two-column-image .module-image-image-left.landscape {
  max-width: 640px;
}

.module-two-column-image .module-image-image-left.portrait {
  max-width: 320px;
}

.module-two-column-image .module-image-image-right {
  margin-left: 30px;
  position: relative;
}

@media screen and (max-width: 700px) {
  .module-two-column-image .module-image-image-right {
    max-width: 100% !important;
    margin-left: 0px;
  }
}

.module-two-column-image .module-image-image-right.landscape {
  max-width: 640px;
}

.module-two-column-image .module-image-image-right.portrait {
  max-width: 320px;
}

/* Text
------------------------------ */
h1.site-title {
  text-align: center;
  margin-bottom: 0px;
}

/* Layout
------------------------------ */
::-moz-selection {
  background: #231F20;
  color: #fff;
}
::selection {
  background: #231F20;
  color: #fff;
}

::-moz-selection {
  background: #231F20;
  color: #fff;
}

.inner-wrapper-super-narrow {
  max-width: 660px;
  padding: 0px 20px;
  margin: 0px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.inner-wrapper-narrow {
  max-width: 1260px;
  padding: 0px 30px;
  margin: 0px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 700px) {
  .inner-wrapper-narrow {
    padding: 0px 20px;
  }
}

.newsletter-pop {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: start;
  -webkit-transition: all 750ms ease-in-out;
  transition: all 750ms ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.newsletter-pop.active {
  opacity: 1;
  pointer-events: auto;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 700px) {
  .newsletter-pop {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 30px;
  }
}

.newsletter-pop .newsletter-pop__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 700px) {
  .newsletter-pop .newsletter-pop__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}

.newsletter-pop .inner-wrapper {
  max-width: 357px;
  margin: 0;
  -webkit-box-shadow: 0 0 23px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 23px rgba(0, 0, 0, 0.1);
  background: #333233;
}

@media screen and (max-width: 1367px) {
  .newsletter-pop .inner-wrapper {
    max-width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .newsletter-pop {
    max-width: 100vw;
  }
}

.newsletter-pop .newsletter-pop__trigger {
  position: absolute;
  right: 15px;
  top: -206px;
  display: block;
  width: 13px;
  height: 13px;
}

@media screen and (max-width: 700px) {
  .newsletter-pop .newsletter-pop__trigger {
    top: -178px;
  }
}

.newsletter-pop .newsletter-pop__trigger img:not(.dark) {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.newsletter-pop .newsletter-pop__left {
  background: url(../images/newsletter.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 219px;
}

@media screen and (max-width: 767px) {
  .newsletter-pop .newsletter-pop__left {
    height: 35vh;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
}

.newsletter-pop .newsletter-pop__right {
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .newsletter-pop .newsletter-pop__right {
    padding: 20px;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    min-height: 40vh;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
  }
}

.newsletter-pop .newsletter-pop__right a {
  text-decoration: underline;
}

.newsletter-pop p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 19px;
  font-family: "Self Modern";
  color: #fff;
}

@media screen and (max-width: 700px) {
  .newsletter-pop p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    max-width: calc(100% - 30px);
  }
}

.newsletter-pop p.popup_disclaimer {
  margin-bottom: 4px;
  color: #6b6c6e;
  font-size: 10px;
  line-height: normal;
  font-family: 'Maison';
  margin-top: 19px;
}

.newsletter-pop p.popup_disclaimer a {
  margin-bottom: 4px;
  color: #6b6c6e;
  font-size: 10px;
  line-height: normal;
  font-family: 'Maison';
  margin-top: 19px;
}

.newsletter-pop .gform_wrapper form .gform_body > .gform_fields > li {
  margin-bottom: 5px;
  color: #6b6c6e;
  font-size: 12px;
  line-height: normal;
}

.newsletter-pop .gform_wrapper form .gform_body > .gform_fields > li .half-field {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}

.newsletter-pop .gform_wrapper form .gform_body > .gform_fields > li.half-field {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}

.newsletter-pop .gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
  display: none;
}

.newsletter-pop .gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
.newsletter-pop .gform_wrapper form .gform_body > .gform_fields > li input[type="email"] {
  background: #a8a9ad;
  font-size: 14px;
  padding: 8px;
}

.newsletter-pop .ginput_container_name span {
  display: inline-block;
  max-width: calc(50% - 4px);
}

.newsletter-pop .gform_confirmation_message {
  color: #ffffff;
  min-height: 114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}

.grecaptcha-badge {
  visibility: hidden;
}

.special-code-wrapper {
  margin-top: 27px;
}

.special-code-wrapper .special-code-message {
  margin-bottom: 17px;
  line-height: 18px;
}

.special-code-wrapper label {
  font-size: 13px;
  font-family: 'Maison';
  letter-spacing: 2px;
  text-transform: uppercase;
}

.special-code-wrapper .special-code-field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 14px;
}

.special-code-wrapper .special-code-field-wrapper input {
  background: #fff;
  border: 1px solid #fff;
  border-right: 1px solid #231F20;
  border: none;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 6px 6px 5px;
}

.special-code-wrapper .special-code-field-wrapper input:focus {
  outline: 0px;
  border: 1px solid #231F20;
}

.special-code-wrapper .special-code-field-wrapper a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto !important;
  margin-top: 0px !important;
}

.special-code-note {
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 2px;
}

.mobile-calendar-open {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mobile-calendar-open.is-ios {
  position: fixed;
}

.click-disable header,
.click-disable .content-wrapper {
  pointer-events: none;
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mobile-menu-overlay {
  display: none;
  background: transparent;
  z-index: 19;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-message {
  display: none;
  font-size: 21px;
  line-height: 29px;
  font-family: "Self Modern";
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 36px;
}

.loading .room-sidebar-wrapper .room-sidebar:after {
  opacity: 1;
}

.loading .room-sidebar-wrapper .room-sidebar .sidebar-item {
  opacity: .2;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.room-archive-search-overlay-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #efedeb;
  display: none;
  z-index: 35;
  overflow-y: auto;
  padding: 20px;
  padding-top: 23px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  transform: translateY(110%);
  -webkit-transform: translateY(110%);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.room-archive-search-overlay-wrapper.calendar-open {
  transform: translateY(0) !important;
  -webkit-transform: translateY(0) !important;
  height: 100% !important;
}

.room-archive-search-overlay-wrapper.active {
  transform: translateY(0) !important;
  -webkit-transform: translateY(0) !important;
}

.room-archive-search-overlay-wrapper .daterangepicker {
  margin-top: 0px !important;
  left: 0px !important;
  opacity: 0;
  pointer-events: none;
}

.room-archive-search-overlay-wrapper .date-range-mobile-wrapper.active .daterangepicker {
  opacity: 1;
  pointer-events: auto;
}

.room-archive-search-overlay-wrapper .room-search-inner-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.room-archive-search-overlay-wrapper .sidebar-item {
  width: 100%;
}

.room-archive-search-overlay-wrapper .close-popup {
  position: absolute;
  right: 20px;
  top: 20px;
}

.room-archive-search-overlay-wrapper .button-refine-search {
  margin-top: 20px;
  width: 100%;
}

.room-archive-search-overlay-wrapper h3 {
  font-family: 'Maison';
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 20px;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .search-date-wrapper {
  margin-left: 0px;
  line-height: 0px;
  margin-bottom: 10px;
  display: block;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  background: #fff;
  line-height: 100%;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates.active,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids.active {
  background: #231F20;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates.active span,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids.active span {
  color: #fff;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates span,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids span {
  color: #231F20;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates > span,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids > span {
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper {
  background: #efedeb;
  width: 100%;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button {
  color: #231F20;
  background: #fff;
  width: 100%;
  line-height: 100%;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button.active {
  background: #231F20;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button.active span {
  color: #fff;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button span {
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-adults,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: transparent;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates.button,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids.button,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-adults.button,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dropdown.button {
  background: transparent;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates.button.active,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids.button.active,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-adults.button.active,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dropdown.button.active {
  background: #231F20;
  padding: 9px 0 7px 8px;
  width: auto;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates .button-label,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids .button-label,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-adults .button-label,
.room-archive-search-overlay-wrapper .search-form-wrapper .button-show-hide-dropdown .button-label {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2em;
}

.room-archive-search-overlay-wrapper .search-form-wrapper .button-refine-search {
  margin-top: 2em;
  width: 100%;
  padding: 1em;
  background-color: transparent;
}

.room-archive-search-overlay-wrapper .add-kids-wrapper {
  margin-top: 10px;
  line-height: 0px;
}

.room-archive-search-overlay-wrapper .add-kids-wrapper.active .kids-wrapper-wrapper {
  display: block;
}

.room-archive-search-overlay-wrapper .kids-wrapper-wrapper {
  display: none;
}

.room-archive-search-overlay-wrapper .kids-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
}

.room-archive-search-overlay-wrapper .kids-wrapper .kids-item {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  line-height: 100%;
}

.room-archive-search-overlay-wrapper .kids-wrapper .kids-item label {
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  white-space: nowrap;
  text-transform: uppercase;
}

.room-archive-search-overlay-wrapper .kids-wrapper .kids-item input {
  width: 32px;
  height: 32px;
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  text-align: center;
  border: 0px;
  margin-right: 8px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0px;
}

.room-archive-search-overlay-wrapper .kids-wrapper .kids-item input:focus {
  outline: 0px;
}

.room-archive-search-overlay-wrapper .booking-form-wrapper {
  margin-top: 32px;
}

.room-archive-search-overlay-wrapper .booking-form-wrapper .button {
  width: 100%;
  line-height: 16px;
  margin-top: 18px;
}

.room-archive-search-overlay-wrapper .booking-form-wrapper .booking-details-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.room-archive-search-overlay-wrapper .booking-form-wrapper .booking-details-line .booking-details-label {
  width: 14ch;
  font-size: 13px;
  font-family: 'Maison';
  letter-spacing: 2px;
  text-transform: uppercase;
}

.room-archive-search-overlay-wrapper .booking-form-wrapper .booking-details-line .booking-details-value {
  width: 50%;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.kids-bed-notification {
  line-height: 18px;
  margin-top: 20px;
}

.home-search-overlay-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #efedeb;
  z-index: 35;
  overflow-y: auto;
  padding: 20px;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  transform: translateY(110%);
  -webkit-transform: translateY(110%);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.home-search-overlay-wrapper .next-calendar-fake,
.home-search-overlay-wrapper .prev-calendar-fake {
  color: #231F20 !important;
}

.home-search-overlay-wrapper .daterangepicker {
  margin-top: 0px !important;
  left: 0px !important;
  opacity: 0;
  pointer-events: none;
  background: #efedeb !important;
  color: #231F20 !important;
}

.home-search-overlay-wrapper .calendar-table {
  background: #efedeb !important;
  color: #231F20 !important;
}

.home-search-overlay-wrapper .date-range-mobile-wrapper.active .daterangepicker {
  opacity: 1;
  pointer-events: auto;
}

.home-search-overlay-wrapper.active {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.home-search-overlay-wrapper .home-search-inner-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.home-search-overlay-wrapper .sidebar-item {
  width: 100%;
}

.home-search-overlay-wrapper .close-popup {
  position: absolute;
  right: 20px;
  top: 20px;
}

.home-search-overlay-wrapper .button-refine-search {
  margin-top: 2em;
  width: 100%;
  padding: 1em;
  background-color: transparent;
}

.home-search-overlay-wrapper h3 {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 20.5px;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 20vh;
  -webkit-transition: all 400ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 400ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.home-search-overlay-wrapper.calendar-open h3 {
  margin-bottom: 30px;
}

.home-search-overlay-wrapper .search-form-wrapper .search-date-wrapper {
  margin-left: 0px;
  line-height: 0px;
  margin-bottom: 1.5em;
  display: block;
}

.home-search-overlay-wrapper .search-form-wrapper .date-range-mobile {
  width: 100%;
}

.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates,
.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 100%;
  width: auto;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates .button-label,
.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids .button-label {
  gap: 1em;
}

.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates.active,
.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids.active {
  background: #231F20;
  padding: 9px 8px 7px;
}

.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates.active span,
.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids.active span {
  color: #fff;
}

.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates span,
.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids span {
  color: #231F20;
}

.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-dates > span,
.home-search-overlay-wrapper .search-form-wrapper .button-show-hide-add-kids > span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.home-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper {
  background: #efedeb;
  width: 100%;
  margin-bottom: 1.5em;
}

.home-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button {
  color: #231F20;
  background: #fff;
  width: auto;
  line-height: 100%;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button.active {
  background: #231F20;
  padding: 9px 8px 7px;
}

.home-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button.active span {
  color: #fff;
}

.home-search-overlay-wrapper .search-form-wrapper .adults-dropdown-wrapper .button span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.home-search-overlay-wrapper .search-form-wrapper .children-dropdown-wrapper .button,
.home-search-overlay-wrapper .search-form-wrapper .infants-dropdown-wrapper .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: transparent;
}

.home-search-overlay-wrapper .search-form-wrapper .children-dropdown-wrapper .button.active,
.home-search-overlay-wrapper .search-form-wrapper .infants-dropdown-wrapper .button.active {
  padding: 9px 0 7px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #231F20;
}

.home-search-overlay-wrapper .add-kids-wrapper {
  line-height: 0px;
  margin-bottom: 1.5em;
}

.home-search-overlay-wrapper .kids-wrapper-wrapper {
  display: none;
}

.home-search-overlay-wrapper .kids-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
}

.home-search-overlay-wrapper .kids-wrapper .kids-item {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  line-height: 100%;
}

.home-search-overlay-wrapper .kids-wrapper .kids-item label {
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  white-space: nowrap;
  text-transform: uppercase;
}

.home-search-overlay-wrapper .kids-wrapper .kids-item input {
  width: 32px;
  height: 32px;
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  text-align: center;
  border: 0px;
  margin-right: 8px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0px;
}

.home-search-overlay-wrapper .kids-wrapper .kids-item input:focus {
  outline: 0px;
}

.home-search-overlay-wrapper .booking-form-wrapper {
  margin-top: 32px;
}

.home-search-overlay-wrapper .booking-form-wrapper .button {
  width: 100%;
  line-height: 16px;
  margin-top: 18px;
}

.home-search-overlay-wrapper .booking-form-wrapper .booking-details-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-search-overlay-wrapper .booking-form-wrapper .booking-details-line .booking-details-label {
  width: 14ch;
  font-size: 13px;
  font-family: 'Maison';
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-search-overlay-wrapper .booking-form-wrapper .booking-details-line .booking-details-value {
  width: 50%;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.home-notice {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
  display: none;
}

.home-notice .home-notice-message {
  padding: 15px 20px;
  text-align: center;
  border: solid 1px #231F20;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  font-size: 13px;
  position: relative;
  top: 100px;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.home-notice .home-notice-message.active {
  top: 0px;
}

.home-notice .home-notice-button-wrapper {
  background: #231F20;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  padding: 20px 20px 20px 30px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.home-notice .home-notice-button-wrapper .button {
  width: 100%;
}

.home-notice .home-notice-button-wrapper label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.home-notice .home-notice-button-wrapper .button-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.other-rooms-inner-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.other-rooms-inner-wrapper .room-item-related {
  width: 32.5% !important;
}

#footer-mobile .footer-phone-wrapper a .mobile-small {
  display: none;
}

.mac .room-sidebar-wrapper .room-archive-listings .room-item .room-listing-title .room-listing-price {
  padding-bottom: 4px;
}

.mac .related-room-wrapper .room-item-related .room-listing-title .room-listing-price {
  padding-bottom: 4px;
}

.mac.home .daterangepicker {
  margin-top: 27px;
}

.residents-list-wrapper {
  padding-top: 16px;
}

.residents-list li {
  margin-bottom: 9px;
}

.mobile-only {
  display: none;
}

body {
  font-family: 'Maison';
  font-size: 15px;
  color: #231F20;
}

.scrolled .random-letter {
  opacity: 1;
}

.random-letter {
  max-width: 341px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 300ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: opacity 300ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.random-letter.home-letter-1 {
  right: 10%;
  left: auto;
}

.random-letter.home-letter-2 {
  left: 22%;
}

.random-letter.home-letter-3 {
  left: 30%;
}

.random-letter img {
  width: 100%;
  height: auto;
}

#site-loader {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background: #fff;
  pointer-events: none;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

#site-loader.active {
  opacity: 1;
}

.home {
  background: #fff;
}

.home #header {
  opacity: 0;
}

.home #header.active {
  opacity: 1;
}

.home .page-content {
  position: relative;
  z-index: 2;
}

.home .events-table-wrapper .in-the-hood-image {
  max-width: 371px;
}

.home .home-events-wrapper {
  position: relative;
  z-index: 2;
}

.home .home-events-wrapper .events-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  padding-top: 2px;
  font-family: 'Maison';
  margin-bottom: 37px;
}

.home .home-events-wrapper .events-description-listing-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.home .home-events-wrapper .events-description-listing-wrapper .events-content {
  width: 318px;
}

.home .home-events-wrapper .events-description-listing-wrapper .events-listings-wrapper {
  width: 836px;
}

.home .gallery-content-wrapper {
  margin-bottom: 174px;
}

.home .gallery-content-wrapper .button-black {
  width: 200px;
  max-width: 100%;
}

.home .content-area {
  max-width: 376px;
}

.home blockquote {
  margin-bottom: 38px;
}

.home h2 {
  margin-bottom: 70px;
}

.home .content-wrapper {
  padding-top: 84px;
}

.home .logo-title-wrapper {
  display: block;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 1;
  line-height: 0px;
  margin-bottom: 0px;
}

.home .logo-title-wrapper.logo-position-right {
  left: auto;
  right: 0;
  transform: none;
  -webkit-transform: none;
}

.home .logo-title-wrapper .logo-wrapper {
  margin: 0px;
  line-height: 0px;
  display: block;
  width: 369px;
}

.home .logo-title-wrapper .logo-wrapper img {
  width: 100%;
  height: auto;
}

.date-range-mobile-wrapper-2-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
}

.date-range-wrapper {
  position: absolute;
}

.date-range-mobile-wrapper.active,
.date-range-mobile-wrapper-2.active,
.date-range-wrapper.active {
  position: relative;
}

.date-range-mobile-wrapper.active .daterangepicker,
.date-range-mobile-wrapper-2.active .daterangepicker,
.date-range-wrapper.active .daterangepicker {
  position: relative !important;
  width: 100% !important;
  top: 0 !important;
}

.date-range-mobile-wrapper.active .next-calendar-fake,
.date-range-mobile-wrapper-2.active .next-calendar-fake,
.date-range-wrapper.active .next-calendar-fake {
  opacity: 1;
}

.date-range-wrapper, .date-range-wrapper.active {
  position: absolute;
  z-index: 10;
}

.room-sidebar .date-range-wrapper {
  left: 0;
  top: 100%;
}

@media screen and (max-width: 700px) {
  .room-sidebar .date-range-wrapper {
    width: calc(100% - 2px);
  }
}

.room-sidebar .date-range-wrapper .daterangepicker {
  left: 1px !important;
  top: 0 !important;
}

.room-sidebar .date-range-wrapper:not(.active) .daterangepicker {
  display: none;
}

body .daterangepicker {
  border-radius: 0px;
  padding: 0px;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  background: #efedeb;
  left: -99999px;
}

body .daterangepicker.dropdown-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-shadow: 0px 0px 0px 1px white;
          box-shadow: 0px 0px 0px 1px white;
}

@media screen and (max-width: 563px) {
  body .daterangepicker.dropdown-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 80%;
  }
}

body .daterangepicker .next-calendar-fake {
  display: none;
  position: absolute;
  right: 0px;
  font-size: 10px;
  z-index: 999999;
  top: 13px;
  padding: 10px;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
}

body .daterangepicker .prev-calendar-fake {
  display: none;
  position: absolute;
  left: 0px;
  font-size: 10px;
  z-index: 999999;
  top: 13px;
  padding: 10px;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  opacity: 0;
  pointer-events: none;
}

body .daterangepicker .prev-calendar-fake.active {
  opacity: 1;
  pointer-events: auto;
}

body .daterangepicker .calendar-table {
  background: #efedeb;
  border: 0px;
  padding: 0px !important;
}

body .daterangepicker:after, body .daterangepicker:before {
  display: none;
}

body .daterangepicker .calendar {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  float: none;
  max-width: none;
  width: 100%;
}

body .daterangepicker .calendar.left {
  padding-bottom: 8px;
}

@media screen and (min-width: 700px) {
  body .daterangepicker .calendar.left {
    border-right: 1px solid white;
    padding-right: 4px;
    padding-bottom: 0;
  }
}

body .daterangepicker .calendar.right {
  padding-top: 8px;
}

@media screen and (min-width: 700px) {
  body .daterangepicker .calendar.right {
    padding-left: 4px;
    padding-top: 0;
  }
}

body .daterangepicker .daterangepicker_input {
  display: none;
}

body .daterangepicker table {
  padding: 0px;
  margin: 0px;
  line-height: 100%;
}

body .daterangepicker table thead tr:first-child {
  margin-bottom: 10px;
  padding-top: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

body .daterangepicker table thead tr:first-child th:nth-child(1), body .daterangepicker table thead tr:first-child th:nth-child(3) {
  min-width: 0;
  width: 12px;
}

body .daterangepicker table thead tr:first-child th.month {
  display: block !important;
  width: 100%;
}

body .daterangepicker table tr {
  padding: 0px;
  margin: 0px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

body .daterangepicker table tr td {
  padding: 0px;
  margin: 0px;
  border: 0px;
  font-size: 13px;
  width: 28px;
  margin: 3px;
  height: 28px;
  min-width: 28px !important;
  background: none;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body .daterangepicker table tr td:hover {
  background: none !important;
}

body .daterangepicker table tr td.off {
  background: none;
}

body .daterangepicker table tr td.today {
  border: 0px;
}

body .daterangepicker table tr td.active, body .daterangepicker table tr td.start-date, body .daterangepicker table tr td.end-date, body .daterangepicker table tr td.in-range {
  background: #fff;
  border-radius: 100% !important;
  color: #231F20;
  border: solid 1px #231F20;
}

body .daterangepicker table tr td.active:hover, body .daterangepicker table tr td.start-date:hover, body .daterangepicker table tr td.end-date:hover, body .daterangepicker table tr td.in-range:hover {
  background: none;
  border-radius: 100% !important;
  color: #231F20;
  border: solid 1px #231F20;
}

body .daterangepicker table tr td.disabled {
  text-decoration: none;
  color: #231F20;
}

body .daterangepicker table tr td.disabled:after {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  width: 1px;
  background: #231F20;
  height: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body .daterangepicker table tr th {
  padding: 0px;
  margin: 0px;
  border: 0px;
  font-size: 13px;
  width: 20px;
  height: 20px;
  border-radius: 0px;
}

body .daterangepicker table tr th.month {
  font-family: 'CentSchbook';
  font-size: 16px;
  text-transform: uppercase;
  height: auto;
}

body .daterangepicker table tr th:hover {
  background: none !important;
}

body .daterangepicker table tr th.prev {
  position: relative;
  width: 10px;
  min-width: 0px;
  height: 10px;
  line-height: 100%;
  left: 10px;
}

body .daterangepicker table tr th.prev:after {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  content: "\e902";
  font-family: "icomoon";
}

body .daterangepicker table tr th.next {
  position: relative;
  width: 10px;
  min-width: 0px;
  height: 10px;
  line-height: 100%;
  right: 10px;
}

body .daterangepicker table tr th.next:after {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  content: "\e901";
  font-family: "icomoon";
}

.header-search-wrapper {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 5;
  transform: translateY(-200px);
  -webkit-transform: translateY(-200px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.header-search-wrapper.active {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.header-search-wrapper .home-search-wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
}

.home-search-wrapper {
  background: #231F20;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  line-height: 100%;
  padding: 0px 15px;
  color: #ffffff;
}

.home-search-wrapper a.button {
  background: none;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: .5px;
  padding: 17px 8px 15px;
}

.home-search-wrapper a.button i {
  font-size: 11px;
}

.home-search-wrapper a.button span {
  padding: 17px 8px 15px;
}

.home-search-wrapper a.button span > span {
  padding: 0 0 !important;
}

.home-search-wrapper .button-show-hide-dates.active,
.home-search-wrapper .button-show-hide-guests.active {
  background: #231F20;
}

.home-search-wrapper .button-show-hide-dates.active span,
.home-search-wrapper .button-show-hide-guests.active span {
  color: #fff;
}

.home-search-wrapper label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.home-search-wrapper .button-search {
  padding: 2px 10px;
}

.home-search-wrapper .button-search > span {
  padding: 2px 10px;
}

.home-search-wrapper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

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

.search-guest-wrapper {
  position: relative;
  margin-right: 30px;
  margin-left: 12px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.search-guest-wrapper .guests-dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: calc(50% - 125px);
  background: #efedeb;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 250px;
  display: none;
}

.search-guest-wrapper .guests-dropdown-wrapper .button {
  color: #231F20;
  background: #fff;
  width: 100%;
  line-height: 100%;
  padding: 4px 6px 2px 4px;
}

.search-guest-wrapper .guests-dropdown-wrapper .button span {
  padding: 4px 6px 2px 4px;
}

.search-guest-wrapper .guests-dropdown-wrapper .button.active {
  background: #231F20;
}

.search-guest-wrapper .guests-dropdown-wrapper .button.active span {
  color: #fff;
}

.search-guest-wrapper .guests-dropdown-wrapper .button span {
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.search-guest-wrapper .guests-dropdown-wrapper .add-kids-wrapper {
  margin-top: 10px;
  line-height: 0px;
}

.search-guest-wrapper .guests-dropdown-wrapper .kids-wrapper-wrapper {
  display: none;
}

.search-guest-wrapper .guests-dropdown-wrapper .kids-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
}

.search-guest-wrapper .guests-dropdown-wrapper .kids-wrapper .kids-item {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  line-height: 100%;
}

.search-guest-wrapper .guests-dropdown-wrapper .kids-wrapper .kids-item label {
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  white-space: nowrap;
}

.search-guest-wrapper .guests-dropdown-wrapper .kids-wrapper .kids-item input {
  width: 32px;
  height: 32px;
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  text-align: center;
  border: 0px;
  margin-right: 8px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0px;
}

.search-guest-wrapper .guests-dropdown-wrapper .kids-wrapper .kids-item input:focus {
  outline: 0px;
}

.search-date-wrapper {
  position: relative;
  margin-left: 30px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.search-date-wrapper > .date-range {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}

body.colour-scheme-dark .home-search-wrapper {
  background: #231F20;
  color: #fff;
}

body.colour-scheme-dark .home-search-wrapper button.button-black {
  background: #fff;
  color: #231F20;
}

body.colour-scheme-dark .home-search-wrapper button.button-black span {
  background: #fff;
  color: #231F20;
}

body.colour-scheme-dark .home-search-wrapper a.button {
  color: #fff;
}

body.colour-scheme-dark .home-search-wrapper .button-show-hide-dates.active,
body.colour-scheme-dark .home-search-wrapper .button-show-hide-guests.active {
  background: #efedeb;
}

body.colour-scheme-dark .home-search-wrapper .button-show-hide-dates.active span,
body.colour-scheme-dark .home-search-wrapper .button-show-hide-guests.active span {
  color: #231F20;
}

body.colour-scheme-dark .search-guest-wrapper .guests-dropdown-wrapper .button {
  color: #231F20;
}

body.colour-scheme-grey .search-guest-wrapper .guests-dropdown-wrapper {
  background: #231F20;
}

body.colour-scheme-grey .search-guest-wrapper .guests-dropdown-wrapper .button.active {
  background: #fff;
  color: #231F20;
}

body.colour-scheme-grey .search-guest-wrapper .guests-dropdown-wrapper .button.active span {
  color: #231F20;
}

body.colour-scheme-grey .search-guest-wrapper .guests-dropdown-wrapper .kids-wrapper .kids-item label {
  color: #fff;
}

body.colour-scheme-grey .daterangepicker {
  background: #231F20;
  color: #fff;
}

body.colour-scheme-grey .daterangepicker table tr td.active,
body.colour-scheme-grey .daterangepicker table tr td.start-date,
body.colour-scheme-grey .daterangepicker table tr td.end-date,
body.colour-scheme-grey .daterangepicker table tr td.in-range {
  background: #fff !important;
  color: #231F20 !important;
}

body.colour-scheme-grey .daterangepicker table tr td.active:hover,
body.colour-scheme-grey .daterangepicker table tr td.start-date:hover,
body.colour-scheme-grey .daterangepicker table tr td.end-date:hover,
body.colour-scheme-grey .daterangepicker table tr td.in-range:hover {
  background: #fff !important;
}

body.colour-scheme-grey .daterangepicker table tr td.disabled {
  color: #999;
}

body.colour-scheme-grey .daterangepicker table tr td.disabled:after {
  background: #999;
}

body.colour-scheme-grey .daterangepicker .next-calendar-fake,
body.colour-scheme-grey .daterangepicker .prev-calendar-fake {
  color: #fff;
}

body.colour-scheme-grey .daterangepicker .calendar-table {
  background: #231F20;
}

.home-featured-images-wrapper {
  position: relative;
  margin-bottom: 271px;
  z-index: 2;
}

.home-featured-images-wrapper .button-view-rooms {
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 72px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0) scale(1, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.home-featured-images-wrapper .home-featured-images {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.home-featured-images-wrapper .home-featured-images .home-featured-image-2 {
  margin-top: 20px;
}

.home-featured-images-wrapper .home-featured-images .home-featured-image-2.active .featured-image {
  opacity: 1;
}

.home-featured-images-wrapper .home-featured-images .home-featured-image-1.active .featured-image {
  opacity: 1;
}

.home-featured-images-wrapper .home-featured-images .home-featured-image {
  width: 50%;
  background: #efedeb;
}

.home-featured-images-wrapper .home-featured-images .home-featured-image.home-featured-image-2 .featured-image {
  height: calc(100vh - 85px - 45px - 20px);
  max-height: 900px;
}

.home-featured-images-wrapper .home-featured-images .home-featured-image.home-featured-image-1 .featured-image {
  height: calc(100vh - 85px - 45px - 20px);
  max-height: 900px;
}

.home-featured-images-wrapper .home-featured-images .home-featured-image .featured-image {
  width: 100%;
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.mobile-menu-trigger-wrapper {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 20;
}

.mobile-menu-trigger-wrapper .show-hide-mobile-menu {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
}

.mobile-menu-trigger-wrapper span {
  width: 16px;
  height: 1px;
  position: absolute;
  display: block;
  background: #231F20;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

.mobile-menu-trigger-wrapper .bar1 {
  top: 0;
  left: 0;
  transition-delay: .1s;
  -webkit-transition-delay: .1s;
}

.mobile-menu-trigger-wrapper .bar2 {
  top: 6px;
  left: 0;
  opacity: 1;
}

.mobile-menu-trigger-wrapper .bar3 {
  top: 12px;
  left: 0;
  transition-delay: .1s;
  -webkit-transition-delay: .1s;
}

#nav-mobile {
  background: #efedeb;
  position: fixed;
  width: 100%;
  height: 100vh;
  padding: 63px 20px 20px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#nav-mobile ul.mobile-nav li {
  margin-bottom: 16px;
}

#nav-mobile ul.mobile-nav li a:after {
  position: relative;
  content: "\e906";
  font-family: "icomoon";
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  vertical-align: baseline;
  position: relative;
  top: -0.2em;
  left: 2px;
}

#nav-mobile ul.mobile-nav li.current-menu-item:not(.current-menu-ancestor) > a:after {
  opacity: 1;
}

#nav-mobile ul.mobile-nav li:last-child {
  margin-bottom: 0px;
}

#nav-mobile ul.mobile-nav li .sub-menu {
  padding-left: 67px;
  margin-top: 16px;
  color: #BABABA;
}

#nav-mobile ul.mobile-nav li a {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 22px;
  letter-spacing: 4px;
  position: relative;
  color: inherit;
}

.logo-wrapper-mobile {
  display: none;
}

.mobile-menu-open #nav-mobile {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu-open .mobile-menu-trigger-wrapper .bar1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
}

.mobile-menu-open .mobile-menu-trigger-wrapper .bar2 {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.mobile-menu-open .mobile-menu-trigger-wrapper .bar3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 6px;
}

.mobile-menu-trigger-wrapper {
  display: none;
}

.reached-bottom .site-notice {
  transform: translateY(110%) !important;
  -webkit-transform: translateY(110%) !important;
  bottom: 0px !important;
}

.scrolled .site-notice {
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  bottom: 20px;
}

.site-notice {
  position: fixed;
  bottom: 0px;
  right: 0;
  z-index: 30;
  width: 100%;
  transform: translateY(110%);
  -webkit-transform: translateY(110%);
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.site-notice .inner-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.site-notice .site-notice-inner {
  padding: 12px 14px 8px;
  background: #fff;
  border: solid 1px #231F20;
  display: inline-block;
  pointer-events: auto !important;
}

.site-notice .site-notice-inner a {
  pointer-events: auto !important;
}

#footer-mobile {
  display: none;
  padding-top: 28px;
  position: relative;
  z-index: 2;
}

#footer-mobile .inner-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

#footer-mobile .footer-address {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 16px;
}

#footer-mobile .footer-phone-wrapper {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 16px;
}

#footer-mobile .footer-social-picture-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

#footer-mobile .footer-social-picture-wrapper .footer-socials {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#footer-mobile .footer-social-picture-wrapper .footer-socials .social-links {
  margin-right: 35px;
}

#footer-mobile .footer-social-picture-wrapper .footer-picture-wrapper {
  width: 44px;
}

#footer-mobile .footer-copyright-row {
  font-size: 11px;
  line-height: 13px;
  color: #BABABA;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
  padding-bottom: 40px;
}

#footer-mobile .footer-copyright-row a {
  color: #BABABA;
}

#footer-mobile .footer-message {
  margin-bottom: 20px;
}

#footer-mobile .footer-message a {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

#footer-mobile .footer-message a span {
  margin-left: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
}

#footer-mobile .footer-message a img {
  width: 38px;
  height: auto;
}

#footer-mobile .footer-menu-wrapper {
  width: 100%;
  margin-bottom: 26px;
}

#footer-mobile .footer-menu-wrapper #menu-footer-menu {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

#footer-mobile .footer-menu-wrapper #menu-footer-menu li {
  margin-bottom: 0px;
  margin-right: 33px;
}

#footer-mobile .footer-menu-wrapper #menu-footer-menu li:last-child {
  margin-right: 0px;
}

#footer-mobile .footer-menu-wrapper #menu-footer-menu li a {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.is-touch .owl-nav {
  display: none !important;
}

.one-slide {
  pointer-events: none;
}

#header {
  padding-top: 14px;
  padding-bottom: 15px;
  position: fixed;
  background: #fff;
  color: #231F20;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 35;
  -webkit-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#header #menu-main-menu {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

#header #menu-main-menu li {
  position: relative;
}

#header #menu-main-menu li.current_page_parent:before {
  opacity: 1;
}

#header #menu-main-menu li.current-menu-item:first-of-type {
  left: 24px;
}

#header #menu-main-menu li.current-menu-item:before {
  opacity: 1;
}

#header #menu-main-menu li:hover:before {
  opacity: 1;
}

#header #menu-main-menu li:before {
  position: absolute;
  content: "\e906";
  font-family: "icomoon";
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  top: 50%;
  left: -10px;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}

#header #menu-main-menu li a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#header .sub-menu {
  position: absolute;
  z-index: -1;
  background: white;
  left: -28px;
  padding: 27px 28px 12px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  -webkit-transition: opacity 160ms linear, -webkit-transform 160ms ease-in-out;
  transition: opacity 160ms linear, -webkit-transform 160ms ease-in-out;
  transition: transform 160ms ease-in-out, opacity 160ms linear;
  transition: transform 160ms ease-in-out, opacity 160ms linear, -webkit-transform 160ms ease-in-out;
}

#header .sub-menu li:nth-child(n + 2) {
  margin-top: 15px;
}

#header li:hover .sub-menu,
#header li:focus .sub-menu,
#header li:focus-within .sub-menu {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.error404 .logo-title-wrapper {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.error404 .not-found-wrapper .not-found-image-wrapper img {
  position: fixed;
  max-width: 240px;
  z-index: 1;
}

.error404 .not-found-wrapper .not-found-image-wrapper img.image-position-5 {
  left: 20%;
  bottom: 20%;
}

.error404 .not-found-wrapper .not-found-image-wrapper img.image-position-4 {
  left: 30%;
  bottom: 40%;
}

.error404 .not-found-wrapper .not-found-image-wrapper img.image-position-3 {
  left: 50%;
  bottom: 40%;
}

.error404 .not-found-wrapper .not-found-image-wrapper img.image-position-2 {
  right: 10%;
  top: 40%;
}

.error404 .not-found-wrapper .not-found-image-wrapper img.image-position-1 {
  right: 30%;
  top: 30%;
}

.error404 .not-found-wrapper p {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.error404 .not-found-wrapper .error-image-wrapper {
  max-width: 921px;
  width: 100%;
  margin-bottom: 40px;
}

.error404 .not-found-wrapper .error-image-wrapper img {
  width: 100%;
  height: auto;
}

body {
  background: #fff;
}

body.disable-scroll {
  overflow: hidden;
}

body.page-template-template-contact-php, body.page-id-12, body.page-id-237, body.page-template-template-review, body.blog {
  background: #efedeb;
}

body.page-template-template-contact-php #footer, body.page-id-12 #footer, body.page-id-237 #footer, body.page-template-template-review #footer, body.blog #footer {
  background: #fff;
}

body.page-template-template-contact-php #footer .inner-wrapper, body.page-id-12 #footer .inner-wrapper, body.page-id-237 #footer .inner-wrapper, body.page-template-template-review #footer .inner-wrapper, body.blog #footer .inner-wrapper {
  border-top: 0px;
}

body.page-template-template-contact-php #footer-mobile .footer-menu-wrapper, body.page-id-12 #footer-mobile .footer-menu-wrapper, body.page-id-237 #footer-mobile .footer-menu-wrapper, body.page-template-template-review #footer-mobile .footer-menu-wrapper, body.blog #footer-mobile .footer-menu-wrapper {
  padding-top: 0px;
  border-top: 0px;
}

body #footer-mobile .footer-menu-wrapper {
  padding-top: 26px;
  border-top: solid 2px #eeeeee;
}

body.page-template-template-hood-php h2 {
  margin-bottom: 70px;
}

body #footer-mobile {
  background: #fff;
}

.sticky-button-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: #efedeb;
  padding: 20px;
  display: none;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 25;
  transform: translateY(110%);
  -webkit-transform: translateY(110%);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-button-wrapper .button-price-wrapper {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 15px;
}

.sticky-button-wrapper.active {
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

.sticky-button-wrapper .button {
  width: 100%;
  display: inline-block;
}

.logo-title-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 57px;
  position: relative;
  z-index: 30;
}

.post-type-archive-room .logo-title-wrapper {
  margin-top: 75px;
}

.logo-title-wrapper img {
  width: 100%;
  height: auto;
}

.logo-title-wrapper .logo-wrapper {
  margin-top: 5px;
  width: 369px;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.logo-title-wrapper .logo-wrapper a {
  opacity: 0;
  -webkit-transition: none;
  transition: none;
}

.logo-title-wrapper .logo-wrapper .additional-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.logo-title-wrapper .logo-wrapper .additional-logo.active {
  opacity: 1;
}

.logo-title-wrapper h1 {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 30px;
  font-family: 'CentSchbook';
}

.slider-dots {
  counter-reset: dots;
}

.owl-dot:before {
  counter-increment: dots;
  content: counter(dots);
}

.slider-dots-wrapper {
  margin-top: 15px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.slider-dots-wrapper .slider-next-button {
  font-size: 11px;
  margin-left: 2px;
}

.slider-dots-wrapper .slider-dots {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

.slider-dots-wrapper .slider-dots .owl-dot {
  margin-right: 3px;
  font-size: 13px;
  cursor: pointer;
}

.owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.owl-nav .owl-prev {
  width: 50%;
  height: 100%;
  display: block;
  cursor: url(../images/prev.png), auto !important;
  cursor: -webkit-image-set(url("../images/prev.png") 1x, url("../images/prev2x.png") 2x, url("../images/prev3x.png") 3x), auto !important;
}

.owl-nav .owl-next {
  width: 50%;
  height: 100%;
  display: block;
  cursor: url(../images/next.png), auto !important;
  cursor: -webkit-image-set(url("../images/next.png") 1x, url("../images/next2x.png") 2x, url("../images/next3x.png") 3x), auto !important;
}

.home .events-table-wrapper .events-table-row .event-column-title {
  max-width: 530px;
}

.events-table-wrapper {
  position: relative;
  padding-bottom: 280px;
  margin-bottom: 114px;
}

.events-table-wrapper .in-the-hood-image {
  position: absolute;
  left: 18%;
  bottom: 0px;
  max-width: 288px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.events-table-wrapper .events-table-row {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 13px 0px;
  border-bottom: solid 1px #231F20;
  position: relative;
  z-index: 1;
}

.events-table-wrapper .events-table-row .event-column-title {
  width: 100%;
  max-width: 710px;
  padding-top: 1px;
}

.events-table-wrapper .events-table-row .event-column-category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  padding-top: 2px;
  width: 130px;
}

.events-table-wrapper .events-table-row .event-column-date-start {
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 130px;
}

.events-table-wrapper .events-table-row .event-column-date-start i {
  font-size: 10px;
}

.events-table-wrapper .events-table-row .event-column-date-end {
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 130px;
}

.events-table-wrapper .events-table-row .event-column-view {
  width: 50px;
  text-align: right;
}

.events-table-wrapper .events-table-row .event-column-view a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  padding-top: 2px;
}

.events-table-wrapper .events-table-row.events-table-header {
  padding-bottom: 30px;
}

.events-table-wrapper .events-table-row.events-table-header .event-column-date,
.events-table-wrapper .events-table-row.events-table-header .event-column-view,
.events-table-wrapper .events-table-row.events-table-header .event-column-category,
.events-table-wrapper .events-table-row.events-table-header .event-column-title,
.events-table-wrapper .events-table-row.events-table-header .title {
  font-family: 'Maison';
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 0px;
}

.contact-address-wrapper {
  padding-bottom: 35px;
  border-bottom: solid 1px #e1e0de;
  margin-bottom: 39px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
}

.contact-address-wrapper .contact-links {
  margin-top: 16px;
}

.contact-address-wrapper .contact-links a {
  display: block;
}

.contact-content h4,
.page-content h4 {
  padding-top: 15px;
}

.contact-content h4:first-of-type,
.page-content h4:first-of-type {
  padding-top: 0px;
}

.contact-content p a,
.page-content p a {
  text-decoration: underline;
}

.contact-content ul li,
.page-content ul li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 18px;
  line-height: 18px;
}

.contact-content ul li:before,
.page-content ul li:before {
  content: "•";
  position: absolute;
  left: -3px;
  top: 0;
}

.page-id-12 .page-gallery-content-wrapper .page-gallery-wrapper {
  max-width: 50%;
}

.page-id-12 .page-gallery-content-wrapper .content {
  max-width: 497px;
}

.page-gallery-content-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.page-gallery-content-wrapper .page-gallery-wrapper {
  max-width: 411px;
  width: 100%;
}

.page-gallery-content-wrapper .content {
  width: 50%;
}

.map-wrapper {
  width: 100%;
  max-width: 730px;
}

.map-wrapper iframe {
  width: 100% !important;
}

.map-wrapper iframe #watermark {
  display: none !important;
}

.page-template-template-house .section-title {
  margin-bottom: 70px;
}

.page-template-template-house .section-content a {
  border-bottom: solid 1px #231F20;
  color: #231F20 !important;
}

.page-template-template-house .page-section-row:nth-child(even) .gallery-content-wrapper {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.gallery-content-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 130px;
}

.gallery-content-wrapper.our-favourites-wrapper .content {
  max-width: 388px;
}

.gallery-content-wrapper.gallery-left {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.gallery-content-wrapper .content {
  width: 40%;
}

.gallery-content-wrapper .content p a {
  color: #BABABA;
}

.gallery-content-wrapper .content p a:hover {
  color: #231F20;
}

.gallery-content-wrapper .content .content-inner {
  max-width: 388px;
}

.gallery-content-wrapper .page-gallery-wrapper {
  width: 50%;
}

.related-room-wrapper {
  margin-top: 115px;
}

.related-room-wrapper .inner-wrapper.inner-wrapper-slider {
  max-width: 100%;
}

.related-room-wrapper .owl-nav {
  display: none !important;
}

.related-room-wrapper h2 {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 30px;
  letter-spacing: 6px;
  margin-bottom: 41px;
}

.related-room-wrapper .room-item-related {
  width: 100%;
}

.related-room-wrapper .room-item-related .room-listing-title {
  margin-bottom: 42px;
  padding-top: 8px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.related-room-wrapper .room-item-related .room-listing-title h2 {
  font-family: 'Self Modern';
  margin-bottom: 0px;
  letter-spacing: 0px;
  text-transform: none;
}

.related-room-wrapper .room-item-related .room-listing-title h2 a {
  font-family: 'Self Modern';
  margin-bottom: 0px;
  letter-spacing: 0px;
  text-transform: none;
  text-decoration: none;
}

.related-room-wrapper .room-item-related .room-listing-title .room-listing-price {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.related-room-wrapper .room-item-related .room-image-wrapper {
  width: 100%;
  height: 307px;
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.related-room-wrapper .room-item-related .room-image-wrapper:hover .overlay {
  opacity: 1;
}

.related-room-wrapper .room-item-related .room-image-wrapper .overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  padding-top: 2px;
  padding-left: 3px;
  line-height: 100%;
  opacity: 0;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.adults-dropdown-wrapper {
  line-height: 0px;
}

.adults-dropdown {
  border: solid 1px #231F20;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}

.adults-dropdown a {
  display: block;
  padding: 9px 8px 7px;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  color: #BABABA;
  background: #fff;
  border-bottom: solid 1px #231F20;
  line-height: 100%;
}

.adults-dropdown a:hover {
  color: #231F20;
}

.adults-dropdown a.active {
  color: #231F20;
}

.adults-dropdown a:last-child {
  border-bottom: 0px;
}

.post-type-archive.loading .room-sidebar-wrapper .room-sidebar:after {
  opacity: 1;
}

.post-type-archive.loading .room-sidebar-wrapper .room-sidebar .sidebar-item {
  opacity: .2;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
}

.post-type-archive .room-sidebar-wrapper .room-sidebar:after {
  content: '';
  background: url(../images/loading.gif) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
  opacity: 0;
  pointer-events: none;
}

.home .daterangepicker {
  margin-top: 26px;
}

.home .daterangepicker .calendar {
  padding: 0px 10px 10px;
}

.home .daterangepicker .prev-calendar-fake {
  left: 10px;
}

.home .daterangepicker .next-calendar-fake {
  right: 10px;
}

.room-sidebar-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}

.room-sidebar-wrapper .sidebar-overlay-message {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BABABA;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  color: #fff;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  pointer-events: none;
}

.room-sidebar-wrapper .sidebar-overlay-message.active {
  opacity: 1;
  pointer-events: auto;
}

.room-sidebar-wrapper .sidebar-overlay-message p:last-child {
  margin-bottom: 0px;
}

.room-sidebar-wrapper .sidebar-overlay-message .close-sidebar-message {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
}

.room-sidebar-wrapper .daterangepicker {
  padding-left: 0px;
  padding-right: 0px;
}

.room-sidebar-wrapper .single-room-listing {
  width: 100%;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-description {
  max-width: 515px;
  margin-right: 40px;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-features {
  max-width: 310px;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-features .feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-features .feature-list li:after {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-images {
  width: 100%;
  margin-top: 25px;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-images .room-image-wrapper {
  width: 60%;
  line-height: 0px;
  margin-bottom: 43px;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-images .room-image-wrapper:last-child {
  margin-bottom: 0px;
}

.room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-images .room-image-wrapper:nth-child(even) {
  margin-right: 0px;
  margin-left: auto;
}

.room-sidebar-wrapper .single-room-listing img {
  width: 100%;
  height: auto;
}

.room-sidebar-wrapper .room-archive-listings {
  width: 100%;
}

.room-sidebar-wrapper .room-archive-listings .room-item {
  margin-bottom: 120px;
  max-width: 624px;
}

@media screen and (max-width: 500px) {
  .room-sidebar-wrapper .room-archive-listings .room-item {
    margin-bottom: 50px;
  }
}

.room-sidebar-wrapper .room-archive-listings .room-item.room-unavailable {
  position: relative;
}

.room-sidebar-wrapper .room-archive-listings .room-item.room-unavailable .overlay-unavailable {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 10;
}

.room-sidebar-wrapper .room-archive-listings .room-item.room-unavailable .overlay-unavailable p {
  max-width: 200px;
}

.room-sidebar-wrapper .room-archive-listings .room-item.room-unavailable .overlay-unavailable span {
  background: #fff;
  padding: 3px 2px 2px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-sidebar-wrapper .room-archive-listings .room-item.room-unavailable .overlay-unavailable span:hover {
  background: #231F20;
  color: #fff;
}

.room-sidebar-wrapper .room-archive-listings .room-item h2 {
  margin: 0;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-listing-title {
  margin: 40px 0 36px;
  padding: 0;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-listing-title h2 a {
  font-family: 'Self Modern';
  margin-bottom: 0px;
  letter-spacing: 0px;
  text-transform: none;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  opacity: 1;
  -webkit-transition: opacity 80ms linear, -webkit-text-decoration-color 80ms linear;
  transition: opacity 80ms linear, -webkit-text-decoration-color 80ms linear;
  transition: opacity 80ms linear, text-decoration-color 80ms linear;
  transition: opacity 80ms linear, text-decoration-color 80ms linear, -webkit-text-decoration-color 80ms linear;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-listing-title h2 a:hover {
  opacity: 0.65;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-listing-title .room-listing-price {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  white-space: nowrap;
  text-align: right;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-image-wrapper {
  position: relative;
  display: block;
  line-height: 0px;
  margin-bottom: 15px;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-image-wrapper:hover .overlay {
  opacity: 1;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-image-wrapper .overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: url(../images/select.png) no-repeat center;
  background-size: cover;
  opacity: 0;
  display: block;
  width: 60px;
  height: 18px;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.room-sidebar-wrapper .room-archive-listings .room-item .room-image-wrapper img {
  width: 100%;
  height: auto;
}

.room-sidebar-wrapper .room-sidebar {
  width: 305px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: sticky;
  position: -webkit-sticky;
  z-index: 25;
  top: 70px;
  left: 0;
  padding: 20px;
  background: #efedeb;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 120px;
}

.room-sidebar-wrapper .room-sidebar .search-date-wrapper {
  display: block;
}

.room-sidebar-wrapper .room-sidebar:after {
  content: '';
  background: url(../images/loading.gif) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  transition: all 600ms cubic-bezier(0.455, 0.01, 0.445, 0.985);
  /* custom */
  opacity: 0;
  pointer-events: none;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .search-date-wrapper {
  margin-left: 0px;
  line-height: 0px;
  margin-bottom: 20px;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-dates,
.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-add-kids {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  background: #fff;
  line-height: 100%;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-dates span,
.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-add-kids span {
  color: #231F20;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-dates > span,
.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-add-kids > span {
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-dates .button-label,
.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-add-kids .button-label {
  display: inline-block;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-dates .button-label i,
.room-sidebar-wrapper .room-sidebar .search-form-wrapper .button-show-hide-add-kids .button-label i {
  font-size: 11px;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .adults-dropdown-wrapper {
  background: #efedeb;
  width: 100%;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .adults-dropdown-wrapper .button {
  color: #231F20;
  background: #fff;
  width: 100%;
  line-height: 100%;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .adults-dropdown-wrapper .button.active {
  background: #231F20;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .adults-dropdown-wrapper .button.active span {
  color: #fff;
}

.room-sidebar-wrapper .room-sidebar .search-form-wrapper .adults-dropdown-wrapper .button span {
  width: 100%;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.room-sidebar-wrapper .room-sidebar .add-kids-wrapper {
  margin-top: 15px;
  line-height: 0px;
}

.room-sidebar-wrapper .room-sidebar .kids-wrapper-wrapper {
  display: none;
}

.room-sidebar-wrapper .room-sidebar .kids-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 15px;
}

.room-sidebar-wrapper .room-sidebar .kids-wrapper .kids-item {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  line-height: 100%;
}

.room-sidebar-wrapper .room-sidebar .kids-wrapper .kids-item label {
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  white-space: nowrap;
  text-transform: uppercase;
}

.room-sidebar-wrapper .room-sidebar .kids-wrapper .kids-item input {
  width: 32px;
  height: 32px;
  font-family: 'CentSchbook';
  font-size: 16px;
  color: #231F20;
  letter-spacing: .5px;
  text-align: center;
  border: 0px;
  margin-right: 8px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0px;
}

.room-sidebar-wrapper .room-sidebar .kids-wrapper .kids-item input:focus {
  outline: 0px;
}

.room-sidebar-wrapper .room-sidebar .flexible-dates-wrapper {
  margin-top: 27px;
  padding: 0;
  font-size: 13px;
  line-height: 1.23;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.room-sidebar-wrapper .room-sidebar .flexible-dates-wrapper > *:first-child {
  margin-top: 0;
}

.room-sidebar-wrapper .room-sidebar .flexible-dates-wrapper > *:last-child {
  margin-bottom: 0;
}

.room-sidebar-wrapper .room-sidebar .flexible-dates-wrapper label {
  padding-left: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.room-sidebar-wrapper .room-sidebar .flexible-dates-wrapper p {
  padding-left: 30px;
}

.room-sidebar-wrapper .room-sidebar .flexible-dates-wrapper [type="checkbox"] {
  display: inline-block;
  margin-left: -30px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 14px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border: 1px solid #231f20;
  background-image: url(../images/tick-black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0;
  -webkit-transition: background-size 80ms linear;
  transition: background-size 80ms linear;
  cursor: pointer;
}

.room-sidebar-wrapper .room-sidebar .flexible-dates-wrapper [type="checkbox"]:checked {
  background-size: 78% auto;
}

.room-sidebar-wrapper .room-sidebar .booking-form-wrapper {
  margin-top: 32px;
  position: relative;
}

.room-sidebar-wrapper .room-sidebar .booking-form-wrapper .button {
  width: 100%;
  line-height: 16px;
  margin-top: 18px;
}

.room-sidebar-wrapper .room-sidebar .booking-form-wrapper .booking-details-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.room-sidebar-wrapper .room-sidebar .booking-form-wrapper .booking-details-line .booking-details-label {
  width: 14ch;
  font-size: 13px;
  font-family: 'Maison';
  letter-spacing: 2px;
  text-transform: uppercase;
}

.room-sidebar-wrapper .room-sidebar .booking-form-wrapper .booking-details-line .booking-details-value {
  width: 50%;
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item {
  position: relative;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item .table-condensed {
  margin-bottom: 10px;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item .button-update-booking {
  background: #BABABA;
  display: none;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item .button-update-booking span {
  background: #BABABA;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item button {
  width: 100%;
  margin-top: 12px;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item button.button-refine-search {
  margin-top: 30px;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item p {
  margin-bottom: 16px;
}

.room-sidebar-wrapper .room-sidebar .sidebar-item .thank-you-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #efedeb;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-sidebar-wrapper .room-sidebar .sidebar-item .thank-you-message.active {
  opacity: 1;
  pointer-events: auto;
}

.room-sidebar-wrapper .room-sidebar h3 {
  font-size: 13px;
  font-family: 'Maison';
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.page-id-14 .page-content,
.page-id-16 .page-content {
  max-width: 625px;
  margin: 0px auto;
}

.page-description {
  max-width: 366px;
  margin-bottom: 88px;
}

.page-template-template-review .logo-title-wrapper {
  margin-bottom: 0px;
}

.page-template-template-review.thank-you-active .page-content {
  min-height: 572px;
}

.page-template-template-review.thank-you-active .page-content .feedback-overlay {
  opacity: 1;
}

.page-template-template-review.thank-you-active .page-content .feedback-overlay h2 {
  max-width: 317px;
  text-align: center;
}

.page-template-template-review.thank-you-active .page-description {
  display: none;
}

.page-template-template-review.thank-you-active .logo-title-wrapper h1,
.page-template-template-review.thank-you-active .page-description {
  color: #efedeb;
}

.page-template-template-review .page-content {
  position: relative;
}

.page-template-template-review .page-content .feedback-overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: #efedeb;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
}

.post-type-archive-faq .logo-title-wrapper {
  margin-bottom: 0px;
}

.faq-list {
  max-width: 623px;
  margin: 0px auto;
}

.faq-list .faq-item {
  border-bottom: solid 1px #e1e0de;
}

.faq-list .faq-item:first-child {
  border-top: solid 1px #e1e0de;
}

.faq-list .faq-item:last-child {
  border-bottom: 0px;
}

.faq-list .faq-item .faq-answer {
  display: none;
  padding: 12px 0px 8px;
}

.faq-list .faq-item .show-hide-faq-answer {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 13px 0px;
}

.faq-list .faq-item .show-hide-faq-answer i {
  font-size: 9px;
}

.faq-list .faq-item .show-hide-faq-answer span {
  font-family: "Self Modern";
  font-size: 20px;
  line-height: 24px;
}

.content-wrapper {
  padding-top: 78px;
}

.content-wrapper.rating-5 #field_2_1 {
  display: none;
}

#footer {
  margin-top: 89px;
  position: relative;
  z-index: 2;
}

#footer .inner-wrapper {
  padding-top: 60px;
  border-top: solid 1px #dddddd;
}

#footer .footer-picture-wrapper img {
  width: 43px;
  height: auto;
}

#footer .footer-copyright-row {
  font-size: 11px;
  line-height: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 52px;
  padding-bottom: 58px;
}

#footer .footer-copyright-row a {
  color: inherit;
}

#footer .footer-copyright-row__acknowledgement {
  margin: 0;
}

#footer .footer-copyright-row__colophon {
  margin-top: 20px;
  color: #BABABA;
}

#footer .footer-details-row {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

#footer .footer-details-wrapper {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  max-width: 821px;
}

#footer .footer-details-wrapper .footer-details {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  width: 612px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 16px;
}

#footer .footer-details-wrapper .footer-details .footer-address {
  margin-bottom: 13px;
}

#footer .footer-details-wrapper .footer-details .footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#footer .footer-details-wrapper .footer-details .footer-socials .social-links {
  margin-right: 54px;
}

#footer .footer-details-wrapper .footer-details .footer-phone-wrapper {
  margin-bottom: 13px;
}

#footer .footer-details-wrapper .footer-details .footer-message a {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

#footer .footer-details-wrapper .footer-details .footer-message a span {
  margin-left: 5px;
}

#footer .footer-details-wrapper .footer-details .footer-message a img {
  width: 38px;
  height: auto;
}

#footer .footer-details-wrapper .footer-details .footer-detail-item {
  width: 50%;
}

#footer .footer-details-wrapper .footer-menu-wrapper #menu-footer-menu-1 li {
  margin-bottom: 3px;
}

#footer .footer-details-wrapper .footer-menu-wrapper #menu-footer-menu-1 li a {
  text-transform: uppercase;
  font-family: 'CentSchbook';
  font-size: 16px;
  letter-spacing: 1px;
}

@media screen and (max-width: 1330px) {
  .inner-wrapper {
    padding: 0px 30px;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .newsletter-pop .inner-wrapper {
    padding: 0;
  }
  .inner-wrapper.inner-wrapper-slider {
    padding: 0px;
  }
  .home .home-events-wrapper .events-description-listing-wrapper .events-listings-wrapper {
    width: 68%;
  }
  .gallery-content-wrapper.our-favourites-wrapper .content {
    margin-right: 6%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .related-room-wrapper .room-item-related .room-listing-title h2 {
    overflow: inherit;
  }
}

@media screen and (max-width: 1200px) {
  .other-rooms-inner-wrapper .room-item-related:nth-child(3) {
    display: none;
  }
  .other-rooms-inner-wrapper .room-item-related {
    width: 49% !important;
  }
  .events-table-wrapper .events-table-row .event-column-title {
    max-width: 410px;
  }
}

@media screen and (max-width: 1100px) {
  .home-events-wrapper .events-table-wrapper .events-table-row .event-column-view {
    display: none;
  }
  .home-events-wrapper .events-table-wrapper .events-table-row .event-column-date {
    text-align: right;
    margin-left: 30px;
  }
  .home .home-events-wrapper .events-description-listing-wrapper .events-listings-wrapper {
    width: 58%;
  }
}

@media screen and (max-width: 1000px) {
  .home .home-events-wrapper .events-description-listing-wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .home .home-events-wrapper .events-description-listing-wrapper .events-content {
    margin-bottom: 42px;
  }
  .home .home-events-wrapper .events-description-listing-wrapper .events-listings-wrapper {
    width: 100%;
  }
  .page-gallery-content-wrapper .page-gallery-wrapper,
  .gallery-content-wrapper .page-gallery-wrapper,
  .map-wrapper {
    width: 46%;
    max-width: 100%;
  }
  .gallery-content-wrapper .content {
    width: 50%;
  }
  #footer .footer-details-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-details-row {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  #footer .footer-details-wrapper .footer-menu-wrapper {
    width: 100%;
    margin-bottom: 16px;
  }
  #menu-footer-menu-1 {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  #menu-footer-menu-1 li {
    margin-right: 30px;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 900px) {
  .events-table-wrapper .events-table-row .event-column-view {
    display: none;
  }
  .gallery-content-wrapper.our-favourites-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .gallery-content-wrapper.our-favourites-wrapper .map-wrapper {
    width: 100%;
  }
  .room-sidebar-wrapper .room-sidebar {
    width: 291px;
    margin-right: 30px;
  }
  .events-table-wrapper .events-table-row .event-column-title {
    max-width: 300px;
    line-height: 19px;
  }
  .home .events-table-wrapper .events-table-row .event-column-title {
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .other-rooms-inner-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .other-rooms-inner-wrapper .room-item-related {
    width: 100% !important;
    margin-bottom: 30px;
  }
  .other-rooms-inner-wrapper .room-item-related:nth-child(3) {
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .page-template-template-house .section-title {
    margin-bottom: 27px;
  }
  .events-table-wrapper .events-table-row .event-column-date-end {
    display: none;
  }
  .events-table-wrapper .events-table-row .event-column-date-start {
    text-align: right;
  }
  .home .daterangepicker .calendar {
    padding: 0px;
  }
  .home .daterangepicker .next-calendar-fake {
    right: 0;
  }
  .home .daterangepicker .prev-calendar-fake {
    left: 0;
  }
  .room-archive-search-overlay-wrapper {
    display: block;
  }
  .sticky-button-wrapper {
    display: block;
  }
  .mobile-message {
    display: block;
    padding-left: 20px;
    font-size: 18px;
    line-height: 21px;
  }
  .home-search-wrapper-wrapper {
    display: none;
  }
  .home-notice {
    display: block;
  }
  .header-search-wrapper {
    display: none;
  }
  .daterangepicker {
    width: 100%;
    max-width: 100%;
  }
  .daterangepicker .calendar {
    width: 100%;
    max-width: 100%;
  }
  .logo-title-wrapper {
    position: static;
  }
  .room-sidebar-wrapper .room-sidebar .kids-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .room-sidebar-wrapper .room-sidebar .kids-wrapper .kids-item {
    margin-right: 20px;
  }
  body.page-template-template-contact-php .page-gallery-content-wrapper .page-gallery-wrapper {
    height: 90vw;
    overflow: hidden;
  }
  .related-room-wrapper .room-item-related .room-image-wrapper {
    height: 280px;
  }
  .home .home-events-wrapper .events-description-listing-wrapper .events-content {
    width: 100%;
  }
  .room-sidebar-wrapper .room-archive-listings .room-item .room-listing-title h2 {
    font-size: 26px;
  }
  .error404 .not-found-wrapper .not-found-image-wrapper img {
    max-width: 90px;
  }
  .residents-list-wrapper {
    margin-bottom: 18px;
  }
  .map-wrapper {
    width: 100%;
  }
  .room-sidebar-wrapper .single-room-listing .room-details-wrapper {
    margin-bottom: 30px;
  }
  .related-room-wrapper .room-item-related .room-image-wrapper {
    margin-bottom: 8px;
  }
  .related-room-wrapper h2 {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 4px;
    margin-bottom: 40px;
  }
  blockquote,
  blockquote p {
    font-size: 18px;
    line-height: 23px;
  }
  .featured-box-wrapper {
    border: solid 1px #231F20;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 47px;
    position: relative;
    z-index: 2;
  }
  .featured-box-wrapper .featured-box-white {
    padding: 14px 0px 12px;
    text-align: center;
    font-size: 13px;
    line-height: 16px;
    display: none;
  }
  .featured-box-wrapper .featured-box-black {
    background: #231F20;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    padding: 15px 15px 14px;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .featured-box-wrapper .featured-box-black .button {
    width: 100%;
  }
  .site-notice {
    display: none;
  }
  .home .events-table-wrapper .in-the-hood-image {
    max-width: 156px;
  }
  .home-featured-images-mobile-slider {
    width: 100% !important;
  }
  .home-featured-images-mobile-slider .slide {
    height: 440px;
  }
  .home-featured-images-mobile-slider .owl-carousel .owl-stage {
    right: 0px;
  }
  .random-letter {
    max-width: 200px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .gallery-content-wrapper.gallery-left,
  .page-template-template-house .page-section-row:nth-child(even) .gallery-content-wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .gallery-content-wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .load-more-button-wrapper {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .load-more-events {
    margin: 0px auto;
    margin-top: 32px;
    position: relative;
    z-index: 1;
  }
  .owl-carousel {
    width: calc(100% + 40px);
  }
  .owl-carousel .owl-stage {
    right: 10px;
  }
  .slider-dots-wrapper {
    padding-left: 20px;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  .events-table-wrapper .events-table-row .event-column-category,
  .events-table-wrapper .events-table-row .event-column-view {
    display: none;
  }
  .events-table-wrapper .events-table-row.events-table-header .event-column-date {
    display: none;
  }
  .events-table-wrapper .events-table-row .event-column-date {
    text-align: right;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 20px;
    width: auto;
  }
  .events-table-wrapper .events-table-row .event-column-title {
    width: 100%;
    max-width: 100%;
  }
  #footer-mobile {
    display: block;
  }
  #nav-mobile {
    display: block;
  }
  .logo-title-wrapper {
    margin-bottom: 33px;
  }
  .post-type-archive-faq .logo-title-wrapper {
    margin-bottom: 33px;
  }
  .gallery-content-wrapper,
  .page-gallery-content-wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page-gallery-content-wrapper .content {
    width: 100%;
  }
  .page-gallery-content-wrapper .page-gallery-wrapper,
  .gallery-content-wrapper .page-gallery-wrapper {
    width: 100%;
    margin-bottom: 27px;
    margin-left: -20px;
    padding-right: 40px;
  }
  .gallery-content-wrapper {
    margin-bottom: 43px;
  }
  .home .the-neighbourhood {
    margin-bottom: 246px;
  }
  .home .the-neighbourhood .content {
    margin-bottom: 64px;
  }
  .home .the-neighbourhood .page-gallery-wrapper {
    margin-bottom: 0px;
  }
  .home .the-hotel {
    margin-bottom: 52px;
  }
  .home .the-hotel .content {
    margin-bottom: 164px;
  }
  .home .the-hotel .page-gallery-wrapper {
    margin-bottom: 0px;
  }
  body.page-template-template-hood-php h2,
  .home h2 {
    margin-bottom: 27px;
  }
  .gallery-content-wrapper .content {
    width: 100%;
  }
  .gallery-content-wrapper .content .content-inner {
    max-width: 100%;
  }
  .content-wrapper {
    padding-top: 67px;
  }
  .home .content-wrapper {
    padding-top: 75px;
  }
  #footer {
    display: none;
  }
  .mobile-menu-trigger-wrapper {
    display: block;
  }
  .logo-title-wrapper .logo-wrapper {
    display: none;
  }
  .logo-wrapper-mobile {
    max-width: 263px;
    position: fixed;
    top: 20px;
    right: 20px;
    display: block;
  }
  .logo-wrapper-mobile img {
    width: 100%;
    height: auto;
  }
  #nav {
    display: none;
  }
  #header {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .inner-wrapper {
    padding: 0px 20px;
  }
  .inner-wrapper.inner-wrapper-slider {
    padding: 0px 20px;
  }
  .room-sidebar-wrapper .room-archive-listings .room-item .room-image-wrapper {
    margin-bottom: 7px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .room-sidebar-wrapper .room-archive-listings .room-item {
    margin-bottom: 40px;
  }
  .home-featured-images-mobile-slider-wrapper {
    height: 67vh;
    margin-bottom: 100px;
  }
  .logo-title-wrapper h1 {
    font-size: 20.5px;
    letter-spacing: 4px;
  }
  .room-sidebar-wrapper .room-sidebar {
    padding: 20px;
  }
  h2 {
    font-size: 20.5px;
    letter-spacing: 4px;
  }
  .events-table-wrapper .in-the-hood-image {
    max-width: 100px;
  }
  .events-table-wrapper {
    padding-bottom: 70px;
  }
  .one-slide .owl-item {
    width: calc(100vw - 40px) !important;
  }
  .room-sidebar-wrapper {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .archive .room-sidebar-wrapper .room-sidebar {
    width: 100%;
    left: 0;
  }
  .room-sidebar-wrapper .room-sidebar {
    width: calc(100% + 40px);
    margin-right: 0px;
    position: relative;
    -webkit-position: relative;
    top: 0;
    left: -20px;
  }
  .room-sidebar-wrapper .room-archive-listings,
  .post-type-archive-room .logo-title-wrapper {
    padding: 0px 20px;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .post-type-archive-room .content-wrapper .inner-wrapper {
    padding: 0px;
  }
  .room-sidebar-wrapper .single-room-listing .room-details-wrapper .room-features {
    width: 100%;
  }
  .related-room-wrapper {
    margin-top: 55px;
  }
  .related-room-wrapper .owl-carousel .owl-stage {
    right: 30px;
  }
  .related-room-wrapper .owl-carousel {
    width: calc(100% + 20px);
  }
  .page-id-12 .page-gallery-content-wrapper .page-gallery-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .page-id-12 .page-gallery-content-wrapper .content {
    max-width: 100%;
  }
  .page-id-12 .page-gallery-content-wrapper .content blockquote {
    max-width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .related-room-wrapper .room-item-related {
    width: 100%;
  }
  .newsletter-pop {
    padding-top: 0;
  }
  .newsletter-pop.active {
    background-color: rgba(156, 156, 156, 0.5);
  }
  .newsletter-pop .inner-wrapper {
    max-width: 90vw;
    max-height: 100vh;
    margin: auto;
  }
  .newsletter-pop .newsletter-pop__trigger {
    top: 20px;
  }
  .admin-bar .newsletter-pop .newsletter-pop__trigger {
    top: 110px;
  }
}

@media screen and (max-width: 400px) {
  #footer-mobile .footer-menu-wrapper #menu-footer-menu {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  #footer-mobile .footer-menu-wrapper #menu-footer-menu li {
    margin-right: 0px;
  }
}

@media screen and (max-width: 350px) {
  #footer-mobile .footer-phone-wrapper a .mobile-small {
    display: block;
  }
  #footer-mobile .footer-phone-wrapper a .mobile-small-hide {
    display: none;
  }
  .logo-wrapper-mobile {
    max-width: 240px;
  }
}

.room-item .room-listing-title {
  margin-bottom: 42px;
  padding-top: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.room-item .room-listing-title h2 a {
  font-family: 'Self Modern';
  margin-top: 5px;
  margin-bottom: 14px;
  letter-spacing: 0px;
  text-transform: none;
  text-decoration: none;
  display: inline-block;
}

.room-item .room-listing-byline {
  width: 28em;
  max-width: 100%;
  line-height: 1.33333;
}

.room-item .room-listing-features {
  margin-top: 40px;
}

@media screen and (max-width: 500px) {
  .room-item .room-listing-features {
    margin-top: 35px;
  }
}

.room-item .room-listing-more-info {
  margin-top: 42px;
}

.room-item .room-listing-more-info a.button {
  width: 15em;
  max-width: 100%;
  line-height: normal;
}

@media screen and (max-width: 500px) {
  .room-item .room-listing-more-info {
    margin-top: 35px;
  }
  .room-item .room-listing-more-info a.button {
    width: 12em;
  }
}

.post-type-archive-room .post-1-header {
  height: 75vh;
}

.post-type-archive-room .post-title-wrapper {
  margin-top: 0;
  margin-bottom: 76px;
  text-align: left;
  max-width: 26em;
}

.post-type-archive-room .post-title-wrapper .inner-wrapper-super-narrow {
  padding: 0;
}

.post-type-archive-room .post-title-wrapper p {
  font-family: 'Self Modern';
  line-height: 1.4;
}

.post-type-archive-room .room-item .page-gallery-wrapper {
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 700px) {
  .post-type-archive-room .room-item .page-gallery-wrapper .owl-carousel {
    width: 100%;
  }
}

.post-type-archive-room .back-to-top {
  margin-top: 22px;
}

.back-to-top {
  background: none;
  color: inherit;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: center;
          flex-flow: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.back-to-top i {
  font-size: 10px;
  margin-left: 9px;
}

@media screen and (max-width: 700px) {
  .single-room .desktop-only {
    display: none !important;
  }
}

@media screen and (min-width: 700px) {
  .single-room .mobile-only {
    display: none !important;
  }
}

.room-header {
  position: relative;
  padding-top: 115px;
  padding-bottom: 40px;
  min-height: 70vh;
  color: #fff;
}

@media screen and (max-width: 700px) {
  .room-header {
    min-height: auto;
    color: #231F20;
    padding-bottom: 0;
  }
}

.room-header__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 700px) {
  .room-header__background {
    display: none;
  }
}

.room-header .logo-title-wrapper {
  margin-bottom: 22px;
}

.room-header .room-sidebar-wrapper {
  color: #231F20;
}

@media screen and (max-width: 700px) {
  .room-header .room-sidebar-wrapper {
    display: none;
  }
}

.room-header .room-sidebar {
  padding: 34px 29px;
}

.room-header .button-clear.button-clear.button-clear {
  margin-top: 12px;
}

.room-header .special-code-note.special-code-note.special-code-note.special-code-note {
  margin-bottom: 0;
}

.room-header .button-update-code {
  padding-left: 16px;
  padding-right: 16px;
}

.single-room .disclaimer {
  display: block;
}

.single-room .room-listing-title h2,
.single-room .room-listing-title h2 a {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 700px) {
  .single-room .room-listing-title.room-listing-title.room-listing-title.room-listing-title {
    display: block;
  }
  .single-room .room-listing-title.room-listing-title.room-listing-title.room-listing-title .room-listing-price {
    margin-top: 8px;
    text-align: left;
  }
}

.single-room-gallery-mobile .swiper {
  height: 448px;
  padding: 0 20px;
}

.single-room-gallery-mobile .swiper-slide {
  height: 100%;
}

.single-room-gallery-mobile .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.room-content-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 208px;
}

.room-content-footer .disclaimer {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 55ch;
}

.room-content-footer .back-to-top {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.room-content__row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 12px;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 700px) {
  .room-content__row {
    display: block;
  }
}

.room-content__row + .room-content__row {
  margin-top: 240px;
}

.room-content__row--1 {
  grid-template-areas: "c c c c c c i i i i i .";
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.room-content__row--3, .room-content__row--5, .room-content__row--7, .room-content__row--9, .room-content__row--11, .room-content__row--13, .room-content__row--15 {
  grid-template-areas: "c c c c c i i i i i i i";
}

.room-content__row--3 .room-content__content-lockup, .room-content__row--5 .room-content__content-lockup, .room-content__row--7 .room-content__content-lockup, .room-content__row--9 .room-content__content-lockup, .room-content__row--11 .room-content__content-lockup, .room-content__row--13 .room-content__content-lockup, .room-content__row--15 .room-content__content-lockup {
  justify-self: flex-start;
  text-align: left;
}

.room-content__row--3--quote, .room-content__row--5--quote, .room-content__row--7--quote, .room-content__row--9--quote, .room-content__row--11--quote, .room-content__row--13--quote, .room-content__row--15--quote {
  grid-template-areas: "c c c c c c i i i i i i";
}

.room-content__row--2, .room-content__row--4, .room-content__row--6, .room-content__row--8, .room-content__row--10, .room-content__row--12, .room-content__row--14, .room-content__row--16 {
  grid-template-areas: "i i i i i i i c c c c c";
}

.room-content__row--2 .room-content__content-lockup, .room-content__row--4 .room-content__content-lockup, .room-content__row--6 .room-content__content-lockup, .room-content__row--8 .room-content__content-lockup, .room-content__row--10 .room-content__content-lockup, .room-content__row--12 .room-content__content-lockup, .room-content__row--14 .room-content__content-lockup, .room-content__row--16 .room-content__content-lockup {
  justify-self: flex-end;
  text-align: right;
}

.room-content__row--2--quote, .room-content__row--4--quote, .room-content__row--6--quote, .room-content__row--8--quote, .room-content__row--10--quote, .room-content__row--12--quote, .room-content__row--14--quote, .room-content__row--16--quote {
  grid-template-areas: "i i i i i i c c c c c c";
}

.room-content__content-lockup {
  grid-area: c;
}

.room-content__image-lockup {
  grid-area: i;
  position: relative;
  display: block;
}

.room-content__image-lockup a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.room-content__image-lockup img {
  max-width: 100%;
  height: auto;
  display: block;
}

.room-content__image-lockup figcaption {
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  width: 24ch;
  max-width: 100%;
  line-height: 1.333333;
}

.room-content__image-lockup.lightbox-enabled:before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: black;
  opacity: 0;
  -webkit-transition: opacity 180ms ease-in-out;
  transition: opacity 180ms ease-in-out;
  cursor: pointer;
}

.room-content__image-lockup.lightbox-enabled:after {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 10;
  left: 12px;
  bottom: 12px;
  width: 20px;
  height: 20px;
  background-image: url(../images/fullscreen.svg);
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.room-content__image-lockup.lightbox-enabled:hover:before {
  opacity: 0.3;
}

@media screen and (max-width: 700px) {
  .room-details-wrapper {
    padding-bottom: 70px;
  }
}

.room-details-wrapper .room-description {
  font-family: "Self Modern";
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  width: 35ch;
  max-width: 100%;
  margin-bottom: 74px;
}

@media screen and (max-width: 700px) {
  .room-details-wrapper .room-description {
    font-family: "Maison";
    font-size: 15px;
    line-height: 1.3333;
    letter-spacing: 0;
    margin-bottom: 26px;
  }
}

.room-details-wrapper .room-description p {
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.room-details-wrapper .room-details-heading {
  font-family: "Maison";
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 18px;
}

.room-details-wrapper .room-details {
  margin-top: 18px;
}

.room-content__quote {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  width: 19.8ch;
  max-width: 100%;
}

.room-quote-mobile .room-content__quote {
  text-align: center;
  margin-top: 88px;
}

.room-content__quote-mobile-image {
  max-width: 80%;
  height: auto;
  margin: 0 auto 46px;
}

.room-content__quote p {
  margin: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.room-content__quote p + p {
  margin-top: 15px;
}

.room-content__quote footer {
  font-family: "Maison";
  font-size: 15px;
  line-height: 1.3333;
  margin-top: 12px;
}

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 420ms ease-in-out;
  transition: opacity 420ms ease-in-out;
  overflow: hidden;
}

.gallery-lightbox[aria-hidden="true"] {
  pointer-events: none;
  opacity: 0;
}

.gallery-lightbox[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.gallery-lightbox::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.9;
}

.gallery-lightbox .swiper {
  height: 100%;
}

.gallery-lightbox__inner {
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.gallery-lightbox .swiper-slide {
  position: relative;
  height: 100%;
  width: 100%;
}

.gallery-lightbox .swiper-slide img {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 6rem);
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 1200px) {
  .gallery-lightbox .swiper-slide img {
    left: 50%;
    width: calc(100% - 20rem);
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.gallery-lightbox__close {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 8px;
  right: 10px;
  color: #231F20;
}

.gallery-lightbox__close:hover {
  background: #231F20;
  color: white;
}

@media (min-width: 1200px) {
  .gallery-lightbox__close {
    right: 9rem;
    -webkit-transform: translateX(calc(100% + 10px));
            transform: translateX(calc(100% + 10px));
  }
}

.gallery-lightbox .swiper-nav {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 50%;
  height: auto;
  width: 100%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.gallery-lightbox .swiper-nav .swiper-nav-prev,
.gallery-lightbox .swiper-nav .swiper-nav-next {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer !important;
  opacity: 1;
  -webkit-transition: opacity 80ms linear;
  transition: opacity 80ms linear;
}

.gallery-lightbox .swiper-nav .swiper-nav-prev:hover,
.gallery-lightbox .swiper-nav .swiper-nav-next:hover {
  opacity: 0.6;
}

.gallery-lightbox .swiper-nav .swiper-nav-prev {
  left: 10px;
}

@media (min-width: 1200px) {
  .gallery-lightbox .swiper-nav .swiper-nav-prev {
    left: 9rem;
    -webkit-transform: translateX(calc(-100% + -10px));
            transform: translateX(calc(-100% + -10px));
  }
}

.gallery-lightbox .swiper-nav .swiper-nav-next {
  right: 10px;
}

@media (min-width: 1200px) {
  .gallery-lightbox .swiper-nav .swiper-nav-next {
    right: 9rem;
    -webkit-transform: translateX(calc(100% + 10px));
            transform: translateX(calc(100% + 10px));
  }
}
