/*
 * jQuery UI CSS Framework 1.8.17
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  zoom: 1;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}



/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*
 * jQuery UI Datepicker 1.8.17
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
  background: #FFF
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0em;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
  display: none;
  /*sorry for IE5*/
  display
  /**/
  : block;
  /*sorry for IE5*/
  position: absolute;
  /*must have*/
  z-index: -1;
  /*must have*/
  filter: mask();
  /*must have*/
  top: -4px;
  /*must have*/
  left: -4px;
  /*must have*/
  width: 200px;
  /*must have*/
  height: 200px;
  /*must have*/
}


/* the hlh hotel theme */
.ui-datepicker {
  padding: 0;
  width: 300px;
  margin: 20px 0;
  background: transparent;
  border: 10px solid #CCC;
}

.ui-datepicker,
.ui-datepicker * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.rgba .ui-datepicker {
  border: 10px solid rgba(0, 0, 0, 0.2);
}

.ui-datepicker .ui-datepicker-header {
  background: #F7F7F7;
  border-bottom: 1px solid #e6e6e6;
}


.ui-datepicker-calendar .ui-state-default {
  text-align: center;
  color: #666;
  border: 1px solid #FFF;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;

}

.ui-datepicker-calendar .ui-state-hover,
.ui-datepicker-calendar .ui-state-focus {
  border: 1px solid #E6E6E6;
  color: #1a1a1a;
  outline: none;
  background: #F2F2F2;
}


.ui-datepicker-calendar .ui-state-highlight {
  border: 1px solid #1a1a1a;
  color: #FFF;
  outline: none;
  background: #1a1a1a;

}

.ui-datepicker .ui-datepicker-calendar td.ui-state-disabled span,
.ui-datepicker .ui-datepicker-calendar td.ui-state-disabled a {
  text-align: center;
  color: #e6e6e6;
}

.ui-datepicker .ui-datepicker-header .ui-state-disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}


.ui-datepicker .ui-datepicker-title {
  color: #666;
  text-transform: uppercase;
}

.ui-datepicker th {
  font-weight: normal;
  text-transform: uppercase;
  padding: 0 0 1em 0;
  color: #666;

  text-align: center;
  /*font-family:'SackersGothicW01-Medium', sans-serif;*/
  font-size: 11px;
}

.ui-datepicker th span {
  font-size: 11px;
  padding: 0.7em 0.3em 1.25em 0.3em;
  display: block;
  border-bottom: 1px solid #e6e6e6;
}

.ui-datepicker .ui-datepicker-header {
  padding: 0.79em 0;
  width: 300px;
}

.ui-datepicker table {
  margin: 0;
  padding: 0;
  border-top: 10px solid white;
  background: #FFF;
  width: 300px;
  border-bottom: 20px solid white;
}

.ui-datepicker td {
  padding: 2px;
}

.ui-datepicker td,
.ui-datepicker th {
  min-width: 30px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 11px;
  /*background: transparent url('../img/sitewide/sprite.png') repeat 0 -546px;*/
  background-image: url('/wp-content/themes/highline/img/sprite_regular.png');
  background-repeat: no-repeat;
  background-position: -240px -603px;
  width: 14px;
}

.ui-datepicker .ui-datepicker-prev {
  background-position: -240px -653px;
  left: 23px;
}

.ui-datepicker .ui-datepicker-next {
  right: 23px;
}

.ui-datepicker table tbody {
  padding: 1em;
  margin: 0;
}

/** initial setup **/
.nano {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nano .content {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.nano .content:focus {
  outline: thin dotted;
}

.nano .content::-webkit-scrollbar {
  visibility: hidden;
}

.has-scrollbar .content::-webkit-scrollbar {
  visibility: visible;
}

.nano>.pane {
  background: rgba(0, 0, 0, .25);
  position: absolute;
  width: 10px;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: .01;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.nano>.pane>.slider {
  background: rgb(68, 68, 68);
  background: rgba(255, 255, 255, .5);
  position: relative;
  margin: 0 1px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.nano:hover>.pane,
.pane.active,
.pane.flashed {
  visibility: visible\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99;
}

/*! normalize.css http://github.com/necolas/normalize.css */

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */

audio:not([controls]) {
  display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */

[hidden] {
  display: none;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *  http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *  www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */

body {
  margin: 0;
}


/* =============================================================================
   Links
   ========================================================================== */

/*
 * Addresses outline displayed oddly in Chrome
 */

a,
a:visited {
  color: black;
}


a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

a:hover,
a:active {
  outline: 0;
}


/* =============================================================================
   Typography
   ========================================================================== */

/*
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */

h1 {
  font-size: 2em;
  margin: 0;
}

h2 {
  font-size: 1.5em;
  margin: 0;
}

h3 {
  font-size: 1.17em;
  margin: 0;
}

h4 {
  font-size: 1em;
  margin: 0;
}

h5 {
  font-size: 0.83em;
  margin: 0;
}

h6 {
  font-size: 0.75em;
  margin: 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */

dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */

mark {
  background: #ff0;
  color: #000;
}

/*
 * Addresses margins set differently in IE6/7
 */

p,
pre {
  margin: 1em 0;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */

q {
  quotes: none;
}

/* 2 */

q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

/*
 * Addresses margins set differently in IE6/7
 */

dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7
 */

menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7
 */

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *  code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */

svg:not(:root) {
  overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
  margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

/*
 * Corrects margin displayed oddly in IE6/7
 */

form {
  margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 * 3. Corrects alignment displayed oddly in IE6/7
 */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */

button,
input {
  line-height: normal;
  /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *  Known issue: inner spacing remains in IE6
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements
 */

button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
    Known issue: excess padding remains in IE6
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}


/* =============================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  min-width: 768px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 21px;
  font-family: 'FaktPro-Blond', sans-serif;
  background-repeat: no-repeat;
  background-color: #000;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

/* * {
  outline: 0 !important; } */

img {
  display: block;
}

ul {
  padding-left: 16px;
}

p,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
fieldset,
section,
header,
nav,
aside {
  margin-bottom: 0;
}

p:first-child,
ul:first-child,
ol:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
fieldset:first-child,
section:first-child,
header:first-child,
nav:first-child,
aside:first-child {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
strong {
  font-weight: normal;
  font-family: 'FaktPro-Medium', sans-serif;
}

p {
  margin: 7px 0 0;
}

/**
 * Components
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */
/**
 * Landing area
 */
.landing-area {
  height: 100%;
  margin-left: 275px;
  position: relative;
  background-size: cover;
}

.landing-area__title {
  position: absolute;
  top: 50%;
  left: 50%;
  text-indent: -9999px;
  margin-top: -21px;
  margin-left: -298px;
}

@media screen and (max-width: 900px) {
  body .landing-area__title {
    background-position: 0 -533px;
    width: 488px;
    margin-left: -244px;
    height: 37px;
    margin-top: -18px;
  }
}

/**
 * Main header
 */
.main-header {
  float: left;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  width: 275px;
  text-align: center;
  font-family: 'FaktPro-Normal', sans-serif;
  position: relative;
  z-index: 1;
}

html.no-rgba .main-header {
  background: url('/wp-content/themes/highline/img/rgba/255-255-255-95.png');
}

.main-header .content {
  padding: 25px 15px 0;
  right: 0px;
}

.main-header .content .content__inner {}

.main-header__aux {
  position: fixed;
  left: 0px;
  margin-top: 20px;
  bottom: 0;
  color: #666;
  bottom: 0;
  padding-bottom: 17px;
  padding-top: 26px;
  width: 275px;
  display: none;
}

.main-header__aux.is-overflow {
  background: #fbf9f7;
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-ready .main-header__aux {
  display: block;
}

/**
 * Main navigation
 */
.main-nav {
  margin-top: 42px;
}

.main-nav>ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 17px;
}

.main-nav .menu-item,
.main-nav__item {
  text-transform: uppercase;
  margin-top: 8px;
  font-size: 13px;
  overflow: hidden;
}

.main-nav .menu-item.current-menu-item>a,
.main-nav__item.current-menu-item>a {
  color: #191919;
}

.main-nav .menu-item.current-menu-item>a:hover:after,
.main-nav__item.current-menu-item>a:hover:after {
  background: #191919;
}

.main-nav .menu-item>a,
.main-nav__item>a {
  color: #666;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.main-nav .menu-item>a.current,
.main-nav__item>a.current {
  color: #191919;
}

.main-nav .menu-item>a.current:hover:after,
.main-nav__item>a.current:hover:after {
  background: #191919;
}

.main-nav .menu-item>a:hover:after,
.main-nav__item>a:hover:after {
  content: '';
  height: 1px;
  color: #666;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.main-nav .menu-item .main-nav__divider:before,
.main-nav .menu-item .main-nav__divider:after,
.main-nav__item .main-nav__divider:before,
.main-nav__item .main-nav__divider:after {
  display: none;
}

.main-nav .menu-item:first-child,
.main-nav__item:first-child {
  margin-top: 0;
}

body.home .main-nav .menu-item a,
body.home .main-nav__item a {
  color: #1a1a1a;
}

body.home .main-nav .menu-item a:hover:after,
body.home .main-nav__item a:hover:after {
  background: #1a1a1a;
}

body.single-room .main-nav .menu-item.rooms,
body.page-template-archive-eventspace-php .main-nav .menu-item.events,
body.page-template-archive-room-php .main-nav .menu-item.rooms,
body.single-eventspace .main-nav .menu-item.events,
body.room .main-nav .menu-item.rooms,
body.single-neighborhood .main-nav .menu-item.neighborhood,
body.single-room .main-nav__item.rooms,
body.page-template-archive-eventspace-php .main-nav__item.events,
body.page-template-archive-room-php .main-nav__item.rooms,
body.single-eventspace .main-nav__item.events,
body.room .main-nav__item.rooms {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 17px;
}

body.single-room .main-nav .menu-item.rooms>a,
body.page-template-archive-eventspace-php .main-nav .menu-item.events>a,
body.page-template-archive-room-php .main-nav .menu-item.rooms>a,
body.single-eventspace .main-nav .menu-item.events>a,
body.room .main-nav .menu-item.rooms>a,
body.single-neighborhood .main-nav .menu-item.neighborhood>a,
body.single-room .main-nav__item.rooms>a,
body.page-template-archive-eventspace-php .main-nav__item.events>a,
body.page-template-archive-room-php .main-nav__item.rooms>a,
body.single-eventspace .main-nav__item.events>a,
body.room .main-nav__item.rooms>a,
body.single-neighborhood .main-nav__item.neighborhood>a {
  color: #1a1a1a;
}

body.single-room .main-nav .menu-item.rooms>a:hover:after,
body.page-template-archive-eventspace-php .main-nav .menu-item.events>a:hover:after,
body.page-template-archive-room-php .main-nav .menu-item.rooms>a:hover:after,
body.single-eventspace .main-nav .menu-item.events>a:hover:after,
body.room .main-nav .menu-item.rooms>a:hover:after,
body.single-neighborhood .main-nav .menu-item.neighborhood>a:hover:after,
body.single-room .main-nav__item.rooms>a:hover:after,
body.page-template-archive-eventspace-php .main-nav__item.events>a:hover:after,
body.page-template-archive-room-php .main-nav__item.rooms>a:hover:after,
body.single-eventspace .main-nav__item.events>a:hover:after,
body.room .main-nav__item.rooms>a:hover:after,
body.single-neighborhood .main-nav__item.neighborhood>a:hover:after {
  background: #191919;
}

body.single-room .main-nav .menu-item.rooms>a+ul li.is-parent>a,
body.page-template-archive-eventspace-php .main-nav .menu-item.events>a+ul li.is-parent>a,
body.page-template-archive-room-php .main-nav .menu-item.rooms>a+ul li.is-parent>a,
body.single-eventspace .main-nav .menu-item.events>a+ul li.is-parent>a,
body.room .main-nav .menu-item.rooms>a+ul li.is-parent>a,
body.single-neighborhood .main-nav .menu-item.neighborhood>a+ul li.is-parent>a,
body.single-room .main-nav__item.rooms>a+ul li.is-parent>a,
body.page-template-archive-eventspace-php .main-nav__item.events>a+ul li.is-parent>a,
body.page-template-archive-room-php .main-nav__item.rooms>a+ul li.is-parent>a,
body.single-eventspace .main-nav__item.events>a+ul li.is-parent>a,
body.room .main-nav__item.rooms>a+ul li.is-parent>a,
body.single-neighborhood .main-nav__item.neighborhood>a+ul li.is-parent>a {
  color: #1a1a1a;
}

body.single-room .main-nav .menu-item.rooms>a+ul li.is-parent>a:hover .underline,
body.page-template-archive-eventspace-php .main-nav .menu-item.events>a+ul li.is-parent>a:hover .underline,
body.page-template-archive-room-php .main-nav .menu-item.rooms>a+ul li.is-parent>a:hover .underline,
body.single-eventspace .main-nav .menu-item.events>a+ul li.is-parent>a:hover .underline,
body.room .main-nav .menu-item.rooms>a+ul li.is-parent>a:hover .underline,
body.single-neighborhood .main-nav .menu-item.neighborhood>a+ul li.is-parent>a:hover .underline,
body.single-room .main-nav__item.rooms>a+ul li.is-parent>a:hover .underline,
body.page-template-archive-eventspace-php .main-nav__item.events>a+ul li.is-parent>a:hover .underline,
body.page-template-archive-room-php .main-nav__item.rooms>a+ul li.is-parent>a:hover .underline,
body.single-eventspace .main-nav__item.events>a+ul li.is-parent>a:hover .underline,
body.room .main-nav__item.rooms>a+ul li.is-parent>a:hover .underline,
body.single-neighborhood .main-nav__item.neighborhood>a+ul li.is-parent>a:hover .underline {
  border-bottom-color: #191919;
}

body.single-room .main-nav .menu-item.rooms .main-nav__divider:before,
body.single-room .main-nav .menu-item.rooms .main-nav__divider:after,
body.page-template-archive-eventspace-php .main-nav .menu-item.events .main-nav__divider:before,
body.page-template-archive-eventspace-php .main-nav .menu-item.events .main-nav__divider:after,
body.page-template-archive-room-php .main-nav .menu-item.rooms .main-nav__divider:before,
body.page-template-archive-room-php .main-nav .menu-item.rooms .main-nav__divider:after,
body.single-eventspace .main-nav .menu-item.events .main-nav__divider:before,
body.single-eventspace .main-nav .menu-item.events .main-nav__divider:after,
body.room .main-nav .menu-item.rooms .main-nav__divider:before,
body.room .main-nav .menu-item.rooms .main-nav__divider:after,
body.single-neighborhood .main-nav .menu-item.neighborhood .main-nav__divider:before,
body.single-neighborhood .main-nav .menu-item.neighborhood .main-nav__divider:after,
body.single-room .main-nav__item.rooms .main-nav__divider:before,
body.single-room .main-nav__item.rooms .main-nav__divider:after,
body.page-template-archive-eventspace-php .main-nav__item.events .main-nav__divider:before,
body.page-template-archive-eventspace-php .main-nav__item.events .main-nav__divider:after,
body.page-template-archive-room-php .main-nav__item.rooms .main-nav__divider:before,
body.page-template-archive-room-php .main-nav__item.rooms .main-nav__divider:after,
body.single-eventspace .main-nav__item.events .main-nav__divider:before,
body.single-eventspace .main-nav__item.events .main-nav__divider:after,
body.room .main-nav__item.rooms .main-nav__divider:before,
body.room .main-nav__item.rooms .main-nav__divider:after,
body.single-neighborhood .main-nav__item.neighborhood .main-nav__divider:before,
body.single-neighborhood .main-nav__item.neighborhood .main-nav__divider:after {
  display: block;
}

body.single-room .main-nav .menu-item.rooms+.main-nav__item,
body.single-room .main-nav .menu-item.rooms+.menu-item,
body.page-template-archive-eventspace-php .main-nav .menu-item.events+.main-nav__item,
body.page-template-archive-eventspace-php .main-nav .menu-item.events+.menu-item,
body.page-template-archive-room-php .main-nav .menu-item.rooms+.main-nav__item,
body.page-template-archive-room-php .main-nav .menu-item.rooms+.menu-item,
body.single-eventspace .main-nav .menu-item.events+.main-nav__item,
body.single-eventspace .main-nav .menu-item.events+.menu-item,
body.room .main-nav .menu-item.rooms+.main-nav__item,
body.room .main-nav .menu-item.rooms+.menu-item,
body.single-neighborhood .main-nav .menu-item.neighborhood+.main-nav__item,
body.single-neighborhood .main-nav .menu-item.neighborhood+.menu-item,
body.single-room .main-nav__item.rooms+.main-nav__item,
body.single-room .main-nav__item.rooms+.menu-item,
body.page-template-archive-eventspace-php .main-nav__item.events+.main-nav__item,
body.page-template-archive-eventspace-php .main-nav__item.events+.menu-item,
body.page-template-archive-room-php .main-nav__item.rooms+.main-nav__item,
body.page-template-archive-room-php .main-nav__item.rooms+.menu-item,
body.single-eventspace .main-nav__item.events+.main-nav__item,
body.single-eventspace .main-nav__item.events+.menu-item,
body.room .main-nav__item.rooms+.main-nav__item,
body.room .main-nav__item.rooms+.menu-item,
body.single-neighborhood .main-nav__item.neighborhood+.main-nav__item,
body.single-neighborhood .main-nav__item.neighborhood+.menu-item {
  margin-top: 16px;
}

.main-nav__item--sub {
  margin-top: 8px;
  line-height: 18px;
}

.main-nav__item--sub>a {
  color: #666;
  text-decoration: none;
}

.main-nav__item--sub>a:hover .underline {
  position: relative;
  top: -1px;
  border-bottom: 1px solid #999;
}

.main-nav__item--sub>a:hover .underline .underline__inner {
  position: relative;
  top: 1px;
}

.main-nav__item--sub>a.is-active {
  color: #191919;
  text-decoration: none;
}

.main-nav__item--sub>a.is-active:hover .underline {
  border-bottom-color: #191919;
}

.main-nav__sub {
  margin: 13px 0 0;
  padding: 0;
  display: none;
}

body.single-room .main-nav__item.rooms .main-nav__sub,
body.page-template-archive-eventspace-php .main-nav__item.events .main-nav__sub,
body.page-template-archive-room-php .main-nav__item.rooms .main-nav__sub,
body.single-eventspace .main-nav__item.events .main-nav__sub,
body.room .main-nav__item.rooms .main-nav__sub,
body.single-neighborhood .main-nav__item.neighborhood .main-nav__sub {
  display: block;
}

.main-nav__divider {
  position: relative;
}

.main-nav__divider:before,
.main-nav__divider:after {
  content: '';
  height: 1px;
  background: #d8d8d8;
  position: absolute;
  top: 50%;
}

.main-nav__divider:before {
  margin-left: -999px;
  padding-left: 999px;
  left: -15px;
}

.main-nav__divider:after {
  margin-right: -999px;
  padding-right: 999px;
  right: -15px;
}

/**
 * Contact details, on sidebar
 */
.contact-details {
  line-height: 18px;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-details a {
  text-decoration: none;
  color: inherit;
}

.contact-details .intelligentsia-logo {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
}

.contact-detail input[type="email"] {
  color: #000;
}

.contact-details__link {
  position: relative;
  display: inline-block;
  padding-top: 40px;
  margin-top: 0;
}

.contact-details__link:after {
  content: '';
  height: 1px;
  background: #ccc;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/**
 * Social links
 */
.social-links {
  margin: 17px 0 3px -25px;
  list-style: none;
  text-align: center;
  padding: 0;
}

.social-links>li {
  display: inline-block;
  vertical-align: top;
  margin-right: -4px;
  padding-left: 25px;
}

.social-links>li a {
  display: block;
  width: 16px;
  height: 16px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.social-links>li a:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.social-links .sprite--facebook {
  position: relative;
  top: -1px;
}

.social-links .sprite--pinterest {
  position: relative;
  top: -2px;
}

/**
 * Article lists, e.g. press
 */
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 30px;
  margin-left: -30px;
  letter-spacing: -0.31em;
}

.article-item {
  padding-top: 40px;
  padding-left: 30px;
  display: inline-block;
  vertical-align: top;
  width: 20%;
  letter-spacing: normal;
}

.article-item:first-child {
  margin-top: 0;
}

.article-item>a {
  color: inherit;
  text-decoration: none;
}

.article-item img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1060px) {
  .article-item {
    width: 25%;
  }
}

@media screen and (max-width: 950px) {
  .article-item {
    width: 33.3%;
  }
}

@media screen and (max-width: 800px) {
  .article-item {
    width: 50%;
  }
}

.article-item__title {
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 25px;
}

.article-item__cta {
  display: inline-block;
  position: relative;
}

a:hover .article-item__cta:after {
  content: '';
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
}

/**
 * 'Solo' link, e.g. 'Legal'
 */
.solo-link {
  color: inherit;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-decoration: none;
  line-height: 20px;
  font-size: 13px;
  padding-top: 4px;
}

.solo-link:after {
  content: '';
  height: 1px;
  background: #cccccc;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
}

.solo-link:hover {
  color: #000;
}

.solo-link:hover:after {
  background: #000;
}

/**
 * Content panel
 */
.content-panel {
  float: left;
  width: 300px;
  height: 100%;
  padding: 30px 30px 85px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.content-panel a {
  color: #fff;
}

html.no-rgba .content-panel {
  background: url('/wp-content/themes/highline/img/rgba/0-0-0-80.png');
}

.content-panel p {
  margin-top: 30px;
}

.content-panel p:first-child {
  margin-top: 0;
}

.content-panel.nano {
  padding: 0;
}

.content-panel.nano .content {
  padding: 28px 20px 0;
}

.content-panel.nano .content__inner {
  padding-bottom: 105px;
}

.content-panel__title,
.content-panel__title--symbol {
  font-size: 13px;
  line-height: 1.75;
  text-align: center;
  text-transform: uppercase;
  padding-top: 20px;
}

.content-panel__title--symbol {
  padding-top: 0;
}

.content-panel__title--symbol .before {
  display: block;
  margin: 0 auto 38px;
}

.content-panel__body {
  margin-top: 40px;
}

.editor-area li+li {
  margin-top: 6px;
}

/**
 * Form bar
 */
.form-bar {
  position: absolute;
  bottom: 0;
  left: 275px;
  padding: 20px;
  background: #000;
  color: #fff;
  min-width: 548px;
  width: calc(100% - 275px);
}

.form-bar .btn {
  line-height: 39px;
  background-color: #808080;
}

.form-bar input:focus {
  outline: 0;
}

.form-bar .sprite--expand {
  position: absolute;
  right: 15px;
  top: 16px;
}

.form-bar__mid {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

.form-bar__inner {
  margin-left: -20px;
}

.form-bar__fieldset,
.form-bar__fieldset--checkbox,
.form-bar__fieldset--datepicker {
  margin: 0;
  display: inline-block;
  vertical-align: top;
  margin-right: -4px;
  padding: 0 0 0 20px;
  width: 25%;
  border: 0;
}

.form-bar__fieldset--checkbox input {
  margin-right: 5px;
}

@media screen and (min-width: 900px) {
  .form-bar__fieldset--checkbox {
    line-height: 39px;
  }
}

.form-bar__fieldset--datepicker {
  position: relative;
}

/* .form-bar__fieldset--datepicker label {
    display: none; } */
.form-bar__fieldset--datepicker input {
  width: 100%;
  border: 0;
  padding: 12px 15px;
  border-radius: 2px;
  cursor: pointer;
}

.btn {
  display: block;
  background: #000;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  color: #fff;
  width: 100%;
  line-height: 40px;
  text-decoration: none;
  border-radius: 2px;
}

.btn:hover {
  background-color: #4c4c4c;
}


.form-bar .form-bar__booking {
  max-width: 245px;
  width: 100%;
  margin: 0 0 0 auto;
}

.form-bar .form-bar__booking .btn {
  background-color: #a39355;
  color: #000;
  display: block;
  font-weight: 700;
  font-size: 18px;
}

/**
 * Background images
 */
body.page-template-page-map-php {
  background: none !important;
}

/**
 * Icons
 */
.icon {
  text-indent: -9999px;
  display: inline-block;
  vertical-align: text-top;
}

/**
 * Map links
 */
.map-link {
  width: 355px;
  height: 490px;
  text-indent: -9999px;
  background: transparent no-repeat 50% 50%;
  position: relative;
  display: block;
  margin: 0 -30px 0;
}

.map-link:hover .map-link__zoom-icon {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.map-link__icon-bg {
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  text-align: center;
}

html.no-rgba .map-link__icon-bg {
  background: url('/wp-content/themes/highline/img/rgba/255-255-255-30.png');
}

.map-link__zoom-icon {
  display: block;
  margin: auto;
  position: absolute;
  top: -3px;
  right: 0;
  bottom: 0;
  left: 0;
}

/**
* Contact form
*/
.contact-form {
  padding-top: 40px;
}

.contact-form input,
.contact-form textarea {
  text-rendering: optimizelegibility;
}

.contact-form select {
  color: #191919;
  background-color: #fff;
  position: relative;
  -webkit-appearance: none;
  width: 100% !important;
  height: 41px !important;
  background-position: 168px -600px !important;
  cursor: pointer;
  padding: 8px 15px;
}

.contact-form select.populated {
  color: #1a1a1a;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  padding: 10px 13px;
  border-radius: 2px;
  resize: none;
  border: 2px solid #fff;
}

.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
  border: 2px solid #D11111;
  border-radius: 2px;
}

.contact-form .f-message {
  margin-top: -20px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form label.error {
  display: none !important;
}

.contact-form__error {
  color: #D11111;
  display: none;
  margin-bottom: 20px;
  text-align: center;
  margin-top: -20px;
}

.contact-form.is-error .contact-form__error {
  display: block;
}

.contact-form__field-holder {
  position: relative;
  margin: 0 0 20px;
}

.contact-form__label {
  position: absolute;
  pointer-events: none;
  line-height: 39px;
  padding-left: 15px;
  top: 0;
  font-family: sans-serif;
  left: 0;
  color: #666;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.contact-form__label.is-focused {
  opacity: 0.5;
}

html.no-opacity .contact-form__label.is-focused {
  display: none;
}

.contact-form__label.is-populated {
  opacity: 0;
}

html.no-opacity .contact-form__label.is-populated {
  display: none;
}

/**
* Map
*/
.map-outer {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 82px;
  left: 275px;
}

#map,
#map-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.split-map {
  width: 50%;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
}

.split-map+.split-map {
  right: 0;
  left: auto;
  border-left: 6px solid #fff;
}

.zoom-controls {
  border: 3px solid rgba(0, 0, 0, 0.3);
  position: absolute;
  right: 20px;
  bottom: 20px;
  border-radius: 6px;
}

html.no-rgba .zoom-controls {
  border-color: #999;
}

.zoom-controls__item {
  width: 39px;
  height: 39px;
  background: #fff;
  position: relative;
  cursor: pointer;
}

.zoom-controls__item:hover {
  background: #f2f2f2;
}

.zoom-controls__item.minus:before,
.zoom-controls__item.plus:before {
  content: '';
  position: absolute;
  background: #b2b2b2;
  width: 13px;
  height: 3px;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.zoom-controls__item.plus {
  border-bottom: 1px solid #d8d8d8;
}

.zoom-controls__item.plus:after {
  content: '';
  background: #b2b2b2;
  position: absolute;
  margin: auto;
  width: 3px;
  height: 13px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.map-marker {
  background: #000;
  color: #fff;
  position: absolute;
  width: 230px;
  text-align: center;
  border-radius: 2px;
  /*
   * Monogram state before click
   */
}

.map-marker a {
  color: #fff;
  text-decoration: none;
  line-height: 60px;
  display: block;
  height: 60px;
  text-decoration: none;
}

.map-marker a span {
  position: relative;
}

.map-marker a:hover span:after {
  content: '';
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.map-marker:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  border: 10px solid transparent;
  border-top-color: #000;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
}

.map-marker.is-before-tap {
  background-color: transparent;
}

.map-marker.is-before-tap a {
  height: inherit;
  line-height: 0;
  text-indent: -9999px;
}

.map-marker.is-before-tap:after {
  display: none;
}

.mobile-address {
  display: none;
}

.floorplan-overlay {
  position: absolute;
  background: #000;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  color: #fff;
  z-index: 1;
  display: none;
  overflow: hidden;
}

.floorplan-overlay.is-open {
  display: block;
}

.floorplan-overlay img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.floorplan-overlay__mid {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

.floorplan-overlay__inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.floorplan-overlay.is-loaded .floorplan-overlay__inner {
  opacity: 1;
}

.floorplan-overlay__title {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  height: 50px;
  line-height: 50px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.floorplan-overlay__close {
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 35px;
  z-index: 1;
}

html.no-rgba .floorplan-overlay__close {
  background: url('/wp-content/themes/highline/img/rgba/0-0-0-40.png');
}

.floorplan-overlay__close:hover .inner {
  position: relative;
}

.floorplan-overlay__close:hover .inner:after {
  content: '';
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
}

.post-type-archive-press .content-panel {
  width: auto;
  position: absolute;
  left: 275px;
  right: 0;
  top: 0;
  bottom: 0;
}

.post-type-archive-press .content-panel .content__inner {
  min-width: 500px;
}

/**
 * Sprite
 */
.sprite,
.sprite--symbol-1,
.sprite--symbol-2,
.sprite--symbol-3,
.sprite--symbol-4,
.sprite--symbol-5,
.sprite--monogram,
.sprite--map-marker,
.sprite--twitter,
.sprite--facebook,
.sprite--pinterest,
.sprite--large-wordmark,
.sprite--zoom,
.sprite--double-expand,
.sprite--right-arrow,
.sprite--right-arrow--disabled,
.sprite--expand,
.contact-form select:after,
.map-marker.is-before-tap {
  background-image: url('/wp-content/themes/highline/img/sprite_regular.png');
  background-repeat: no-repeat;
  background-position: 0 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.3) {

  .sprite,
  .contact-form select:after,
  .map-marker.is-before-tap,
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    background-image: url('/wp-content/themes/highline/img/sprite_retina.png');
    background-size: 872px 689px;
  }
}

.sprite--symbol-1 {
  background-position: -14px 0;
  width: 58px;
  height: 59px;
}

.sprite--symbol-2 {
  background-position: -214px 0;
  width: 58px;
  height: 59px;
}

.sprite--symbol-3 {
  background-position: -414px 0;
  width: 58px;
  height: 59px;
}

.sprite--symbol-4 {
  background-position: -614px 0;
  width: 58px;
  height: 59px;
}

.sprite--symbol-5 {
  background-position: -814px 0;
  width: 58px;
  height: 59px;
}

.sprite--monogram {
  background-position: -9px -139px;
  width: 49px;
  height: 56px;
}

.sprite--map-marker,
.map-marker.is-before-tap {
  background-position: -239px -139px;
  width: 39px;
  height: 57px;
}

.sprite--twitter {
  background-position: -19px -301px;
  width: 16px;
  height: 13px;
}

.sprite--facebook {
  background-position: -103px -300px;
  width: 9px;
  height: 15px;
}

.sprite--pinterest {
  background-position: -179px -299px;
  width: 16px;
  height: 17px;
}

.sprite--large-wordmark {
  background-position: 0 -388px;
  width: 596px;
  height: 44px;
}

.sprite--zoom {
  background-position: -26px -610px;
  width: 17px;
  height: 17px;
}

.sprite--double-expand {
  background-position: -104px -613px;
  width: 9px;
  height: 14px;
}

.sprite--right-arrow {
  background-position: -151px -606px;
  width: 8px;
  height: 16px;
}

.sprite--right-arrow--disabled {
  background-position: -151px -666px;
  width: 8px;
  height: 16px;
}

.sprite--expand {
  background-position: -104px -676px;
  width: 9px;
  height: 6px;
}

/**
 * Full page carousel
 */
#background-slides {
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transform: translateZ(0px);
  -moz-transform: translateZ(0px);
  -ms-transform: translateZ(0px);
  -o-transform: translateZ(0px);
  transform: translateZ(0px);
}





/**
  /////////////////////////////////////////////////////////////////////////////////////
  // LA Web Builders [ BEGIN CHANGE REQUEST - ( Tuesday, September 09 2014 ) ]
  // Developer: Enrique Reyes ( enrique@lawebbuilders.com )
  // Description: Insert Looper Slider Component
  /////////////////////////////////////////////////////////////////////////////////////
  **/
#bulletLooper {
  position: absolute;
  z-index: 0;
  line-height: 1;
  width: 100%;
  height: 100%;
  display: block;
  top: 0px;
  left: 0px;
  margin-left: 275px;
}

#bulletLooper .looper-inner {
  overflow: hidden;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  height: 100%;
  position: absolute;
  display: inline;
}

#bulletLooper .looper-nav {
  top: 20px;
  right: 293px;
  position: absolute;
  z-index: 5;
  height: 60px;
  width: 210px;
  padding: 0px;
  margin: 0px;
  display: inline;
}

#bulletLooper .looper-nav ul li {
  margin: 0px 0px 0px 10px;
}

#bulletLooper .looper-nav ul {
  float: left;
  padding: 0px;
  margin: 0px;
  top: 0px;
  right: 0px;
  position: relative;
}

#bulletLooper .looper-control {
  float: left;
  position: relative;
  border: none;
  border-radius: 0px;
  opacity: none;
  transition: none;
}

#bulletLooper .looper-control {
  float: left;
  position: relative;
  top: auto;
  left: auto;
  margin: 0px;
}

.looped-nav li.play a {
  background-image: url('/wp-content/themes/highline/img/sprite_regular.png');
  background-repeat: no-repeat;
  background-position: -374px -629px;
}



/**
  /////////////////////////////////////////////////////////////////////////////////////
  // Description: Remove fsCarousel Slider Component
  /////////////////////////////////////////////////////////////////////////////////////

.slide {
  float: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-indent: -9999px;
  -webkit-transform: translateZ(0px);
  -moz-transform: translateZ(0px);
  -ms-transform: translateZ(0px);
  -o-transform: translateZ(0px);
  transform: translateZ(0px);}
 **/

/**
  /////////////////////////////////////////////////////////////////////////////////////
  // LA Web Builders [ END CHANGE REQUEST - ( Tuesday, September 09 2014 ) ]
  /////////////////////////////////////////////////////////////////////////////////////
  **/




.looped-nav {
  position: absolute;
  right: 20px;
  top: 20px;
  margin-top: 0;
  list-style: none;
  padding-left: 0;
  line-height: 60px;
}

.looped-nav li {
  float: left;
  border-radius: 2px;
  width: 60px;
  height: 60px;
}

.looped-nav li.disabled {
  background: none !important;
}

.looped-nav li+li {
  margin-left: 10px;
}

.looped-nav a {
  display: block;
  text-indent: -9999px;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.8);
}

.looped-nav a:hover {
  background-color: #000;
}

.looped-nav a.disabled {
  cursor: default;
  opacity: 0.3;
}

.looped-nav a.disabled:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.looped-nav li.prev a {
  background-image: url('/wp-content/themes/highline/img/sprite_regular.png');
  background-repeat: no-repeat;
  background-position: -298px -582px;
}

.looped-nav li.next a {
  background-image: url('/wp-content/themes/highline/img/sprite_regular.png');
  background-repeat: no-repeat;
  background-position: -296px -630px;
}

/* ==|== unifrom style =======================================================
   Main styles for the forms.
   ========================================================================== */

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

form input,
form textarea {
  font-size: 100%;
  padding: 0;
  margin: 0;
  /*-webkit-appearance: none;*/
}

form input[type="text"] {
  width: 100%;
}

form input[type="submit"] {
  cursor: pointer;
  border: 0 none;
}

#main form input[type="submit"] {
  background: #000;
  border: 0 none;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  height: 45px;
  line-height: 45px;
}

form.f-contact {
  width: 660px;
  /*	margin:0 auto;*/
}

form.f-contact ul.fields {
  padding: 0;
  margin-bottom: 20px;
  width: auto;
  list-style: none;
  overflow: hidden;
}

form.f-contact ul.fields li {
  padding-top: 1.5em;
  padding-bottom: 1.25em;
  margin: 0;
  display: block;
  float: left;
  width: 620px;
  margin-right: 20px;
}

form.f-contact ul.fields li p {
  text-align: center;
}

form.f-contact ul.fields li p:last-child {
  padding: 0;
}

form.f-contact ul.fields li label {
  font-weight: normal;
  display: block;
  font-style: italic;
  text-align: center;
  color: #999;
  margin-bottom: 0.667em;
}

form.f-contact ul.fields li label.label-checkbox {
  color: #1a1a1a;
  font-style: normal;
}

/*
form.f-contact ul.fields li label .asterisk {
  display: inline-block;
  color:#1a1a1a;
  font-family:arial, sans-serif;
  font-style:normal;
  width:12px;
  vertical-align: text-bottom;
  cursor: pointer;
  text-indent: 0;
  background: transparent url('../img/sitewide/sprite.png') no-repeat 0 -150px;
  overflow: hidden;
  width: 14px;
  height: 14px;
  line-height:45px;
}
*/

form.f-contact ul.fields li.f-twocols {
  width: 300px;
}

form.f-contact ul.fields li.f-twocols input[type="text"] {
  padding: 0 10px;
  width: 278px;
  line-height: 38px;
  height: 38px;
  border: 1px solid #CCC;
}

form.f-contact ul.fields li textarea {
  width: 602px;
  height: 300px;
  padding: 8px 8px;
  border: 1px solid #CCC;
}

#main form.f-contact ul.fields li.submit {
  /*	padding-left:220px;*/
  margin: 0;
  width: 440px;
}

#main form.f-contact ul.fields li.submit input[type="submit"] {
  width: 220px;
  font-style: italic;
  border: 0 none;

  -moz-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

#main form.f-contact ul.fields li input[type="submit"]:hover {
  border: 0 none;
  background: #072f49;
}


.f-message {
  /*text-align:left;*/
  /*background: transparent url('../img/sitewide/sep.gif') no-repeat left bottom;*/
  /*padding:0 0 2.9em 0;*/
  margin-bottom: 25px;
}

.f-message.none {
  display: none;
}

.f-message p {}



.f-message.error p,
.f-message.error ul {
  color: #AD0C0C;
}

.f-message.error p.p-success {
  display: none;
}

.f-message.success p.p-error {
  display: none;
}



form.f-contact ul.fields li.error label {
  color: #AD0C0C;
}

form.f-contact ul.fields li.error label .asterisk {
  background-position: 0 -200px;
}


.f-message.success p,
.f-message.success ul {
  color: #3A934D;
}


.f-message ul li {
  list-style: disc;
  display: list-item;
  margin: 0 0 0 0.85em;
  padding: 0;
}

.f-message ul li:before {
  content: "– ";
}

.f-message ul li {
  text-indent: -0.85em;
  list-style: none;
}



/* booking form */

form.f-booking {
  /*margin-bottom:40px;*/
  /*width:100%;*/
  /*overflow:hidden;*/
  /*	background: transparent url('../img/sitewide/bg_pattern.png') repeat 0 0;*/
  /*  background:#DDD;*/
  /*padding:20px 0;*/
}

#footer form.f-booking {
  margin-bottom: 0;
}

form.f-booking input {
  /*padding-left: 15px;*/
  /*width: 193px;*/
  /*border:1px solid #CCC;*/
  /*float:right;*/
}

form.f-booking a.bt,
#main form.f-booking a.bt {
  width: 210px;
  margin: 0;
}

form.f-booking input.input-date {
  -webkit-appearance: none;
  background-color: #FFF;
  /*background-position: 67px -661px !important;*/
  /*width: auto !important;*/
  /*height: auto !important;*/
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.3) {
  form.f-booking input.input-date {
    /*background-position: 44px -660px !important;*/
  }
}

form.f-booking input.input-date:hover,
form.f-booking input.input-date:focus {
  /*background-position: right -350px;*/
  -webkit-appearance: none;
}

form.f-booking input[type="submit"] {
  padding: 0;
  width: 210px;
  -webkit-appearance: none;
}

form.f-booking .inputs {
  float: left;
  width: 210px;
  margin-right: 20px;
  padding: 0;
  overflow: hidden;
}

form.f-booking .inputs input {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  height: 43px;
  line-height: 43px;

}

/* end booking form */

/* uniform style */

.selector,
.radio,
.checker,
.uploader,
.selector *,
.radio *,
.checker *,
.uploader * {
  margin: 0;
  padding: 0;
}

.selector * {
  cursor: pointer;
}

div.selector {
  overflow: hidden;
  position: relative;
}

div.selector select {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  border: none;
  background: none;
}

div.selector span {
  display: inline-block;
}

form.f-booking div.selector {
  border: 1px solid #CCC;
  line-height: 43px;
  height: 43px;
  padding-left: 15px;
  width: 193px;
  background: #FFF;
  background: #FFF url('../img/sitewide/sprite.png') no-repeat right -300px;
}



form.f-booking div.selector span {
  height: 43px;
  line-height: 43px;
}

form.f-booking div.selector select {
  height: 43px;
  width: 198px;
}

form.f-contact div.selector {
  background: transparent url('../img/sitewide/sprite.png') no-repeat right 0;
}

form.f-contact div.selector select {
  height: 30px;
  width: 300px;
}

form.f-contact div.selector.hover {
  height: 30px;
  width: 300px;
  background-position: right -50px;
}


form.f-contact div.selector span {
  height: 30px;
  line-height: 30px;
  padding-left: 15px;
}

div.checker {
  position: relative;
  line-height: 25px;
}


div.checker {
  margin-right: 25px;
  display: inline;

}

.safari div.checker {
  display: inline-block;
  width: 15px;
  margin-top: 0;
  height: 12px;
  margin-right: 10px;
}

div.checker span {
  display: inline-block;
  width: 15px;
  height: 15px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;

}

div.checker input {
  opacity: 0;
  display: inline-block;
  background: none;
  position: absolute;
  top: 0;
  left: 0;
}

div.checker input {
  width: 15px;
  height: 15px;
}

.label-checkbox .checker span {
  background: transparent url('../img/sitewide/sprite.png') no-repeat 0 -100px;
}

.label-checkbox .checker.hover span {
  background-position: -50px -100px;
}

.label-checkbox .checker span.checked {
  background-position: -100px -100px;
}

.label-checkbox .checker.hover span.checked {
  background-position: -150px -100px;
}


/* end uniform */

/* newsletter form */

form.f-newsletter {
  position: relative;
}

form.f-newsletter input {
  font-style: italic;
  padding: 0.667em 0;
}

form.f-newsletter input[type="text"] {
  background: transparent;
  border: 0 none;
  color: #999;
  border-bottom: 1px solid #CCC;
  -webkit-appearance: none;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;

}

form.f-newsletter input[type="submit"] {
  -webkit-appearance: none;
  position: absolute;
  right: 0;
  top: 0;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;

  border: 0 none;
  background: transparent;
  padding-right: 20px;
  background: transparent url('../img/sitewide/sprite.png') no-repeat right -438px;
}

form.f-newsletter input[type="submit"]:hover {
  border-bottom: 1px solid black;
}

form.f-newsletter p.feedback {
  padding-top: 0.667em;
}

form.f-newsletter.submitted p.feedback {
  color: #3a934d;
}

form.f-newsletter.error p.feedback {
  color: #ad0c0c;
}

/* styles for desktop */
.tinynav {
  display: none;
}

.right-panel {
  width: calc(100% - 275px);
  width: -moz-calc(100% - 275px);
  width: -webkit-calc(100% - 275px);
  height: 100%;
  background-size: cover;
  float: right;
}

.right-panel:before {
  content: '';
  padding-left: 275px;
}

@media screen and (max-width: 1400px) {
  .main-header__aux {
    position: relative;
    left: -15px;
  }

  .nano .content {
    overflow: auto;
  }
}


/* AR DESIGN */

.ar-hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.main-header__aux {
  position: relative;
  left: -15px;
}

.nano .content {
  overflow: auto;
}

.post-type-archive-press_v2,
.page-id-1608,
.page-id-1794 {
  background-color: white;
}

.partners-wrap {
  overflow: auto;
}

.ar-repeater-page.partners-content .content-panel {
  background-color: black;
}

.ar-repeater-page.partners-content .partners_wrap {
  float: left;
  height: 100%;
  overflow: scroll;
  width: calc(100% - 300px);
  width: -moz-calc(100% - 300px);
  width: -webkit-calc(100% - 300px);
  padding-bottom: 100px;
}

.ar-repeater-page.partners-content .partners_wrap .article-item {
  width: 33.3%;
}

.ar-repeater-page.partners-content .content-panel .partners-list {
  padding: 0;
  list-style: none;
}

.ar-repeater-page.partners-content .content-panel .partners-list li {
  margin-bottom: 20px;
}

.ar-repeater-page.partners-content .content-panel .partners-list li .partner-title {
  font-size: 14px;
}

.ar-repeater-page.content-panel {
  background-color: transparent;
}

.ar-repeater-page.content-panel h1.content-panel__title {
  text-align: left;
  margin-bottom: 20px;
  color: black;
}

.ar-repeater-page.content-panel .content__inner {
  min-width: 500px;
}

.ar-repeater-page.content-panel {
  width: auto;
  position: absolute;
  left: 275px;
  right: 0;
  top: 0;
  bottom: 0;
}

.ar-repeater-page.content-panel .article-item img,
.page-id-1608 .content-panel .article-item img {
  padding-bottom: 20px;
  width: auto;
}

.page-id-1608 .content-panel.nano .content,
.post-type-archive-awards .content-panel.nano .content {
  padding-top: 0;
}

.post-type-archive-press_v2 .content-panel hr {
  border-top: 2px solid rgb(115, 113, 113);
  margin-top: 30px;
  margin-bottom: 10px;
}

.post-type-archive-press_v2 .content-panel #quote-list .article-item,
.page-id-1608 .content-panel .article-item {
  width: 25%;
  padding-top: 0;
  padding-bottom: 40px;
}

.post-type-archive-press_v2 .content-panel a {
  color: black;
}

.post-type-archive-press_v2 .content-panel .content__inner .the_quote {
  text-align: center;
}

.post-type-archive-press_v2 .article-item a {
  display: block;
  position: relative;
}

.post-type-archive-press_v2 .article-item img {
  max-width: 150px;
  margin: 0 auto;
  text-align: center
}

.post-type-archive-press_v2 .article-item.article-link img {
  max-width: 140px;
  margin: 0 auto;
}

.post-type-archive-press_v2 .article-item a .hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  mix-blend-mode: screen;
  background-color: #ffc400;
}

.backgroundblendmode .post-type-archive-press_v2 .article-item a .hover {
  mix-blend-mode: screen;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.post-type-archive-press_v2 .article-item a {
  background-color: white;
}

.post-type-archive-press_v2 .article-item a .hover {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.post-type-archive-press_v2 .article-item:hover a .hover {
  opacity: 1
}

.img-responsive {
  max-width: 100%;
  height: auto;
}








@media (min-width: 1250px) {

  .ar-repeater-page.partners-content .partners_wrap .article-item {
    width: 25%;
  }

}




@media screen and (max-width: 1060px) {

  .post-type-archive-press_v2 .content-panel #quote-list .article-item,
  .page-id-1608 .content-panel .article-item {
    width: 25%;
  }

  .ar-repeater-page.partners-content .partners_wrap .article-item {
    width: 33.3%;
  }

}

@media screen and (max-width: 950px) {

  .post-type-archive-press_v2 .content-panel #quote-list .article-item,
  .page-id-1608 .content-panel .article-item {
    width: 33.3%;
  }

  .ar-repeater-page.partners-content .partners_wrap .article-item {
    width: 50%;
  }

}

@media screen and (max-width: 800px) {

  .post-type-archive-press_v2 .content-panel #quote-list .article-item,
  .page-id-1608 .content-panel .article-item {
    width: 50%;
  }

}


.post-type-archive-awards {
  background-color: white;
}

.post-type-archive-awards header.main-header {
  background-color: rgb(243, 243, 243);
}

.post-type-archive-awards .content-panel {
  background-color: transparent;
}

.post-type-archive-awards .content-panel h1.content-panel__title {
  text-align: left;
  margin-bottom: 20px;
  color: black;
}

.post-type-archive-awards .content-panel .content__inner {}

.post-type-archive-awards .content-panel {
  width: auto;
  position: absolute;
  left: 275px;
  right: 0;
  top: 0;
  bottom: 0;
}

.post-type-archive-awards .content-panel .article-item img {
  padding-bottom: 20px;
  width: auto;
}

.post-type-archive-awards .content-panel hr {
  border-top: 2px solid rgb(115, 113, 113);
  margin-top: 30px;
  margin-bottom: 10px;
}

.post-type-archive-awards .content-panel a {
  color: black;
}

.post-type-archive-awards .article-item a {
  display: block;
  position: relative;
}

.post-type-archive-awards .article-item .img-wrap {
  display: table;
  width: 100%;
  text-align: center;
}

.post-type-archive-awards .article-item img {
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
  max-height: 130px;
}

.post-type-archive-awards .article-item.article-link img {
  max-width: 140px;
  margin: 0 auto;
}



@media screen and (max-width: 1060px) {
  .post-type-archive-awards .content-panel #quote-list .article-item {
    width: 25%;
  }
}

@media screen and (max-width: 950px) {
  .post-type-archive-awards .content-panel #quote-list .article-item {
    width: 33.3%;
  }
}

@media screen and (max-width: 800px) {
  .post-type-archive-awards .content-panel #quote-list .article-item {
    width: 50%;
  }
}


/* #region survey updates */

.survey a {
  word-break: break-all;
  display: block;
}

/* #endregion */

/* #region accessibility updates */

@media screen and (min-width:992px) {
  a[href*="accessibility.lcf-fl.org"] {
    top: 1rem;
    right: 2rem;
    position: absolute;
  }
}

/* #endregion */

/* #region homepage updates - 9/27/2019 */

/* .logo-feature img.wba-image {
  max-width:169px;
  margin:5px 0 0;
} */



.logo-feature .wba-image,
.logo-feature .cnt-image {
  margin-top: 5px;
}

.logo-feature .wba-image {
  margin-right: 15px;
}

.logo-feature .cnt-image {
  margin-right: 35px;
}

/* #endregion */


.if-logged {
  display: none;
}

.logged-in .if-logged {
  display: block;
}

.logo-feature {
  position: absolute;
  top: 45px;
  right: 0;
  text-align: right;
  z-index: 2;
}

.logo-feature img {
  max-width: 100%;
  height: auto;
  float: left;
}

.wow {
  visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}




@media (max-width: 650px) {
  .logo-feature img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .logo-feature {
    display: none;
  }
}