@charset "UTF-8";
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/*@include edit;*/
.grid-row {
  box-sizing: border-box;
  margin: auto;
  padding-left: 2.5em;
  padding-right: 2.5em;
  position: relative;
  width: 100%;
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2.5em;
  padding-right: 2.5em; }
  .grid-row:before, .grid-row:after {
    content: '';
    display: table; }
  .grid-row:after {
    clear: both; }
  .grid-row.no-gutter {
    padding-left: 0;
    padding-right: 0; }
  .grid-row.full-width {
    *zoom: 1;
    width: auto;
    max-width: 2000px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 2.5em;
    padding-right: 2.5em; }
    .grid-row.full-width:before, .grid-row.full-width:after {
      content: '';
      display: table; }
    .grid-row.full-width:after {
      clear: both; }

@media screen and (min-width: 768px) {
  .col-1-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 6.225%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-1-12:before, .col-1-12:after {
      content: '';
      display: table; }
    .col-1-12:after {
      clear: both; }
    .col-1-12:last-child {
      margin-right: 0%; }

  .col-2-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 14.75%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-2-12:before, .col-2-12:after {
      content: '';
      display: table; }
    .col-2-12:after {
      clear: both; }
    .col-2-12:last-child {
      margin-right: 0%; }

  .col-3-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 23.275%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-3-12:before, .col-3-12:after {
      content: '';
      display: table; }
    .col-3-12:after {
      clear: both; }
    .col-3-12:last-child {
      margin-right: 0%; }

  .col-4-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.8%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-4-12:before, .col-4-12:after {
      content: '';
      display: table; }
    .col-4-12:after {
      clear: both; }
    .col-4-12:last-child {
      margin-right: 0%; }

  .col-5-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 40.325%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-5-12:before, .col-5-12:after {
      content: '';
      display: table; }
    .col-5-12:after {
      clear: both; }
    .col-5-12:last-child {
      margin-right: 0%; }

  .col-6-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.85%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-6-12:before, .col-6-12:after {
      content: '';
      display: table; }
    .col-6-12:after {
      clear: both; }
    .col-6-12:last-child {
      margin-right: 0%; }

  .col-7-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 57.375%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-7-12:before, .col-7-12:after {
      content: '';
      display: table; }
    .col-7-12:after {
      clear: both; }
    .col-7-12:last-child {
      margin-right: 0%; }

  .col-8-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.9%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-8-12:before, .col-8-12:after {
      content: '';
      display: table; }
    .col-8-12:after {
      clear: both; }
    .col-8-12:last-child {
      margin-right: 0%; }

  .col-9-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.425%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-9-12:before, .col-9-12:after {
      content: '';
      display: table; }
    .col-9-12:after {
      clear: both; }
    .col-9-12:last-child {
      margin-right: 0%; }

  .col-10-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 82.95%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-10-12:before, .col-10-12:after {
      content: '';
      display: table; }
    .col-10-12:after {
      clear: both; }
    .col-10-12:last-child {
      margin-right: 0%; }

  .col-11-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 91.475%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-11-12:before, .col-11-12:after {
      content: '';
      display: table; }
    .col-11-12:after {
      clear: both; }
    .col-11-12:last-child {
      margin-right: 0%; }

  .col-12-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .col-12-12:before, .col-12-12:after {
      content: '';
      display: table; }
    .col-12-12:after {
      clear: both; }
    .col-12-12:last-child {
      margin-right: 0%; }

  .span-1-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 8.33333%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-1-12:before, .span-1-12:after {
      content: '';
      display: table; }
    .span-1-12:after {
      clear: both; }

  .span-2-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-2-12:before, .span-2-12:after {
      content: '';
      display: table; }
    .span-2-12:after {
      clear: both; }

  .span-3-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 25%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-3-12:before, .span-3-12:after {
      content: '';
      display: table; }
    .span-3-12:after {
      clear: both; }

  .span-4-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-4-12:before, .span-4-12:after {
      content: '';
      display: table; }
    .span-4-12:after {
      clear: both; }

  .span-5-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 41.66667%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-5-12:before, .span-5-12:after {
      content: '';
      display: table; }
    .span-5-12:after {
      clear: both; }

  .span-6-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-6-12:before, .span-6-12:after {
      content: '';
      display: table; }
    .span-6-12:after {
      clear: both; }

  .span-7-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.33333%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-7-12:before, .span-7-12:after {
      content: '';
      display: table; }
    .span-7-12:after {
      clear: both; }

  .span-8-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-8-12:before, .span-8-12:after {
      content: '';
      display: table; }
    .span-8-12:after {
      clear: both; }

  .span-9-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 75%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-9-12:before, .span-9-12:after {
      content: '';
      display: table; }
    .span-9-12:after {
      clear: both; }

  .span-10-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 83.33333%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-10-12:before, .span-10-12:after {
      content: '';
      display: table; }
    .span-10-12:after {
      clear: both; }

  .span-11-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 91.66667%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-11-12:before, .span-11-12:after {
      content: '';
      display: table; }
    .span-11-12:after {
      clear: both; }

  .span-12-12 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%; }
    .span-12-12:before, .span-12-12:after {
      content: '';
      display: table; }
    .span-12-12:after {
      clear: both; }

  .align-right {
    float: right; } }
/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
html,
body {
  opacity: 0;
  transition: opacity 0.325s ease-in-out;
  -moz-transition: opacity 0.325s ease-in-out;
  -webkit-transition: opacity 0.325s ease-in-out; }
  @media (min-width: 768px) and (max-width: 1279px) {
    html,
    body {
      opacity: 1; } }

html.visible,
body.visible {
  opacity: 1;
  transition: opacity 0.325s ease-in-out;
  -moz-transition: opacity 0.325s ease-in-out;
  -webkit-transition: opacity 0.325s ease-in-out; }

html:not(.home):not(.bg-1),
body:not(.home):not(.bg-1) {
  background: white !important; }

html.bg-1 {
  background: transparent !important; }

.home .page-title h1 {
  color: rgba(0, 54, 97, 0.7); }

#page-header {
  position: relative; }
  #page-header:after {
    background: rgba(0, 54, 97, 0.7);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }
  #page-header .grid-row {
    position: relative;
    z-index: 1; }
  #page-header .links ul {
    background: rgba(0, 54, 97, 0.7); }
    @media screen and (min-width: 768px) {
      #page-header .links ul {
        background: transparent !important; } }
  @media screen and (min-width: 768px) {
    #page-header .links {
      background: transparent !important; } }

.home.tomorrow-mode #outer {
  background: rgba(0, 54, 97, 0.6); }
.home.tomorrow-mode .right-now h2, .home.tomorrow-mode .right-now p, .home.tomorrow-mode .right-now h3 {
  color: white; }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
@font-face {
  font-family: 'ObjektivMk1_Bd';
  src: url("../fonts/ObjektivMk1_Bd_open.eot");
  src: local("☺"), url("../fonts/ObjektivMk1_Bd_open.woff") format("woff"), url("../fonts/ObjektivMk1_Bd_open.ttf") format("truetype"), url("../fonts/ObjektivMk1_Bd_open.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'ObjektivMk1_Md';
  src: url("../fonts/ObjektivMk1_Md_open.eot");
  src: local("☺"), url("../fonts/ObjektivMk1_Md_open.woff") format("woff"), url("../fonts/ObjektivMk1_Md_open.ttf") format("truetype"), url("../fonts/ObjektivMk1_Md_open.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'ObjektivMk1_MdIt';
  src: url("../fonts/ObjektivMk1_MdIt_open.eot");
  src: local("☺"), url("../fonts/ObjektivMk1_MdIt_open.woff") format("woff"), url("../fonts/ObjektivMk1_MdIt_open.ttf") format("truetype"), url("../fonts/ObjektivMk1_MdIt_open.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'SuisseIntl-Regular';
  src: url("../fonts/SuisseIntl-Regular.eot");
  src: local("☺"), url("../fonts/SuisseIntl-Regular.woff") format("woff"), url("../fonts/SuisseIntl-Regular.ttf") format("truetype"), url("../fonts/SuisseIntl-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'SuisseIntl-Italic';
  src: url("../fonts/SuisseIntl-RegularItalic.eot");
  src: local("☺"), url("../fonts/SuisseIntl-RegularItalic.woff") format("woff"), url("../fonts/SuisseIntl-RegularItalic.ttf") format("truetype"), url("../fonts/SuisseIntl-RegularItalic.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'MaisonNeue-Bold';
  src: url("../fonts/MaisonNeue-Bold.eot");
  src: local("☺"), url("../fonts/MaisonNeue-Bold.woff") format("woff"), url("../fonts/MaisonNeue-Bold.ttf") format("truetype"), url("../fonts/MaisonNeue-Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
html {
  background: #fff;
  -webkit-font-smoothing: antialiased; }

body {
  color: #000;
  margin: 0;
  font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px; }

a,
a:active,
a:link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: color 0.325s ease-in-out;
  -moz-transition: color 0.325s ease-in-out;
  -webkit-transition: color 0.325s ease-in-out; }
  a:visited,
  a:active:visited,
  a:link:visited {
    color: #000; }
  a:hover,
  a:active:hover,
  a:link:hover {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    transition: color 0.325s ease-in-out;
    -moz-transition: color 0.325s ease-in-out;
    -webkit-transition: color 0.325s ease-in-out; }

img {
  max-width: 100%; }

.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both; }

.anchor-links {
  display: flex;
  margin-bottom: 3.75em;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .anchor-links {
      display: table;
      margin-bottom: 3.125em; } }
  .anchor-links a {
    border: none;
    cursor: pointer;
    float: left;
    font-family: "ObjektivMk1_Md", Georgia, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.9375em;
    line-height: 1.66667em;
    text-decoration: none;
    margin-right: 1.75em; }
    @media screen and (max-width: 767px) {
      .anchor-links a {
        border: none;
        font-size: 0.8125em;
        line-height: 1.46154em;
        margin-bottom: 0.61538em;
        text-decoration: none;
        width: 100%; }
        .anchor-links a:last-of-type {
          margin-bottom: 0; } }
    @media (min-width: 768px) and (max-width: 1279px) {
      .anchor-links a {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px; } }
    .anchor-links a.no-upcoming {
      display: none; }
    .anchor-links a span {
      border-bottom: 1px solid black;
      padding-bottom: 1px; }

a.underlined {
  text-decoration: underline !important;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 13px; }
  @media screen and (max-width: 767px) {
    a.underlined {
      font-size: 13px;
      line-height: 19px; } }

@media screen and (min-width: 768px) {
  .detail-link-paragraph {
    margin-bottom: 0; } }
.detail-link-paragraph span {
  border-bottom: 1px solid #000;
  padding-bottom: 1px; }
  .detail-link-paragraph span:hover {
    border-bottom: none; }

h1 {
  color: black;
  font-family: "ObjektivMk1_Md", Georgia, serif;
  font-weight: normal;
  font-style: normal;
  font-size: 5em;
  letter-spacing: -.01em;
  line-height: 1.0625em;
  margin-bottom: 0.375em;
  margin-top: 0; }
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 2.125em;
      line-height: 1.23529em; } }
  @media (min-width: 768px) and (max-width: 1279px) {
    h1 {
      font-size: 64px;
      line-height: 68px; } }
  @media (min-width: 768px) and (max-width: 875px) {
    h1 {
      font-size: 54px;
      line-height: 57px; } }
  h1.detail {
    font-family: "ObjektivMk1_Md", Georgia, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 3.75em;
    line-height: 1.2em;
    margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      h1.detail {
        font-size: 1.9375em;
        line-height: 1.58065em; } }
  h1 .subtitle {
    display: block;
    font-size: 0.5em;
    line-height: 1em; }

h2 {
  font-family: "ObjektivMk1_Md", Georgia, serif;
  font-weight: normal;
  font-style: normal;
  font-size: 2.5em;
  line-height: 1.1em; }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 1.75em;
      line-height: 1.17857em; } }
  h2.padded {
    padding-bottom: 0.6em; }
    @media screen and (max-width: 767px) {
      h2.padded {
        padding-bottom: 0.5625em; } }
  h2.overline {
    border-top: 2px solid black;
    margin: 0;
    padding-bottom: 0.6em;
    padding-top: 0.3em; }
    @media screen and (max-width: 767px) {
      h2.overline {
        padding-bottom: 0.85714em;
        padding-top: 0.25em; } }

h3 {
  font-family: "ObjektivMk1_Md", Georgia, serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.375em;
  line-height: 1.22727em; }
  @media screen and (max-width: 767px) {
    h3 {
      font-size: 1em;
      line-height: 1.375em; } }
  h3.padded {
    padding-bottom: 0.88889em; }
    @media screen and (max-width: 767px) {
      h3.padded {
        padding-bottom: 0.5625em; } }
  h3.overline {
    border-top: 1px solid black;
    margin: 0;
    padding-top: 0.55556em; }
    @media screen and (max-width: 767px) {
      h3.overline {
        padding-bottom: 0;
        padding-top: 0.625em; } }
  h3.mini-feature {
    margin-top: .75em;
    margin-bottom: .25em; }
    @media screen and (max-width: 767px) {
      h3.mini-feature {
        border-top: 1px solid #bbbdc0;
        font-size: 1.25em;
        margin-top: 0;
        padding-top: 0.5em; } }
  h3.content-flag {
    background: #fff453;
    color: #000;
    left: 2em;
    padding: 1.75em 1.7em 1.5em 1.7em;
    position: absolute;
    top: 2em;
    letter-spacing: .09em;
    margin: 0;
    text-transform: uppercase;
    font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.5625em;
    line-height: 10px; }
    @media screen and (max-width: 767px) {
      h3.content-flag.flag-desktop {
        display: none; } }
    h3.content-flag:empty {
      display: none; }
    h3.content-flag.flag-mobile {
      bottom: 0;
      display: table;
      left: 0;
      position: relative;
      right: 0;
      top: 10px; }
      @media screen and (min-width: 768px) {
        h3.content-flag.flag-mobile {
          display: none; } }
      h3.content-flag.flag-mobile:empty {
        display: none; }
    h3.content-flag.detail {
      top: 0;
      left: 0;
      right: 0;
      width: 100%; }
      h3.content-flag.detail p {
        display: inline-block;
        font-size: inherit; }
        @media screen and (max-width: 767px) {
          h3.content-flag.detail p {
            margin: 0; } }
      @media screen and (max-width: 767px) {
        h3.content-flag.detail {
          position: relative;
          top: -3em;
          margin-top: 0;
          padding: 1.15em 1.1em 1em 1.15em; } }

h4 {
  font-family: "ObjektivMk1_Md", Georgia, serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.375em;
  line-height: 1.22727em;
  max-width: 650px;
  width: 100%; }
  @media (min-width: 768px) and (max-width: 1279px) {
    h4 {
      font-size: 17px;
      line-height: 21px; } }
  @media screen and (max-width: 767px) {
    h4 {
      font-size: 0.8125em;
      margin-top: 1.5em; } }
  h4.lead {
    line-height: 1.31818em; }
    @media (min-width: 768px) and (max-width: 1279px) {
      h4.lead {
        font-size: 17px;
        line-height: 23px; } }
    @media screen and (max-width: 767px) {
      h4.lead {
        margin-top: 1.53846em; } }
    h4.lead.split {
      margin-top: 0; }

h5 {
  font-family: "ObjektivMk1_Md", Georgia, serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.125em;
  line-height: 1.27778em;
  margin: 0;
  padding-top: 0.66667em;
  width: 100%; }
  @media (min-width: 768px) and (max-width: 1279px) {
    h5 {
      font-size: 14px;
      line-height: 18px; } }
  h5.follows-category {
    padding-top: 0.33333em; }
    @media (min-width: 768px) and (max-width: 1279px) {
      h5.follows-category {
        padding-top: 0.5em; } }
  @media screen and (max-width: 767px) {
    h5 {
      font-size: 0.8125em;
      line-height: 1.30769em; } }

.photo-wrap {
  position: relative; }

p {
  font-size: 1.0625em;
  line-height: 1.38889em;
  margin-bottom: 1.38889em; }
  @media (min-width: 768px) and (max-width: 1279px) {
    p {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 20px; } }
  @media screen and (max-width: 767px) {
    p {
      font-size: 0.8125em;
      line-height: 1.46154em;
      margin-bottom: 1.46154em; } }
  p:first-of-type {
    margin-top: 0; }
  p:empty {
    display: none; }
  p.photo-credit {
    bottom: 0;
    color: white;
    font-size: 11px;
    left: 0;
    margin-bottom: 10px;
    margin-left: 10px;
    opacity: .65;
    position: absolute;
    text-shadow: 0px 0px 2px #a2a2a2; }
    @media screen and (max-width: 767px) {
      p.photo-credit {
        font-size: 8px; } }
  p.hours-title {
    font-family: "ObjektivMk1_Md", Georgia, serif; }
  p.overline {
    border-top: 1px solid black;
    margin-bottom: 1.33333em;
    padding-top: 0.83333em; }
  p:empty + p {
    margin-top: 0; }

@media screen and (max-width: 767px) {
  .text-block p {
    margin-bottom: 2.30769em; } }
@media screen and (min-width: 768px) {
  .text-block h1:first-of-type, .text-block h2:first-of-type, .text-block h3:first-of-type, .text-block h4:first-of-type, .text-block h5:first-of-type {
    margin-bottom: 0; } }
@media screen and (min-width: 768px) {
  .text-block h1, .text-block h2, .text-block h3, .text-block h4, .text-block h5 {
    margin-bottom: 32px; } }

span.category {
  letter-spacing: .09em;
  margin: 0;
  text-transform: uppercase;
  font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 0.5625em;
  line-height: 10px; }
  span.category.overline {
    border-top: 1px solid #939598;
    display: block;
    padding-bottom: 0.88889em;
    padding-top: 1.55556em;
    width: 100%; }
    @media screen and (max-width: 767px) {
      span.category.overline {
        padding-bottom: 0.66667em;
        padding-top: 0.88889em; } }
span.datetime {
  display: block;
  font-size: 0.875em;
  line-height: 1.21429em; }
  @media screen and (max-width: 767px) {
    span.datetime {
      font-size: 0.625em;
      line-height: 1.3em; } }

figcaption {
  font-size: 0.875em;
  line-height: 1.21429em;
  margin-top: .5em; }
  @media screen and (max-width: 767px) {
    figcaption {
      font-size: 0.625em;
      line-height: 1.3em; } }

#outer {
  margin: auto;
  max-width: none;
  min-width: none;
  padding-top: 5.3em;
  width: 100%; }
  @media screen and (max-width: 767px) {
    #outer {
      padding-top: 3.5em; } }
  #outer .go-top {
    position: fixed;
    bottom: 3.25em;
    right: 2em;
    text-decoration: none;
    color: white;
    font-size: 9px;
    padding: 10px;
    cursor: pointer;
    display: none;
    width: 100px;
    line-height: 1px;
    z-index: 5; }
    @media screen and (max-width: 767px) {
      #outer .go-top {
        bottom: 6em;
        right: 1.6em; } }

/* Common font sizes */
/* Bevel Buttons - Replace image buttons. Will move to another file after styles are set. */
.bvc {
  letter-spacing: .09em;
  margin: 0;
  text-transform: uppercase;
  font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 0.5625em;
  line-height: 10px;
  background: none;
  border: none;
  cursor: pointer;
  float: right;
  margin: 0 auto;
  position: relative;
  text-transform: uppercase;
  width: 50px;
  outline: none; }
  @media screen and (max-width: 767px) {
    .bvc.desktop-button {
      display: none; } }
  .bvc .bevel, .bvc .content {
    border-width: 5px; }
  .bvc .bevel, .bvc .content {
    border-color: #efefef;
    border-style: solid; }
  .bvc.search-button {
    margin-top: -15px;
    margin-right: 5px; }

.bvc .tr,
.bvc .tl,
.bvc .br,
.bvc .bl {
  height: 0px;
  width: 100%; }

.bvc .tr,
.bvc .tl {
  border-top: 0; }

.bvc .br,
.bvc .bl {
  border-bottom: 0; }

.bvc .tr,
.bvc .br {
  border-right-color: transparent; }

.bvc .tl,
.bvc .bl {
  border-left-color: transparent; }

.no_bevel {
  height: 0px;
  width: 100%;
  border-bottom: 0; }

.content {
  background: #efefef;
  width: 100%;
  border-top: 0;
  border-bottom: 0;
  padding: 5px 0px;
  text-align: center; }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
#outer .mini-section {
  padding-bottom: 32px; }
  @media screen and (max-width: 767px) {
    #outer .mini-section {
      padding-bottom: 27px; } }
#outer .dated-blog-section {
  padding-bottom: 90px; }
  @media screen and (max-width: 767px) {
    #outer .dated-blog-section {
      padding-bottom: 50px !important; } }
  #outer .dated-blog-section .film-tip:not(:only-of-type) {
    padding-bottom: 45px; }
    @media screen and (max-width: 767px) {
      #outer .dated-blog-section .film-tip:not(:only-of-type) {
        padding-bottom: 30px; } }
  @media screen and (max-width: 767px) {
    #outer .dated-blog-section .film-tip:last-of-type {
      margin-bottom: 0; } }
  #outer .dated-blog-section .film-tip:only-of-type {
    padding-bottom: 0; }
#outer .the-grounds {
  margin-bottom: 0; }
  #outer .the-grounds .feature {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 45px; }
    @media screen and (max-width: 767px) {
      #outer .the-grounds .feature {
        padding-bottom: 25px;
        margin-bottom: 0; } }
    #outer .the-grounds .feature .image-wrap {
      padding-bottom: 0; }
    #outer .the-grounds .feature h1 {
      font-size: 2.6em;
      font-weight: normal;
      line-height: .75em;
      margin: 0;
      margin-bottom: .85em;
      margin-top: .35em; }
      @media screen and (max-width: 767px) {
        #outer .the-grounds .feature h1 {
          font-size: 1.75em;
          margin-bottom: 1em;
          margin-top: .25em; } }
    #outer .the-grounds .feature .text-block p:only-of-type {
      margin-bottom: 0; }
    #outer .the-grounds .feature .text-block p {
      margin-top: 1.6em; }
      #outer .the-grounds .feature .text-block p.detail-link-paragraph {
        margin-bottom: 0; }
        @media screen and (min-width: 768px) {
          #outer .the-grounds .feature .text-block p.detail-link-paragraph a span {
            border-bottom: 1px solid #000; } }
    @media screen and (min-width: 768px) {
      #outer .the-grounds .feature .rte-styles {
        margin-top: 30px; } }
  @media screen and (max-width: 767px) {
    #outer .the-grounds .react-single-image-carousel {
      margin-bottom: 0; } }
  #outer .the-grounds.lonely-section .feature {
    padding-bottom: 90px; }
    @media screen and (max-width: 767px) {
      #outer .the-grounds.lonely-section .feature {
        padding-bottom: 50px; } }
  #outer .the-grounds .grounds-features {
    border-top: 1px solid #bbbdc0;
    padding-bottom: 45px; }
    @media screen and (max-width: 767px) {
      #outer .the-grounds .grounds-features {
        padding-bottom: 30px; } }
    #outer .the-grounds .grounds-features:last-of-type {
      padding-bottom: 90px; }
      @media screen and (max-width: 767px) {
        #outer .the-grounds .grounds-features:last-of-type {
          padding-bottom: 50px; } }
    #outer .the-grounds .grounds-features p:empty {
      display: none; }
    #outer .the-grounds .grounds-features .image-slider {
      margin-bottom: 0; }
    #outer .the-grounds .grounds-features .slick-slider {
      margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      #outer .the-grounds .grounds-features {
        border: none;
        clear: both; } }
    @media screen and (min-width: 768px) {
      #outer .the-grounds .grounds-features .single-image-carousel img {
        margin-top: 0.5em; } }
    #outer .the-grounds .grounds-features h1 {
      font-family: "ObjektivMk1_Md", Georgia, serif;
      font-weight: normal;
      font-style: normal;
      font-size: 1.5em;
      margin-bottom: .25em;
      margin-top: .7em; }
      @media screen and (max-width: 767px) {
        #outer .the-grounds .grounds-features h1 {
          font-size: 1.25em;
          font-weight: normal;
          line-height: 1.25em;
          margin-bottom: .45em;
          margin-top: .45em; } }
    #outer .the-grounds .grounds-features p a {
      border-bottom: none;
      display: block;
      margin-top: 1.2em; }
      @media screen and (max-width: 767px) {
        #outer .the-grounds .grounds-features p a {
          margin-top: 1.5em;
          text-decoration: underline; } }
    #outer .the-grounds .grounds-features .image-wrap {
      padding-top: .5em; }
      @media screen and (max-width: 767px) {
        #outer .the-grounds .grounds-features .image-wrap {
          padding-bottom: 0;
          padding-top: .5em; } }
#outer .grid-row .header-image {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  position: relative; }
#outer .grid-row .page-logo {
  margin-right: 0;
  margin-top: 0.9375em; }
  #outer .grid-row .page-logo.bordered {
    border-top: 1px solid #bbbdc0; }
  #outer .grid-row .page-logo img {
    padding-top: 0.9375em; }
    @media screen and (max-width: 767px) {
      #outer .grid-row .page-logo img {
        max-height: 70px;
        max-width: 130px; } }
  @media screen and (max-width: 767px) {
    #outer .grid-row .page-logo {
      border-top: 1px solid #bbbdc0;
      margin-bottom: 0.9375em; } }
@media screen and (max-width: 767px) {
  #outer .grid-row {
    padding: 0em 1.25em; } }
#outer .grid-row.no-gutter {
  padding: 0; }
@media screen and (max-width: 767px) {
  #outer .grid-row .grid-content.style-text-bottom-left {
    padding-bottom: 0; }
  #outer .grid-row .grid-content.style-text-top-left {
    padding-bottom: 0; }
  #outer .grid-row .grid-content.style-text-overlay-solid-background .text-block {
    background-color: transparent;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: 100%; }
  #outer .grid-row .grid-content.style-split {
    padding-bottom: 0; } }
@media screen and (max-width: 767px) {
  #outer .grid-row .mobile-6-12 {
    float: left;
    margin-right: 6.3%;
    width: 46.85%; }
    #outer .grid-row .mobile-6-12:last-of-type {
      margin-right: 0; }
    #outer .grid-row .mobile-6-12:nth-child(2n + 2) {
      margin-right: 0; } }
@media screen and (max-width: 767px) {
  #outer .grid-row .mobile-6-12 .style-bulletin {
    border: none;
    margin-bottom: 0; }
    #outer .grid-row .mobile-6-12 .style-bulletin .text-block {
      padding-bottom: 3em; } }
#outer .grid-row .about-us-mini-section .text-block {
  margin-bottom: 18px; }
#outer .about-us-mini-section {
  padding-bottom: 90px; }
  @media screen and (max-width: 767px) {
    #outer .about-us-mini-section {
      padding-bottom: 50px; } }
  @media screen and (max-width: 767px) {
    #outer .about-us-mini-section .react-single-image-carousel {
      margin-bottom: 0; } }
  #outer .about-us-mini-section.the-grounds {
    padding-bottom: 0; }
  #outer .about-us-mini-section .info {
    padding-bottom: 0 !important; }
    #outer .about-us-mini-section .info .text-block p:only-of-type {
      margin-bottom: 0; }
  @media screen and (min-width: 768px) {
    #outer .about-us-mini-section .collapsible-panel h3.overline {
      padding-right: 1.5em; } }
  #outer .about-us-mini-section .custom-slick-carousel.single-image-carousel {
    margin-bottom: 0; }
  #outer .about-us-mini-section .slick-slider {
    margin-bottom: 0; }
  #outer .about-us-mini-section .col-7-12 p:empty {
    display: none; }
  #outer .about-us-mini-section .col-7-12 p:not(:only-of-type):last-of-type {
    margin-bottom: 0; }

.clearfix:after {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both; }

.collapsible-panel {
  margin-bottom: 1em;
  position: relative; }
  .collapsible-panel h3.overline {
    border-top: 1px solid #bbbdc0;
    padding-right: 2.5em;
    width: calc(100% - 40px); }
  .collapsible-panel.col-12-12 h3.overline {
    width: auto; }
  @media screen and (min-width: 768px) {
    .collapsible-panel.hours .content-panel {
      margin-top: 0; } }
  .collapsible-panel.hours .content-panel p {
    color: #939597; }
  .collapsible-panel.hours ul {
    margin: 0;
    padding: 0; }
    @media screen and (max-width: 767px) {
      .collapsible-panel.hours ul {
        font-size: 0.8125em;
        line-height: 1.46154em;
        margin-bottom: 1.46154em; } }
    @media screen and (max-width: 767px) {
      .collapsible-panel.hours ul p {
        font-size: 13px;
        line-height: 1.46154em; } }
    .collapsible-panel.hours ul li {
      list-style: none; }
      .collapsible-panel.hours ul li .hours-spacing {
        display: block;
        float: left;
        width: 7.5em; }
  .collapsible-panel .toggle-target {
    cursor: pointer; }
  .collapsible-panel.open .content-panel {
    margin-top: 20px; }
    @media screen and (min-width: 768px) {
      .collapsible-panel.open .content-panel {
        margin-top: 25px; } }
    @media screen and (max-width: 767px) {
      .collapsible-panel.open .content-panel ul {
        font-size: 0.8125em; } }
  .collapsible-panel.open.hours .content-panel {
    margin-top: 0; }
    @media screen and (min-width: 768px) {
      .collapsible-panel.open.hours .content-panel {
        margin-top: 0; } }
  .collapsible-panel .content-panel {
    height: 0;
    overflow: hidden; }
    .collapsible-panel .content-panel p:first-of-type {
      margin-top: 0; }
    .collapsible-panel .content-panel p:last-of-type {
      margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      .collapsible-panel .content-panel p:first-of-type {
        margin-top: 1em; }
      .collapsible-panel .content-panel p:last-of-type {
        margin-bottom: 0; } }
  .collapsible-panel .no-subtitle .content-panel p:first-of-type {
    margin-top: 1.66667em; }
  .collapsible-panel.open .content-panel {
    height: auto;
  /*margin-bottom: 1em;*/ }
  @media screen and (max-width: 767px) {
    .collapsible-panel {
      height: auto;
      float: left;
      width: 100%; } }
  .collapsible-panel.open {
    height: auto !important; }
    .collapsible-panel.open .toggle-button {
      top: 16px;
      transform: rotate(180deg); }
      @media screen and (max-width: 767px) {
        .collapsible-panel.open .toggle-button {
          top: 12px; } }
  .collapsible-panel .toggle-button {
    background: url("../../../../../images/bryantpark/dropdown-arrow.svg");
    background-repeat: no-repeat;
    cursor: pointer;
    height: 24px;
    position: absolute;
    right: 1px;
    text-align: right;
    top: 24px;
    width: 24px; }
    @media screen and (max-width: 767px) {
      .collapsible-panel .toggle-button {
        height: 12px;
        width: 12px;
        top: 15px; } }
  .collapsible-panel.no-subtitle {
    height: 3em; }
    @media screen and (max-width: 767px) {
      .collapsible-panel.no-subtitle {
        height: 2em !important; } }
    @media screen and (max-width: 767px) {
      .collapsible-panel.no-subtitle .toggle-button {
        top: 16px; } }
    @media screen and (max-width: 767px) {
      .collapsible-panel.no-subtitle.open {
        height: auto !important; } }
    @media screen and (max-width: 767px) {
      .collapsible-panel.no-subtitle.open .toggle-button {
        top: 12px; } }
    @media screen and (max-width: 767px) {
      .collapsible-panel.no-subtitle.open .content-panel {
        overflow: auto; } }

.grid-content {
  padding-bottom: 1.875em; }
  .grid-content a,
  .grid-content a:active,
  .grid-content a:link,
  .grid-content a:visited {
    display: block;
    position: relative !important;
    text-decoration: none;
    border-bottom: none; }
  .grid-content > a, .grid-content > a:active, .grid-content > a:link, .grid-content > a:visited {
    display: block;
    position: relative !important;
    text-decoration: none; }
  .grid-content p a,
  .grid-content p a:active,
  .grid-content p a:link,
  .grid-content p a:visited {
    display: inline-block;
    position: relative !important;
    text-decoration: none; }
  .grid-content p > a, .grid-content p > a:active, .grid-content p > a:link, .grid-content p > a:visited {
    display: inline-block;
    position: relative !important;
    text-decoration: underline; }
  .grid-content img {
    display: block;
    width: 100%; }
  .grid-content.home-grid .text-block {
    padding-bottom: 1.125em; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid .text-block {
        border-bottom: 1px solid white;
        padding-bottom: 1.4375em !important;
        margin-bottom: 0.625em !important; } }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid .text-block .datetime {
        font-size: .7em; } }
  .grid-content.home-grid .category,
  .grid-content.home-grid .datetime,
  .grid-content.home-grid h4 {
    color: white; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid .category,
      .grid-content.home-grid .datetime,
      .grid-content.home-grid h4 {
        color: black; } }
  @media screen and (max-width: 767px) {
    .grid-content.home-grid .category {
      display: block;
      margin-top: 1.77778em; } }
  .grid-content.home-grid h4 {
    margin-bottom: 0.09091em;
    margin-top: 0.27273em; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid h4 {
        font-size: 1em;
        line-height: 1.25em;
        margin-top: 0.375em; }
        .grid-content.home-grid h4.no-category {
          margin-top: 18px; } }
  .grid-content.home-grid.style-text-bottom-left .category:before {
    background: #fff;
    content: '';
    height: 2px;
    position: absolute;
    top: -20px;
    width: 4.15em; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid.style-text-bottom-left .category:before {
        content: none; } }
  .grid-content.home-grid.style-text-bottom-left .text-block {
    bottom: 0;
    left: 0; }
  .grid-content.home-grid.style-text-overlay-solid-background .text-block {
    padding-top: .75em; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid.style-text-overlay-solid-background .text-block {
        padding-top: 0;
        width: 100%;
        max-width: 100%; } }
  .grid-content.home-grid.style-text-overlay-solid-background .category:before {
    content: none; }
  .grid-content.home-grid.style-text-overlay-solid-background .datetime,
  .grid-content.home-grid.style-text-overlay-solid-background h4 {
    color: black; }
  .grid-content.home-grid.style-text-overlay-solid-background .category {
    color: #939598; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid.style-text-overlay-solid-background .category {
        color: black; } }
  .grid-content.home-grid.style-split .datetime,
  .grid-content.home-grid.style-split h4 {
    color: black; }
    @media (min-width: 768px) and (max-width: 1279px) {
      .grid-content.home-grid.style-split .datetime,
      .grid-content.home-grid.style-split h4 {
        color: #fff !important; } }
  .grid-content.home-grid.style-split .category {
    color: #939598; }
    @media (min-width: 768px) and (max-width: 1279px) {
      .grid-content.home-grid.style-split .category {
        color: #fff !important; } }
  .grid-content.home-grid.style-split .text-block {
    padding-top: .75em; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid.style-split .text-block {
        padding-top: 0; } }
  .grid-content.home-grid.style-text-top-left .text-block {
    padding-top: 1.125em; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid.style-text-top-left .text-block {
        padding-top: 0; } }
  .grid-content.home-grid.style-text-top-left .content-flag {
    bottom: 2em;
    top: inherit; }
    @media screen and (max-width: 767px) {
      .grid-content.home-grid.style-text-top-left .content-flag {
        bottom: inherit;
        top: 2em; } }
  .grid-content.feature {
    float: left;
    margin-bottom: 2.45em;
    padding-bottom: 1.35em;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .grid-content.feature {
        margin-bottom: 0;
        margin-top: 0;
        padding-bottom: 32px; } }
    .grid-content.feature .text-block {
      float: left;
      max-width: 660px; }
      @media screen and (max-width: 767px) {
        .grid-content.feature .text-block p:empty {
          display: none; } }
      .grid-content.feature .text-block.right {
        float: left;
        margin-left: 160px;
        max-width: 380px; }
        .grid-content.feature .text-block.right.col-4-12 {
          float: right;
          margin-left: 0; }
          @media screen and (max-width: 767px) {
            .grid-content.feature .text-block.right.col-4-12 {
              max-width: 100%; } }
        .grid-content.feature .text-block.right .title {
          font-family: "ObjektivMk1_Md", Georgia, serif;
          font-weight: normal;
          margin-bottom: .3em; }
          @media screen and (max-width: 767px) {
            .grid-content.feature .text-block.right .title {
              margin-bottom: 0;
              margin-top: 1.25em; } }
        .grid-content.feature .text-block.right ul {
          list-style: none;
          margin: 0;
          margin-bottom: 1.25em;
          padding-left: 0; }
          @media screen and (max-width: 767px) {
            .grid-content.feature .text-block.right ul {
              font-size: .75em;
              line-height: 1.225em;
              margin-top: .4em; } }
    @media screen and (max-width: 767px) {
      .grid-content.feature img {
        margin-bottom: 0; } }

.style-bulletin {
  max-width: 280px; }
  @media screen and (max-width: 767px) {
    .style-bulletin {
      border-bottom: 1px solid white;
      padding-bottom: 1.5em;
      margin-bottom: .65em;
      max-width: 100%; } }
  .style-bulletin span.category,
  .style-bulletin .text-block {
    background: #fff; }
  .style-bulletin .category {
    color: #939598;
    display: inline-block;
    padding: 1.2em 1.2em 0 1.2em; }
    @media screen and (min-width: 768px) {
      .style-bulletin .category {
        padding: 1.3em 3.5em 0 2.4em; } }
  .style-bulletin h4 {
    margin: 0 0 .25em 0; }
    @media screen and (max-width: 767px) {
      .style-bulletin h4 {
        font-size: 1.375em; } }
  .style-bulletin .text-block {
    margin-top: -.25em;
    padding: 1.1em .85em .85em .85em; }
    @media screen and (max-width: 767px) {
      .style-bulletin .text-block {
        font-size: .75em;
        line-height: 1.1em;
        padding-bottom: 2.25em; } }
    @media screen and (min-width: 768px) {
      .style-bulletin .text-block {
        padding: 1.15em 1.4em 1em 1.4em; } }
  .style-bulletin img {
    border-radius: 100%;
    display: block;
    height: 60px;
    margin-top: 1.5em;
    width: 60px; }
    @media screen and (min-width: 768px) {
      .style-bulletin img {
        height: 120px;
        margin-top: 1.1em;
        width: 120px; } }

.style-text-bottom-left h1,
.style-text-bottom-left h2,
.style-text-bottom-left p,
.style-text-top-left h1,
.style-text-top-left h2,
.style-text-top-left p {
  color: #fff; }
.style-text-bottom-left .text-block,
.style-text-top-left .text-block {
  box-sizing: border-box;
  padding: 0 1.3em 0 1.3em;
  position: absolute;
  width: 100%; }
  @media screen and (max-width: 767px) {
    .style-text-bottom-left .text-block,
    .style-text-top-left .text-block {
      padding: 0;
      position: relative; }
      .style-text-bottom-left .text-block h1,
      .style-text-top-left .text-block h1 {
        color: black;
        font-size: 1em;
        margin-top: .5em; }
      .style-text-bottom-left .text-block h2,
      .style-text-top-left .text-block h2 {
        color: black !important;
        font-size: .6em;
        padding-top: 1em; }
        .style-text-bottom-left .text-block h2:before,
        .style-text-top-left .text-block h2:before {
          content: none; }
      .style-text-bottom-left .text-block .datetime,
      .style-text-top-left .text-block .datetime {
        font-size: .7em; } }

.style-text-top-left .text-block {
  left: 0;
  top: 0; }
  @media screen and (min-width: 768px) {
    .style-text-top-left .text-block {
      top: -.3em; } }

.style-text-bottom-left h2:before {
  background: #fff;
  content: '';
  height: 2px;
  position: absolute;
  top: 0;
  width: 4.15em; }
.style-text-bottom-left.style-text-overlay-solid-background h1,
.style-text-bottom-left.style-text-overlay-solid-background h2,
.style-text-bottom-left.style-text-overlay-solid-background p {
  color: #000; }
.style-text-bottom-left.style-text-overlay-solid-background .text-block {
  background: #fff;
  padding-right: 3.1em;
  margin: 1.3em;
  width: auto; }
  .style-text-bottom-left.style-text-overlay-solid-background .text-block h2 {
    color: #939598; }

.style-template-feature {
  padding-bottom: 3.75em; }
  .style-template-feature a {
    text-decoration: none !important; }
  @media screen and (max-width: 767px) {
    .style-template-feature.desktop-crop {
      display: none; } }
  @media screen and (min-width: 768px) {
    .style-template-feature.mobile-crop {
      display: none; } }
  .style-template-feature p {
    margin-bottom: .85em; }
  @media screen and (min-width: 768px) {
    .style-template-feature .grid-row.mobile {
      display: none; } }
  @media screen and (max-width: 767px) {
    .style-template-feature .grid-row.desktop {
      display: none; } }
  .style-template-feature .text-block {
    bottom: 1.25em;
    left: 1.25em;
    max-width: 385px;
    padding: 0em 1.25em; }
    @media screen and (max-width: 767px) {
      .style-template-feature .text-block {
        float: left;
        left: auto;
        margin-bottom: 0;
        padding: 1.25em !important;
        right: auto; } }
    .style-template-feature .text-block .category {
      color: #939597;
      display: block;
      margin-bottom: -1.33333em;
      padding-top: 2.66667em; }
      @media screen and (max-width: 767px) {
        .style-template-feature .text-block .category {
          color: #000;
          display: block;
          margin-bottom: 0;
          padding-top: 0; } }
    .style-template-feature .text-block h3 {
      margin-bottom: 1.03704em;
      margin-top: 0.74074em; }
      @media screen and (max-width: 767px) {
        .style-template-feature .text-block h3 {
          font-size: 1.25em;
          margin-bottom: 0;
          margin-top: .3em; } }

.style-split {
  height: auto; }
  @media screen and (min-width: 768px) {
    .style-split {
      height: 17.5em; } }
  .style-split a {
    height: 100%; }
    @media screen and (max-width: 767px) {
      .style-split a img {
        width: 100%; }
      .style-split a .text-block {
        background: transparent;
        padding: 0;
        position: relative;
        width: 100%; }
        .style-split a .text-block h1 {
          font-size: 1em;
          margin-top: .5em; }
        .style-split a .text-block h2 {
          color: black;
          padding-top: 1em; }
        .style-split a .text-block .datetime {
          color: black;
          font-size: .7em; } }
  .style-split img {
    width: 75%; }
  .style-split .text-block {
    background: #fff;
    bottom: 0;
    box-sizing: border-box;
    padding: 0 1.3em 0 1.3em;
    position: absolute;
    right: 0;
    width: 73%;
    z-index: 1; }
    .style-split .text-block h2 {
      color: #939598; }
  @media (min-width: 768px) and (max-width: 1279px) {
    .style-split {
      height: auto; }
      .style-split img {
        width: 100%; }
      .style-split .text-block {
        background: transparent;
        box-sizing: border-box;
        color: white;
        padding: 0 1.3em 0 1.3em;
        position: absolute;
        top: 0;
        width: 100%; }
        .style-split .text-block h1,
        .style-split .text-block h2,
        .style-split .text-block p {
          color: white; } }

.template-feature:before {
  content: '';
  display: block;
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 15px;
  height: 2px;
  background-color: black; }
  @media screen and (max-width: 767px) {
    .template-feature:before {
      width: calc(100% - 40px); } }
.template-feature .template-feature-background {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  @media screen and (max-width: 767px) {
    .template-feature .template-feature-background {
      position: relative; } }
.template-feature.full-width p.photo-credit {
  text-shadow: 0px 0px 2px #a2a2a2;
  color: white;
  left: 3em; }
  @media screen and (max-width: 767px) {
    .template-feature.full-width p.photo-credit {
      color: black;
      left: 1.5em; } }
.template-feature img.mask {
  display: block;
  margin: auto;
  max-height: 760px;
  width: 100%; }
@media screen and (max-width: 767px) {
  .template-feature .grid-row {
    float: left;
    padding-left: 0 !important; } }

.restaurant {
  padding-bottom: 4.5em; }
  @media screen and (max-width: 767px) {
    .restaurant {
      padding-bottom: 3em; } }
  .restaurant a {
    border-bottom: 1px solid #000;
    padding-bottom: 0;
    text-decoration: none; }
    .restaurant a:hover {
      padding-bottom: 0;
      text-decoration: none;
      border-bottom: 1px solid #fff; }
  .restaurant .hours {
    float: left;
    font-size: 1.125em;
    line-height: 1.38889em;
    list-style: none;
    margin-top: .1em;
    padding-left: 0;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .restaurant .hours {
        font-size: 0.8125em;
        line-height: 1.46154em; } }
  .restaurant figure figcaption {
    margin-top: .7em; }
  @media screen and (max-width: 767px) {
    .restaurant figure img {
      margin-top: .3em; } }
  @media screen and (max-width: 767px) {
    .restaurant .image-slider {
      margin: 0;
      max-width: 46%; } }
  .restaurant .image-slider .arrows {
    margin-top: 5px; }
    .restaurant .image-slider .arrows .button-divide {
      height: 15px;
      border-left: 1px solid black;
      display: inline-block;
      margin-left: 5px;
      margin-right: 6px; }
    .restaurant .image-slider .arrows button {
      background: transparent;
      cursor: pointer;
      outline: none; }
      .restaurant .image-slider .arrows button:last-of-type {
        padding-right: 0; }

.restaurant h2,
.info h2 {
  padding-top: 0.5em; }
  @media screen and (max-width: 767px) {
    .restaurant h2,
    .info h2 {
      padding-bottom: 0.35714em; } }

.feature .text-block p:first-of-type {
  margin-top: 1.77778em; }
.feature .text-block p:empty {
  display: block; }
@media screen and (min-width: 768px) {
  .feature .text-block p {
    margin-bottom: 13px;
    margin-top: 0; } }
@media screen and (max-width: 767px) {
  .feature .text-block p {
    margin-top: 1em;
    margin-bottom: 1em; } }
.feature .text-block p a {
  border-bottom: 1px solid #000;
  text-decoration: none; }
  .feature .text-block p a:hover {
    text-decoration: none;
    border-bottom: 1px solid #fff; }
@media screen and (max-width: 767px) {
  .feature h2.overline {
    padding-bottom: 0.35714em; } }

.info-block {
  padding-bottom: 5.625em; }
  .info-block .overline {
    padding-bottom: 0.8em; }
  .info-block .no-subtitle.info-panel.open .overline {
    padding-bottom: 0; }
  .info-block p {
    font-size: 1.125em; }
    @media screen and (max-width: 767px) {
      .info-block p {
        font-size: .85em;
        line-height: 1.4em;
        margin-top: 0; } }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
#page-header {
  height: 1.9em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101; }
  #page-header .logo a {
    border-bottom: none; }
  @media screen and (max-width: 767px) {
    #page-header.mobile {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 99; }
    #page-header .logo {
      float: left; } }
  @media screen and (min-width: 768px) {
    #page-header {
      height: 2.8em; } }
  #page-header .logotype {
    padding-bottom: 0.5em;
    padding-top: 0.9em;
    width: 10.125em; }
    @media screen and (max-width: 767px) {
      #page-header .logotype {
        font-size: .75em; } }
    @media screen and (min-width: 768px) {
      #page-header .logotype {
        padding-top: 1.2em; } }
  #page-header #main-navigation {
    font-family: "ObjektivMk1_Md", Georgia, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.9375em; }
    @media screen and (max-width: 767px) {
      #page-header #main-navigation {
        float: right; } }
    #page-header #main-navigation .mobile-navigation {
      display: none; }
      @media screen and (max-width: 767px) {
        #page-header #main-navigation .mobile-navigation {
          display: block; }
          #page-header #main-navigation .mobile-navigation .toggle {
            margin-top: 0;
            padding-top: .2em;
            text-decoration: none; }
            #page-header #main-navigation .mobile-navigation .toggle .icon {
              background: url("../../../../../images/bryantpark/mobile-close-icon.svg");
              background-repeat: no-repeat;
              cursor: pointer;
              display: none;
              height: 8px;
              margin-top: 8px;
              opacity: 1;
              transition: 0.325s all;
              width: 8px; }
              #page-header #main-navigation .mobile-navigation .toggle .icon:hover {
                opacity: 0.5; }
          #page-header #main-navigation .mobile-navigation .text {
            letter-spacing: .05em; } }
    #page-header #main-navigation .links ul {
      padding: 0; }
    @media screen and (max-width: 767px) {
      #page-header #main-navigation .links {
        display: none; }
        #page-header #main-navigation .links ul {
          margin: 0;
          padding: 0;
          max-height: 100%;
          max-width: 100%;
          width: 100%;
          height: 100%;
          right: 0;
          bottom: 0;
          left: 0;
          top: 0;
          padding: .7em .6em;
          position: relative;
          overflow-y: auto;
          overflow-x: hidden;}
          #page-header #main-navigation .links ul li {
            float: left;
            margin: 0;
            max-width: 100%;
            padding: 0;
            text-align: left;
            width: 100%; } }
    @media screen and (max-width: 767px) {
      #page-header #main-navigation .desktop-navigation {
        display: none; } }
    #page-header #main-navigation a,
    #page-header #main-navigation a:visited,
    #page-header #main-navigation a:hover {
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
      color: #fff;
      text-decoration: none;
      transition: border-color .325s; }
      #page-header #main-navigation a:hover,
      #page-header #main-navigation a:visited:hover,
      #page-header #main-navigation a:hover:hover {
        border-bottom: 1px solid white;
        transition: border-color .325s; }
    #page-header #main-navigation ul {
      margin: 1em 0 0 0;
      text-align: right; }
      #page-header #main-navigation ul li {
        display: inline-block;
        margin-left: 1.25em;
        vertical-align: top;}
        #page-header #main-navigation ul.submenu li{
          display:block;
          margin-left: 0;
          padding: 5px;
        }
        #page-header #main-navigation ul.submenu{
          display:none;
          position:absolute;
          right: 0;
          top:10px;
          background: rgba(0, 54, 97, 0.7) !important;
        }
        #page-header #main-navigation li.has-submenu{
          position:relative;
          padding: 1px 2.5px 20px 2.5px;
        }
        #page-header #main-navigation li.has-submenu:hover{
          background:transparent;
        }
        #page-header #main-navigation li.has-submenu:hover ul.submenu{
          display:block;
        }
  #page-header.mobile #main-navigation .mobile-navigation .text {
    display: none; }
  #page-header.mobile #main-navigation .mobile-navigation .icon {
    display: block; }
  #page-header.mobile #main-navigation .links {
    bottom: 0;
    display: block;
    font-size: 2.25em;
    height: 100%;
    left: 0;
    line-height: 1.5em;
    max-height: 100%;
    max-width: 100%;
    position: fixed;
    right: 0;
    top: 30px;
    width: 100%;
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
    /*background-color: rgba(205, 213, 112, 0.87) !important;*/
    opacity: 1 !important;
    scroll-behavior: smooth;}

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
#page-footer {
  padding: 0 0 1.25em 0; }
  @media screen and (min-width: 768px) {
    #page-footer {
      padding-top: 1.625em;
      padding-bottom: 1.625em; } }
  @media screen and (max-width: 767px) {
    #page-footer .grid-row {
      padding-left: 1.25em;
      padding-right: 1.25em; } }
  #page-footer a,
  #page-footer a:active,
  #page-footer a:visited,
  #page-footer a:hover {
    border-bottom: none;
    color: #000;
    line-height: 1.15em;
    text-decoration: none; }
    @media (min-width: 768px) and (max-width: 1279px) {
      #page-footer a,
      #page-footer a:active,
      #page-footer a:visited,
      #page-footer a:hover {
        line-height: 14px; } }
    @media screen and (max-width: 767px) {
      #page-footer a,
      #page-footer a:active,
      #page-footer a:visited,
      #page-footer a:hover {
        line-height: 1.3em;
        font-size: 1em; } }
  #page-footer .custom-grid {
    float: right;
    width: 100%; }
    #page-footer .custom-grid:before, #page-footer .custom-grid:after {
      content: "";
      display: table; }
    #page-footer .custom-grid:after {
      clear: both; }
    #page-footer .custom-grid {
      *zoom: 1; }
    @media screen and (min-width: 768px) {
      #page-footer .custom-grid {
        max-width: 740px; } }
    #page-footer .custom-grid .custom-column {
      float: left;
      margin-right: 2.28125em;
      width: 7.3125em; }
      #page-footer .custom-grid .custom-column:last-of-type {
        margin-right: 0; }
      @media screen and (max-width: 767px) {
        #page-footer .custom-grid .custom-column {
          border-top: 0.0625em solid black;
          margin: 0;
          margin-bottom: .7em;
          margin-right: 8%;
          padding-top: 0.5em;
          width: 46%; }
          #page-footer .custom-grid .custom-column:nth-child(2n + 2) {
            margin-right: 0; }
          #page-footer .custom-grid .custom-column:last-child {
            margin-bottom: 0; } }
      @media (min-width: 768px) and (max-width: 1100px) {
        #page-footer .custom-grid .custom-column {
          max-width: 14%; } }
  #page-footer .logo {
    margin-top: 1.25em;
    width: 8.125em; }
    @media screen and (max-width: 767px) {
      #page-footer .logo {
        margin-bottom: 1em; } }
    @media screen and (min-width: 768px) {
      #page-footer .logo {
        margin-top: 2em;
        width: 12.8125em; } }
  #page-footer .lower {
    border-top: 0.0625em solid black;
    margin: 0.875em 0 0 0;
    padding: 0.625em 0 0 0; }
    @media screen and (min-width: 768px) {
      #page-footer .lower {
        margin: 1.15em 0 0 0; }
        #page-footer .lower .datetime {
          float: left;
          margin-top: 8px;
          margin-right: 12px; } }
    #page-footer .lower .social-link {
      display: block;
      float: left;
      margin: 0 0.625em 0 0;
      width: 1.25em; }
      @media screen and (min-width: 768px) {
        #page-footer .lower .social-link {
          margin-top: 0.375em; } }
      #page-footer .lower .social-link:last-of-type {
        margin-right: 0; }
    #page-footer .lower .custom-grid {
      display: table; }
      #page-footer .lower .custom-grid p {
        float: left; }
        @media screen and (max-width: 767px) {
          #page-footer .lower .custom-grid p {
            font-size: 0.75em;
            margin: 1em 0 0.625em 0; } }
        @media screen and (min-width: 768px) {
          #page-footer .lower .custom-grid p {
            margin: 0.5em 0 0 0; } }
      #page-footer .lower .custom-grid input {
        background-color: rgba(255, 255, 255, 0.5);
        border: 2px solid rgba(255, 255, 255, 0);
        color: black;
        float: left;
        margin: .3em 0 0 0;
        padding: .6em .8em;
        position: relative;
        top: -2px;
        width: calc(100% - 130px); }
        #page-footer .lower .custom-grid input:focus {
          border: 2px solid rgba(255, 255, 255, 0.75);
          outline: none; }
        @media screen and (max-width: 767px) {
          #page-footer .lower .custom-grid input {
            font-size: 0.75em; } }
        @media screen and (min-width: 768px) {
          #page-footer .lower .custom-grid input {
            margin: 0 0 0 1.8125em;
            padding: 0.75em 1.25em;
            width: calc(100% - 110px - 320px); } }
        @media (min-width: 768px) and (max-width: 1100px) {
          #page-footer .lower .custom-grid input {
            width: calc(100% - 110px - 300px);
            margin-left: 0.625em; } }
        #page-footer .lower .custom-grid input::-webkit-input-placeholder {
          color: black;
          font-size: 0.875em; }
          @media screen and (min-width: 768px) {
            #page-footer .lower .custom-grid input::-webkit-input-placeholder {
              font-size: 1.25em; } }
        #page-footer .lower .custom-grid input:-moz-placeholder {
          color: black;
          font-size: 0.875em; }
          @media screen and (min-width: 768px) {
            #page-footer .lower .custom-grid input:-moz-placeholder {
              font-size: 1.25em; } }
        #page-footer .lower .custom-grid input::-moz-placeholder {
          color: black;
          font-size: 0.875em; }
          @media screen and (min-width: 768px) {
            #page-footer .lower .custom-grid input::-moz-placeholder {
              font-size: 1.25em; } }
        #page-footer .lower .custom-grid input:-ms-input-placeholder {
          color: black;
          font-size: 0.875em; }
          @media screen and (min-width: 768px) {
            #page-footer .lower .custom-grid input:-ms-input-placeholder {
              font-size: 1.25em; } }
      #page-footer .lower .custom-grid .signup-button {
        background: url("../../../../../images/social_icons/signup-button-desktop.svg");
        background-repeat: no-repeat;
        background-size: cover;
        font-size: 9px;
        float: right;
        height: 34px;
        line-height: 13px;
        margin: 3px 0 0 0;
        padding: .125em 0 0 0;
        text-align: center;
        width: 94px; }
        @media screen and (min-width: 768px) {
          #page-footer .lower .custom-grid .signup-button {
            margin: 0 0 0 0; } }
  #page-footer nav h1 {
    line-height: 1.21429em;
    margin-bottom: 0.64286em;
    font-family: "ObjektivMk1_Bd", Georgia, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.875em; }
    @media screen and (max-width: 767px) {
      #page-footer nav h1 {
        font-size: 0.71875em; } }
    @media (min-width: 768px) and (max-width: 1100px) {
      #page-footer nav h1 {
        white-space: nowrap; } }
  #page-footer nav ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    @media screen and (max-width: 767px) {
      #page-footer nav ul {
        font-size: 0.6875em; } }
    #page-footer nav ul li {
      margin: 0 0 9px 0;
      padding: 0;
      font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: 0.875em;
      line-height: 17px; }
      @media (min-width: 768px) and (max-width: 1279px) {
        #page-footer nav ul li {
          font-size: 11px !important; } }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
.carousel-container {
  position: relative; }

.carousel {
  float: left;
  margin-bottom: 1.5em;
  padding: 0;
  *zoom: 1;
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2.5em;
  padding-right: 2.5em; }
  .carousel:before, .carousel:after {
    content: '';
    display: table; }
  .carousel:after {
    clear: both; }
  .carousel.events-carousel {
    margin-bottom: 0;
    padding: 0; }
    @media screen and (min-width: 768px) {
      .carousel.events-carousel .slick-next {
        border-left: 1px solid grey;
        right: 0; } }
    .carousel.events-carousel .slick-slide {
      position: relative; }
    @media screen and (min-width: 768px) {
      .carousel.events-carousel .slick-next,
      .carousel.events-carousel .slick-prev {
        top: 33px;
        width: 45px; } }
    @media screen and (min-width: 768px) {
      .carousel.events-carousel .slick-next:before,
      .carousel.events-carousel .slick-prev:before {
        background: url("../../../../../images/bryantpark/slideshow-arrow-desktop.svg");
        background-repeat: no-repeat;
        background-size: cover;
        border: none;
        content: "";
        display: block;
        font-size: 1em;
        height: 20px;
        width: 25px; } }
    .carousel.events-carousel .slick-next:before {
      margin-left: 12px; }
    @media screen and (min-width: 768px) {
      .carousel.events-carousel .slick-prev {
        right: 33px; } }
    .carousel.events-carousel .slick-prev:before {
      margin-left: -10px;
      transform: rotate(180deg); }
    @media screen and (max-width: 767px) {
      .carousel.events-carousel .slick-disabled {
        opacity: .3; }
      .carousel.events-carousel .slick-next {
        background: url("../../../../../images/bryantpark/slideshow-arrow.svg");
        background-repeat: no-repeat;
        height: 14px;
        right: -16px;
        width: 14px; }
        .carousel.events-carousel .slick-next:before {
          content: none; }
      .carousel.events-carousel .slick-prev {
        background: url("../../../../../images/bryantpark/slideshow-arrow.svg");
        background-repeat: no-repeat;
        height: 14px;
        left: -16px;
        right: unset;
        transform: rotate(180deg);
        width: 14px; }
        .carousel.events-carousel .slick-prev:before {
          content: none; } }
    .carousel.events-carousel ol {
      float: left; }
      @media screen and (max-width: 767px) {
        .carousel.events-carousel ol {
          margin-top: 0; } }
    .carousel.events-carousel li, .carousel.events-carousel section.slick-slide {
      margin-bottom: 2.3em; }
      .carousel.events-carousel li:last-of-type, .carousel.events-carousel section.slick-slide:last-of-type {
        margin-right: 0; }
      .carousel.events-carousel li a, .carousel.events-carousel section.slick-slide a {
        text-decoration: none; }
      .carousel.events-carousel li > div, .carousel.events-carousel section.slick-slide > div {
        margin-top: .4em; }
      .carousel.events-carousel li p, .carousel.events-carousel section.slick-slide p {
        margin: 0; }
        @media screen and (max-width: 767px) {
          .carousel.events-carousel li p.datetime, .carousel.events-carousel section.slick-slide p.datetime {
            font-size: .65em; } }
        .carousel.events-carousel li p span, .carousel.events-carousel section.slick-slide p span {
          margin: 0 !important; }
    @media screen and (min-width: 768px) {
      .carousel.events-carousel section.slick-slide a {
        display: block;
        margin-right: 30px; } }
    @media screen and (max-width: 767px) {
      .carousel.events-carousel section.slick-slide {
        margin-bottom: 0;
        margin-right: 0;
        max-width: calc(100vw - 40px); }
        .carousel.events-carousel section.slick-slide.slick-active {
          margin-bottom: 2.8125em; } }
    @media screen and (max-width: 767px) {
      .carousel.events-carousel section.slick-slide h1 {
        margin-top: .25em; } }
    @media screen and (max-width: 767px) {
      .carousel.events-carousel section.slick-slide h2 {
        font-size: .55em;
        letter-spacing: .1em;
        margin-bottom: 0;
        margin-top: 1.25em; } }
    @media screen and (max-width: 767px) {
      .carousel.events-carousel section.slick-slide p {
        font-size: .75em;
        margin-top: .45em; } }
    .carousel.events-carousel .slick-slide {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 19.4%;
      margin-left: 0%;
      margin-right: 0.75%;
      margin: 0; }
      .carousel.events-carousel .slick-slide:before, .carousel.events-carousel .slick-slide:after {
        content: '';
        display: table; }
      .carousel.events-carousel .slick-slide:after {
        clear: both; }
      .carousel.events-carousel .slick-slide:last-child {
        margin-right: 0%; }
  .carousel.follows-feature {
    margin-top: 3.5em; }
    @media screen and (max-width: 767px) {
      .carousel.follows-feature {
        margin-top: inherit; } }
  .carousel.programs {
    border-bottom: 2px solid black;
    display: table;
    margin-bottom: 0;
    padding-bottom: 4.125em;
    padding-left: 0;
    padding-right: 0; }
    @media screen and (max-width: 767px) {
      .carousel.programs {
        padding-bottom: 4.8em; } }
    .carousel.programs li {
      border: none;
      margin-bottom: 1.375em;
      margin-top: 1.375em; }
      @media screen and (max-width: 767px) {
        .carousel.programs li {
          border-top: 1px solid black;
          margin-bottom: .6em;
          margin-top: .6em;
          padding-top: .5em; } }
      @media screen and (max-width: 767px) {
        .carousel.programs li:last-of-type {
          border-bottom: none;
          padding-bottom: 1.25em; } }
      @media screen and (max-width: 767px) {
        .carousel.programs li img {
          float: left;
          margin-right: 1.25em;
          width: 46%; } }
      @media screen and (max-width: 767px) {
        .carousel.programs li h5 {
          font-size: 1em;
          line-height: 1.375em; } }
    .carousel.programs .variable-carousel {
      margin-bottom: 4em; }
      .carousel.programs .variable-carousel:last-of-type {
        margin-bottom: 0; }
  .carousel.cycle-3 li {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.8%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .carousel.cycle-3 li:before, .carousel.cycle-3 li:after {
      content: '';
      display: table; }
    .carousel.cycle-3 li:after {
      clear: both; }
    .carousel.cycle-3 li:nth-child(3n) {
      margin-right: 0%;
      float: right; }
    .carousel.cycle-3 li:nth-child(3n + 1) {
      clear: both; }
  @media screen and (max-width: 767px) {
    .carousel.cycle-4 ol {
      width: 100%; } }
  .carousel.cycle-4 li {
    position: relative;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 23.275%;
    margin-left: 0%;
    margin-right: 2.3%; }
    .carousel.cycle-4 li:before, .carousel.cycle-4 li:after {
      content: '';
      display: table; }
    .carousel.cycle-4 li:after {
      clear: both; }
    .carousel.cycle-4 li:nth-child(4n) {
      margin-right: 0%;
      float: right; }
    .carousel.cycle-4 li:nth-child(4n + 1) {
      clear: both; }
    @media screen and (max-width: 767px) {
      .carousel.cycle-4 li {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 100%;
        margin-left: 0%;
        margin-right: 2.3%;
        border-top: 1px solid #bbbdc0;
        width: 100% !important; }
        .carousel.cycle-4 li:before, .carousel.cycle-4 li:after {
          content: '';
          display: table; }
        .carousel.cycle-4 li:after {
          clear: both; }
        .carousel.cycle-4 li:nth-child(1n) {
          margin-right: 0%;
          float: right; }
        .carousel.cycle-4 li:nth-child(1n + 1) {
          clear: both; } }
  .carousel.cycle-4 a:hover {
    border-bottom: none; }
  @media screen and (max-width: 767px) {
    .carousel.kiosks.cycle-3 li, .carousel.amenity-events.cycle-3 li {
      width: 100%;
      display: none; }
      .carousel.kiosks.cycle-3 li:first-of-type, .carousel.amenity-events.cycle-3 li:first-of-type {
        display: block; } }
  .carousel.find-things-to-do {
    margin-bottom: 5.4em; }
    .carousel.find-things-to-do .header-row {
      margin-bottom: 0.625em;
      position: relative;
      z-index: 2; }
    .carousel.find-things-to-do .carousel ol {
      margin-top: 0; }
    .carousel.find-things-to-do .restart-link {
      display: none;
      text-decoration: underline; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .restart-link {
          display: block;
          float: right;
          font-size: 0.5625em;
          line-height: 1.44444em;
          margin-top: 0.33333em;
          min-width: 65px; } }
    .carousel.find-things-to-do .more-button {
      focus: none;
      text-align: center;
      text-transform: uppercase;
      outline: none;
      width: 100%; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .more-button {
          float: left;
          width: auto; } }
      .carousel.find-things-to-do .more-button button {
        letter-spacing: .09em;
        margin: 0;
        text-transform: uppercase;
        font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-weight: normal;
        font-style: normal;
        font-size: 0.5625em;
        line-height: 10px;
        background: url("../../../../../images/bryantpark/more-button.svg");
        background-repeat: no-repeat;
        border: none;
        height: 42px;
        text-transform: uppercase;
        width: 98px;
        cursor: pointer; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .more-button button {
            font-size: .6em;
            height: 33px;
            text-align: center;
            width: 77px; } }
    .carousel.find-things-to-do .grid-row {
      text-align: left; }
    @media screen and (max-width: 767px) {
      .carousel.find-things-to-do {
        margin-bottom: 2.75em; } }
    .carousel.find-things-to-do h1.lead-title {
      margin-top: 0; }
    .carousel.find-things-to-do .carousel {
      padding-left: 0;
      padding-right: 0; }
    .carousel.find-things-to-do h2.overline {
      padding-bottom: 0.75em;
      padding-top: 0.4em; }
    .carousel.find-things-to-do .go-button {
      letter-spacing: .09em;
      margin: 0;
      text-transform: uppercase;
      font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: 0.5625em;
      line-height: 10px;
      background: url("../../../../../images/bryantpark/search-button.svg");
      background-repeat: no-repeat;
      background-size: cover;
      border: none;
      box-shadow: none;
      float: right;
      height: 4.75em;
      margin-top: -1.5em;
      outline: none;
      text-align: center;
      text-transform: uppercase;
      width: 5.25em;
      cursor: pointer; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .go-button.desktop-search-button {
          display: none; } }
    .carousel.find-things-to-do ol {
      margin-bottom: .4em; }
      .carousel.find-things-to-do ol li {
        margin-bottom: 2.2em; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do ol li {
            margin-bottom: 1.25em; } }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do ol li img {
            float: left;
            max-width: 46%;
            margin-right: 1.25em; } }
        .carousel.find-things-to-do ol li h2 {
          margin-top: 1.2em; }
        .carousel.find-things-to-do ol li h5 {
          margin-bottom: 0.30769em; }
  .carousel.programs .title-row {
    margin-bottom: 0; }
  .carousel .category {
    color: #939597; }
  @media screen and (max-width: 767px) {
    .carousel .carousel-subtitle:last-of-type {
      padding-bottom: 2.5em; } }
  @media screen and (max-width: 767px) {
    .carousel .carousel-subtitle {
      padding-bottom: 0 !important; } }
  .carousel .carousel-subtitle p {
    margin-bottom: 0;
    margin-top: .25em; }
  .carousel .carousel-subtitle h3.overline {
    border-top: 1px solid #bbbdc0; }
    @media screen and (max-width: 767px) {
      .carousel .carousel-subtitle h3.overline {
        margin-bottom: 1.25em; } }
  .carousel .arrows {
    text-align: right; }
  .carousel select {
    width: 100%; }
  .carousel .slick-slider {
    margin-bottom: 3.125em;
    position: unset; }
    @media screen and (max-width: 767px) {
      .carousel .slick-slider {
        margin-bottom: 5px;
        position: relative; } }
  .carousel .slick-list {
    position: unset; }
  .carousel .slick-next,
  .carousel .slick-prev {
    line-height: initial;
    margin: 0;
    position: absolute;
    top: 10px; }
    .carousel .slick-next::before,
    .carousel .slick-prev::before {
      color: black;
      font-family: initial;
      font-size: 30px; }
    @media screen and (max-width: 767px) {
      .carousel .slick-next,
      .carousel .slick-prev {
        top: 45%;
        z-index: 1; } }
  .carousel .slick-next {
    left: unset;
    right: 20px; }
    .carousel .slick-next::before {
      border-left: 1px solid gray;
      padding-left: 5px; }
  .carousel .slick-prev {
    left: unset;
    right: 55px; }
    .carousel .slick-prev::before {
      border-right: 1px solid gray;
      padding-right: 5px; }
    @media screen and (max-width: 767px) {
      .carousel .slick-prev {
        left: 5px;
        right: unset; } }
  .carousel ol {
    float: left;
    margin: 0;
    padding: 0;
    width: 100%; }
    .carousel ol li a {
      border-bottom: none;
      text-decoration: none; }
  .carousel li, .carousel .slide {
    margin-bottom: 2em;
    display: block;
    list-style-type: none; }
    .carousel li a, .carousel .slide a {
      text-decoration: none;
      border-bottom: none; }
    .carousel li img, .carousel .slide img {
      display: inline-block;
      margin: 0;
      max-width: 100%;
      top: 0;
      width: 100%; }
    .carousel li .category, .carousel .slide .category {
      display: block;
      margin-top: 1.33333em; }
    .carousel li h4, .carousel .slide h4 {
      margin: 0.36364em 0 0.18182em 0; }
      @media screen and (max-width: 767px) {
        .carousel li h4, .carousel .slide h4 {
          font-size: inherit; } }
  .carousel .title-row {
    margin-bottom: 1.875em;
    position: relative; }
    @media screen and (max-width: 767px) {
      .carousel .title-row {
        margin-bottom: 1.25em;
        position: inherit; } }
    .carousel .title-row h2 {
      border-top: 2px solid black;
      margin: 0;
      padding-bottom: 0;
      padding-top: 0.45em; }
      @media screen and (max-width: 767px) {
        .carousel .title-row h2 {
          padding-top: 0.35714em; } }
    .carousel .title-row p {
      margin: 0.375em 0px; }
    .carousel .title-row .arrows {
      position: absolute;
      right: 0;
      top: 30px; }

.image-slider {
  margin-right: 0;
  margin-left: 0;
  margin-top: 0; }
  .image-slider.no-arrow .slick-arrow {
    display: none !important; }
  @media screen and (max-width: 767px) {
    .image-slider.header-image {
      margin-bottom: 0; } }
  .image-slider figcaption {
    margin-top: 1em; }
    @media screen and (max-width: 767px) {
      .image-slider figcaption .desktop {
        display: none; } }
  .image-slider.col-5-12 {
    margin-right: 0;
    margin-left: 0; }
    @media screen and (min-width: 768px) {
      .image-slider.col-5-12 {
        float: right; } }
  @media screen and (max-width: 767px) {
    .image-slider {
      margin-left: 0;
      margin-right: 0;
      position: relative; } }
  .image-slider .arrows {
    margin-top: 5px; }
    @media screen and (max-width: 767px) {
      .image-slider .arrows {
        position: absolute;
        top: 45%; } }

.arrows {
  text-align: right; }
  .arrows button {
    background: transparent;
    border: 0;
    font-size: 1.5em; }
    .arrows button .desktop img {
      display: block;
      height: 20px;
      width: 30px; }
      @media screen and (max-width: 767px) {
        .arrows button .desktop img {
          display: none; } }
    .arrows button:first-of-type .desktop img {
      transform: rotate(180deg); }
    .arrows button.left-arrow {
      border-right: 1px solid gray; }

@media screen and (max-width: 767px) {
  .slick-slide h4 {
    font-size: 1em;
    line-height: 1.375em; } }
.slick-slide .category {
  color: #939597; }

@media screen and (max-width: 767px) {
  .react-single-image-carousel .slick-slider {
    margin-bottom: 0; } }

.custom-slick-carousel.with-custom-arrows .slick-disabled {
  opacity: .3; }
.custom-slick-carousel.with-custom-arrows .slick-arrow {
  z-index: 1; }
@media screen and (max-width: 767px) {
  .custom-slick-carousel.with-custom-arrows .slick-next {
    background: url("../../../../../images/bryantpark/slideshow-arrow.svg");
    background-repeat: no-repeat;
    height: 14px;
    right: -16px;
    width: 14px; }
    .custom-slick-carousel.with-custom-arrows .slick-next:before {
      content: none; } }
@media screen and (min-width: 768px) {
  .custom-slick-carousel.with-custom-arrows .slick-next {
    border-left: 1px solid grey; }
    .custom-slick-carousel.with-custom-arrows .slick-next:before {
      margin-left: 12px;
      padding-left: 5px; } }
@media screen and (max-width: 767px) {
  .custom-slick-carousel.with-custom-arrows .slick-prev {
    background: url("../../../../../images/bryantpark/slideshow-arrow.svg");
    background-repeat: no-repeat;
    height: 14px;
    left: -16px;
    right: unset;
    transform: rotate(180deg);
    width: 14px; }
    .custom-slick-carousel.with-custom-arrows .slick-prev:before {
      content: none; } }
@media screen and (min-width: 768px) {
  .custom-slick-carousel.with-custom-arrows .slick-prev:before {
    margin-left: -10px;
    transform: scaleX(-1);
    padding-right: 5px; } }
@media screen and (min-width: 768px) {
  .custom-slick-carousel.with-custom-arrows .slick-next:before,
  .custom-slick-carousel.with-custom-arrows .slick-prev:before {
    background: url("../../../../../images/bryantpark/slideshow-arrow-desktop.svg");
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    content: "";
    display: block;
    font-size: 1em;
    height: 20px;
    width: 25px; } }
.custom-slick-carousel.single-image-carousel {
  margin-left: 0;
  margin-right: 0;
  position: relative; }
  @media screen and (min-width: 768px) {
    .custom-slick-carousel.single-image-carousel .slick-prev {
      left: auto;
      top: auto;
      bottom: -5px;
      right: 33px;
      width: 45px; }
    .custom-slick-carousel.single-image-carousel .slick-next {
      top: auto;
      right: 0px;
      bottom: -5px;
      width: 45px; } }
  .custom-slick-carousel.single-image-carousel .slick-slide img {
    width: 100%; }
  @media screen and (min-width: 768px) {
    .custom-slick-carousel.single-image-carousel.smaller-size figcaption {
      margin-top: 12px; }
    .custom-slick-carousel.single-image-carousel.smaller-size .slick-arrow {
      bottom: 0; } }
@media screen and (min-width: 768px) {
  .custom-slick-carousel.events-carousel .slick-prev {
    left: auto;
    top: -50px;
    right: 33px;
    width: 45px; }
  .custom-slick-carousel.events-carousel .slick-next {
    top: -50px;
    right: 0px;
    width: 45px; } }
.custom-slick-carousel.events-carousel li, .custom-slick-carousel.events-carousel section.slick-slide {
  margin-bottom: 2.3em; }
  .custom-slick-carousel.events-carousel li:last-of-type, .custom-slick-carousel.events-carousel section.slick-slide:last-of-type {
    margin-right: 0; }
  .custom-slick-carousel.events-carousel li a, .custom-slick-carousel.events-carousel section.slick-slide a {
    display: block;
    text-decoration: none; }
  .custom-slick-carousel.events-carousel li > div, .custom-slick-carousel.events-carousel section.slick-slide > div {
    margin-top: .4em; }
  .custom-slick-carousel.events-carousel li p, .custom-slick-carousel.events-carousel section.slick-slide p {
    margin: 0; }
    @media screen and (max-width: 767px) {
      .custom-slick-carousel.events-carousel li p.datetime, .custom-slick-carousel.events-carousel section.slick-slide p.datetime {
        font-size: .65em; } }
    .custom-slick-carousel.events-carousel li p span, .custom-slick-carousel.events-carousel section.slick-slide p span {
      margin: 0 !important; }
.custom-slick-carousel.events-carousel section.slick-slide {
  margin-right: 30px;
  max-width: 380px; }
  @media screen and (max-width: 767px) {
    .custom-slick-carousel.events-carousel section.slick-slide {
      margin-bottom: 0;
      margin-right: 0;
      max-width: calc(100vw - 40px); }
      .custom-slick-carousel.events-carousel section.slick-slide.slick-active {
        margin-bottom: 1.35em; } }
  @media screen and (max-width: 767px) {
    .custom-slick-carousel.events-carousel section.slick-slide h1 {
      margin-top: .25em; } }
  @media screen and (max-width: 767px) {
    .custom-slick-carousel.events-carousel section.slick-slide h2 {
      font-size: .55em;
      letter-spacing: .1em;
      margin-bottom: 0;
      margin-top: 1.25em; } }
  @media screen and (max-width: 767px) {
    .custom-slick-carousel.events-carousel section.slick-slide p {
      font-size: .75em;
      margin-top: .45em; } }
.custom-slick-carousel.events-carousel .slick-slide {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 19.4%;
  margin-left: 0%;
  margin-right: 0.75%;
  margin: 0; }
  .custom-slick-carousel.events-carousel .slick-slide:before, .custom-slick-carousel.events-carousel .slick-slide:after {
    content: '';
    display: table; }
  .custom-slick-carousel.events-carousel .slick-slide:after {
    clear: both; }
  .custom-slick-carousel.events-carousel .slick-slide:last-child {
    margin-right: 0%; }
  .custom-slick-carousel.events-carousel .slick-slide img {
    display: inline-block;
    margin: 0;
    max-width: 100%; }
.custom-slick-carousel.events-carousel ol {
  padding: 0; }
.custom-slick-carousel.events-carousel li, .custom-slick-carousel.events-carousel .slide {
  margin-bottom: 2em;
  display: block;
  list-style-type: none; }
  .custom-slick-carousel.events-carousel li *, .custom-slick-carousel.events-carousel .slide * {
    margin: .2em; }
  .custom-slick-carousel.events-carousel li h4, .custom-slick-carousel.events-carousel .slide h4 {
    margin: 0.36364em 0 0.18182em 0; }
    @media screen and (max-width: 767px) {
      .custom-slick-carousel.events-carousel li h4, .custom-slick-carousel.events-carousel .slide h4 {
        font-size: inherit; } }
  .custom-slick-carousel.events-carousel li span,
  .custom-slick-carousel.events-carousel li .category, .custom-slick-carousel.events-carousel .slide span,
  .custom-slick-carousel.events-carousel .slide .category {
    margin-left: 0; }
  .custom-slick-carousel.events-carousel li .category, .custom-slick-carousel.events-carousel .slide .category {
    display: block;
    margin-top: 1.33333em; }
  .custom-slick-carousel.events-carousel li img, .custom-slick-carousel.events-carousel .slide img {
    margin: 0;
    max-width: 100%;
    top: 0;
    width: 100%; }
  .custom-slick-carousel.events-carousel li p, .custom-slick-carousel.events-carousel .slide p {
    font-size: .875em; }

@media screen and (max-width: 767px) {
  body.detail .image-slider .arrows {
    position: absolute;
    top: 50%;
    width: 100%; } }
@media screen and (max-width: 767px) {
  body.detail .image-slider .arrows .desktop {
    display: none; } }
body.detail .image-slider .arrows button {
  background: transparent;
  cursor: pointer;
  font-size: 2.125em;
  outline: none; }
  @media screen and (max-width: 767px) {
    body.detail .image-slider .arrows button {
      background: url("../../../../../images/bryantpark/slideshow-arrow.svg");
      background-repeat: no-repeat;
      height: 14px;
      position: absolute;
      left: -20px;
      transform: rotate(180deg);
      width: 14px; } }
  body.detail .image-slider .arrows button:last-of-type {
    margin-right: -3px;
    padding-right: 0; }
    @media screen and (max-width: 767px) {
      body.detail .image-slider .arrows button:last-of-type {
        left: auto;
        right: -16px;
        transform: rotate(0deg); } }
body.detail .image-slider .arrows .button-divide {
  height: 20px;
  border-left: 1px solid black;
  display: inline-block;
  margin-left: 5px;
  margin-right: 6px; }
  @media screen and (max-width: 767px) {
    body.detail .image-slider .arrows .button-divide {
      display: none; } }
body.detail .carousel {
  margin-bottom: 3.4375em; }
  body.detail .carousel .slick-slider {
    margin-bottom: 0; }
  body.detail .carousel.variable-carousel {
    padding-left: 0;
    padding-right: 0; }
  body.detail .carousel.programs:last-of-type {
    margin-bottom: 0; }
  body.detail .carousel.programs h3.overline {
    border-top: 2px solid black;
    font-size: 40px;
    line-height: 44px; }
    @media screen and (max-width: 767px) {
      body.detail .carousel.programs h3.overline {
        font-size: 28px;
        line-height: 33px; } }
  body.detail .carousel.programs.feature-follows {
    border-bottom: none; }
    body.detail .carousel.programs.feature-follows:last-of-type {
      padding-bottom: 3.25em; }
      @media screen and (max-width: 767px) {
        body.detail .carousel.programs.feature-follows:last-of-type {
          padding-bottom: .75em; } }
  @media screen and (max-width: 767px) {
    body.detail .carousel {
      margin-bottom: 0;
      margin-top: 1em; } }
  @media screen and (max-width: 767px) {
    body.detail .carousel .arrows {
      position: absolute;
      top: 50%;
      width: 100%; } }
  @media screen and (max-width: 767px) {
    body.detail .carousel .arrows .desktop {
      display: none; } }
  body.detail .carousel .arrows button {
    background: transparent;
    cursor: pointer;
    font-size: 2.125em;
    outline: none; }
    @media screen and (max-width: 767px) {
      body.detail .carousel .arrows button {
        background: url("../../../../../images/bryantpark/slideshow-arrow.svg");
        background-repeat: no-repeat;
        height: 14px;
        position: absolute;
        left: -20px;
        transform: rotate(180deg);
        width: 14px; } }
    body.detail .carousel .arrows button:last-of-type {
      margin-right: -3px;
      padding-right: 0; }
      @media screen and (max-width: 767px) {
        body.detail .carousel .arrows button:last-of-type {
          left: auto;
          right: 25px;
          transform: rotate(0deg); } }
  body.detail .carousel .arrows .button-divide {
    height: 20px;
    border-left: 1px solid black;
    display: inline-block;
    margin-left: 5px;
    margin-right: 6px; }
    @media screen and (max-width: 767px) {
      body.detail .carousel .arrows .button-divide {
        display: none; } }
  body.detail .carousel li h2 {
    margin-top: 1.25em; }
    @media screen and (max-width: 767px) {
      body.detail .carousel li h2 {
        margin-top: .5em; } }
  @media screen and (max-width: 767px) {
    body.detail .carousel li p {
      font-size: .7em;
      margin-top: 0; } }
body.detail.events-detail .carousel .title-row h1 {
  margin-bottom: .9em; }

body.holiday-shops .carousel.find-things-to-do {
  margin-bottom: 35px; }
  @media screen and (max-width: 767px) {
    body.holiday-shops .carousel.find-things-to-do {
      margin-bottom: 25px;
      padding-bottom: 0; } }
  body.holiday-shops .carousel.find-things-to-do .search-options .dropdown-filter .col-6-12.category {
    margin-bottom: 0; }
    @media screen and (min-width: 768px) {
      body.holiday-shops .carousel.find-things-to-do .search-options .dropdown-filter .col-6-12.category {
        margin-top: .05em !important; } }
    @media screen and (min-width: 768px) {
      body.holiday-shops .carousel.find-things-to-do .search-options .dropdown-filter .col-6-12.category p.title {
        margin-bottom: 2.15em !important; } }
  body.holiday-shops .carousel.find-things-to-do .search-options .dropdown-filter .col-6-12.category + .col-6-12.category {
    margin-bottom: 1em; }
  @media screen and (min-width: 768px) {
    body.holiday-shops .carousel.find-things-to-do .search-options.open .col-6-12.category {
      margin: 0; } }
  body.holiday-shops .carousel.find-things-to-do .search-results .carousel {
    margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      body.holiday-shops .carousel.find-things-to-do .search-results .carousel {
        margin-bottom: 0; } }

@media screen and (max-width: 767px) {
  body.programs .carousel.with-load-more .hidden {
    display: none; } }
body.programs .carousel.programs {
  border-bottom: none;
  display: block;
  padding-bottom: 2em; }
  @media screen and (max-width: 767px) {
    body.programs .carousel.programs {
      padding-bottom: 1.5em !important;
      width: 100%; } }
  body.programs .carousel.programs:last-of-type {
    padding-bottom: 4em; }
    @media screen and (max-width: 767px) {
      body.programs .carousel.programs:last-of-type {
        margin-top: 45px;
        padding-bottom: .75em; } }
  @media screen and (max-width: 767px) {
    body.programs .carousel.programs .carousel {
      margin-bottom: 0;
      padding-left: 1.5em;
      padding-right: 1.5em; } }
body.programs .carousel.no-featured-carousel {
  margin-top: 1.5em; }
  @media screen and (max-width: 767px) {
    body.programs .carousel.no-featured-carousel {
      margin-top: 0; } }
  body.programs .carousel.no-featured-carousel .variable-carousel ol {
    margin: 0; }
body.programs .carousel .carousel-subtitle.mobile {
  display: none; }
  @media screen and (max-width: 767px) {
    body.programs .carousel .carousel-subtitle.mobile {
      display: block; } }
@media screen and (max-width: 767px) {
  body.programs .carousel .carousel-subtitle h3:after {
    content: url("../../../../../images/bryantpark/dropdown-arrow.svg");
    height: 12px;
    position: absolute;
    right: 20px;
    top: 6px;
    width: 12px; } }
@media screen and (max-width: 767px) {
  body.programs .carousel .carousel-subtitle.open h3:after {
    top: 14px;
    transform: rotate(180deg); } }
@media screen and (max-width: 767px) {
  body.programs .carousel .carousel-subtitle p {
    display: none; } }
body.programs .carousel .datetime {
  color: #939597; }

body.things-to-do #react-amenities-carousel .carousel {
  border-bottom: 2px solid black;
  margin-bottom: 0;
  padding-bottom: .5em; }
  @media screen and (max-width: 767px) {
    body.things-to-do #react-amenities-carousel .carousel .slick-slider {
      margin-bottom: 0; } }
@media screen and (max-width: 767px) {
  body.things-to-do #react-events-carousel .carousel .slick-slider {
    margin-bottom: .5em; } }

.carousel.find-things-to-do {
  margin-bottom: 5.4em;
  padding-left: 0;
  padding-right: 0; }
  @media screen and (max-width: 767px) {
    .carousel.find-things-to-do {
      margin-bottom: 2.75em; } }
  .carousel.find-things-to-do .react-datepicker {
    border: none;
    width: 100%;
    font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 17px; }
    @media screen and (max-width: 767px) {
      .carousel.find-things-to-do .react-datepicker {
        font-size: 13px;
        line-height: 19px; } }
    @media (min-width: 768px) and (max-width: 1100px) {
      .carousel.find-things-to-do .react-datepicker {
        padding-top: 25px;
        font-size: 13px; } }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__month-container {
      width: 100%; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name {
      font-size: .7em;
      color: white; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:first-letter {
      color: black; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day,
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name {
      box-sizing: border-box;
      width: 14.2%;
      line-height: 1.8rem;
      margin: 0;
      padding-left: 0;
      padding-right: 0;
      text-align: left; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .react-datepicker .react-datepicker__day,
        .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name {
          line-height: 3rem; } }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day.react-datepicker__day--today {
      font-weight: normal;
      background-color: #436761; }
      .carousel.find-things-to-do .react-datepicker .react-datepicker__day.react-datepicker__day--today.react-datepicker__day--selected {
        font-weight: bold; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day {
      background-color: transparent;
      color: black; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day--selected {
      background-color: rgba(199, 219, 96, 1) !important;
      color: black; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day--outside-month {
      visibility: hidden; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__month {
      margin: 0; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__navigation--next, .carousel.find-things-to-do .react-datepicker .react-datepicker__navigation--previous {
      border: 0;
      background: url(../../../../../images/bryantpark/slideshow-arrow-desktop.svg);
      width: 20px;
      height: 13px;
      background-size: cover;
      top: 7px; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__navigation--next {
      right: 0; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__navigation--previous {
      right: 38px;
      left: auto;
      transform: scaleX(-1); }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__navigation--previous + .react-datepicker__navigation--next:before {
      content: '';
      position: absolute;
      left: -9px;
      border-left: 1px solid black;
      height: 20px;
      top: -2px; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day:nth-child(1), .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:nth-child(1) {
      padding-left: 0; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day:nth-child(2), .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:nth-child(2) {
      padding-left: 1.3%; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day:nth-child(3), .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:nth-child(3) {
      padding-left: 2.6%; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day:nth-child(4), .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:nth-child(4) {
      padding-left: 3.9%; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day:nth-child(5), .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:nth-child(5) {
      padding-left: 5.2%; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day:nth-child(6), .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:nth-child(6) {
      padding-left: 6.5%; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__day:nth-child(7), .carousel.find-things-to-do .react-datepicker .react-datepicker__day-name:nth-child(7) {
      padding-left: 7.8%; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__header {
      background-color: white;
      border: none; }
    .carousel.find-things-to-do .react-datepicker .react-datepicker__current-month {
      text-align: left;
      padding-left: 0;
      font-size: 1em;
      font-weight: normal; }
  .carousel.find-things-to-do h1.lead-title {
    margin-top: 0; }
  .carousel.find-things-to-do ol {
    margin-bottom: .4em; }
    .carousel.find-things-to-do ol li {
      margin-bottom: 2.2em; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do ol li {
          margin-bottom: 1.25em; } }
      .carousel.find-things-to-do ol li h2 {
        margin-top: 1.2em; }
  .carousel.find-things-to-do .header-row {
    margin-bottom: 0.625em;
    position: relative;
    z-index: 2; }
  .carousel.find-things-to-do .carousel ol {
    margin-top: 0; }
  .carousel.find-things-to-do .restart-link {
    display: none;
    text-decoration: none; }
    @media screen and (max-width: 767px) {
      .carousel.find-things-to-do .restart-link {
        display: block;
        float: right;
        font-size: .75em;
        margin-top: .25em;
        min-width: 65px; } }
  .carousel.find-things-to-do .more-button {
    focus: none;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    width: 100%; }
    @media screen and (max-width: 767px) {
      .carousel.find-things-to-do .more-button {
        float: left;
        width: auto; } }
    .carousel.find-things-to-do .more-button button {
      letter-spacing: .09em;
      margin: 0;
      text-transform: uppercase;
      font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: 0.5625em;
      line-height: 10px;
      background: url("../../../../../images/bryantpark/more-button.svg");
      background-repeat: no-repeat;
      border: none;
      height: 42px;
      text-transform: uppercase;
      width: 98px;
      cursor: pointer; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .more-button button {
          font-size: 8px;
          line-height: 8px;
          height: 33px;
          text-align: center;
          width: 77px; } }
  .carousel.find-things-to-do .grid-row {
    text-align: left; }
  .carousel.find-things-to-do .search-options {
    float: left;
    width: 42.5%; }
    @media screen and (max-width: 767px) {
      .carousel.find-things-to-do .search-options {
        margin-right: 2%;
        width: 49%; } }
    .carousel.find-things-to-do .search-options .headers {
      box-sizing: border-box;
      padding-right: 1em; }
      .carousel.find-things-to-do .search-options .headers h1 {
        letter-spacing: .09em;
        margin: 0;
        text-transform: uppercase;
        font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-weight: normal;
        font-style: normal;
        font-size: 0.5625em;
        line-height: 10px;
        margin: 1.25em 0 2.15em 0; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options .headers h1 {
            font-size: .6em;
            margin-top: 1em;
            padding-left: 0em; } }
      .carousel.find-things-to-do .search-options .headers ol li {
        color: black; }
      .carousel.find-things-to-do .search-options .headers .date {
        float: left;
        width: 50%; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options .headers .date {
            display: none; } }
      .carousel.find-things-to-do .search-options .headers .category {
        float: left;
        width: 50%;
        padding-left: 10px;
        box-sizing: border-box; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options .headers .category {
            display: none; } }
      .carousel.find-things-to-do .search-options .headers .filter {
        display: none; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options .headers .filter {
            display: block;
            float: left;
            width: 100%; } }
      .carousel.find-things-to-do .search-options .headers .dropdown-arrow {
        position: absolute;
        right: 5px;
        top: 15px; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options .headers .dropdown-arrow {
            right: 7px;
            top: 12px; } }
      .carousel.find-things-to-do .search-options .headers .date li, .carousel.find-things-to-do .search-options .headers .category li {
        font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-weight: normal;
        font-style: normal;
        font-size: 14px;
        line-height: 17px; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options .headers .date li, .carousel.find-things-to-do .search-options .headers .category li {
            font-size: 13px;
            line-height: 19px; } }
    .carousel.find-things-to-do .search-options .content-panel {
      padding: 0; }
    .carousel.find-things-to-do .search-options.open .dropdown-filter,
    .carousel.find-things-to-do .search-options .dropdown-filter {
      position: relative;
      background-color: white;
      top: -57px;
      left: 0;
      padding: 13.5px 1em 1em 1em;
      z-index: 99;
      width: 100%;
      box-sizing: border-box; }
      @media screen and (min-width: 768px) {
        .carousel.find-things-to-do .search-options.open .dropdown-filter,
        .carousel.find-things-to-do .search-options .dropdown-filter {
          padding-left: 0; } }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .search-options.open .dropdown-filter,
        .carousel.find-things-to-do .search-options .dropdown-filter {
          bottom: 0;
          height: 100%;
          left: 0;
          margin-top: 0;
          max-width: 100%;
          padding: 0;
          position: relative;
          right: 0;
          top: 0;
          width: 100vw;
          z-index: 102; }
          .carousel.find-things-to-do .search-options.open .dropdown-filter .scrolling,
          .carousel.find-things-to-do .search-options .dropdown-filter .scrolling {
            height: 100%;
            max-width: 100vw;
            overflow-y: scroll;
            padding: 1em 2em 1em 1.25em;
            position: relative;
            width: calc(100% - 2em); } }
      .carousel.find-things-to-do .search-options.open .dropdown-filter > .dropdown-arrow,
      .carousel.find-things-to-do .search-options .dropdown-filter > .dropdown-arrow {
        transform: rotate(180deg);
        cursor: pointer;
        position: absolute;
        right: 5px;
        top: calc(1em - 4px); }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options.open .dropdown-filter > .dropdown-arrow,
          .carousel.find-things-to-do .search-options .dropdown-filter > .dropdown-arrow {
            display: none; } }
      .carousel.find-things-to-do .search-options.open .dropdown-filter .go-button,
      .carousel.find-things-to-do .search-options .dropdown-filter .go-button {
        position: absolute;
        bottom: 1em;
        right: 1em; }
      .carousel.find-things-to-do .search-options.open .dropdown-filter .mobile-intro,
      .carousel.find-things-to-do .search-options .dropdown-filter .mobile-intro {
        display: none; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options.open .dropdown-filter .mobile-intro,
          .carousel.find-things-to-do .search-options .dropdown-filter .mobile-intro {
            display: block; }
            .carousel.find-things-to-do .search-options.open .dropdown-filter .mobile-intro .dropdown-arrow,
            .carousel.find-things-to-do .search-options .dropdown-filter .mobile-intro .dropdown-arrow {
              background: url("../../../../../images/bryantpark/close-icon.svg");
              height: 10px;
              position: absolute;
              right: 40px;
              top: 15px;
              width: 10px; } }
      .carousel.find-things-to-do .search-options.open .dropdown-filter .date,
      .carousel.find-things-to-do .search-options .dropdown-filter .date {
        float: left;
        padding-right: 10px;
        width: 50%;
        box-sizing: border-box; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options.open .dropdown-filter .date,
          .carousel.find-things-to-do .search-options .dropdown-filter .date {
            border: none;
            padding: 0;
            width: 100%; }
            .carousel.find-things-to-do .search-options.open .dropdown-filter .date .title,
            .carousel.find-things-to-do .search-options .dropdown-filter .date .title {
              border-top: 1px solid lightgrey;
              margin-bottom: 1em;
              margin-top: 1.75em;
              padding-top: 1.125em; } }
      .carousel.find-things-to-do .search-options.open .dropdown-filter .category,
      .carousel.find-things-to-do .search-options .dropdown-filter .category {
        float: left;
        padding-left: 10px;
        width: 50%;
        box-sizing: border-box; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options.open .dropdown-filter .category,
          .carousel.find-things-to-do .search-options .dropdown-filter .category {
            border: none;
            margin-bottom: 1em;
            padding: 0;
            width: 100%; }
            .carousel.find-things-to-do .search-options.open .dropdown-filter .category .title,
            .carousel.find-things-to-do .search-options .dropdown-filter .category .title {
              border-top: 1px solid lightgrey;
              margin-bottom: 1em;
              margin-top: 1.3em;
              padding-top: 1.125em; } }
      .carousel.find-things-to-do .search-options.open .dropdown-filter .title,
      .carousel.find-things-to-do .search-options .dropdown-filter .title {
        letter-spacing: .09em;
        margin: 0;
        text-transform: uppercase;
        font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-weight: normal;
        font-style: normal;
        font-size: 0.5625em;
        line-height: 10px;
        color: black;
        margin: 0 0 2.25em 0;
        padding: 0;
        text-transform: uppercase; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options.open .dropdown-filter .title,
          .carousel.find-things-to-do .search-options .dropdown-filter .title {
            font-size: .6em; } }
      .carousel.find-things-to-do .search-options.open .dropdown-filter .description,
      .carousel.find-things-to-do .search-options .dropdown-filter .description {
        font-size: 0.8125em;
        line-height: 1.46154em;
        margin-top: 2.30769em; }
      .carousel.find-things-to-do .search-options.open .dropdown-filter ol,
      .carousel.find-things-to-do .search-options .dropdown-filter ol {
        float: left;
        width: 100%; }
        .carousel.find-things-to-do .search-options.open .dropdown-filter ol li,
        .carousel.find-things-to-do .search-options .dropdown-filter ol li {
          font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
          font-weight: normal;
          font-style: normal;
          font-size: 14px;
          line-height: 17px;
          color: #939597;
          margin-bottom: .45em; }
          @media screen and (max-width: 767px) {
            .carousel.find-things-to-do .search-options.open .dropdown-filter ol li,
            .carousel.find-things-to-do .search-options .dropdown-filter ol li {
              font-size: 13px;
              line-height: 19px; } }
          @media screen and (max-width: 767px) {
            .carousel.find-things-to-do .search-options.open .dropdown-filter ol li,
            .carousel.find-things-to-do .search-options .dropdown-filter ol li {
              margin-bottom: .85em; } }
          .carousel.find-things-to-do .search-options.open .dropdown-filter ol li:not(.active),
          .carousel.find-things-to-do .search-options .dropdown-filter ol li:not(.active) {
            cursor: pointer; }
          .carousel.find-things-to-do .search-options.open .dropdown-filter ol li.active,
          .carousel.find-things-to-do .search-options .dropdown-filter ol li.active {
            color: black; }
      .carousel.find-things-to-do .search-options.open .dropdown-filter .calendar-plugin,
      .carousel.find-things-to-do .search-options .dropdown-filter .calendar-plugin {
        float: left;
        margin-top: .1em;
        width: 100%; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options.open .dropdown-filter .calendar-plugin,
          .carousel.find-things-to-do .search-options .dropdown-filter .calendar-plugin {
            margin-top: 0; } }
    .carousel.find-things-to-do .search-options .dropdown-arrow {
      background: url("../../../../../images/bryantpark/dropdown-arrow.svg");
      background-repeat: no-repeat;
      height: 12px;
      width: 12px;
      display:none;}
  .carousel.find-things-to-do .search-options {
    background: transparent;
    border-top: 1px solid darkgray;
    height: 3.3em !important;
    position: relative; }
    @media screen and (min-width: 768px) {
      .carousel.find-things-to-do .search-options .content-panel.dropdown-filter {
        margin-top: 0; } }
    @media screen and (max-width: 767px) {
      .carousel.find-things-to-do .search-options {
        height: inherit;
        margin-bottom: 0;
        padding-bottom: 0.75em; } }
    .carousel.find-things-to-do .search-options button {
      border: 0;
      position: absolute;
      right: 0; }
    .carousel.find-things-to-do .search-options.open button,
    .carousel.find-things-to-do .search-options button {
      bottom: 15px;
      position: absolute;
      right: 15px;
      padding: 15px;
      width: 70px; }
    .carousel.find-things-to-do .search-options input {
      background: white;
      border: 0;
      width: 85%; }
    .carousel.find-things-to-do .search-options li {
      list-style-type: none;
      margin: 0; }
    .carousel.find-things-to-do .search-options ol {
      margin: 0; }
    .carousel.find-things-to-do .search-options.collapsible-panel {
      height: auto !important;
      overflow: visible;
      padding-bottom: 1.125em;
      padding-top: 0.1875em; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .search-options.collapsible-panel {
          width: 100%; } }
    .carousel.find-things-to-do .search-options.open {
      overflow: visible !important;
      z-index: 1; }
      @media screen and (max-width: 767px) {
        .carousel.find-things-to-do .search-options.open {
          z-index: 102; } }
      .carousel.find-things-to-do .search-options.open .date,
      .carousel.find-things-to-do .search-options .date {
        border-right: 1px solid gray;
        box-sizing: border-box;
        margin-right: 0; }
        .carousel.find-things-to-do .search-options.open .date .calendar-plugin,
        .carousel.find-things-to-do .search-options .date .calendar-plugin {
          text-align: center; }
        @media screen and (max-width: 767px) {
          .carousel.find-things-to-do .search-options.open .date ol,
          .carousel.find-things-to-do .search-options .date ol {
            margin-bottom: 0; } }
  .carousel.find-things-to-do .search-results {
    float: left;
    min-width: 100%;
    position: relative;
    z-index: 1; }
    .carousel.find-things-to-do .search-results ol.loading {
      min-height: 100px;
      min-width: 100%;
      position: relative; }
      .carousel.find-things-to-do .search-results ol.loading:after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background-image: url("../../../../../images/bryantpark/loader.gif");
        background-repeat: no-repeat;
        background-position: center;
        background-color: rgba(0, 0, 0, 0.1);
        z-index: 98; }
    @media screen and (max-width: 767px) {
      .carousel.find-things-to-do .search-results {
        display: table;
        margin-top: 0;
        width: 100%; }
        .carousel.find-things-to-do .search-results .find-things-to-do li {
          margin-bottom: 1.35em !important; }
          .carousel.find-things-to-do .search-results .find-things-to-do li:last-of-type {
            border-bottom: 1px solid black;
            margin-bottom: .15em !important;
            padding-bottom: 1.25em; }
          .carousel.find-things-to-do .search-results .find-things-to-do li > div {
            margin: 0 1em 0 0;
            padding-top: .7em; }
            .carousel.find-things-to-do .search-results .find-things-to-do li > div img {
              float: left;
              margin-right: 8%;
              width: 49%; }
            .carousel.find-things-to-do .search-results .find-things-to-do li > div h1 {
              float: left;
              font-size: 1em;
              margin-top: .25em;
              width: 43%; }
            .carousel.find-things-to-do .search-results .find-things-to-do li > div h2 {
              float: left;
              font-size: .55em;
              letter-spacing: .2em;
              margin-top: 0;
              width: 43%; }
            .carousel.find-things-to-do .search-results .find-things-to-do li > div p {
              float: left;
              font-size: .75em;
              margin-top: .4em;
              width: 43%; } }

.amenities-list {
  border-left: 1px solid #bbbdc0;
  overflow: hidden;
  padding-left: 4.75%;
  position: relative; }
  .amenities-list:before {
    background: #bbbdc0;
    content: '';
    height: 100%;
    left: 52%;
    position: absolute;
    top: 2.5em;
    width: 1px; }
  .amenities-list h1 {
    border-bottom: 1px solid #bbbdc0;
    letter-spacing: .08em;
    margin: 0;
    padding-bottom: .9em;
    text-transform: uppercase;
    font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.6875em;
    line-height: inherit; }
  .amenities-list p {
    margin: 0;
    line-height: 1.3;
    font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.875em; }
  .amenities-list .column-left,
  .amenities-list .column-right {
    margin-top: .85em; }
    .amenities-list .column-left article:first-child a,
    .amenities-list .column-right article:first-child a {
      padding-top: 0; }
  .amenities-list .column-left article {
    padding: 0 1.9em 0 0; }
  .amenities-list .column-right article {
    padding: 0 0 0 .8em; }
  .amenities-list article a,
  .amenities-list article a:active,
  .amenities-list article a:visited,
  .amenities-list article a:hover {
    border-bottom: 1px solid #bbbdc0;
    color: black;
    display: block;
    padding: 1.125em 0 1.125em 0;
    text-decoration: none; }
    .amenities-list article a h4,
    .amenities-list article a:active h4,
    .amenities-list article a:visited h4,
    .amenities-list article a:hover h4 {
      margin: 0; }
  .amenities-list article:last-of-type a, .amenities-list article:last-of-type a:hover {
    border-bottom: none; }
  .amenities-list article.inactive h4, .amenities-list article.inactive p {
    color: #939597; }
  .amenities-list .datetime {
    margin-top: 0.42857em; }
    @media screen and (max-width: 767px) {
      .amenities-list .datetime {
        font-size: 10px;
        line-height: 13px; } }

.detail.amenities h4.lead {
  margin-top: 0; }
.detail.amenities h3.overline {
  border-top: 1px solid #bbbdc0; }
.detail.amenities .amenities-mini-section {
  padding-bottom: 90px; }
  @media screen and (max-width: 767px) {
    .detail.amenities .amenities-mini-section {
      padding-bottom: 50px; } }
@media screen and (min-width: 768px) {
  .detail.amenities .variable-carousel.cycle-4 li {
    margin-bottom: 1.375em;
    margin-top: 1.375em; } }
@media screen and (max-width: 767px) {
  .detail.amenities .variable-carousel.programs .variable-carousel {
    padding: 0; } }
.detail.amenities .about-us-mini-section .info {
  margin-top: 0; }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
body.detail {
  background: white; }
  body.detail.terms-page .info {
    margin-top: 0; }
  body.detail.terms-page .page-logo {
    border-top: none !important; }
    @media screen and (min-width: 768px) {
      body.detail.terms-page .page-logo {
        float: right; } }
    body.detail.terms-page .page-logo img {
      border-top: 1px solid #bbbdc0; }
  body.detail.terms-page .content-panel p:last-of-type {
    margin-bottom: 0; }
  body.detail.terms-page h4.lead {
    margin-top: 0 !important; }
  body.detail.terms-page p.event-info {
    display: table; }
  body.detail .terms-featured-image {
    margin: 3.75em 0; }
  body.detail .event-directions {
    margin-bottom: 1.5625em; }
    body.detail .event-directions p {
      margin: 0; }
  @media screen and (max-width: 767px) {
    body.detail .anchor-links {
      margin-bottom: 2.75em; } }
  body.detail.blog-entry .info, body.detail.mini-section-entry .info {
    padding-bottom: 0; }
    body.detail.blog-entry .info:last-of-type, body.detail.mini-section-entry .info:last-of-type {
      padding-bottom: 3.75em; }
    body.detail.blog-entry .info:nth-child(2n), body.detail.mini-section-entry .info:nth-child(2n) {
      margin-top: 1em; }
    @media screen and (min-width: 768px) {
      body.detail.blog-entry .info .summary, body.detail.mini-section-entry .info .summary {
        margin-right: 0; } }
    @media screen and (min-width: 768px) {
      body.detail.blog-entry .info .summary h2, body.detail.mini-section-entry .info .summary h2 {
        margin-bottom: .5em;
        margin-top: 0; } }
  body.detail.blog-entry .side-image-caption, body.detail.mini-section-entry .side-image-caption {
    margin-bottom: 3.57143em; }
  body.detail.blog-entry .blog-postdate, body.detail.mini-section-entry .blog-postdate {
    display: block;
    margin-top: 1.875em;
    margin-bottom: 3.75em; }
  body.detail.mini-section-entry .info:first-of-type {
    margin-top: 2em; }
  @media screen and (min-width: 768px) {
    body.detail.mini-section-entry h1.detail {
      margin-bottom: 1em; } }
  body.detail .info {
    margin-top: 2.5em;
    padding-bottom: 3.75em; }
    @media screen and (max-width: 767px) {
      body.detail .info {
        line-height: 1.5em;
        margin-top: 1.5em;
        padding-bottom: 1.4em; } }
    body.detail .info .summary p {
      margin-bottom: 1.4em; }
      body.detail .info .summary p a {
        cursor: pointer;
        line-height: 1.38889em;
        text-decoration: none; }
    body.detail .info .summary .info-panel {
      margin-top: 1.125em; }
      @media screen and (max-width: 767px) {
        body.detail .info .summary .info-panel {
          margin-top: 1.5em;
          } }
      body.detail .info .summary .info-panel > p {
        margin-top: 0.55556em; }
        @media screen and (max-width: 767px) {
          body.detail .info .summary .info-panel > p {
            margin-bottom: 0; } }
      @media screen and (min-width: 768px) {
        body.detail .info .summary .info-panel.hours {
          margin-bottom: .5em; } }
      @media screen and (max-width: 767px) {
        body.detail .info .summary .info-panel.hours {
          margin-bottom: 0; } }
      @media screen and (max-width: 767px) {
        body.detail .info .summary .info-panel.hours .content-panel p {
          font-size: 13px;
          line-height: 19px;
          margin-bottom: 0;
          margin-top: 5px; } }
    body.detail .info.programs .info {
      padding-bottom: 90px; }
      @media screen and (max-width: 767px) {
        body.detail .info.programs .info {
          padding-bottom: 50px; } }
    @media screen and (max-width: 767px) {
      body.detail .info.programs .with-load-more {
        padding: 0; } }
    body.detail .info .sponsors {
      border-top: 1px solid #bbbdc0;
      margin-top: -.25em; }
      @media screen and (max-width: 767px) {
        body.detail .info .sponsors {
          float: left;
          margin-top: 41px;
          width: 100%; } }
      body.detail .info .sponsors p {
        margin-bottom: 0; }
      body.detail .info .sponsors.bordered h3.sponsored-line {
        margin-top: 60px; }
      body.detail .info .sponsors h3 {
        font-family: "ObjektivMk1_Md", Georgia, serif;
        font-weight: normal;
        font-style: normal;
        font-size: 0.8125em;
        margin-bottom: 20px;
        margin-top: 1.65em; }
        @media screen and (max-width: 767px) {
          body.detail .info .sponsors h3 {
            line-height: 2.15385em;
            margin-top: .7em; } }
        @media screen and (min-width: 768px) {
          body.detail .info .sponsors h3 {
            font-size: 0.9375em; } }
        @media (min-width: 768px) and (max-width: 1100px) {
          body.detail .info .sponsors h3 {
            font-size: 0.875em; } }
        body.detail .info .sponsors h3.sponsored-line {
          border-top: 1px solid #bbbdc0;
          padding-top: 0.9375em; }
          @media screen and (max-width: 767px) {
            body.detail .info .sponsors h3.sponsored-line {
              margin-top: 20px !important; } }
        body.detail .info .sponsors h3.program-sponsor {
          margin-top: 1.35em; }
          @media screen and (max-width: 767px) {
            body.detail .info .sponsors h3.program-sponsor {
              margin-top: .45em; } }
      body.detail .info .sponsors ul {
        margin-bottom: 2em;
        margin-top: 1.875em; }
        @media screen and (max-width: 767px) {
          body.detail .info .sponsors ul {
            margin-bottom: 0;
            margin-top: .5em; } }
        body.detail .info .sponsors ul.rows-of-3.program-supporter {
          margin-bottom: 2em; }
          @media screen and (max-width: 767px) {
            body.detail .info .sponsors ul.rows-of-3.program-supporter {
              margin-bottom: .35em; } }
        body.detail .info .sponsors ul.rows-of-3.smaller {
          margin-bottom: 1.25em; }
          @media screen and (max-width: 767px) {
            body.detail .info .sponsors ul.rows-of-3.smaller {
              margin-bottom: .65em; } }
        body.detail .info .sponsors ul:last-of-type {
          margin-bottom: 1.5em; }
          @media screen and (max-width: 767px) {
            body.detail .info .sponsors ul:last-of-type {
              margin-bottom: 0; } }
        body.detail .info .sponsors ul li {
          margin-bottom: 30px; }
          @media screen and (max-width: 767px) {
            body.detail .info .sponsors ul li {
              height: auto;
              margin-bottom: 20px; } }
      body.detail .info .sponsors p {
        margin-top: .25em; }
        @media screen and (max-width: 767px) {
          body.detail .info .sponsors p {
            margin-top: 0; } }
  @media screen and (max-width: 767px) {
    body.detail .template-feature {
      margin-bottom: 15px; } }
  body.detail .template-feature .subsection {
    margin-top: 1em;
    padding-bottom: 0;
    margin-bottom: 50px; }
    @media screen and (max-width: 767px) {
      body.detail .template-feature .subsection {
        margin-bottom: 50px;
        margin-top: .75em; } }
    body.detail .template-feature .subsection .text-block {
      bottom: 50px; }
  body.detail .events .carousel {
    margin-bottom: 3.5em; }
    @media screen and (max-width: 767px) {
      body.detail .events .carousel {
        margin-bottom: 1em;
        margin-top: 0;
        position: relative; } }
    body.detail .events .carousel .title-row h1 {
      margin-bottom: .9em; }
    @media screen and (max-width: 767px) {
      body.detail .events .carousel .arrows button {
        left: -16px; } }
    @media screen and (max-width: 767px) {
      body.detail .events .carousel .arrows button:last-of-type {
        left: inherit;
        right: -16px; } }
  body.detail .info-block {
    padding-bottom: 4em; }
    @media screen and (max-width: 767px) {
      body.detail .info-block {
        padding-bottom: 3em; } }
    @media screen and (max-width: 767px) {
      body.detail .info-block .image-slider {
        display: table;
        margin: 0;
        position: relative; } }
    @media screen and (max-width: 767px) {
      body.detail .info-block .image-slider .slide-wrap {
        float: left;
        max-width: 46%; } }
  body.detail .event-info {
    margin-bottom: 5.625em;
    margin-top: 3.75em; }
    @media screen and (max-width: 767px) {
      body.detail .event-info .main-image {
        margin-bottom: 1.25em; } }
    body.detail .event-info a {
      cursor: pointer;
      line-height: 1.38889em;
      text-decoration: none; }
    @media screen and (max-width: 767px) {
      body.detail .event-info {
        margin-bottom: 3em;
        margin-top: 1.125em; } }
    body.detail .event-info .time {
      margin: 0; }
      @media screen and (max-width: 767px) {
        body.detail .event-info .time {
          font-size: .875em; } }
    body.detail .event-info .location {
      display: inline-block;
      font-size: 1.125em;
      margin-bottom: 1.35em;
      margin-top: .35em; }
      @media screen and (max-width: 767px) {
        body.detail .event-info .location {
          font-size: 0.8125em;
          line-height: 1.46154em;
          margin-top: 0; } }
      body.detail .event-info .location.marginless {
        margin: 0; }
    body.detail .event-info .description {
      margin-bottom: 1.35em; }
      @media screen and (min-width: 768px) {
        body.detail .event-info .description p {
          margin-bottom: 12px;
          margin-top: 0; } }
    body.detail .event-info .additional-info {
      margin-top: 2.8125em; }
      @media screen and (max-width: 767px) {
        body.detail .event-info .additional-info .datetime {
          margin-bottom: 2em; } }
      body.detail .event-info .additional-info .align-right {
        margin-right: 0; }
      body.detail .event-info .additional-info .categories {
        margin-top: 1.875em; }
        @media screen and (max-width: 767px) {
          body.detail .event-info .additional-info .categories {
            margin-top: 0; } }
      body.detail .event-info .additional-info h3.overline {
        border-top: 1px solid #bbbdc0; }
    body.detail .event-info .calendar {
      border-bottom: none;
      display: block;
      font-size: 1.125em;
      text-decoration: none;
      margin-top: 1.35em; }
      @media screen and (max-width: 767px) {
        body.detail .event-info .calendar {
          font-size: .875em; } }
      body.detail .event-info .calendar .icon {
        background: url("../../../../../images/bryantpark/calendar-icon.svg");
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        float: left;
        height: 16px;
        margin-right: 1em;
        margin-top: .25em;
        width: 17px; }
        @media screen and (max-width: 767px) {
          body.detail .event-info .calendar .icon {
            margin-top: 0; } }
    body.detail .event-info .register {
      letter-spacing: .09em;
      margin: 0;
      text-transform: uppercase;
      font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: 0.5625em;
      line-height: 10px;
      background: url("../../../../../images/bryantpark/register-button.svg");
      border: none;
      width: 90px;
      height: 44px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background-repeat: no-repeat;
      background-size: contain;
      margin-top: 3em;
      text-decoration: none; }
      @media screen and (max-width: 767px) {
        body.detail .event-info .register {
          margin-top: 2em;
          width: 65px;
          height: 32px; } }
  @media screen and (min-width: 768px) {
    body.detail #outer .content-flag.detail {
      position: relative;
      top: -4.5em; }
    body.detail #outer .content-flag .grid-row {
      max-width: 1275px; }
      body.detail #outer .content-flag .grid-row p {
        margin-bottom: 0; } }
  @media screen and (max-width: 767px) {
    body.detail #outer .grid-row .grid-content.style-template-feature .text-block h1 {
      padding-top: 0;
      margin-bottom: .5em; } }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
@media screen and (max-width: 767px) {
  body.holiday-shops #outer .grid-row.no-gutter.template-feature:last-of-type {
    padding-bottom: 1.25em; } }
body.holiday-shops .grid-content.feature {
  margin-bottom: 3em;
  margin-top: 2em; }
  @media screen and (max-width: 767px) {
    body.holiday-shops .grid-content.feature {
      margin-top: 1em;
      margin-bottom: 1em;
      padding-bottom: 0; } }
body.holiday-shops .feature {
  margin-top: 0; }
@media screen and (max-width: 767px) {
  body.holiday-shops .template-feature h3 {
    margin-top: 0; } }
@media screen and (max-width: 767px) {
  body.holiday-shops.detail .anchor-links {
    margin-bottom: 2.25em; } }
@media screen and (min-width: 768px) {
  body.holiday-shops.detail .info {
    padding-bottom: 1.85em;
    margin-top: 2.5em; } }
body.holiday-shops #search-grid {
  padding-left: 0;
  padding-right: 0; }
  @media screen and (max-width: 767px) {
    body.holiday-shops #search-grid {
      display: table; } }
body.holiday-shops #shops-map {
  padding-bottom: 35px;
  margin-bottom: 0; }
  @media screen and (min-width: 768px) {
    body.holiday-shops #shops-map {
      padding-bottom: 90px; } }
@media screen and (max-width: 767px) {
  body.holiday-shops .lonely-section .feature {
    padding-bottom: 30px; } }

/* Page specific */
/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
.homepage-grid {
  padding-bottom: 3.75em; }
  @media screen and (max-width: 767px) {
    .homepage-grid {
      padding-bottom: 2.5em; } }
  @media (min-width: 768px) and (max-width: 1279px) {
    .homepage-grid > section > .grid-row > .home-grid {
      position: absolute;
      right: 40px;
      width: 44.85%;
      bottom: 0; } }
  @media (min-width: 768px) and (max-width: 900px) {
    .homepage-grid > section > .grid-row > .home-grid {
      width: 44%; } }
  @media screen and (max-width: 767px) {
    .homepage-grid .home-grid.winter-village {
      padding-bottom: 1.875em !important; } }
  .homepage-grid .home-grid .text-block {
    z-index: 1; }
  .homepage-grid .home-grid-overlay {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
    bottom: 0;
    height: 40%;
    position: absolute;
    width: 100%;
    z-index: 0; }
    @media (min-width: 768px) and (max-width: 1279px) {
      .homepage-grid .home-grid-overlay {
        height: 60%; } }
    @media screen and (max-width: 767px) {
      .homepage-grid .home-grid-overlay {
        display: none; } }
  .homepage-grid .style-split .home-grid-overlay {
    background: none; }
    @media (min-width: 768px) and (max-width: 1279px) {
      .homepage-grid .style-split .home-grid-overlay {
        background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.75));
        display: block;
        top: 0; } }
  @media (min-width: 768px) and (max-width: 1279px) {
    .homepage-grid .style-split .category,
    .homepage-grid .style-split h4,
    .homepage-grid .style-split .datetime {
      color: #fff !important; } }
  .homepage-grid .style-text-overlay-solid-background .home-grid-overlay {
    display: none; }
  .homepage-grid .style-text-top-left .home-grid-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
    top: 0; }
  .homepage-grid .content-row > .content-row:last-of-type .grid-content {
    padding-bottom: 1.25em; }
  @media screen and (max-width: 767px) {
    .homepage-grid .right-now-container {
      float: left;
      margin-right: 17px;
      width: 131px; } }
  @media screen and (max-width: 767px) {
    .homepage-grid .lawn-status-container {
      float: left;
      width: calc(100% - 148px); }
      .homepage-grid .lawn-status-container .lawn-status {
        margin-left: 0; }
      .homepage-grid .lawn-status-container .style-bulletin {
        border: none;
        margin-bottom: 0;
        max-width: 100%; }
        .homepage-grid .lawn-status-container .style-bulletin .text-block {
          padding-bottom: 3em; } }
  .homepage-grid .lawn-status-container .text-block p {
    margin: 0 0 0.25em; }

.load-more-button {
  border: none !important; }

.home .page-title {
  padding-bottom: 1.25em; }
  @media screen and (min-width: 768px) {
    .home .page-title {
      padding-bottom: 3.75em; } }
  @media screen and (max-width: 767px) {
    .home .page-title h1 {
      margin-bottom: 0;
      max-width: 80%; } }

.right-now {
  background: url("../../../../../images/bryantpark/border.png") 0 0;
  background-size: 100% 101%;
  height: 11.25em;
  max-width: 17.3em;
  position: relative; }
  @media screen and (min-width: 768px) {
    .right-now {
      padding-top: 10px;
      margin-top: -5px; } }
  @media screen and (max-width: 767px) {
    .right-now {
      background-image: url("../../../../../images/bryantpark/mobile-notched-corners.svg");
      background-repeat: no-repeat;
      background-size: 100%; } }
  .right-now .inner {
    padding-left: .65em;
    padding-right: .65em; }
    @media screen and (min-width: 768px) {
      .right-now .inner {
        padding-left: 1.1em;
        padding-right: 1.1em; } }
  .right-now h2, .right-now p, .right-now h3 {
    margin: 0; }
  .right-now h2 {
    padding: 1.45em 0 1em 0;
    letter-spacing: .09em;
    margin: 0;
    text-transform: uppercase;
    font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.5625em;
    line-height: 10px; }
    @media screen and (max-width: 767px) {
      .right-now h2 {
        font-size: .5625em;
        padding-top: 1.25em; } }
  .right-now footer {
    bottom: 0;
    padding: 0 0 1.15em 0;
    position: relative;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .right-now footer {
        position: absolute; } }
    @media (min-width: 768px) and (max-width: 875px) {
      .right-now footer {
        padding: 0 0 2.5em 0; } }
    @media screen and (max-width: 767px) {
      .right-now footer {
        padding-top: 3px; } }
    @media screen and (max-width: 767px) {
      .right-now footer h3 {
        margin-bottom: .5em; } }
    @media screen and (max-width: 767px) {
      .right-now footer .nyc-time {
        font-size: .7em; } }
  .right-now .nyc-time {
    font-family: "ObjektivMk1_Md", Georgia, serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.0625em; }
    @media screen and (min-width: 768px) {
      .right-now .nyc-time {
        line-height: 26px; } }
    @media (min-width: 768px) and (max-width: 900px) {
      .right-now .nyc-time {
        font-size: 14px;
        line-height: 17px; } }
    @media screen and (max-width: 767px) {
      .right-now .nyc-time {
        font-size: .8em;
        line-height: .5em; } }
    @media (min-width: 768px) and (max-width: 875px) {
      .right-now .nyc-time {
        font-size: 12px;
        line-height: 14px; } }
  @media screen and (max-width: 767px) {
    .right-now h3 {
      padding-top: .3em; } }
  .right-now h3,
  .right-now .nyc-date {
    font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.875em; }
    @media (min-width: 768px) and (max-width: 900px) {
      .right-now h3,
      .right-now .nyc-date {
        font-size: 11px;
        line-height: 14px; } }
    @media (min-width: 768px) and (max-width: 875px) {
      .right-now h3,
      .right-now .nyc-date {
        font-size: 10px; } }
  .right-now .time-weather {
    border-top: 1px solid white;
    border-bottom: 1px solid white; }
    @media screen and (min-width: 768px) {
      .right-now .time-weather {
        border-bottom: 2px solid white;
        border-top: 2px solid white; } }
    .right-now .time-weather:before, .right-now .time-weather:after {
      content: "";
      display: table; }
    .right-now .time-weather:after {
      clear: both; }
    .right-now .time-weather {
      *zoom: 1; }
    .right-now .time-weather .nyc-datetime,
    .right-now .time-weather .nyc-weather {
      height: 4.65em; }
    .right-now .time-weather .nyc-datetime {
      float: left;
      height: 3.5em;
      line-height: 1.15;
      width: 100%; }
      @media screen and (max-width: 767px) {
        .right-now .time-weather .nyc-datetime {
          border-bottom: 1px solid white; } }
      @media screen and (min-width: 768px) {
        .right-now .time-weather .nyc-datetime {
          border-right: 2px solid white;
          height: 4.5em;
          width: calc(100% - 75px); } }
      @media (min-width: 768px) and (max-width: 875px) {
        .right-now .time-weather .nyc-datetime {
          width: calc(100% - 55px); } }
      .right-now .time-weather .nyc-datetime .nyc-date {
        line-height: 17px;
        padding-top: .75em; }
        @media screen and (max-width: 767px) {
          .right-now .time-weather .nyc-datetime .nyc-date {
            font-size: 10px;
            line-height: 13px;
            margin-bottom: .75em; } }
        @media (min-width: 768px) and (max-width: 875px) {
          .right-now .time-weather .nyc-datetime .nyc-date {
            line-height: 12px; } }
    .right-now .time-weather .nyc-weather {
      float: right;
      text-align: center;
      width: 70px;
      margin-top: .25em;
      margin-bottom: -3em; }
      @media screen and (max-width: 767px) {
        .right-now .time-weather .nyc-weather {
          float: left;
          height: 2em;
          text-align: left;
          width: 100%;
          margin: 0; } }
      @media (min-width: 768px) and (max-width: 875px) {
        .right-now .time-weather .nyc-weather {
          width: 50px; } }
      .right-now .time-weather .nyc-weather img {
        background: transparent;
        display: block;
        margin: auto;
        padding: 4px;
        width: 32px; }
        @media screen and (max-width: 767px) {
          .right-now .time-weather .nyc-weather img {
            float: left;
            margin-top: -.25em;
            width: 1.25em; } }
      .right-now .time-weather .nyc-weather p {
        font-family: "ObjektivMk1_Md", Georgia, serif;
        font-weight: normal;
        font-style: normal;
        font-size: 1.125em; }
        @media screen and (min-width: 768px) {
          .right-now .time-weather .nyc-weather p {
            font-size: 17px;
            line-height: 26px; } }
        @media (min-width: 768px) and (max-width: 900px) {
          .right-now .time-weather .nyc-weather p {
            font-size: 14px; } }
        @media (min-width: 768px) and (max-width: 875px) {
          .right-now .time-weather .nyc-weather p {
            font-size: 12px; } }
        @media screen and (max-width: 767px) {
          .right-now .time-weather .nyc-weather p {
            font-size: .8em;
            margin-left: 2.4em;
            margin-top: .75em; } }

.load-more-button {
  display: none; }
  @media screen and (max-width: 767px) {
    .load-more-button {
      background: url("../../../../../images/bryantpark/mobile-more-button.svg");
      background-repeat: no-repeat;
      background-size: cover;
      display: block;
      font-size: 8px;
      line-height: 8px;
      height: 18px;
      margin-left: 20px;
      margin-top: 10px;
      padding-top: 10px;
      text-decoration: none !important;
      text-align: center;
      text-transform: uppercase;
      width: 80px; } }

.lawn-status {
  margin-left: .3em; }
  .lawn-status .text-block {
    height: 8.05em; }
    .lawn-status .text-block a,
    .lawn-status .text-block a:active,
    .lawn-status .text-block a:link,
    .lawn-status .text-block a:visited {
      border-bottom: 1px solid #000;
      display: inline;
      text-decoration: none; }
      .lawn-status .text-block a:hover,
      .lawn-status .text-block a:active:hover,
      .lawn-status .text-block a:link:hover,
      .lawn-status .text-block a:visited:hover {
        border-bottom: 1px solid #fff; }
    .lawn-status .text-block p {
      font-size: 10px;
      line-height: 13px; }
      @media screen and (min-width: 768px) {
        .lawn-status .text-block p {
          font-size: 14px;
          line-height: 17px; } }

.amenities-homepage {
  background: white;
  margin-bottom: 3.75em;
  padding: 2.65em 2.5em 2.5em 2.5em; }
  .amenities-homepage .park-map #map {
    height: 470px;
    max-width: 100%;
    width: 100%; }
  @media screen and (max-width: 767px) {
    .amenities-homepage .amenity {
      font-size: .75em; } }
  @media screen and (max-width: 767px) {
    .amenities-homepage {
      margin-bottom: 3.3em;
      padding: 1.8em 0 1.8em; }
      .amenities-homepage .amenities-list {
        border: none;
        padding: 0; }
        .amenities-homepage .amenities-list:before {
          height: 85%;
          left: 50%;
          top: 4.5em; }
        .amenities-homepage .amenities-list h1 {
          font-size: .8em;
          padding-bottom: 1.2em;
          padding-top: 2.5em; } }
      @media screen and (max-width: 767px) and (max-width: 767px) {
        .amenities-homepage .amenities-list h1 {
          font-size: .5625em; } }
  @media screen and (max-width: 767px) {
        .amenities-homepage .amenities-list .column-left,
        .amenities-homepage .amenities-list .column-right {
          float: left;
          margin-top: .5em;
          margin-right: 6.3%;
          width: 46.85%; }
          .amenities-homepage .amenities-list .column-left:last-of-type,
          .amenities-homepage .amenities-list .column-right:last-of-type {
            margin-right: 0; }
          .amenities-homepage .amenities-list .column-left:nth-child(2n + 2),
          .amenities-homepage .amenities-list .column-right:nth-child(2n + 2) {
            margin-right: 0; }
          .amenities-homepage .amenities-list .column-left article,
          .amenities-homepage .amenities-list .column-right article {
            padding: 0; }
            .amenities-homepage .amenities-list .column-left article:nth-child(2n + 2):after,
            .amenities-homepage .amenities-list .column-right article:nth-child(2n + 2):after {
              content: '';
              display: block;
              clear: both; }
            .amenities-homepage .amenities-list .column-left article a,
            .amenities-homepage .amenities-list .column-right article a {
              margin-bottom: .45em;
              padding: 0 0 .7em 0; }
            .amenities-homepage .amenities-list .column-left article h4,
            .amenities-homepage .amenities-list .column-right article h4 {
              font-size: 1em;
              margin-bottom: .25em; } }
          @media screen and (max-width: 767px) and (max-width: 767px) {
            .amenities-homepage .amenities-list .column-left article h4,
            .amenities-homepage .amenities-list .column-right article h4 {
              font-size: 1.0825em;
              line-height: 1.3125em; } }

  .amenities-homepage .amenities-intro {
    margin-bottom: -0.25em; }
    @media screen and (max-width: 767px) {
      .amenities-homepage .amenities-intro img {
        display: block;
        margin: 0 auto;
        max-width: 98%; } }
    .amenities-homepage .amenities-intro p {
      margin: 0 0 1.35em 0; }

.plan-your-day {
  background: white;
  margin-bottom: 3.8em;
  padding-bottom: 2.75em; }
  @media screen and (max-width: 767px) {
    .plan-your-day {
      margin-bottom: 2.5em;
      padding-bottom: 1.25em; } }
  .plan-your-day h2 {
    margin-top: 1em; }
  .plan-your-day h4 {
    margin: auto;
    text-align: center;
    text-transform: lowercase;
    width: 7.5em; }
  .plan-your-day a,
  .plan-your-day a:active,
  .plan-your-day a:visited,
  .plan-your-day a:hover {
    border-bottom: none;
    color: black;
    text-decoration: none; }
  @media screen and (max-width: 767px) {
    .plan-your-day a {
      display: table;
      margin-bottom: 20px;
      width: 100%; } }
  .plan-your-day .circular-image-wrap {
    width: 90px;
    height: 90px;
    margin: auto;
    position: relative;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    z-index: 15; }
    @media screen and (max-width: 767px) {
      .plan-your-day .circular-image-wrap {
        float: left;
        height: 60px;
        margin-bottom: 0;
        margin-left: 0;
        width: 60px; } }
  .plan-your-day img {
    bottom: 0;
    height: 90px;
    left: 0;
    margin: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 7em; }
  @media screen and (max-width: 767px) {
    .plan-your-day .grid-row ol.grid-row {
      padding: 0 !important; }
      .plan-your-day .grid-row ol.grid-row li {
        border: none;
        display: block;
        float: left;
        min-height: auto;
        text-align: left;
        width: 100%; }
        .plan-your-day .grid-row ol.grid-row li a img {
          float: left;
          margin-bottom: .9em;
          width: 4em; } }
      @media screen and (max-width: 767px) and (max-width: 767px) {
        .plan-your-day .grid-row ol.grid-row li a img {
          width: auto; } }
  @media screen and (max-width: 767px) {
        .plan-your-day .grid-row ol.grid-row li a h4 {
          float: left;
          font-size: 1em;
          margin-left: .6em;
          margin-top: 1.5em;
          padding: 0;
          text-align: left;
          width: auto; } }
      @media screen and (max-width: 767px) and (max-width: 767px) {
        .plan-your-day .grid-row ol.grid-row li a h4 {
          float: left;
          margin-top: 24px;
          margin-left: 28px;
          margin-bottom: 1.5em;
          width: calc(100% - 128px); } }
  @media screen and (max-width: 767px) {
        .plan-your-day .grid-row ol.grid-row li:last-of-type a img {
          margin-bottom: 1.15em; } }
  .plan-your-day ol {
    list-style: none;
    margin: 0;
    padding: 0; }
    .plan-your-day ol li {
      box-sizing: border-box;
      border-right: 1px solid #bbbdc0;
      min-height: 194px;
      text-align: center; }
      .plan-your-day ol li:last-of-type {
        border: none; }

@media screen and (max-width: 767px) {
  .home #page-footer {
    margin-top: 1.25em; } }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
body.things-to-do {
  background: white; }
  body.things-to-do #page-header {
    margin-bottom: 2.5em; }
    @media screen and (max-width: 767px) {
      body.things-to-do #page-header {
        margin-bottom: 2em; } }
  body.things-to-do .anchor-links {
    margin-bottom: 5.625em; }
    @media screen and (max-width: 767px) {
      body.things-to-do .anchor-links {
        margin-bottom: 3.5em; } }
  body.things-to-do h1.lead-title {
    border-top: 2px solid black;
    margin-top: .65em; }
    @media screen and (max-width: 767px) {
      body.things-to-do h1.lead-title {
        font-size: 2em;
        margin-top: .6em;
        padding-top: .3em; } }
  body.things-to-do img {
    max-width: 100%; }
  body.things-to-do .event-info {
    margin-bottom: 2em; }
  body.things-to-do .carousel .carousel,
  body.things-to-do .find-things-to-do .carousel {
    padding-left: 0;
    padding-right: 0; }
  body.things-to-do .style-text-overlay-solid-background.style-template-feature {
    margin-bottom: 5.65em;
    padding-bottom: 0; }
    @media screen and (max-width: 767px) {
      body.things-to-do .style-text-overlay-solid-background.style-template-feature {
        padding-bottom: 0;
        margin-bottom: 1.8em;
        margin-top: .75em; } }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
body.programs {
  background: white; }
  body.programs .feature {
    margin-bottom: 3em; }
    @media screen and (max-width: 767px) {
      body.programs .feature {
        margin-bottom: 0; } }
  body.programs .amenities-mini-section .image-slider {
    margin-bottom: 0; }
    body.programs .amenities-mini-section .image-slider .slick-slider {
      margin-bottom: 0; }
  body.programs .more-button {
    focus: none;
    margin-bottom: 20px;
    outline: none;
    text-align: center;
    text-transform: uppercase;
    width: 100%; }
    body.programs .more-button .hidden {
      display: none; }
@inclue mobile {
  body.programs .more-button.mobile {
    display: block; } }
    @media screen and (min-width: 768px) {
      body.programs .more-button.mobile {
        display: none; } }
    @media screen and (max-width: 767px) {
      body.programs .more-button {
        float: left;
        width: auto; } }
    body.programs .more-button button {
      letter-spacing: .09em;
      margin: 0;
      text-transform: uppercase;
      font-family: "SuisseIntl-Regular", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: normal;
      font-style: normal;
      font-size: 0.5625em;
      line-height: 10px;
      background: url("../../../../../images/bryantpark/more-button.svg");
      background-repeat: no-repeat;
      border: none;
      height: 42px;
      text-transform: uppercase;
      width: 98px;
      cursor: pointer; }
      @media screen and (max-width: 767px) {
        body.programs .more-button button {
          font-size: 9px;
          height: 33px;
          text-align: center;
          width: 77px; } }
  body.programs ul.center {
    text-align: center; }
    body.programs ul.center li {
      margin: 0 auto; }
  @media screen and (min-width: 768px) {
    body.programs .info {
      padding-bottom: 4.5em; } }
  body.programs .info .sponsors ul {
    margin-bottom: 1.25em; }
    @media screen and (max-width: 767px) {
      body.programs .info .sponsors ul {
        margin-bottom: 0; } }
    @media screen and (max-width: 767px) {
      body.programs .info .sponsors ul.sponsored-by li img {
        max-width: 50%; } }
    @media screen and (max-width: 767px) {
      body.programs .info .sponsors ul li {
        margin-bottom: 0; } }
  body.programs .film-tip {
    border-top: 1px solid #939597;
    padding-top: 0.9375em;
    padding-bottom: 2.8125em; }
    @media screen and (min-width: 768px) {
      body.programs .film-tip:first-of-type {
        margin-top: 0.625em; } }
    @media screen and (max-width: 767px) {
      body.programs .film-tip:last-of-type {
        margin-bottom: 1.25em; } }
    @media screen and (max-width: 767px) {
      body.programs .film-tip {
        display: table;
        padding-top: 0.625em;
        padding-bottom: 1.875em; } }
    body.programs .film-tip h4 {
      margin: 0 0 0.18182em 0;
      max-width: 100%; }
      @media screen and (max-width: 767px) {
        body.programs .film-tip h4 {
          font-size: 1em;
          line-height: 1.5em;
          margin-bottom: 0; } }
    body.programs .film-tip .datetime {
      margin-bottom: 1.42857em; }
    @media screen and (max-width: 767px) {
      body.programs .film-tip .description {
        display: none; } }
    @media screen and (max-width: 767px) {
      body.programs .film-tip .read-more {
        display: none; } }
    @media screen and (max-width: 767px) {
      body.programs .film-tip figcaption {
        display: none; } }
    @media screen and (max-width: 767px) {
      body.programs .film-tip img {
        float: left;
        margin-right: 1.25em;
        width: 46%; } }
  body.programs .sponsors {
    border-top: 1px solid #bbbdc0; }
    body.programs .sponsors.bordered {
      border-top: 1px solid #bbbdc0; }
    body.programs .sponsors .program-logo {
      margin-bottom: 1.875em;
      padding-top: 0.9375em;
      max-width: 16.875em; }
      @media screen and (max-width: 767px) {
        body.programs .sponsors .program-logo {
          max-height: 70px;
          max-width: 130px; } }
    body.programs .sponsors h3 {
      margin: 0;
      font-size: 1em; }
    body.programs .sponsors ul {
      align-items: center;
      display: flex;
      flex-wrap: wrap;
      padding: 0;
      width: 100%; }
      body.programs .sponsors ul li img {
        display: block;
        margin: 0 auto;
        max-height: 70px;
        max-width: 120px; }
      body.programs .sponsors ul.rows-of-2 li {
        width: 50%; }
      body.programs .sponsors ul.rows-of-3 li {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 31.8%;
        margin-left: 0%;
        margin-right: 2.3%;
        height: auto;
        width: auto;
        margin-bottom: 30px;
        margin-right: 6.3%; }
        body.programs .sponsors ul.rows-of-3 li:before, body.programs .sponsors ul.rows-of-3 li:after {
          content: '';
          display: table; }
        body.programs .sponsors ul.rows-of-3 li:after {
          clear: both; }
        body.programs .sponsors ul.rows-of-3 li:nth-child(3n) {
          margin-right: 0%;
          float: right; }
        body.programs .sponsors ul.rows-of-3 li:nth-child(3n + 1) {
          clear: both; }
        body.programs .sponsors ul.rows-of-3 li:nth-child(3n) {
          margin-right: 0; }
        @media screen and (max-width: 767px) {
          body.programs .sponsors ul.rows-of-3 li {
            height: auto; } }
      body.programs .sponsors ul.rows-of-3.smaller {
        margin-bottom: 2em; }
        body.programs .sponsors ul.rows-of-3.smaller li {
          margin-bottom: 30px;
          margin-right: 6.3%; }
          body.programs .sponsors ul.rows-of-3.smaller li img {
            max-height: 60px;
            max-width: 100px; }
          body.programs .sponsors ul.rows-of-3.smaller li:nth-child(3n) {
            margin-right: 0; }
          @media screen and (max-width: 767px) {
            body.programs .sponsors ul.rows-of-3.smaller li {
              height: auto; } }
    body.programs .sponsors li {
      display: block;
      list-style-type: none; }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
body.shop-eat {
  background: white; }
  body.shop-eat .info {
    margin-top: 0 !important; }
  @media screen and (min-width: 768px) {
    body.shop-eat .sponsors {
      margin-top: 20px !important; } }
  body.shop-eat #page-header {
    margin-bottom: 2.5em; }
    @media screen and (max-width: 767px) {
      body.shop-eat #page-header {
        margin-bottom: 2em; } }
  body.shop-eat .react-kiosk-carousel .slick-slider {
    margin-bottom: 17px; }
    @media screen and (max-width: 767px) {
      body.shop-eat .react-kiosk-carousel .slick-slider {
        margin-bottom: 0; } }
  body.shop-eat .grid-content .feature {
    margin-bottom: 50px; }
  body.shop-eat .restaurant {
    padding-bottom: 60px; }
    @media screen and (max-width: 767px) {
      body.shop-eat .restaurant {
        padding-bottom: 30px; } }
    body.shop-eat .restaurant .title {
      font-family: "ObjektivMk1_Md", Georgia, serif;
      margin-bottom: .25em; }
  body.shop-eat .shop-filter {
    display: table;
    width: 100%; }
  body.shop-eat .carousel {
    padding-left: 0;
    padding-right: 0; }
  body.shop-eat .feature .text-block.right {
    float: left;
    margin-left: 160px;
    max-width: 380px; }
    body.shop-eat .feature .text-block.right p {
      margin-top: 0; }
    body.shop-eat .feature .text-block.right p:empty {
      display: none; }
    body.shop-eat .feature .text-block.right .title:first-of-type {
      margin-top: 1.66667em; }
      @media screen and (max-width: 767px) {
        body.shop-eat .feature .text-block.right .title:first-of-type {
          margin-top: 0; } }
    body.shop-eat .feature .text-block.right ul {
      font-size: 1.125em;
      line-height: 1.38889em;
      list-style: none;
      margin: 0;
      margin-bottom: 1.25em;
      padding-left: 0; }
      @media screen and (max-width: 767px) {
        body.shop-eat .feature .text-block.right ul {
          font-size: 0.8125em;
          line-height: 1.46154em;
          margin-top: .4em; } }

/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
body.the-park {
  background: white; }
  @media screen and (max-width: 767px) {
    body.the-park .about-us-mini-section .rte-styles {
      float: left;
      margin-top: 20px;
      width: 100%; } }
  @media screen and (max-width: 767px) {
    body.the-park .about-us-mini-section .rte-styles .collapsible-panel {
      height: auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 767px) {
    body.the-park .the-grounds .rte-styles {
      float: left;
      margin-top: 20px;
      width: 100%; } }
  @media screen and (max-width: 767px) {
    body.the-park .the-grounds .rte-styles .collapsible-panel {
      height: auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 767px) {
    body.the-park .react-single-image-carousel {
      margin-bottom: 1.5625em; } }
  @media screen and (max-width: 767px) {
    body.the-park .anchor-links {
      margin-bottom: 2.125em; } }
  body.the-park #page-header {
    margin-bottom: 2.5em; }
    @media screen and (max-width: 767px) {
      body.the-park #page-header {
        margin-bottom: 2em; } }
  body.the-park .park-summary {
    margin-bottom: 1.75em;
    margin-top: 4.25em; }
    @media screen and (max-width: 767px) {
      body.the-park .park-summary {
        margin-bottom: 2.5em;
        margin-top: 1.9em; } }
  body.the-park .park-map * {
    background-color: transparent; }
  body.the-park .park-map #map {
    height: 700px;
    max-width: 1200px;
    width: 100%; }
    @media screen and (max-width: 767px) {
      body.the-park .park-map #map {
        height: 210px;
        min-width: 280px; } }
  @media screen and (max-width: 767px) {
    body.the-park .park-map h2.overline {
      float: left;
      width: 100%; } }
  body.the-park .park-map .gmnoprint .gm-style-mtc {
    display: none !important; }
  body.the-park .park-areas .areas-info {
    margin-top: 50px; }
  body.the-park .park-areas .areas-list {
    margin-top: 35px; }
    body.the-park .park-areas .areas-list .amenities-list {
      width: 100%; }
      @media screen and (min-width: 768px) {
        body.the-park .park-areas .areas-list .amenities-list {
          width: 92%; } }
      @media screen and (max-width: 767px) {
        body.the-park .park-areas .areas-list .amenities-list {
          border: none;
          padding: 0; }
          body.the-park .park-areas .areas-list .amenities-list:before {
            height: 85%;
            left: 50%;
            top: 4.5em; }
          body.the-park .park-areas .areas-list .amenities-list .column-left,
          body.the-park .park-areas .areas-list .amenities-list .column-right {
            float: left;
            margin-top: .5em;
            margin-right: 6.3%;
            width: 46.85%; }
            body.the-park .park-areas .areas-list .amenities-list .column-left:last-of-type,
            body.the-park .park-areas .areas-list .amenities-list .column-right:last-of-type {
              margin-right: 0; }
            body.the-park .park-areas .areas-list .amenities-list .column-left:nth-child(2n + 2),
            body.the-park .park-areas .areas-list .amenities-list .column-right:nth-child(2n + 2) {
              margin-right: 0; }
            body.the-park .park-areas .areas-list .amenities-list .column-left article,
            body.the-park .park-areas .areas-list .amenities-list .column-right article {
              padding: 0; }
              body.the-park .park-areas .areas-list .amenities-list .column-left article:nth-child(2n + 2):after,
              body.the-park .park-areas .areas-list .amenities-list .column-right article:nth-child(2n + 2):after {
                content: '';
                display: block;
                clear: both; }
              body.the-park .park-areas .areas-list .amenities-list .column-left article a,
              body.the-park .park-areas .areas-list .amenities-list .column-right article a {
                margin-bottom: .45em;
                padding: 0 0 .55em 0; }
              body.the-park .park-areas .areas-list .amenities-list .column-left article h4,
              body.the-park .park-areas .areas-list .amenities-list .column-right article h4 {
                font-size: 1em;
                margin-bottom: .25em; } }
        @media screen and (max-width: 767px) and (max-width: 767px) {
          body.the-park .park-areas .areas-list .amenities-list .column-left article h4,
          body.the-park .park-areas .areas-list .amenities-list .column-right article h4 {
            font-size: 13px;
            line-height: 17px; } }
      @media screen and (max-width: 767px) {
          body.the-park .park-areas .areas-list .amenities-list p {
            font-size: .65em;
            margin-top: .2em; } }
      body.the-park .park-areas .areas-list .amenities-list h1 {
        padding-bottom: 1.125em; }
        @media screen and (max-width: 767px) {
          body.the-park .park-areas .areas-list .amenities-list h1 {
            font-size: .6em;
            padding-bottom: 1em;
            padding-top: 1.25em; } }
  @media screen and (min-width: 768px) {
    body.the-park .park-areas .areas-info,
    body.the-park .park-areas .areas-list {
      margin-top: 90px; } }
  body.the-park .history .feature {
    margin-bottom: 0;
    margin-top: 3.5em; }
    @media screen and (max-width: 767px) {
      body.the-park .history .feature {
        margin-top: 1.75em; } }
    body.the-park .history .feature h1 {
      font-size: 2.6em;
      font-weight: normal;
      line-height: .75em;
      margin: 0;
      margin-bottom: .85em;
      margin-top: .55em; }
      @media screen and (max-width: 767px) {
        body.the-park .history .feature h1 {
          font-size: 1.75em;
          margin-bottom: 1em;
          margin-top: .5em; } }
    body.the-park .history .feature .text-block p {
      margin-top: 1.4em; }
      @media screen and (max-width: 767px) {
        body.the-park .history .feature .text-block p {
          margin-top: 1.125em; } }
  body.the-park .rules-regulations {
    margin-top: 90px;
    padding-bottom: 90px; }
    @media screen and (max-width: 767px) {
      body.the-park .rules-regulations {
        margin-top: 50px !important;
        padding-bottom: 50px !important; } }
    @media screen and (max-width: 767px) {
      body.the-park .rules-regulations {
        margin-top: 0.75em; } }
    @media screen and (max-width: 767px) {
      body.the-park .rules-regulations .info {
        margin-top: 0; } }
    @media screen and (max-width: 767px) {
      body.the-park .rules-regulations .info .info-set:first-of-type {
        margin-bottom: 3.125em; } }
    @media screen and (max-width: 767px) {
      body.the-park .rules-regulations .info h2 {
        padding-top: .25em; } }
    body.the-park .rules-regulations .info h4 {
      margin-top: 0.27273em; }
      @media screen and (max-width: 767px) {
        body.the-park .rules-regulations .info h4 {
          font-size: 1em;
          margin-bottom: 0.5em;
          margin-top: 1em; } }
    body.the-park .rules-regulations .info ul {
      line-height: 0em;
      list-style: none;
      margin-bottom: 0;
      margin-top: .7em;
      padding-left: 0em; }
      @media screen and (max-width: 767px) {
        body.the-park .rules-regulations .info ul {
          margin-top: .3em; } }
      body.the-park .rules-regulations .info ul li {
        border-top: 1px solid black;
        font-size: 1.0625em;
        line-height: 1.375em;
        margin-top: 0px;
        padding-bottom: 0.77778em;
        padding-left: 1.66667em;
        padding-top: 0.77778em; }
        body.the-park .rules-regulations .info ul li:last-of-type {
          padding-bottom: 0; }
        @media screen and (max-width: 767px) {
          body.the-park .rules-regulations .info ul li {
            font-size: 0.875em;
            padding-bottom: 0.5em;
            padding-left: 2.14286em;
            padding-top: 0.92857em; } }
        @media screen and (max-width: 1279px) and (min-width: 768px) {
          body.the-park .rules-regulations .info ul li {
            font-size: 0.875em; } }
        @media screen and (min-width: 1280px) {
          body.the-park .rules-regulations .info ul li {
            font-size: 1.0625em; } }
        body.the-park .rules-regulations .info ul li span {
          float: left;
          font-size: 1em;
          margin-left: -32px; }
          @media screen and (max-width: 767px) {
            body.the-park .rules-regulations .info ul li span {
              margin-top: 0; } }
  body.the-park .partners .info {
    display: table;
    margin-bottom: 0;
    margin-top: 4.125em;
    padding-bottom: 3.75em; }
    @media screen and (max-width: 767px) {
      body.the-park .partners .info {
        margin-top: 2em;
        padding-bottom: .25em; } }
    body.the-park .partners .info .text-block p {
      margin-top: 0; }
    body.the-park .partners .info .partner-summary {
      margin-top: 2.625em; }
      @media screen and (max-width: 767px) {
        body.the-park .partners .info .partner-summary {
          margin-bottom: 1.75em;
          margin-top: 1.75em; } }
      body.the-park .partners .info .partner-summary .collapsible-panel {

        margin-bottom: 0; }
        @media screen and (max-width: 767px) {
          body.the-park .partners .info .partner-summary .collapsible-panel {
           } }
  @media screen and (max-width: 767px) {
    body.the-park.the-neighborhood .park-areas {
      margin-bottom: 50px; } }

.subsection {
  margin: 2em 0; }
#page-header #main-navigation li.has-submenu span{
    display:none;
}
/*
  Base sizing
*/
/* 16 is a sensible base. Leave this value. */
/*
  Browser
*/
/*
  Theme Colors
*/
/*
  Defaults
*/
/*
  Mixins
*/
/*
  Functions
*/
/*
  Suisse Sans Regular
*/
/*
  Suisse Sans Itaic
*/
/*
  Objektiv Bold
*/
/*
  Objektiv Medium
*/
/*
  Objektiv Medium Italic
*/
/*
  MaisonNeue Bold
*/
/* Media Breakpoints */
body.about-us {
  background: white; }
  @media screen and (max-width: 767px) {
    body.about-us .text-block p {
      margin-bottom: 19px; } }
  body.about-us .rte-styles h4 {
    margin-bottom: 0; }
  body.about-us .rte-styles h5 {
    padding-top: 0;
    padding-bottom: 5px; }
  @media screen and (min-width: 768px) {
    body.about-us .anchor-links {
      margin-bottom: 5.5em; } }
  body.about-us #outer .about-us-mini-section .image-slider,
  body.about-us #outer .about-us-mini-section .grid-content.feature,
  body.about-us #outer .about-us-mini-section .text-block {
    margin-bottom: 0; }
  body.about-us .collapsible-panel {
    height: auto;
    margin-top: 1.125em; }
    @media screen and (min-width: 768px) {
      body.about-us .collapsible-panel {
        margin-bottom: 1.5em; } }
    @media screen and (max-width: 767px) {
      body.about-us .collapsible-panel {
        float: left;
        width: 100%; } }
    @media screen and (max-width: 767px) {
      body.about-us .collapsible-panel:last-of-type {
        margin-bottom: 0; } }
  @media screen and (max-width: 767px) {
    body.about-us .info-block {
      padding-bottom: 0; } }
  @media screen and (max-width: 767px) {
    body.about-us .info-block p:last-of-type {
      margin-bottom: 3.125em; } }
  @media screen and (min-width: 768px) {
    body.about-us .feature {
      margin-top: 0; } }
  body.about-us p {
    margin-top: 0; }
@media screen and (max-width: 878px){
  #page-header #main-navigation ul li{
    margin-left: 1.05em;
  }
}
@media screen and (max-width: 767px){
  #page-header #main-navigation ul.submenu{
    position: relative;
    top: 0px;
    background: transparent !important;
  }
  #page-header #main-navigation li.has-submenu span{
    display:inline-block;
  }
  #page-header #main-navigation ul.submenu li{
    font-size: 75%;
  }
  #page-header #main-navigation #events-submenu{
    width: 85% !important;
  }
  #page-header #main-navigation .links ul li.has-submenu span{
    position: relative;
    right:0;
    color: #fff;
    padding: 0 20px;
  }
}
.hideScroll{
  overflow:hidden;
  position: fixed;
}

.has-submenu .arrow-up {
  transform: rotate(180deg);
  cursor: pointer;
  position: absolute;
  right: 5px;
  background: url(/images/bryantpark/dropdown-arrow-white.svg);
  background-repeat: no-repeat;
  height: 16px;
  width: 26px;
  padding:0px 0px 0px 0px !important;
  margin: 0 0 6px 15px;
}

.has-submenu .arrow-down {
  background: url(/images/bryantpark/dropdown-arrow-white.svg);
  background-repeat: no-repeat;
  height: 16px;
  width: 26px;
  padding:0px 0px 0px 0px !important;
  margin: 5px 0 0px 15px;
}
/*keep the submenus of the header nav open independent of eachother*/
@media only screen and (max-width: 767px) {
  #page-header #main-navigation ul.submenu{
    display:block;
  }
  #page-header.mobile #main-navigation .links {
    opacity : .87 !important;
  }
  .events-submenu-underlay {
    display:none !important;
  }
}

.events-submenu-underlay {
  position:absolute;
  width:100%;
  height:100%;
  z-index:-50;
}

@media screen and (max-device-width: 480px){
  body{
    -webkit-text-size-adjust: none !important;
  }
}
/*# sourceMappingURL=bryantpark.css.map */
/* The Modal (background) */
.bpmodal {
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left:0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

/* Modal Content/Box */
.bpmodal-content {
  background-color: transparent;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 0px;
  width: 90%; /* Could be more or less, depending on screen size */
  text-align:center;
  height:auto;
  color:#fff;
  z-index:10000 !important;
}
.bpmodal-content h4{text-align: center !important;
margin:0 auto;}
.bpmodal-content * {
  z-index:10000 !important;
}

.bpmodal-content img {
  margin:0 auto;
  display: block;
  position: relative;
  
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
