@charset "UTF-8";
/*********************************************
:: SASS Setup
   Load your helper files
   Set them up inside variables
********************************************/
/*********************************************

:: Table of Contents
   1. Breakpoints
   2. Typography
   3. Font Management
   4. Buttons

:: Note -
   If you can't find something in here...
   a) open up the relevant .scss partial.
   b) At the top of the partial there maybe
   some partial specific variables.

********************************************/
/*******************************************
// 1. Breakpoints
/*

    Mappy breakpoints: https://github.com/zellwk/mappy-breakpoints
    Usage:
    @include mappy-bp(small){
        stuff
    }

*/
/*******************************************
// 2. Typography
/*

    Typi: https://github.com/zellwk/typi
    Usage:
    @include typi($h1-map)
    .element{
    @include typi(whatever-map-youve-defined)
  }

*/
/*******************************************
// 3. Font Management
/*

    Usage:
    .element{
    font-family: $font-family-1;
    font-weight: $font-light;
  }

*/
/*******************************************
// 4. Colours
/*

    Usage:
    .element{
    color: $color-brand-4;
  }

*/
/*******************************************
// 5. Buttons
/*

    Usage:
    .button{
     background: $button-background-color;
     color: $button-text-color;
  }

*/
/*******************************************
// 6. Form
/*

    Usage:
    .input{
     background: $form-field-background-color;
     color: $form-field-text-color;
  }

*/
/*********************************************
:: Core
   Base Elements
   eg. typography, fonts, forms, buttons etc.                      
********************************************/
/*********************************************
:: Normalize                        
********************************************/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700,700italic,300italic,300);
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

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

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background-color: transparent; }

a:active, a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

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

input {
  line-height: normal; }

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0; }

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto; }

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: 700; }

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

td, th {
  padding: 0; }

h1, h2, legend, h3, h4, h5, h6, ol, ul, blockquote, p, li, dt, dl, dd {
  margin: 0px;
  padding: 0px; }

.button, button, button[type="submit"], input[type="submit"], input[type="button"], input[type="reset"] {
  outline: none;
  border: none;
  cursor: pointer;
  width: auto;
  padding: 0px;
  margin: 0px; }

legend, fieldset {
  margin: 0px;
  padding: 0px;
  border: none; }

figure {
  margin: 0px; }

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

/*******************************************/

::selection {
  background: #E40000;
  color: white; }

img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: inline-block; }

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

[class^="icon-"], [class*=" icon-"] {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-ico-search:before {
  content: "\e910"; }

.icon-angle-double-down:before {
  content: "\e911"; }

.icon-angle-double-left:before {
  content: "\e912"; }

.icon-angle-double-right:before {
  content: "\e913"; }

.icon-angle-double-up:before {
  content: "\e914"; }

.icon-angle-down:before {
  content: "\e915"; }

.icon-angle-left:before {
  content: "\e916"; }

.icon-angle-right:before {
  content: "\e917"; }

.icon-angle-up:before {
  content: "\e918"; }

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

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

.icon-arrow-circle-o-down:before {
  content: "\e91b"; }

.icon-arrow-circle-o-left:before {
  content: "\e91c"; }

.icon-arrow-circle-o-right:before {
  content: "\e91d"; }

.icon-arrow-circle-o-up:before {
  content: "\e91e"; }

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

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

.icon-bars:before {
  content: "\e921"; }

.icon-calendar:before {
  content: "\e922"; }

.icon-check:before {
  content: "\e923"; }

.icon-chevron-circle-down:before {
  content: "\e924"; }

.icon-chevron-circle-left:before {
  content: "\e925"; }

.icon-chevron-circle-right:before {
  content: "\e926"; }

.icon-chevron-circle-up:before {
  content: "\e927"; }

.icon-chevron-down:before {
  content: "\e928"; }

.icon-chevron-left:before {
  content: "\e929"; }

.icon-chevron-right:before {
  content: "\e92a"; }

.icon-chevron-up:before {
  content: "\e92b"; }

.icon-envelope-o:before {
  content: "\e92c"; }

.icon-facebook-square:before {
  content: "\e92d"; }

.icon-facebook:before {
  content: "\e92e"; }

.icon-file:before {
  content: "\e92f"; }

.icon-google-plus-square:before {
  content: "\e930"; }

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

.icon-info-circle:before {
  content: "\e932"; }

.icon-instagram:before {
  content: "\e933"; }

.icon-linkedin-square:before {
  content: "\e934"; }

.icon-linkedin:before {
  content: "\e935"; }

.icon-map-marker:before {
  content: "\e936"; }

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

.icon-phone:before {
  content: "\e938"; }

.icon-pinterest-square:before {
  content: "\e939"; }

.icon-pinterest:before {
  content: "\e93a"; }

.icon-play:before {
  content: "\e93b"; }

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

.icon-question-circle:before {
  content: "\e93d"; }

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

.icon-search:before {
  content: "\e93f"; }

.icon-shopping-cart:before {
  content: "\e940"; }

.icon-sort:before {
  content: "\e941"; }

.icon-tags:before {
  content: "\e942"; }

.icon-times:before {
  content: "\e943"; }

.icon-tumblr-square:before {
  content: "\e944"; }

.icon-tumblr:before {
  content: "\e945"; }

.icon-twitter-square:before {
  content: "\e946"; }

.icon-twitter:before {
  content: "\e947"; }

.icon-user:before {
  content: "\e948"; }

.icon-vimeo-square:before {
  content: "\e949"; }

.icon-youtube-play:before {
  content: "\e94a"; }

.icon-youtube-square:before {
  content: "\e94b"; }

.icon-youtube:before {
  content: "\e94c"; }

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

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

.icon-lnr-car:before {
  content: "\e902"; }

.icon-lnr-bubble:before {
  content: "\e903"; }

.icon-lnr-select:before {
  content: "\e90f"; }

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

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

.icon-lnr-mail:before {
  content: "\e906"; }

.icon-lnr-phone:before {
  content: "\e907"; }

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

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

.icon-star-outlined:before {
  content: "\e90a"; }

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

.icon-pin:before {
  content: "\e955"; }

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

.icon-lnr-bubble2:before {
  content: "\e90b"; }

.icon-lnr-car2:before {
  content: "\e94d"; }

.icon-lnr-select2:before {
  content: "\e94e"; }

.icon-lnr-sync2:before {
  content: "\e94f"; }

.icon-lnr-star-full2:before {
  content: "\e950"; }

.icon-mail:before {
  content: "\e951"; }

.icon-phone2:before {
  content: "\e952"; }

.icon-printer:before {
  content: "\e953"; }

.icon-lnr-star:before {
  content: "\e956"; }

.icon-lnr-users2:before {
  content: "\e954"; }

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

.icon-edit:before {
  content: "\e601"; }

.icon-facebook2:before {
  content: "\e602"; }

.icon-instagram2:before {
  content: "\e603"; }

.icon-logout:before {
  content: "\e604"; }

.icon-magnifier:before {
  content: "\e605"; }

.icon-twitter2:before {
  content: "\e607"; }

.icon-user2:before {
  content: "\e608"; }

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

.icon-ico-bed:before {
  content: "\e957"; }

.icon-ico-bath:before {
  content: "\e958"; }

.icon-ico-call:before {
  content: "\e959"; }

.icon-ico-car:before {
  content: "\e95a"; }

.icon-ico-chair:before {
  content: "\e95b"; }

.icon-ico-dollar:before {
  content: "\e95d"; }

.icon-ico-location:before {
  content: "\e95e"; }

.icon-ico-mail:before {
  content: "\e95f"; }

.icon-ico-map:before {
  content: "\e960"; }

.icon-ico-picture:before {
  content: "\e961"; }

.icon-ico-pool:before {
  content: "\e962"; }

.icon-download-arrow:before {
  content: "\e95c"; }

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

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

/*********************************************
:: Typography
********************************************/
/*******************************************/
html {
  font-family: "proxima-nova", "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 87.5%;
  line-height: 1.2; }
  @media all and (min-width: 1024px) {
    html {
      font-size: 100%;
      line-height: 1.5; } }

h1 {
  display: block;
  margin: 0px auto 30px auto;
  color: #FF713D;
  font-size: 1.725em;
  line-height: 1.2; }
  @media all and (min-width: 1024px) {
    h1 {
      font-size: 2.7em;
      line-height: 1.3; } }

h2, legend {
  font-size: 1.5em;
  line-height: 1.2;
  font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 400;
  margin-bottom: 15px; }
  @media all and (min-width: 1024px) {
    h2, legend {
      font-size: 2.5em;
      line-height: 1.3; } }

h3 {
  font-size: 1.313em;
  line-height: 1.2;
  font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-weight: 700;
  margin-bottom: 15px; }
  @media all and (min-width: 1024px) {
    h3 {
      font-size: 2em;
      line-height: 1.3; } }

h4 {
  font-size: 1.1em;
  line-height: 1.2;
  margin-bottom: 15px; }
  @media all and (min-width: 1024px) {
    h4 {
      font-size: 1.25em;
      line-height: 1.3; } }

h5 {
  font-size: 0.875em;
  line-height: 1.2;
  margin-bottom: 15px; }
  @media all and (min-width: 1024px) {
    h5 {
      font-size: 1.15em;
      line-height: 1.3; } }

h6 {
  font-size: 0.813em;
  line-height: 1.2;
  margin-bottom: 15px; }
  @media all and (min-width: 1024px) {
    h6 {
      font-size: 0.938em;
      line-height: 1.3; } }

p, li, td, th, a, mark, time, dl, blockquote, label, address {
  font-size: 0.938em;
  line-height: 1.7;
  font-size: 1em;
  color: #666;
  margin-bottom: 15px; }
  p a, p li, p p, p mark, p cite, p time, li a, li li, li p, li mark, li cite, li time, td a, td li, td p, td mark, td cite, td time, th a, th li, th p, th mark, th cite, th time, a a, a li, a p, a mark, a cite, a time, mark a, mark li, mark p, mark mark, mark cite, mark time, time a, time li, time p, time mark, time cite, time time, dl a, dl li, dl p, dl mark, dl cite, dl time, blockquote a, blockquote li, blockquote p, blockquote mark, blockquote cite, blockquote time, label a, label li, label p, label mark, label cite, label time, address a, address li, address p, address mark, address cite, address time {
    font-size: 1em; }

p img {
  display: inline-block;
  vertical-align: middle; }

a {
  color: #FF713D;
  font-weight: 400;
  text-decoration: none;
  margin: 0px;
  transition: all .5s ease-in-out; }
  a:hover, a:focus, a:active {
    color: #ff4400; }

small {
  font-size: 0.938em;
  line-height: 1.7;
  font-size: 70%; }

strong, b {
  font-weight: 700;
  color: black; }

em, i {
  font-style: italic; }

hr {
  float: left;
  width: 100%;
  background: #ccc;
  height: 2px;
  border: none;
  outline: none;
  margin-bottom: 15px;
  display: block; }
  @media all and (min-width: 64em) {
    hr {
      margin-bottom: 30px; } }

/*******************************************/
dt {
  font-weight: 700; }
  dt:after {
    content: ':'; }

dt:after {
  content: ": "; }

ul, ol {
  margin-left: 25px;
  margin-bottom: 15px; }
  ul ul, ul ol, ol ul, ol ol {
    margin-bottom: 0px; }

li {
  margin-bottom: 5px; }

ul li {
  list-style-type: none;
  position: relative;
  text-indent: 0px;
  color: black;
  font-weight: normal; }

ol li {
  list-style-type: decimal; }

ul.green-nav {
  display: inline-block;
  margin: 0px 0px 20px 25px !important;
  text-align: left; }
  ul.green-nav li a {
    font-size: 1em !important;
    font-weight: 300;
    color: #7B7B7B !important;
    padding: 0px 20px 0px 0px !important;
    margin-bottom: 0px !important;
    border-bottom: none !important;
    position: relative; }
    ul.green-nav li a:before {
      content: '';
      position: absolute;
      top: 7px;
      left: -20px;
      background: url(/images/arrow-copy.png) no-repeat center;
      background-size: contain;
      width: 7px;
      height: 9px; }

.small-screen-main-menu ul.green-nav li a {
  color: #fff !important; }

/*******************************************/
code, pre, samp, kbd, var {
  background: #2D747E;
  color: white;
  padding: 1px 5px 1px 5px;
  white-space: pre-wrap;
  margin: 0px; }

pre {
  padding: 10px; }

/*******************************************/
blockquote {
  display: block;
  padding: 20px 10% 20px 10%;
  color: #FF713D;
  text-align: left;
  font-style: italic;
  font-size: 20px;
  font-size: 300;
  line-height: 1.7; }
  @media all and (min-width: 64em) {
    blockquote {
      font-size: 34px;
      line-height: 1.42; } }

.leadcopy {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: black; }
  @media all and (min-width: 64em) {
    .leadcopy {
      font-size: 17px;
      line-height: 1.33; } }

.wysiwyg {
  text-align: left; }
  .wysiwyg table img {
    min-width: 150px; }
  .wysiwyg h1 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.07;
    color: #FF713D; }
    @media all and (min-width: 64em) {
      .wysiwyg h1 {
        font-size: 26px;
        line-height: 1.57; } }
  .wysiwyg h2, .wysiwyg legend {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.07;
    color: #FF713D; }
    @media all and (min-width: 64em) {
      .wysiwyg h2, .wysiwyg legend {
        font-size: 24px;
        line-height: 1.57; } }
  .wysiwyg h3 {
    font-family: "proxima-nova", "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.31;
    color: #FF713D; }
    @media all and (min-width: 64em) {
      .wysiwyg h3 {
        font-size: 23px;
        line-height: 2.2; } }
  .wysiwyg img {
    margin: 0 auto 15px auto;
    display: block; }
  .wysiwyg iframe {
    max-width: 100%; }
  .wysiwyg ul li {
    list-style-type: disc; }

.wf-loading h1,
.wf-loading h2,
.wf-loading legend,
.wf-loading p,
.wf-loading a {
  visibility: hidden; }

/*********************************************
:: Buttons
********************************************/
/*******************************************/
.button-disabled,
.button[disabled],
button[disabled],
button[type="submit"][disabled],
input[type="submit"][disabled],
input[type="button"][disabled],
input[type="reset"][disabled] {
  opacity: 0.5;
  color: white;
  cursor: default; }

button {
  outline: none; }

/*******************************************/
.button {
  display: inline-block;
  text-decoration: none;
  height: auto;
  font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  transition: all .4s ease-in-out;
  background: transparent;
  color: #FF713D;
  padding: 6px 12px; }
  .button:hover {
    color: #FF713D; }

.back-btn {
  display: inline-block;
  font-size: 13px;
  color: black;
  margin-bottom: 20px; }
  .back-btn:hover {
    color: #FF6936; }

/*******************************************/
.button-tranzit, .button-tranzit-white {
  width: auto;
  height: 42px;
  line-height: 42px;
  padding: 0 40px 0 20px !important;
  display: inline-block;
  background: #FF6835 !important;
  color: white;
  position: relative;
  text-align: left; }
  .button-tranzit:before, .button-tranzit-white:before {
    content: '';
    width: 20px;
    height: 24px;
    background: url(/images/arrow.png) no-repeat center right;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px; }
  .button-tranzit:hover, .button-tranzit-white:hover {
    background: whitesmoke;
    color: white; }
    .button-tranzit:hover:before, .button-tranzit-white:hover:before {
      background: url(/images/arrow.png) no-repeat center right; }

.button-tranzit-white {
  background: white;
  color: #FF6936;
  border: 1px solid #FF6936; }
  .button-tranzit-white:before {
    background: url(/images/ico-arrow2.png) no-repeat center right; }
  .button-tranzit-white:hover {
    background: #FF6936;
    color: white; }
    .button-tranzit-white:hover:before {
      background: url(/images/ico-arrow2.png) no-repeat center right; }

/*******************************************/
.button-signup {
  width: auto;
  height: 42px;
  line-height: 42px;
  padding: 0 50px 0 20px !important;
  display: inline-block;
  background: #000 !important;
  color: white;
  border-radius: 6px;
  position: relative;
  text-align: left; }
  .button-signup:before {
    content: '';
    width: 20px;
    height: 24px;
    background: url(/images/ico-arrow2.png) no-repeat center right;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px; }
  .button-signup:hover {
    background: #ECECEC;
    color: #FF6936; }
    .button-signup:hover:before {
      background: url(/images/ico-arrow2.png) no-repeat center right; }

/*******************************************/
.button-social {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  background: #ECECEC;
  color: #FF713D;
  font-weight: 700;
  border-radius: 6px;
  position: relative; }
  .button-social span {
    color: #FF713D;
    line-height: 30px; }
  .button-social:hover {
    background: black;
    color: white; }
    .button-social:hover span {
      color: white; }

/*******************************************/
.button-small {
  font-size: 0.6em;
  line-height: 1; }
  @media all and (min-width: 1024px) {
    .button-small {
      font-size: 0.8em;
      line-height: 1; } }

/*******************************************/
.button-large {
  font-size: 1em;
  line-height: 1;
  padding: 15px 55px 15px 55px; }
  @media all and (min-width: 1024px) {
    .button-large {
      font-size: 1.2em;
      line-height: 1; } }

/*******************************************/
.button-icon span {
  font-size: 0.8em; }

.button-icon .icon-pos-left {
  margin-right: 10px; }

.button-icon .icon-pos-right {
  margin-left: 10px; }

/*******************************************/
.button-image {
  width: auto;
  height: 42px;
  line-height: 42px;
  font-weight: 600;
  text-align: center; }
  @media all and (min-width: 64em) {
    .button-image {
      float: left; } }
  .button-image img {
    width: 13px;
    margin: 13px 7px 0 0px; }
  .button-image .pos-left {
    text-align: center; }
    @media all and (min-width: 64em) {
      .button-image .pos-left {
        float: left; } }
  .button-image .pos-right {
    text-align: center; }
    @media all and (min-width: 64em) {
      .button-image .pos-right {
        float: right; } }

/*******************************************/
.button-text {
  background: none;
  padding: 0px;
  border-radius: 0%;
  color: #FF713D; }
  @media all and (min-width: 48em) {
    .button-text:hover {
      background: none;
      color: #ff4400; } }

/*******************************************/
.button-white {
  background: #fff;
  color: #FFFFFF; }
  @media all and (min-width: 48em) {
    .button-white:hover {
      background: #FFFFFF;
      color: #fff; } }

/*******************************************/
.button-transparent {
  background: transparent;
  border: 1px solid white;
  color: white; }
  @media all and (min-width: 48em) {
    .button-transparent:hover {
      background: #FF713D;
      border-color: #FF713D;
      color: #fff; } }

/*******************************************/
.button-underline {
  font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #FF6936;
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  display: inline-block; }
  .button-underline:after {
    content: '';
    position: absolute;
    margin: auto;
    bottom: 0px;
    left: 0;
    right: 0;
    width: 138px;
    height: 5px;
    background: #FF6936; }

/*******************************************/
.spinner {
  margin: 0px auto;
  width: 70px;
  text-align: center;
  position: absolute;
  margin: auto;
  top: 40px;
  left: 0;
  right: 0; }

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

.spinner .bounce1 {
  animation-delay: -0.32s; }

.spinner .bounce2 {
  animation-delay: -0.16s; }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

/*********************************************
:: Tables                    
********************************************/
table {
  width: 100%;
  margin-bottom: 15px; }
  table td, table th {
    padding: 15px 10px 15px 10px;
    text-align: left;
    font-weight: 400;
    color: #212121; }
  table th {
    font-weight: 700;
    background: #ececec; }
  table thead {
    width: 100%;
    background: #ececec; }
    table thead td, table thead th {
      padding: 5px 10px 5px 10px; }
  table tfoot {
    border-bottom: 1px solid #212121;
    border-top: 1px solid #212121; }
    table tfoot td {
      padding: 15px 10px 15px 10px; }

/*******************************************/
.compact-table {
  width: auto; }
  .compact-table td, .compact-table th {
    padding: 5px 10px 5px 10px;
    text-align: left;
    font-size: 0.8em;
    line-height: 1.2;
    font-weight: 400;
    color: #212121;
    background: none;
    border: 1px solid #ccc; }
  .compact-table thead {
    width: auto;
    background: none; }

/*******************************************/
.table-container {
  width: 100%;
  overflow-y: auto;
  _overflow: auto;
  margin: 0 0 1em; }

/*********************************************
:: Layout
********************************************/
body {
  transition: all .5s ease-in-out; }

.fouc {
  visibility: hidden;
  transition: all .5s ease-in-out;
  opacity: 0; }
  .fouc.fouc-off {
    visibility: visible;
    transition: all .5s ease-in-out;
    opacity: 1; }

/*******************************************/
/*******************************************/
.main {
  float: left;
  width: 100%;
  min-height: 600px; }
  @media all and (min-width: 64em) {
    .main {
      width: 100%;
      padding: 0px 0px 0px 0px;
      margin-top: -51px; } }

.main.page-home {
  border-top: none; }

/*******************************************/
.sidebar {
  float: left;
  width: 100%;
  padding: 20px 15px 20px 15px; }
  @media all and (min-width: 64em) {
    .sidebar {
      padding: 45px 0px 45px 0px; } }

/*******************************************/
.content-max-width {
  width: 100%;
  padding: 0 2%;
  position: relative;
  clear: both; }
  @media all and (min-width: 64em) {
    .content-max-width {
      max-width: 940px;
      margin: 0 auto;
      padding: 0px; } }

/*******************************************/
.content-maxi-width {
  width: 100%;
  padding: 0 2%;
  position: relative;
  clear: both; }
  @media all and (min-width: 64em) {
    .content-maxi-width {
      max-width: 1024px;
      margin: 0 auto;
      padding: 0px; } }

/*******************************************/
.content-slider-width {
  padding: 0 0%;
  position: relative;
  clear: both; }
  @media all and (min-width: 64em) {
    .content-slider-width {
      max-width: 940px;
      padding: 0px;
      margin: 0 auto; } }

/*******************************************/
@media all and (min-width: 64em) {
  .narrow-content-max-width {
    max-width: 940px;
    margin: 0 auto;
    clear: both; } }

/*******************************************/
.centered-content {
  width: 100%;
  max-width: 740px;
  display: inline-block;
  padding: 30px 0;
  text-align: center; }
  .centered-content p {
    font-size: 14px;
    line-height: 1.29; }
    @media all and (min-width: 64em) {
      .centered-content p {
        font-size: 18px;
        line-height: 1.33; } }
  .centered-content b {
    color: #000; }

.border-bottom {
  border-bottom: 3px solid #FEAF18; }

/*******************************************/
.mob {
  display: inline-block; }
  @media all and (min-width: 48em) {
    .mob {
      display: none; } }

.desktop {
  display: none; }
  @media all and (min-width: 48em) {
    .desktop {
      display: inline-block; } }

.mob-extended {
  display: inline-block; }
  @media all and (min-width: 64em) {
    .mob-extended {
      display: none; } }

.desktop-extended {
  display: none; }
  @media all and (min-width: 64em) {
    .desktop-extended {
      display: inline-block; } }

.readmore-open .icon-plus-circle:before {
  content: '\e92f'; }

.open-read-more-container {
  height: 100% !important; }

.specifics {
  width: 100%;
  float: left;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px; }
  @media all and (min-width: 64em) {
    .specifics {
      text-align: left; } }
  .specifics .icon {
    display: inline-block;
    border-right: 1px solid #FF6936;
    padding: 0 5px;
    color: #FF713D;
    font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-size: 17px; }
    .specifics .icon:last-of-type {
      border-right: none; }

.contact-box {
  width: 100%;
  max-width: 340px;
  text-align: center;
  border: 1px solid #FF713D;
  padding: 13px 0;
  margin: 20px auto; }
  @media all and (min-width: 64em) {
    .contact-box {
      float: left;
      margin: 20px 0; } }
  .contact-box h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 38px;
    color: #FF713D; }
    @media all and (min-width: 64em) {
      .contact-box h3 {
        font-size: 24px; } }
  .contact-box .branch {
    font-size: 14px;
    line-height: 38px;
    color: black;
    background: whitesmoke; }
  .contact-box a {
    font-size: 14px;
    font-weight: 400;
    line-height: 38px;
    color: #FF713D;
    display: block; }

/*********************************************
:: Forms
********************************************/
form {
  float: left;
  width: 100%;
  margin-bottom: 15px; }
  @media all and (min-width: 64em) {
    form {
      border-bottom: none;
      margin-bottom: 0px; } }

legend {
  margin-bottom: 15px; }

label {
  font-size: 0.938em;
  line-height: 1.7;
  font-weight: 700;
  color: #FF713D; }

/*******************************************/
.field-disabled,
input[disabled],
textarea[disabled],
select[disabled],
input[readonly],
textarea[readonly],
select[readonly] {
  opacity: 0.5;
  cursor: default; }

/*******************************************/
input, textarea, select {
  outline: none;
  border: none;
  width: 100%;
  display: inline-block;
  float: left;
  transition: all .5s ease-in-out;
  background: white;
  border: 1px solid #999999;
  padding: 6px 10px 6px 10px;
  height: 37px;
  -webkit-appearance: initial;
  font-size: 0.938em;
  line-height: 1.7; }
  @media all and (min-width: 64em) {
    input, textarea, select {
      height: 46px; } }
  input:hover, input:focus, textarea:hover, textarea:focus, select:hover, select:focus {
    transition: all .5s ease-in;
    background: #f1f1f1;
    border: 1px solid #FF6936; }

input[type=file] {
  border: none;
  padding: 0; }

.secondary {
  background: #f1f1f1;
  border: 1px solid #FF6936; }

.sumos {
  width: 100%;
  float: left;
  background: whitesmoke;
  padding: 10px 0 5px 0; }
  @media all and (min-width: 64em) {
    .sumos {
      float: right;
      padding: 0px; } }

.sumo-container {
  width: 200px;
  height: 36px;
  border: 1px solid #bed630;
  background: #f1f1f1;
  border-radius: 4px;
  margin: 0 auto; }
  @media all and (min-width: 64em) {
    .sumo-container {
      float: right; } }
  .sumo-container label {
    font-size: 12px;
    font-weight: 300;
    line-height: 36px;
    padding-left: 10px; }
    .sumo-container label img, .sumo-container label span {
      vertical-align: middle; }
  .sumo-container .SumoSelect {
    width: 145px;
    height: 35px;
    float: right; }
  .sumo-container .SumoSelect > .CaptionCont {
    background: transparent;
    border: none;
    color: #FF713D;
    font-weight: 600;
    line-height: 23px; }
  .sumo-container .SumoSelect > .optWrapper {
    top: 36px !important;
    left: -54px;
    width: 200px; }

/*******************************************/
*:-ms-input-placeholder {
  font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: #666;
  font-weight: 400; }
*::placeholder {
  font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  color: #666;
  font-weight: 400; }

textarea, select[multiple] {
  height: 98px; }

input[type=checkbox], input[type=radio] {
  height: auto;
  -webkit-appearance: checkbox; }

/*******************************************/
.form-field .custom-checkbox-radio {
  float: left;
  width: auto;
  margin-right: 0px;
  margin-bottom: 0px;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
  padding: 0px 0px 5px 0px; }
  .form-field .custom-checkbox-radio input {
    padding: 0;
    width: 15px;
    height: 15px;
    vertical-align: top;
    display: inline-block;
    margin-right: 5px;
    margin-top: 3px;
    cursor: pointer;
    background: none;
    border: none; }

.form-field .custom-checkbox-radio.field-disabled {
  cursor: default; }
  .form-field .custom-checkbox-radio.field-disabled input {
    cursor: default;
    opacity: 1; }

/*******************************************/
.form-field {
  float: left;
  width: 100%;
  padding: 0 0 15px 0; }
  .form-field > label {
    float: left;
    width: 100%;
    margin-bottom: 3px;
    padding-top: 8px; }

.mandatory {
  color: #666;
  font-size: 0.75em;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
  display: block; }
  @media all and (min-width: 64em) {
    .mandatory {
      text-align: left; } }

/*******************************************/
.button-field {
  float: left;
  width: 100%;
  margin: 15px 0;
  padding: 15px 0 0px 0;
  text-align: center;
  border-top: 3px solid #FF6936; }
  @media all and (min-width: 64em) {
    .button-field {
      text-align: left;
      padding-top: 30px;
      margin-top: 10px; } }
  .button-field .form-note {
    float: none;
    color: #666;
    margin-top: 11px;
    font-size: 12px;
    font-style: italic; }
    @media all and (min-width: 64em) {
      .button-field .form-note {
        margin: 0px;
        width: auto;
        float: left; } }
  .button-field button, .button-field .button, .button-field input[type="submit"], .button-field input[type="reset"] {
    display: block;
    width: 128px;
    height: 42px;
    margin: auto;
    text-align: center;
    float: none;
    transition: all .4s ease-in-out;
    background: #000; }
    @media all and (min-width: 64em) {
      .button-field button, .button-field .button, .button-field input[type="submit"], .button-field input[type="reset"] {
        margin-left: 10px;
        float: right; } }

/*******************************************/
.form-fields-stack.two-column {
  *zoom: 1; }
.form-fields-stack.two-column:before{
  content: '';
  display: table; }
.form-fields-stack.two-column:after{
  content: '';
  display: table;
  clear: both; }
  .form-fields-stack.two-column .form-field {
    width: 100%; }
    @media all and (min-width: 64em) {
      .form-fields-stack.two-column .form-field {
        width: calc(99.99% * 1/2 - (10px - 10px * 1/2)); }
      .form-fields-stack.two-column .form-field:nth-child(1n){
    float: left;
    margin-right: 10px;
    clear: none; }
      .form-fields-stack.two-column .form-field:last-child{
    margin-right: 0; }
      .form-fields-stack.two-column .form-field:nth-child(2n){
    margin-right: 0;
    float: right; }
      .form-fields-stack.two-column .form-field:nth-child(2n + 1){
    clear: left; } }

/*******************************************/
.form-fields-stack.three-column {
  *zoom: 1; }
.form-fields-stack.three-column:before{
  content: '';
  display: table; }
.form-fields-stack.three-column:after{
  content: '';
  display: table;
  clear: both; }
  .form-fields-stack.three-column .form-field {
    width: 100%; }
    @media all and (min-width: 64em) {
      .form-fields-stack.three-column .form-field {
        width: calc(99.99% * 1/3 - (10px - 10px * 1/3)); }
      .form-fields-stack.three-column .form-field:nth-child(1n){
    float: left;
    margin-right: 10px;
    clear: none; }
      .form-fields-stack.three-column .form-field:last-child{
    margin-right: 0; }
      .form-fields-stack.three-column .form-field:nth-child(3n){
    margin-right: 0;
    float: right; }
      .form-fields-stack.three-column .form-field:nth-child(3n + 1){
    clear: left; } }

/*******************************************/
.form-field.error input,
.form-field.error textarea,
.form-field.error select,
.form-field.error .SumoSelect > .CaptionCont {
  border-color: #E40000; }

.form-field.valid input,
.form-field.valid textarea,
.form-field.valid select,
.form-field.valid .SumoSelect > .CaptionCont {
  color: #000; }

.php-error {
  margin-left: 0px; }
  .php-error li:before {
    display: none; }

label.error, label.error-SumoSelect-label, .php-error li {
  color: #E40000 !important;
  margin-top: 0px;
  font-weight: 400;
  margin-bottom: 0px;
  font-size: 0.688em;
  font-style: italic; }

.form-note {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
  font-weight: 400; }

/*********************************************
:: Print                        
********************************************/
@media print {
  /*******************************************/
  header,
  footer,
  .breadcrumbs-module,
  .small-screen-menu-panel,
  .lightbox-popup,
  .tabs-module .buttons,
  .share-module,
  .onclick-lazyload-google-map,
  .lightbox-inline-trigger,
  .slideshow {
    display: none !important; }
  .tabs-module .tab-content {
    display: block !important; }
  .gallery-module, img {
    border-bottom: none !important;
    max-width: 400px;
    max-height: 400px; }
  /*******************************************/ }

/*********************************************
:: Common
   Common Components
   eg. header, footer, main menu etc.                   
********************************************/
/*********************************************
  :: Site Header
********************************************/
.site-header {
  float: left;
  width: 100%;
  height: 66px;
  background: white;
  text-align: center;
  padding: 10px 0px;
  position: relative;
  z-index: 999;
  /*******************************************/
  /*******************************************/
  /*******************************************/ }
  @media all and (min-width: 64em) {
    .site-header {
      background: transparent;
      height: 160px;
      overflow: hidden; } }
  .site-header .logo {
    float: left;
    width: auto;
    position: relative;
    padding: 0px; }
    @media all and (min-width: 64em) {
      .site-header .logo {
        max-width: 250px; } }
    .site-header .logo img {
      max-height: 45px; }
      @media all and (min-width: 64em) {
        .site-header .logo img {
          max-height: 88px;
          display: inline-block;
          float: left; } }
    .site-header .logo .location {
      position: absolute;
      right: 37px;
      bottom: -37px;
      color: #FF6936; }
  .site-header .contact-area {
    display: none; }
    @media all and (min-width: 64em) {
      .site-header .contact-area {
        float: right;
        display: inline-block;
        margin-top: -8px; } }
    .site-header .contact-area .locations-link {
      float: right;
      text-align: right;
      margin: 1px 0 11px 0;
      font-size: 12px;
      line-height: 10px;
      clear: both; }
    .site-header .contact-area .buttons {
      text-align: right;
      clear: both; }
    .site-header .contact-area p {
      font-size: 1em;
      font-weight: 300;
      line-height: 10px;
      color: #FF6936;
      margin-bottom: 0px;
      text-align: right;
      font-family: "proxima-nova", sans-serif !important; }
      .site-header .contact-area p a {
        font-family: "proxima-nova", sans-serif !important;
        color: #FF6936;
        font-size: 19px;
        font-weight: 400;
        margin-left: 3px; }
    .site-header .contact-area .button-social {
      width: 42px;
      height: 42px;
      line-height: 42px; }
    .site-header .contact-area .button-tranzit:hover {
      background: whitesmoke; }
  .site-header .large-nav {
    display: none; }
    @media all and (min-width: 64em) {
      .site-header .large-nav {
        float: left;
        display: inline-block;
        width: 100%;
        height: 38px;
        background: #FFB33E;
        position: relative;
        top: 10px;
        left: 0px; } }
    .site-header .large-nav .content-max-width {
      position: static; }
    .site-header .large-nav ul {
      margin: 0px;
      display: inline-block;
      text-align: center; }
    .site-header .large-nav li {
      display: inline-block;
      float: left;
      text-align: center; }
      .site-header .large-nav li:before {
        display: none; }
      .site-header .large-nav li a {
        font-size: 1.125em;
        line-height: 52px;
        font-weight: 400;
        color: white;
        padding: 0 50px 0 0;
        font-family: "proxima-nova", sans-serif !important; }
      .site-header .large-nav li.active {
        position: relative; }
        .site-header .large-nav li.active:before, .site-header .large-nav li.active:after {
          content: '';
          width: 2000px;
          height: 14px;
          background: #FFB33E;
          position: absolute;
          top: 37.7px;
          left: -1982px;
          z-index: 50;
          display: block;
          transform: skewX(-45deg); }
        .site-header .large-nav li.active:after {
          width: 2000px;
          bottom: 0px;
          left: 30px;
          transform: skewX(45deg); }
      .site-header .large-nav li.active:nth-of-type(2):before {
        left: -1966px; }
      .site-header .large-nav li.active:nth-of-type(2):after {
        left: 47px; }
      .site-header .large-nav li.active:nth-of-type(3):before {
        left: -1978px; }
      .site-header .large-nav li.active:nth-of-type(3):after {
        left: 35px; }
      .site-header .large-nav li.active:nth-of-type(4):before {
        left: -1964px; }
      .site-header .large-nav li.active:nth-of-type(4):after {
        left: 49px; }
      .site-header .large-nav li.active:nth-of-type(5):before {
        left: -1963px; }
      .site-header .large-nav li.active:nth-of-type(5):after {
        left: 54px; }
      .site-header .large-nav li.active:nth-of-type(6):before {
        left: -1958px; }
      .site-header .large-nav li.active:nth-of-type(6):after {
        left: 52px; }
      .site-header .large-nav li.active:nth-of-type(7):before {
        left: -1964px; }
      .site-header .large-nav li.active:nth-of-type(7):after {
        left: 49px; }
      .site-header .large-nav li.active:nth-of-type(8):before {
        left: -1968px; }
      .site-header .large-nav li.active:nth-of-type(8):after {
        left: 44px; }
      .site-header .large-nav li.active a {
        color: #FF713D; }
      .site-header .large-nav li.cart a {
        color: #FF713D;
        font-weight: 400;
        padding: 0 0px 0 0; }
        .site-header .large-nav li.cart a span {
          padding-right: 5px; }
  .site-header .button-call {
    position: absolute;
    top: 20px;
    left: 6%;
    z-index: 9;
    font-size: 18px; }
  .site-header .phone-me, .site-header .cart-me {
    float: right;
    margin: 9px 15px 0 0;
    background: white;
    display: inline-block; }
    @media all and (min-width: 64em) {
      .site-header .phone-me, .site-header .cart-me {
        display: none; } }
    .site-header .phone-me span, .site-header .cart-me span {
      font-size: 12px;
      color: #FF713D; }
      @media all and (min-width: 64em) {
        .site-header .phone-me span, .site-header .cart-me span {
          font-size: 20px; } }
  .site-header .cart-me span {
    color: #FF6936; }

/*********************************************
  :: Site Footer
********************************************/
.site-footer {
  float: left;
  width: 100%;
  background: white;
  /*******************************************/
  /*******************************************/ }
  .site-footer .tranzit-footer {
    width: 100%;
    float: left;
    background-color: #F3F3F3;
    padding: 30px 0 30px 0;
    position: relative;
    /*&:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            width: 100%;
            height: 230px;
            background-image: linear-gradient(180deg, $color-brand-2 0%, transparent 100%);
        }*/ }
    @media all and (min-width: 64em) {
      .site-footer .tranzit-footer {
        padding: 60px 0 30px 0; } }
    .site-footer .tranzit-footer .col1, .site-footer .tranzit-footer .col2 {
      width: 100%;
      float: left;
      text-align: center;
      position: relative;
      z-index: 2; }
      @media all and (min-width: 64em) {
        .site-footer .tranzit-footer .col1, .site-footer .tranzit-footer .col2 {
          width: 33%;
          text-align: left; } }
      .site-footer .tranzit-footer .col1 a, .site-footer .tranzit-footer .col2 a {
        color: #7B7B7B;
        font-weight: 400;
        margin-bottom: 5px;
        display: block; }
        .site-footer .tranzit-footer .col1 a b, .site-footer .tranzit-footer .col2 a b {
          color: #7B7B7B; }
      .site-footer .tranzit-footer .col1 .buttons, .site-footer .tranzit-footer .col2 .buttons {
        margin: 20px 0 48px 0; }
        @media all and (min-width: 64em) {
          .site-footer .tranzit-footer .col1 .buttons, .site-footer .tranzit-footer .col2 .buttons {
            margin: 10px 0 48px 0; } }
        .site-footer .tranzit-footer .col1 .buttons a, .site-footer .tranzit-footer .col2 .buttons a {
          display: inline-block; }
      .site-footer .tranzit-footer .col1 h4, .site-footer .tranzit-footer .col2 h4 {
        display: none; }
        @media all and (min-width: 64em) {
          .site-footer .tranzit-footer .col1 h4, .site-footer .tranzit-footer .col2 h4 {
            display: block;
            color: #FF6936;
            font-weight: 400; } }
    .site-footer .tranzit-footer .badges {
      display: block;
      margin: 0 auto;
      clear: both; }
      @media all and (min-width: 64em) {
        .site-footer .tranzit-footer .badges {
          float: left; } }
    .site-footer .tranzit-footer .arrow-design {
      position: absolute;
      top: -48px;
      right: 0px;
      z-index: 2;
      display: none; }
      @media all and (min-width: 64em) {
        .site-footer .tranzit-footer .arrow-design {
          display: inline-block;
          max-height: 250px; } }
  .site-footer .footer-legal {
    float: left;
    width: 100%;
    padding: 20px 20px 60px 20px;
    text-align: center;
    background: white; }
    @media all and (min-width: 64em) {
      .site-footer .footer-legal {
        background: white;
        padding: 25px 0 25px 0;
        text-align: left; } }
    .site-footer .footer-legal .extras {
      display: inline-block;
      text-align: center;
      padding: 0 0 20px 0; }
      @media all and (min-width: 64em) {
        .site-footer .footer-legal .extras {
          text-align: left;
          padding: 0 0 10px 0;
          display: block; } }
      .site-footer .footer-legal .extras a {
        font-size: 0.688em;
        color: #FF713D;
        text-decoration: underline; }
        @media all and (min-width: 64em) {
          .site-footer .footer-legal .extras a {
            margin-right: 10px; } }
    .site-footer .footer-legal .copyright {
      display: inline-block;
      width: 100%;
      font-size: 0.688em;
      font-weight: 400;
      line-height: 11px;
      margin-bottom: 5px;
      color: #CCCCCC;
      text-align: center; }
      @media all and (min-width: 64em) {
        .site-footer .footer-legal .copyright {
          float: left;
          text-align: left;
          width: auto;
          margin-bottom: 0px; } }
      .site-footer .footer-legal .copyright a {
        color: #CCCCCC;
        font-size: 11px;
        line-height: 11px; }
    .site-footer .footer-legal .attribution {
      display: inline-block;
      width: 100%;
      font-size: 0.688em;
      line-height: 11px;
      color: #CCCCCC;
      text-align: center; }
      @media all and (min-width: 64em) {
        .site-footer .footer-legal .attribution {
          float: right;
          text-align: right;
          width: auto; } }

/*********************************************
  :: Main Menu Toggle
********************************************/
button.small-screen-main-menu-trigger {
  width: 20px;
  float: right;
  padding: 0px;
  background: white;
  margin-top: 1px;
  transition: all .5s ease-in-out;
  position: static;
  top: 0%;
  left: 0%;
  right: auto;
  border-radius: 0px;
  display: inline-block;
  margin-top: 10px;
  z-index: 999; }
  button.small-screen-main-menu-trigger span {
    width: 20px;
    height: 2px;
    background: #FF713D;
    margin-bottom: 4px;
    display: block;
    transform: rotate(0deg);
    transition: all .5s ease-in-out;
    opacity: 1; }
  button.small-screen-main-menu-trigger span:last-of-type {
    margin-bottom: 0px; }
  @media all and (min-width: 64em) {
    button.small-screen-main-menu-trigger {
      display: none; } }

.open-menu .small-screen-main-menu-trigger {
  background: white url(../images/cross-icon.png) no-repeat center;
  position: fixed;
  right: 85%;
  margin: 0px;
  top: 0%;
  left: auto;
  height: 73px;
  width: 53px;
  text-align: center;
  padding-left: 15px;
  z-index: 99999;
  padding: 0px; }
  .open-menu .small-screen-main-menu-trigger span {
    display: none; }

/*********************************************
  :: Main Menu
********************************************/
.small-screen-main-menu {
  width: 85%;
  background: #FF713D;
  position: fixed;
  top: 0px;
  right: -85%;
  height: 100%;
  padding-top: 20px;
  text-align: left;
  z-index: 99999;
  overflow-y: auto;
  transition: all .5s ease-in-out; }
  .small-screen-main-menu > ul {
    margin: 0px;
    padding: 0px;
    float: left;
    width: 100%; }
  .small-screen-main-menu .green-nav {
    margin-top: 20px !important; }
    .small-screen-main-menu .green-nav li {
      margin-bottom: 5px; }
    .small-screen-main-menu .green-nav li a {
      font-size: 1.5em !important;
      font-weight: normal; }
  .small-screen-main-menu > ul.smaller li a {
    color: #212121;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.16;
    padding: 13px 20px 0 0; }
  .small-screen-main-menu > ul > li {
    list-style-type: none; }
  .small-screen-main-menu li {
    margin-bottom: 0px; }
    .small-screen-main-menu li:before {
      display: none; }
  .small-screen-main-menu > ul > li > a {
    font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: white;
    text-decoration: none;
    padding: 13px 20px 13px 0px;
    border-bottom: 1px solid #1b3c63;
    margin-left: 25px;
    display: block;
    margin-bottom: 0px;
    transition: all .5s ease-in-out; }
    .small-screen-main-menu > ul > li > a.special {
      color: white; }
  .small-screen-main-menu .parent {
    position: relative; }
    .small-screen-main-menu .parent .arrow {
      font-size: 14px;
      position: absolute;
      right: 20px;
      top: 14px;
      display: block;
      transition: all .5s ease-in-out;
      transform: rotate(0deg); }
  .small-screen-main-menu .current a {
    color: #212121; }

.open-menu .small-screen-main-menu {
  right: 0px; }

@media all and (min-width: 64em) {
  .small-screen-main-menu {
    display: none; } }

/*********************************************
  :: Sub Main Menu
********************************************/
.small-screen-main-menu .parent ul {
  height: 0px;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  transition: all .5s ease-in-out; }

.small-screen-main-menu .parent ul li {
  list-style-type: none;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  vertical-align: top;
  border-bottom: 1px solid #DFDFD0;
  text-align: left; }

.small-screen-main-menu .parent ul img {
  display: block;
  margin-bottom: 5px; }

.small-screen-main-menu .parent ul a {
  margin-bottom: 0px;
  padding: 0px;
  width: 81px;
  font-size: 16px;
  line-height: 16px;
  color: black;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  transition: all .5s ease-in-out; }

.small-screen-main-menu .parent ul li:last-of-type a {
  border-bottom: none; }

.small-screen-main-menu .open-sub-menu > ul {
  height: auto;
  background: white;
  text-align: center;
  padding: 20px 20px 0px 0px;
  width: 85%;
  float: right; }

/* Acive state for sub-menu parent */
.small-screen-main-menu .open-sub-menu .arrow {
  transform: rotate(180deg); }

.buttons-mob {
  margin: 20px 0 0 25px;
  display: inline-block; }

.button-social-mob {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 1.2em; }
  .button-social-mob span {
    color: #FF6936; }

/*********************************************
:: Modules                    
********************************************/
/*********************************************
:: SignUp Module
********************************************/
.signup-container {
  width: 100%;
  margin: 0 auto 20px auto;
  padding: 20px;
  display: inline-block;
  text-align: center;
  background: #FF6936;
  border-radius: 8px; }
  @media all and (min-width: 64em) {
    .signup-container {
      padding: 35px;
      margin-bottom: 120px; } }
  .signup-container p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
    @media all and (min-width: 64em) {
      .signup-container p {
        font-size: 26px; } }
  .signup-container form {
    width: 100%;
    max-width: 487px;
    margin: 0 auto;
    padding: 0px;
    display: inline-block;
    float: none; }
    @media all and (min-width: 64em) {
      .signup-container form {
        width: 50%; } }
    .signup-container form input {
      width: 100%;
      height: 42px;
      border: 1px solid white;
      float: left;
      border-radius: 6px; }
      @media all and (min-width: 64em) {
        .signup-container form input {
          width: 70%;
          border-radius: 6px 0 0 6px; } }
    .signup-container form button {
      width: 60%;
      max-width: 130px;
      height: 42px;
      float: none;
      text-align: center;
      transition: all .5s ease-in-out;
      border-radius: 6px;
      margin-top: 10px; }
      @media all and (min-width: 64em) {
        .signup-container form button {
          width: 30%;
          float: right;
          border-radius: 0 6px 6px 0;
          margin-top: 0px; } }

/*********************************************
:: Title Module
********************************************/
.title-module {
  width: 100%;
  float: left;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 3; }
  @media all and (min-width: 64em) {
    .title-module {
      min-height: 364px; } }
  .title-module:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 130px;
    background-image: linear-gradient(180deg, transparent 0%, black 100%); }
  .title-module h1 {
    display: block;
    margin: 70px auto 20px auto;
    text-align: center;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); }
    @media all and (min-width: 64em) {
      .title-module h1 {
        margin: 138px auto 72px auto; } }

.tour-title {
  text-align: center; }
  .tour-title .flags {
    width: 100%;
    display: inline-block;
    margin-top: 30px; }
    @media all and (min-width: 64em) {
      .tour-title .flags {
        margin-top: 120px; } }
    .tour-title .flags .limited-flag {
      display: inline-block;
      width: auto;
      border-radius: 8px;
      padding: 5px 20px;
      margin: 5px;
      background: #d0021b;
      color: white;
      font-size: 12px; }
    .tour-title .flags .earlybird-flag {
      display: inline-block;
      width: auto;
      border-radius: 8px;
      padding: 5px 20px;
      margin: 5px;
      background: #FF713D;
      color: white;
      font-size: 12px; }
  .tour-title h1 {
    margin: 20px auto 20px auto; }
    @media all and (min-width: 64em) {
      .tour-title h1 {
        margin: 54px auto 0px auto; } }
  .tour-title .tour-info {
    width: 100%;
    display: inline-block;
    margin-bottom: 35px; }
    @media all and (min-width: 64em) {
      .tour-title .tour-info {
        margin-bottom: 15px; } }
    .tour-title .tour-info p, .tour-title .tour-info a {
      display: inline-block;
      width: auto;
      margin: 5px;
      color: #FF6936;
      font-size: 14px;
      font-weight: 400; }
      @media all and (min-width: 64em) {
        .tour-title .tour-info p, .tour-title .tour-info a {
          font-size: 16px; } }
      .tour-title .tour-info p span, .tour-title .tour-info a span {
        font-size: 19px;
        color: white;
        vertical-align: text-top;
        padding-right: 5px; }
      .tour-title .tour-info p .icon-download-arrow, .tour-title .tour-info a .icon-download-arrow {
        font-weight: 900;
        font-size: 20px; }

.only-title h1 {
  margin: 60px auto 20px auto; }
  @media all and (min-width: 64em) {
    .only-title h1 {
      margin: 280px auto 30px auto;
      font-size: 42px; } }

.person-title h1 {
  opacity: 0; }

/*********************************************
:: Pagination Module
********************************************/
.pagination-module {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: inline-block;
  text-align: center;
  background: whitesmoke; }
  @media all and (min-width: 64em) {
    .pagination-module {
      background: white; } }
  .pagination-module ul {
    width: auto;
    display: inline-block;
    height: 34px;
    padding: 0;
    margin: 6px;
    text-align: center;
    background: #FF6936;
    border-radius: 17px; }
    @media all and (min-width: 64em) {
      .pagination-module ul {
        margin: 0px; } }
    .pagination-module ul li {
      width: 28px;
      height: 28px;
      display: inline-block;
      margin: 3px; }
      .pagination-module ul li a {
        line-height: 28px;
        text-align: center;
        color: #FF713D;
        font-family: "source-sans-pro", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
        font-size: 1.25em; }
      .pagination-module ul li span {
        color: #FF713D;
        vertical-align: sub;
        font-size: 26px; }
      .pagination-module ul li.active {
        background: #FF713D;
        border-radius: 50%; }
        .pagination-module ul li.active a {
          color: white; }

/*********************************************
:: Order Summary Module
********************************************/
.order-summary-module {
  float: left;
  width: 100%;
  background: #fff;
  padding: 10px 0 0 0; }
  @media all and (min-width: 64em) {
    .order-summary-module {
      padding: 12px 16px; } }
  .order-summary-module .title {
    color: #333;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.2; }
  .order-summary-module .summary-item {
    float: left;
    width: 100%;
    padding: 10px 0px;
    border-top: 1px solid #ccc; }
    .order-summary-module .summary-item:first-of-type {
      border-top: none;
      padding-top: 0px; }
  .order-summary-module .label {
    margin-bottom: 0px;
    color: black;
    font-weight: 700;
    font-size: 0.87em;
    line-height: 1;
    margin-bottom: 8px; }
  .order-summary-module .amount {
    background: #FF713D;
    color: white;
    border-radius: 4px;
    padding: 1px 15px;
    font-size: 0.7em;
    line-height: 24px;
    display: inline-block;
    float: left;
    text-align: center;
    width: 50%;
    max-width: 150px;
    clear: left; }
    .order-summary-module .amount span {
      color: #CCC;
      font-size: 1.3em; }
  .order-summary-module .date {
    color: #999;
    font-size: 0.87em;
    line-height: 1.23;
    margin-bottom: 2px; }
  .order-summary-module .type {
    color: #999;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.18;
    margin-bottom: 5px;
    width: 50%;
    float: left;
    clear: both; }
  .order-summary-module .value {
    font-size: 1em;
    line-height: 1;
    color: #FF6936;
    font-weight: 700;
    display: inline-block;
    float: right;
    text-align: right;
    width: 50%;
    padding-top: 10px; }
  .order-summary-module .dollar {
    font-size: 0.8em;
    margin-right: 5px;
    line-height: 1;
    color: #999;
    font-weight: 400; }
  .order-summary-module .summary-total {
    padding: 20px 0; }
    .order-summary-module .summary-total .total-type {
      color: #FF713D;
      font-size: 0.875em;
      font-weight: 400;
      line-height: 1.21;
      display: inline-block;
      float: left;
      text-align: left;
      width: 50%;
      margin: 0px;
      padding-top: 7px; }
      .order-summary-module .summary-total .total-type:last-of-type {
        margin-top: 10px;
        color: #999;
        padding-top: 0px; }
    .order-summary-module .summary-total .total-cost {
      font-size: 1.3em;
      line-height: 1;
      color: #FF713D;
      font-weight: 700;
      display: inline-block;
      float: right;
      text-align: right;
      width: 50%; }
      .order-summary-module .summary-total .total-cost:last-of-type {
        font-size: 1em;
        margin-top: 10px;
        color: #999; }

/*********************************************
  :: Product Table
********************************************/
.product-table-module {
  float: left;
  width: 100%;
  text-align: left;
  background: #fff;
  /*	 Header  */
  /*	 Line Item  */
  /* Table Totals */ }
  @media all and (min-width: 64em) {
    .product-table-module {
      border-bottom: none; } }
  .product-table-module .header {
    float: left;
    width: 100%;
    display: none;
    padding: 5px 20px 5px 20px;
    background: white; }
    @media all and (min-width: 48em) {
      .product-table-module .header {
        display: block;
        background: #ececec;
        padding: 12px 20px 12px 20px; } }
    .product-table-module .header + .line-item {
      border-top: 3px solid #FF6936; }
      @media all and (min-width: 48em) {
        .product-table-module .header + .line-item {
          border-top: none; } }
    .product-table-module .header .cell {
      float: left;
      width: 100%;
      font-size: 0.875em;
      line-height: 1;
      font-weight: 400;
      color: black; }
    .product-table-module .header .image-cell {
      color: transparent; }
      @media all and (min-width: 48em) {
        .product-table-module .header .image-cell {
          width: 10%;
          text-align: left; } }
    .product-table-module .header .title-cell {
      color: transparent; }
      @media all and (min-width: 48em) {
        .product-table-module .header .title-cell {
          width: 35%;
          text-align: left; } }
    @media all and (min-width: 48em) {
      .product-table-module .header .price-cell {
        width: 22%;
        text-align: left; } }
    @media all and (min-width: 48em) {
      .product-table-module .header .quantity {
        width: 10%;
        text-align: left; } }
    @media all and (min-width: 48em) {
      .product-table-module .header .total {
        width: 18%;
        text-align: right; } }
  .product-table-module .line-item {
    float: left;
    width: 100%;
    padding: 10px 0px 10px 0px;
    background: white;
    border-bottom: 1px solid #ccc; }
    .product-table-module .line-item:last-of-type {
      border: none;
      padding-bottom: 0px; }
    @media all and (min-width: 48em) {
      .product-table-module .line-item {
        padding: 25px 0px 25px 0px; } }
    .product-table-module .line-item .cell {
      float: left;
      width: 100%;
      margin-bottom: 5px; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .cell {
          margin-bottom: 0px; }
          .product-table-module .line-item .cell > *:last-child {
            margin-bottom: 0px; } }
    .product-table-module .line-item .image-cell {
      width: auto;
      margin-bottom: 10px;
      margin-right: 10px;
      display: none; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .image-cell {
          display: block;
          margin: 0px;
          width: 10%;
          text-align: left; } }
      .product-table-module .line-item .image-cell img {
        border-radius: 4px; }
    .product-table-module .line-item .title-cell {
      width: auto; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .title-cell {
          width: 35%;
          text-align: left;
          margin-bottom: 0px; } }
      .product-table-module .line-item .title-cell .date {
        color: black;
        margin-bottom: 10px; }
        .product-table-module .line-item .title-cell .date img {
          margin-right: 5px; }
    .product-table-module .line-item .title {
      font-size: 1.125em;
      line-height: 1;
      color: #212121;
      margin-bottom: 5px;
      max-width: 80%; }
      .product-table-module .line-item .title a {
        font-size: 0.9em;
        line-height: 1.4;
        color: #212121; }
      @media all and (min-width: 64em) {
        .product-table-module .line-item .title:hover a, .product-table-module .line-item .title:focus a {
          color: #FF6936; } }
    .product-table-module .line-item .price {
      float: left;
      width: 100%;
      color: #FF6936;
      font-weight: 600;
      font-size: 1.125em;
      line-height: 1;
      padding-top: 7px; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .price {
          padding-top: 0px; } }
      .product-table-module .line-item .price span {
        font-size: 0.8em;
        color: #999;
        margin-right: 3px;
        display: inline-block;
        vertical-align: middle; }
    .product-table-module .line-item .type {
      color: #999;
      width: 100%;
      float: left;
      vertical-align: middle; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .type {
          width: 40%; } }
    .product-table-module .line-item .smll-price {
      display: none; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .smll-price {
          display: inline-block;
          width: 60%;
          color: #FF6936;
          vertical-align: middle; } }
    .product-table-module .line-item .total .price {
      font-size: 1.325em !important; }
    .product-table-module .line-item .price-cell {
      display: none;
      width: 21%;
      text-align: left; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .price-cell {
          display: block; } }
    .product-table-module .line-item .quantity {
      width: 60%;
      clear: left;
      margin-bottom: 0px; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .quantity {
          width: 30%;
          text-align: left;
          clear: none; } }
      .product-table-module .line-item .quantity > label {
        color: #999;
        font-size: 0.875em;
        line-height: 1;
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 0px; }
      .product-table-module .line-item .quantity input {
        display: inline-block;
        width: 60px;
        padding: 0px;
        font-weight: 600;
        text-align: center;
        border: 2px solid #FF6936; }
      .product-table-module .line-item .quantity .date-select {
        width: 100px;
        margin-left: 10px;
        text-align: left;
        text-indent: 5px; }
    .product-table-module .line-item .total {
      float: right;
      width: 40%;
      text-align: right; }
      @media all and (min-width: 48em) {
        .product-table-module .line-item .total {
          width: 14%;
          text-align: right; } }
  .product-table-module .additional-fields {
    float: left;
    width: 100%;
    padding: 20px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .product-table-module .additional-fields {
        width: 50%;
        padding: 20px 0;
        text-align: left; } }
    .product-table-module .additional-fields .form-field {
      margin-bottom: 0px; }
    .product-table-module .additional-fields .promo-field {
      max-width: 300px;
      background: #ececec;
      border: 1px solid #979797;
      border-radius: 3px;
      padding: 0px;
      margin: 0 auto;
      float: none;
      display: inline-block; }
      @media all and (min-width: 48em) {
        .product-table-module .additional-fields .promo-field {
          padding: 3px;
          margin: 0px; } }
    .product-table-module .additional-fields input {
      float: left;
      margin-bottom: 10px;
      width: calc(100% - 62px);
      height: 36px;
      margin-bottom: 0px;
      border: none;
      background: transparent; }
    .product-table-module .additional-fields button {
      float: left;
      font-size: 0.833em;
      background: #FF6936;
      color: white;
      height: 36px;
      width: 62px; }
      @media all and (min-width: 48em) {
        .product-table-module .additional-fields button {
          font-size: 1em; } }
  .product-table-module .table-totals {
    float: left;
    width: 100%;
    padding: 15px 0px 0px 0px;
    text-align: right; }
    @media all and (min-width: 64em) {
      .product-table-module .table-totals {
        width: 50%; } }
    @media all and (min-width: 48em) {
      .product-table-module .table-totals {
        padding-bottom: 0px;
        padding-top: 30px; } }
    .product-table-module .table-totals .total-item {
      width: 300px;
      margin: 0 auto 10px auto;
      text-align: left; }
      .product-table-module .table-totals .total-item:last-of-type {
        margin-bottom: 0px; }
      @media all and (min-width: 64em) {
        .product-table-module .table-totals .total-item {
          width: 60%;
          float: right;
          margin: 0;
          clear: both; } }
    .product-table-module .table-totals .order-total .price span {
      font-size: 1.5em;
      font-weight: 700;
      color: #FF713D; }
    .product-table-module .table-totals .order-total .label {
      color: black; }
    .product-table-module .table-totals .label {
      display: inline-block;
      font-size: 1em;
      color: #999;
      font-weight: 400;
      vertical-align: middle;
      max-width: 200px;
      text-align: left; }
    .product-table-module .table-totals .price {
      display: inline-block;
      min-width: 137px;
      color: #000;
      font-size: 1.125em;
      font-weight: 600;
      line-height: 1;
      vertical-align: middle;
      float: right;
      text-align: right; }
      .product-table-module .table-totals .price span {
        font-size: 1em;
        line-height: 1;
        color: #999;
        font-weight: 700;
        margin-right: 3px;
        display: inline-block;
        vertical-align: middle; }
  .product-table-module .button-tranzit {
    width: 205px; }

/* Product Table With Action Column */
@media all and (min-width: 48em) {
  .product-table-with-action-column .header .title-cell {
    width: 15%; } }

@media all and (min-width: 48em) {
  .product-table-with-action-column .header .title-cell {
    width: calc(30% - 10px);
    margin-left: 10px; } }

@media all and (min-width: 48em) {
  .product-table-with-action-column .header .price-cell {
    width: 21%; } }

@media all and (min-width: 48em) {
  .product-table-with-action-column .header .quantity {
    width: 30%; } }

@media all and (min-width: 48em) {
  .product-table-with-action-column .header .total {
    width: 13%; } }

.product-table-with-action-column .line-item {
  position: relative; }
  .product-table-with-action-column .line-item .title-cell {
    width: 80%; }
    @media all and (min-width: 48em) {
      .product-table-with-action-column .line-item .title-cell {
        width: 39%;
        margin-left: 3%; } }
  @media all and (min-width: 48em) {
    .product-table-with-action-column .line-item .price-cell {
      width: 20%; } }
  @media all and (min-width: 48em) {
    .product-table-with-action-column .line-item .quantity {
      width: 30%;
      margin-top: 20px; } }
  @media all and (min-width: 48em) {
    .product-table-with-action-column .line-item .total {
      width: 10%;
      float: right;
      margin-top: 30px; } }
  .product-table-with-action-column .line-item .action {
    position: absolute;
    top: 10px;
    right: 0px;
    text-align: right;
    width: auto;
    float: right; }
    @media all and (min-width: 48em) {
      .product-table-with-action-column .line-item .action {
        width: 2%;
        position: relative;
        float: left;
        top: auto;
        right: auto;
        text-align: left; } }
    .product-table-with-action-column .line-item .action span {
      color: #999; }

.product-table-with-action-column .line-item .action button {
  width: 26px;
  height: 26px;
  display: block;
  color: black;
  padding: 0px;
  background: none;
  text-align: center;
  font-size: 1em; }
  @media all and (min-width: 48em) {
    .product-table-with-action-column .line-item .action button {
      display: inline-block;
      float: right;
      margin: 40px 0px 0 0; } }

/* Product Table With Action Column */
.compact-product-table .line-item {
  position: relative; }
  .compact-product-table .line-item:first-of-type {
    border-top: 1px solid #ccc; }
  @media all and (min-width: 48em) {
    .compact-product-table .line-item {
      padding: 15px 0px 15px 0px; } }
  .compact-product-table .line-item .title-cell {
    width: 80%; }
    @media all and (min-width: 48em) {
      .compact-product-table .line-item .title-cell {
        width: 60%; } }
  @media all and (min-width: 48em) {
    .compact-product-table .line-item .quantity {
      width: 20%; } }
  @media all and (min-width: 48em) {
    .compact-product-table .line-item .total {
      width: 20%;
      float: left; } }

.compact-product-table .quantity span {
  color: black;
  font-size: 1.3em;
  margin-left: 6px; }

/*********************************************
:: Testimonial Module
********************************************/
.testimonial-container {
  width: 100%;
  float: left;
  position: relative;
  background: url(/images/green-bg.jpg) no-repeat top center;
  background-size: cover;
  text-align: center; }
  .testimonial-container .border-bottom {
    border-bottom: none; }
    @media all and (min-width: 64em) {
      .testimonial-container .border-bottom {
        border-bottom: 3px solid white; } }
  .testimonial-container .testimonial-img {
    display: none; }
    @media all and (min-width: 64em) {
      .testimonial-container .testimonial-img {
        display: inline-block;
        width: 160px;
        border: 7px solid white;
        border-radius: 50%;
        margin-top: -80px; } }
  .testimonial-container blockquote {
    max-width: 820px;
    margin: 40px auto 0px auto;
    color: black;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.67;
    font-style: normal;
    position: relative; }
    @media all and (min-width: 64em) {
      .testimonial-container blockquote {
        font-size: 30px;
        line-height: 1.17;
        margin: 0px auto 40px auto; } }
    .testimonial-container blockquote span {
      display: block;
      margin-top: 10px;
      font-size: 16px; }
      @media all and (min-width: 64em) {
        .testimonial-container blockquote span {
          margin-top: 20px; } }
    .testimonial-container blockquote:before {
      content: '';
      position: absolute;
      margin: auto;
      top: -25px;
      left: 0px;
      right: 0px;
      width: 47px;
      height: 41px;
      background: url(/images/quotemarks.png) no-repeat center;
      background-size: cover; }
      @media all and (min-width: 64em) {
        .testimonial-container blockquote:before {
          margin: 0;
          top: 0px;
          right: auto; } }
    .testimonial-container blockquote:after {
      content: '';
      position: absolute;
      bottom: 20px;
      right: 0px;
      width: 47px;
      height: 41px;
      background: url(/images/quotemarks2.png) no-repeat center;
      background-size: cover;
      display: none; }
      @media all and (min-width: 64em) {
        .testimonial-container blockquote:after {
          display: inline-block; } }

/*********************************************
:: Tours Module
********************************************/
.tours-content {
  width: 100%;
  float: left;
  position: relative;
  z-index: 3; }
  .tours-content article {
    width: 100%;
    height: 194px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    float: left;
    text-align: left;
    border-radius: 12px;
    margin: 0 0 15px 0;
    opacity: 1;
    overflow: hidden; }
    @media all and (min-width: 28.125em) {
      .tours-content article {
        height: 300px; } }
    @media all and (min-width: 48em) {
      .tours-content article {
        background-position: bottom center;
        width: 32%;
        margin: 0 0 1% 1%; } }
    .tours-content article:hover {
      opacity: 0.9; }
    .tours-content article:after {
      content: '';
      width: 100%;
      height: 96px;
      z-index: 2;
      position: absolute;
      bottom: 0px;
      left: 0px;
      background-image: linear-gradient(180deg, transparent 0%, black 100%); }
    .tours-content article a {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 3; }
    .tours-content article .titles {
      position: absolute;
      bottom: 10px;
      left: 20px;
      z-index: 9; }
      .tours-content article .titles p {
        color: white;
        font-size: 18px;
        font-weight: 300;
        line-height: 1;
        margin-bottom: 0px; }
      .tours-content article .titles span {
        color: #FF6936;
        font-size: 14px;
        font-weight: 300;
        margin-top: 0px; }
    .tours-content article .limited-flag, .tours-content article .earlybird-flag {
      position: absolute;
      top: 20px;
      right: 0px;
      width: auto;
      padding: 5px;
      background: #d0021b; }
      .tours-content article .limited-flag p, .tours-content article .earlybird-flag p {
        color: white;
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 0px;
        max-width: 77px;
        text-align: center; }
    .tours-content article .earlybird-flag {
      background: #FF6936; }
  @media all and (min-width: 48em) {
    .tours-content .large-article {
      width: 49.5%;
      height: 500px;
      margin-left: 0px; } }

.tours-content.even article {
  float: right; }
  @media all and (min-width: 48em) {
    .tours-content.even article {
      margin: 0 1% 15px 0; } }

@media all and (min-width: 48em) {
  .tours-content.even .large-article {
    margin-right: 0px; } }

@media all and (min-width: 48em) {
  .tours-content.tours-popup article {
    width: 32%;
    height: 200px;
    margin: 0 0 15px 1%; } }

.tours-content.tours-popup .request-quote-form label {
  padding-top: 0;
  line-height: 13px; }

.tours-content.tours-popup .popup-label input {
  width: auto; }

.tours-content.tours-popup .time-fields input {
  width: 60%;
  margin-right: 5px; }

.tours-content.tours-popup .time-fields select {
  width: calc(40% - 5px); }

.tours-content.mightlike-popup .additional-option {
  width: 100%;
  float: left;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #CCCCCC; }

.tours-content.mightlike-popup .title {
  width: 64%;
  float: left;
  font-size: 16px;
  font-weight: 700;
  color: #FF6936;
  clear: both; }
  @media all and (min-width: 48em) {
    .tours-content.mightlike-popup .title {
      width: 100%; } }

.tours-content.mightlike-popup .date {
  float: left;
  clear: left; }

.tours-content.mightlike-popup .button-tranzit {
  float: right;
  height: 33px;
  line-height: 33px;
  margin-top: -23px; }

.tours-content.mightlike-popup .button-signup {
  float: right;
  height: 42px;
  line-height: 42px; }

/*********************************************
:: Views                       
********************************************/
/*********************************************
:: Home Page
********************************************/
@media all and (min-width: 64em) {
  .page-home .centered-content {
    padding: 60px 0; } }

.page-home .slideshow-container {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 30px; }
  .page-home .slideshow-container .slide {
    width: 100%;
    position: relative;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 240px; }
    @media all and (min-width: 28.125em) {
      .page-home .slideshow-container .slide {
        min-height: 350px; } }
    @media all and (min-width: 64em) {
      .page-home .slideshow-container .slide {
        min-height: 480px; } }
    @media all and (min-width: 90em) {
      .page-home .slideshow-container .slide {
        min-height: 613px; } }
    .page-home .slideshow-container .slide:after {
      content: '';
      width: 100%;
      height: 135px;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 1;
      background-image: linear-gradient(to top, black 0%, transparent 100%); }
  .page-home .slideshow-container .slide-text {
    width: 100%;
    max-width: 780px;
    background: #FF6936;
    padding: 12px;
    position: absolute;
    margin: auto;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-home .slideshow-container .slide-text {
        bottom: 20px; } }
    .page-home .slideshow-container .slide-text h1, .page-home .slideshow-container .slide-text h2, .page-home .slideshow-container .slide-text legend {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.33;
      color: white;
      margin-bottom: 0px; }
      @media all and (min-width: 64em) {
        .page-home .slideshow-container .slide-text h1, .page-home .slideshow-container .slide-text h2, .page-home .slideshow-container .slide-text legend {
          font-size: 24px;
          line-height: 1.25; } }
      .page-home .slideshow-container .slide-text h1 strong, .page-home .slideshow-container .slide-text h1 b, .page-home .slideshow-container .slide-text h2 strong, .page-home .slideshow-container .slide-text legend strong, .page-home .slideshow-container .slide-text h2 b, .page-home .slideshow-container .slide-text legend b {
        color: black; }

.page-home .intro-container {
  width: 100%;
  float: left;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  margin-bottom: 0px; }
  @media all and (min-width: 64em) {
    .page-home .intro-container {
      margin-bottom: 80px; } }
  .page-home .intro-container:before {
    content: '';
    width: 100%;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: linear-gradient(to bottom, white 0%, transparent 100%); }
  .page-home .intro-container:after {
    content: '';
    width: 100%;
    height: 350px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-image: linear-gradient(to top, white 0%, transparent 100%); }
  .page-home .intro-container .centered-content {
    width: 100%;
    max-width: 740px;
    display: inline-block;
    padding: 30px 3%;
    position: relative;
    z-index: 3; }
    @media all and (min-width: 64em) {
      .page-home .intro-container .centered-content {
        padding: 60px 0; } }
    .page-home .intro-container .centered-content p {
      font-size: 14px;
      line-height: 1.29; }
      @media all and (min-width: 64em) {
        .page-home .intro-container .centered-content p {
          font-size: 18px;
          line-height: 1.33; } }
    .page-home .intro-container .centered-content b {
      color: #000; }
  .page-home .intro-container h3 {
    text-align: center;
    margin: 20px auto; }
    @media all and (min-width: 64em) {
      .page-home .intro-container h3 {
        margin: 50px auto 25px auto; } }

.page-home .tours-content .button-tranzit {
  margin: 15px 0 5px 0;
  width: 200px;
  height: 52px;
  line-height: 52px;
  font-size: 17px; }
  @media all and (min-width: 64em) {
    .page-home .tours-content .button-tranzit {
      margin: 38px 0 5px 0; } }

.page-home .tours-content .large-statement {
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #FEAF18;
  position: relative;
  padding-top: 36px;
  float: left;
  margin-top: 20px; }
  @media all and (min-width: 48em) {
    .page-home .tours-content .large-statement {
      font-size: 42px;
      padding-top: 117px;
      margin-top: 50px; } }
  .page-home .tours-content .large-statement:before {
    content: '';
    position: absolute;
    margin: auto;
    top: -5px;
    left: 0;
    right: 0;
    height: 36px;
    width: 1px;
    background: #FFB33E; }
    @media all and (min-width: 48em) {
      .page-home .tours-content .large-statement:before {
        height: 117px; } }

.page-home .partners-container {
  float: left;
  position: relative;
  padding: 30px;
  text-align: center;
  width: 100%; }
  @media all and (min-width: 64em) {
    .page-home .partners-container {
      display: -ms-flexbox;
      display: flex;
      float: none;
      margin: 0 auto;
      max-width: 940px;
      padding: 25px 0 150px 0; }
      .page-home .partners-container .partners-title {
        border-bottom: none !important;
        border-right: 1px solid #dbdbdb;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 30px;
        padding-right: 30px;
        text-align: right; }
      .page-home .partners-container .partners-logo {
        display: inline-block;
        margin-left: 30px; } }
  .page-home .partners-container .partners-title {
    border-bottom: 1px solid #dbdbdb;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 30px;
    padding-bottom: 30px;
    text-transform: uppercase; }
  .page-home .partners-container .partners-logo {
    display: block;
    margin: 15px auto;
    max-height: 80px; }

.page-home .video-container {
  width: 100%;
  float: left;
  position: relative;
  padding: 15px 0 0px 0; }
  @media all and (min-width: 64em) {
    .page-home .video-container {
      padding: 25px 0;
      max-width: 940px;
      margin: 0 auto;
      float: none;
      display: -ms-flexbox;
      display: flex; } }
  @media all and (min-width: 64em) {
    .page-home .video-container .bottom-video-wrapper {
      width: 60%;
      float: left;
      padding-right: 60px;
      position: relative; } }
  .page-home .video-container .border-bottom {
    border-bottom: 3px solid white; }
    @media all and (min-width: 64em) {
      .page-home .video-container .border-bottom {
        border-bottom: none; } }
  .page-home .video-container iframe.video {
    width: 94%;
    max-width: 360px;
    height: 205px;
    display: block; }
    @media all and (min-width: 64em) {
      .page-home .video-container iframe.video {
        width: 100%;
        height: 240px;
        max-width: 505px;
        position: absolute;
        bottom: 35px;
        left: 0px;
        padding-right: 35px; } }
  .page-home .video-container iframe.desktop {
    display: none; }
    @media all and (min-width: 64em) {
      .page-home .video-container iframe.desktop {
        display: block; } }
  .page-home .video-container .content {
    width: 100%;
    padding: 120px 4% 20px 4%;
    margin-top: -100px;
    background: #f37226; }
    @media all and (min-width: 64em) {
      .page-home .video-container .content {
        width: 80%;
        float: right;
        padding: 50px 35px 285px 35px;
        margin-top: 0px; } }
    .page-home .video-container .content p {
      color: white;
      font-size: 14px;
      font-weight: 100;
      color: #fff; }
      @media all and (min-width: 64em) {
        .page-home .video-container .content p {
          font-size: 18px;
          line-height: 1.25; } }
      .page-home .video-container .content p strong {
        color: #feb918; }
    .page-home .video-container .content a {
      color: white;
      text-decoration: underline; }

/*******************************************/
/*********************************************
:: Contact Page
********************************************/
.page-contact .contact-container {
  width: 100%;
  float: left;
  padding: 30px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-contact .contact-container {
      padding: 55px 0 125px 0; } }
  .page-contact .contact-container .col1 {
    width: 100%;
    float: left;
    text-align: center;
    padding-bottom: 20px; }
    @media all and (min-width: 64em) {
      .page-contact .contact-container .col1 {
        width: 42%;
        padding: 0 40px 0 0;
        text-align: left; } }
    .page-contact .contact-container .col1 .contact-heading {
      border: none;
      padding-top: 0; }
    .page-contact .contact-container .col1 h3 {
      font-size: 18px;
      font-weight: 600;
      color: black;
      margin: 15px 0 0px 0;
      padding-top: 15px;
      text-align: left;
      border-top: 1px solid #CCCCCC; }
      @media all and (min-width: 64em) {
        .page-contact .contact-container .col1 h3 {
          margin: 30px 0 15px 0;
          padding-top: 0px;
          font-size: 24px;
          border-top: none; } }
      .page-contact .contact-container .col1 h3:first-of-type {
        margin-top: 0px; }
    .page-contact .contact-container .col1 p {
      font-size: 1em;
      line-height: 20px;
      color: black;
      margin: 0px 0 4px 0; }
      @media all and (min-width: 64em) {
        .page-contact .contact-container .col1 p {
          margin: 0px; } }
      .page-contact .contact-container .col1 p a {
        color: #FF6936;
        font-weight: 600; }
    .page-contact .contact-container .col1 .wysiwyg p {
      margin-bottom: 5px; }
    .page-contact .contact-container .col1 .address {
      text-align: left; }
    .page-contact .contact-container .col1 .buttons {
      margin-top: 10px; }
  .page-contact .contact-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px; }
    @media all and (min-width: 64em) {
      .page-contact .contact-container .col2 {
        width: 58%;
        float: right; } }
    .page-contact .contact-container .col2 .intro {
      font-size: 14px;
      line-height: 1.3;
      padding-top: 15px;
      border-top: 1px solid #CCCCCC; }
      @media all and (min-width: 64em) {
        .page-contact .contact-container .col2 .intro {
          font-size: 17px;
          padding-top: 0px;
          border-top: none; } }
    @media all and (min-width: 64em) {
      .page-contact .contact-container .col2 form .button-field {
        margin-top: 30px; } }
  .page-contact .contact-container .map-area {
    width: 100%;
    float: left;
    margin: 30px 0;
    display: none; }
    @media all and (min-width: 64em) {
      .page-contact .contact-container .map-area {
        display: inline-block; } }
    .page-contact .contact-container .map-area .map {
      width: 100%;
      float: left;
      height: 145px;
      margin: auto; }
      @media all and (min-width: 48em) {
        .page-contact .contact-container .map-area .map {
          height: 250px; } }
      @media all and (min-width: 64em) {
        .page-contact .contact-container .map-area .map {
          height: 300px; } }

.contact-sections .contact-tile {
  width: 100%;
  margin-bottom: 20px; }
  @media all and (min-width: 64em) {
    .contact-sections .contact-tile {
      width: calc(33.33% - 15px);
      display: inline-block;
      vertical-align: top;
      margin-right: 15px; } }
  .contact-sections .contact-tile h3 {
    font-size: 24px;
    color: #FF713D;
    margin-bottom: 0; }
  .contact-sections .contact-tile p {
    margin: 0; }

.contact-sections .contact-tile:nth-child(3n+3) {
  margin-right: 0; }

@media all and (min-width: 64em) {
  .contact-sections .contact-tile:nth-child(-n+3) {
    margin-top: 30px; } }

/*******************************************/
/*********************************************
:: Checkout Page
********************************************/
.page-checkout .links {
  width: 100%;
  float: left; }
  @media all and (min-width: 64em) {
    .page-checkout .links {
      position: absolute;
      top: -44px;
      left: 0;
      z-index: 12; } }
  .page-checkout .links a {
    width: 48%;
    height: 44px;
    line-height: 44px;
    margin: 1%;
    float: left;
    text-align: center;
    background: #898f26;
    color: white;
    font-size: 0.875em;
    font-weight: 600; }
    @media all and (min-width: 64em) {
      .page-checkout .links a {
        width: 25%;
        margin: 0px;
        border-right: 1px solid #FF6936; }
        .page-checkout .links a:first-of-type {
          border-radius: 8px 0 0 0; }
        .page-checkout .links a:last-of-type {
          border-right: none;
          border-radius: 0 8px 0 0; } }
    .page-checkout .links a.active {
      position: relative; }
      @media all and (min-width: 64em) {
        .page-checkout .links a.active:before {
          content: '';
          width: 0;
          height: 0;
          border-left: 8px solid transparent;
          border-right: 8px solid transparent;
          border-bottom: 8px solid white;
          margin: auto;
          position: absolute;
          left: 0;
          right: 0;
          bottom: -1px; } }
    .page-checkout .links a.completed {
      background: #FF6936; }
      @media all and (min-width: 64em) {
        .page-checkout .links a.completed {
          border-right: 1px solid #898f26; } }

.page-checkout .checkout-container {
  width: 100%;
  float: left;
  padding: 20px 0; }
  @media all and (min-width: 64em) {
    .page-checkout .checkout-container {
      padding: 48px 0; } }
  .page-checkout .checkout-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-checkout .checkout-container .col1 {
        width: 75%;
        padding-right: 70px; } }
    .page-checkout .checkout-container .col1 h3 {
      font-size: 16px; }
      @media all and (min-width: 64em) {
        .page-checkout .checkout-container .col1 h3 {
          font-size: 22px; } }
  .page-checkout .checkout-container .col2 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-checkout .checkout-container .col2 {
        width: 25%; } }

.page-checkout .review-container {
  width: 100%;
  float: left;
  padding: 20px 0; }
  @media all and (min-width: 64em) {
    .page-checkout .review-container {
      padding: 48px 0; } }
  .page-checkout .review-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-checkout .review-container .col1 {
        width: 35%;
        padding-right: 70px; } }
    .page-checkout .review-container .col1 p {
      margin-bottom: 30px; }
    .page-checkout .review-container .col1 .contact {
      margin-bottom: 30px; }
      .page-checkout .review-container .col1 .contact p {
        margin-bottom: 0px; }
  .page-checkout .review-container .col2 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-checkout .review-container .col2 {
        width: 65%; } }
  .page-checkout .review-container .order-summary-module {
    padding: 0px; }

.page-checkout .confirmation-container {
  width: 100%;
  float: left;
  padding: 20px 0;
  text-align: center; }
  @media all and (min-width: 64em) {
    .page-checkout .confirmation-container {
      padding: 48px 0; } }
  .page-checkout .confirmation-container .button-field {
    text-align: center; }
  .page-checkout .confirmation-container .button-tranzit {
    margin: 0 auto; }

.page-checkout .passenger {
  padding: 20px 20px 0 20px;
  border: 1px solid #999;
  border-radius: 6px;
  margin-bottom: 5px; }
  .page-checkout .passenger .js-passenger-toggle {
    display: inline-block;
    width: 100%;
    color: black;
    cursor: pointer; }
    .page-checkout .passenger .js-passenger-toggle span {
      display: inline-block;
      float: right;
      color: #FF6936; }
      .page-checkout .passenger .js-passenger-toggle span img {
        vertical-align: baseline; }
  .page-checkout .passenger.hidden .passenger-detail {
    display: none; }
  .page-checkout .passenger.hidden .js-passenger-toggle {
    color: #FF6936; }
  .page-checkout .passenger .same-as-billing label {
    line-height: 12px;
    text-indent: 10px; }
  .page-checkout .passenger .same-as-billing input {
    width: auto; }

/*******************************************/
/*********************************************
:: Guided Tours Page
********************************************/
.page-guided-tours .links {
  display: none; }
  @media all and (min-width: 64em) {
    .page-guided-tours .links {
      display: inline-block;
      width: 100%;
      float: left;
      background: #FF6936;
      text-align: center; } }
  .page-guided-tours .links a {
    display: inline-block;
    width: 100%;
    padding: 10px;
    color: white;
    text-align: left; }
    @media all and (min-width: 64em) {
      .page-guided-tours .links a {
        width: auto;
        text-align: center; } }
  .page-guided-tours .links .active {
    position: relative; }
    .page-guided-tours .links .active:before {
      content: '';
      position: absolute;
      margin: auto;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      width: 10px;
      height: 5px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 5px solid white; }

.page-guided-tours .intro-container {
  text-align: center;
  margin-bottom: 30px; }
  .page-guided-tours .intro-container .centered-content {
    padding: 30px 3% 15px; }
    @media all and (min-width: 64em) {
      .page-guided-tours .intro-container .centered-content {
        padding: 30px 0 15px 0; } }

.page-guided-tours .tours-container {
  width: 100%;
  float: left;
  padding: 45px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-guided-tours .tours-container {
      padding: 35px 0; } }
  .page-guided-tours .tours-container .tab-content {
    display: none; }
    .page-guided-tours .tours-container .tab-content.active {
      display: inline-block; }
  .page-guided-tours .tours-container .SumoSelect {
    margin-bottom: 20px; }
    @media all and (min-width: 64em) {
      .page-guided-tours .tours-container .SumoSelect {
        display: none; } }
    .page-guided-tours .tours-container .SumoSelect .CaptionCont {
      background: #FF6936;
      color: white !important;
      border-radius: 0px;
      border: none;
      padding: 0px 3%;
      line-height: 36px; }
      .page-guided-tours .tours-container .SumoSelect .CaptionCont label > i:before {
        background: url(/images/down-white.png) no-repeat center;
        top: 14px; }
  .page-guided-tours .tours-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-guided-tours .tours-container .col2 {
        width: 35%;
        float: right; } }
    .page-guided-tours .tours-container .col2 .button-tranzit-white, .page-guided-tours .tours-container .col2 .button-tranzit {
      float: none;
      margin: 17px 3px; }
      @media all and (min-width: 64em) {
        .page-guided-tours .tours-container .col2 .button-tranzit-white, .page-guided-tours .tours-container .col2 .button-tranzit {
          float: right;
          margin: 17px 0 0 10px; } }
  .page-guided-tours .tours-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-guided-tours .tours-container .col1 {
        width: 65%;
        float: right;
        padding-right: 40px; } }
  .page-guided-tours .tours-container .col2.earlybird .option p span {
    color: #FF713D; }
  .page-guided-tours .tours-container .col2.earlybird .early .earlybird-flag {
    display: inline-block;
    width: auto;
    border-radius: 8px;
    padding: 5px 20px;
    background: #FF713D;
    color: white;
    font-size: 12px;
    font-weight: 400;
    float: left; }
  .page-guided-tours .tours-container .col2.earlybird .early p span {
    color: #666;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    padding-top: 8px; }
  .page-guided-tours .tours-container .option {
    width: 100%;
    float: right;
    border-bottom: 1px solid #CCCCCC;
    padding: 15px 0;
    text-align: left; }
    .page-guided-tours .tours-container .option:first-of-type {
      padding-top: 0px; }
    .page-guided-tours .tours-container .option input {
      border: 1px solid #FF6936;
      height: 30px;
      line-height: 30px;
      margin-top: 5px;
      padding: 1px 10px;
      width: 70px;
      float: right;
      display: inline-block; }
    .page-guided-tours .tours-container .option .noofpeople {
      float: right;
      padding: 13px 5px 0 0; }
    .page-guided-tours .tours-container .option p {
      width: 100%;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.39;
      color: black;
      margin: 0px;
      display: inline-block; }
      .page-guided-tours .tours-container .option p span {
        float: right;
        font-size: 18px;
        color: #FF6936;
        font-style: normal; }
      .page-guided-tours .tours-container .option p label {
        color: black;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.39;
        margin: 0; }
      .page-guided-tours .tours-container .option p .deposit-checkbox {
        padding: 0;
        margin: 0;
        width: auto; }
    .page-guided-tours .tours-container .option span {
      color: #666;
      font-size: 12px;
      font-style: italic;
      line-height: 1.25; }
    .page-guided-tours .tours-container .option.depature a {
      color: #FF713D;
      font-weight: 400; }
      .page-guided-tours .tours-container .option.depature a span {
        color: #FF713D;
        font-size: 19px;
        font-style: normal;
        font-weight: 900;
        vertical-align: sub;
        padding-right: 5px; }
  .page-guided-tours .tours-container .day {
    width: 100%; }
    .page-guided-tours .tours-container .day .title {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 0px;
      color: black; }
    .page-guided-tours .tours-container .day .date {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.29;
      padding-bottom: 15px;
      border-bottom: 2px solid #FF6936;
      color: black; }
      .page-guided-tours .tours-container .day .date span {
        color: #FF6936;
        padding-right: 5px; }
    .page-guided-tours .tours-container .day .wysiwyg {
      margin-bottom: 35px; }
  .page-guided-tours .tours-container #gallery {
    float: left; }
    .page-guided-tours .tours-container #gallery .img-grid {
      width: 50%;
      height: 135px;
      float: left;
      background-repeat: no-repeat;
      background-position: center;
      background-color: #CCCCCC;
      background-size: cover;
      border: 1px solid white; }
      @media all and (min-width: 37.5em) {
        .page-guided-tours .tours-container #gallery .img-grid {
          width: 33.3%;
          height: 150px; } }
      @media all and (min-width: 48em) {
        .page-guided-tours .tours-container #gallery .img-grid {
          height: 167px; } }
  .page-guided-tours .tours-container #inclusions .title {
    color: black;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 5px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FF6936; }
  @media all and (min-width: 48em) {
    .page-guided-tours .tours-container #inclusions li {
      width: 43%;
      margin-right: 6%;
      float: left; } }
  .page-guided-tours .tours-container #inclusions li:nth-of-type(odd) {
    clear: left; }
  .page-guided-tours .tours-container #departure li {
    width: 100%;
    display: inline-block; }
    .page-guided-tours .tours-container #departure li span:first-of-type {
      width: 50%;
      float: left;
      text-align: left;
      font-weight: 700;
      color: black; }
    .page-guided-tours .tours-container #departure li span:last-of-type {
      width: 50%;
      float: right;
      color: #666; }

.page-guided-tours .tour-footer {
  width: 100%;
  float: left;
  background: whitesmoke;
  padding: 10px 0 10px 0; }
  @media all and (min-width: 64em) {
    .page-guided-tours .tour-footer {
      padding: 40px 0 100px 0; } }
  .page-guided-tours .tour-footer a {
    width: 100%;
    height: 48px;
    line-height: 48px;
    float: left;
    text-align: center;
    margin-bottom: 5px;
    background: white;
    color: black;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    @media all and (min-width: 64em) {
      .page-guided-tours .tour-footer a {
        width: 32%;
        height: 54px;
        line-height: 54px;
        margin: 0 .66% 8px .66%; } }
    .page-guided-tours .tour-footer a:hover {
      background: #FF713D;
      color: white; }
    .page-guided-tours .tour-footer a span {
      color: #FF6936;
      font-weight: 900;
      padding-right: 5px; }
  .page-guided-tours .tour-footer p, .page-guided-tours .tour-footer li {
    font-style: italic;
    font-size: 12px;
    font-weight: 400;
    margin: 10px 0;
    display: inline-block;
    color: #666666; }
  .page-guided-tours .tour-footer ul {
    margin: 0 0 10px 15px; }
    .page-guided-tours .tour-footer ul li {
      width: 100%;
      margin: 0px;
      list-style-type: disc;
      display: list-item; }
      .page-guided-tours .tour-footer ul li:before {
        display: none; }

/*******************************************/
/*********************************************
:: Guided Tours Page
********************************************/
.page-who-we-are .links {
  width: 100%;
  float: left;
  background: #FF6936;
  text-align: center; }
  .page-who-we-are .links a {
    display: inline-block;
    width: 100%;
    padding: 10px;
    color: white;
    text-align: left; }
    @media all and (min-width: 64em) {
      .page-who-we-are .links a {
        width: auto;
        text-align: center; } }
  .page-who-we-are .links .active {
    position: relative; }
    .page-who-we-are .links .active:before {
      content: '';
      position: absolute;
      margin: auto;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      width: 10px;
      height: 5px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 5px solid white; }

.page-who-we-are .SumoSelect {
  margin-bottom: 20px; }
  @media all and (min-width: 64em) {
    .page-who-we-are .SumoSelect {
      display: none; } }
  .page-who-we-are .SumoSelect .CaptionCont {
    background: #FF6936;
    color: white !important;
    border-radius: 0px;
    border: none;
    padding: 0px 3%;
    line-height: 36px; }
    .page-who-we-are .SumoSelect .CaptionCont label > i:before {
      background: url(/images/down-white.png) no-repeat center;
      top: 14px; }

.page-who-we-are .intro-container {
  text-align: center;
  margin-bottom: 30px; }

.page-who-we-are .about-container {
  width: 100%;
  float: left;
  padding: 0px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-who-we-are .about-container {
      padding: 55px 0; } }
  .page-who-we-are .about-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-who-we-are .about-container .col1 {
        width: 75%;
        padding-right: 40px; } }
  .page-who-we-are .about-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-who-we-are .about-container .col2 {
        width: 25%;
        float: right; } }
    .page-who-we-are .about-container .col2 .tours-content article {
      width: 100%; }
      @media all and (min-width: 64em) {
        .page-who-we-are .about-container .col2 .tours-content article {
          width: 228px; } }

.page-who-we-are .people-filter {
  width: 100%;
  float: left; }
  .page-who-we-are .people-filter ul {
    width: auto;
    float: left; }
  .page-who-we-are .people-filter ul:last-of-type {
    margin-left: 30px;
    max-width: 560px; }
    .page-who-we-are .people-filter ul:last-of-type:before {
      content: "•";
      color: #d0d5d5;
      font-size: 32px;
      position: absolute;
      margin: -10px 0px 0px -24px; }
    .page-who-we-are .people-filter ul:last-of-type li a {
      min-width: 130px; }
  .page-who-we-are .people-filter li {
    width: auto;
    float: left;
    margin: 0 10px 10px 0;
    list-style-type: none; }
    .page-who-we-are .people-filter li.active a {
      background: #FF6936;
      color: white; }
  .page-who-we-are .people-filter a {
    display: block;
    height: 100%;
    width: 100%;
    background: #eceded;
    color: #999999;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    text-transform: capitalize; }

.page-who-we-are .people-container {
  width: 100%;
  float: left;
  padding: 0px 0 25px 0;
  text-align: center; }
  @media all and (min-width: 64em) {
    .page-who-we-are .people-container {
      padding: 55px 0; } }
  .page-who-we-are .people-container .people-wrap {
    font-size: 0px; }
  .page-who-we-are .people-container .centered-content {
    padding: 0px 0 45px 0; }
  .page-who-we-are .people-container article {
    width: 99%;
    max-width: 280px;
    height: 300px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    border-radius: 12px;
    margin: 0 0.5% 15px 0.5%;
    opacity: 1;
    overflow: hidden;
    display: none; }
    @media all and (min-width: 28.125em) {
      .page-who-we-are .people-container article {
        width: 48%; } }
    @media all and (min-width: 48em) {
      .page-who-we-are .people-container article {
        width: 32%; } }
    @media all and (min-width: 64em) {
      .page-who-we-are .people-container article {
        width: 23%;
        height: 260px; } }
    .page-who-we-are .people-container article:hover {
      opacity: 0.9; }
    .page-who-we-are .people-container article:after {
      content: '';
      width: 100%;
      height: 96px;
      z-index: 2;
      position: absolute;
      bottom: 0px;
      left: 0px;
      background-image: linear-gradient(180deg, transparent 0%, black 100%); }
    .page-who-we-are .people-container article a {
      width: 100%;
      height: 100%;
      display: inline-block;
      z-index: 3;
      position: relative; }
    .page-who-we-are .people-container article .titles {
      position: absolute;
      bottom: 5px;
      left: 20px;
      z-index: 9;
      font-size: 14px; }
      .page-who-we-are .people-container article .titles p {
        color: white;
        font-size: 18px;
        font-weight: 300;
        line-height: 1;
        margin-bottom: 0px; }
      .page-who-we-are .people-container article .titles span {
        color: #fff;
        font-size: 14px;
        line-height: 16px;
        display: inline-block;
        font-weight: 300;
        margin-bottom: 0px; }
  .page-who-we-are .people-container article.active {
    display: inline-block; }

/*******************************************/
/*********************************************
:: Person Detail Page
********************************************/
.page-person-detail .col1 {
  width: 100%;
  float: left; }
  @media all and (min-width: 64em) {
    .page-person-detail .col1 {
      width: 30%;
      padding-right: 45px; } }

.page-person-detail .col2 {
  width: 100%;
  float: left;
  margin-bottom: 0px; }
  @media all and (min-width: 64em) {
    .page-person-detail .col2 {
      width: 70%;
      float: right;
      margin-top: -80px; } }
  .page-person-detail .col2 h1 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-weight: 600;
    color: black;
    margin: 0px 0 10px 0;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-person-detail .col2 h1 {
        text-align: left;
        color: white;
        font-size: 42px;
        line-height: 1;
        margin: 0px; } }
  .page-person-detail .col2 .job {
    display: none; }
    @media all and (min-width: 64em) {
      .page-person-detail .col2 .job {
        display: block;
        font-weight: 300;
        color: #fff;
        margin-bottom: 40px; } }
  .page-person-detail .col2 .link {
    width: 100%;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-person-detail .col2 .link {
        text-align: left; } }
    .page-person-detail .col2 .link p {
      display: none; }
      @media all and (min-width: 64em) {
        .page-person-detail .col2 .link p {
          display: inline-block;
          margin-bottom: 0px;
          text-align: center;
          color: black; } }
    .page-person-detail .col2 .link a {
      font-weight: 600;
      color: #FF6936;
      display: inline-block; }
  .page-person-detail .col2 .content {
    border-top: 1px solid #CCCCCC;
    margin-top: 20px;
    padding-top: 20px; }
    @media all and (min-width: 64em) {
      .page-person-detail .col2 .content {
        border-top: none; } }

.page-person-detail .person-container {
  width: 100%;
  float: left;
  position: relative;
  z-index: 4;
  padding: 0 0 45px 0; }
  @media all and (min-width: 64em) {
    .page-person-detail .person-container {
      padding: 0 0 145px 0; } }
  .page-person-detail .person-container .back {
    display: none; }
    @media all and (min-width: 64em) {
      .page-person-detail .person-container .back {
        color: #FF713D;
        display: inline-block;
        text-align: center;
        width: 100%;
        margin-top: 120px;
        font-weight: 600; } }
    .page-person-detail .person-container .back img {
      vertical-align: middle;
      padding-right: 5px; }
  .page-person-detail .person-container .image {
    width: 100%;
    max-width: 190px;
    height: 150px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-align: left;
    border-radius: 12px;
    margin: -90px auto 15px auto;
    overflow: hidden;
    z-index: 9; }
    @media all and (min-width: 64em) {
      .page-person-detail .person-container .image {
        position: absolute;
        margin: -145px auto 15px auto;
        max-width: 230px;
        height: 250px; } }
    .page-person-detail .person-container .image:after {
      content: '';
      width: 100%;
      height: 61px;
      z-index: 2;
      position: absolute;
      bottom: 0px;
      left: 0px;
      background-image: linear-gradient(180deg, transparent 0%, black 100%); }
      @media all and (min-width: 64em) {
        .page-person-detail .person-container .image:after {
          height: 96px; } }

/*******************************************/
/*********************************************
:: Travel Club Page
********************************************/
@media all and (min-width: 64em) {
  .page-travel .title-module {
    height: 245px; } }

@media all and (min-width: 64em) {
  .page-travel .title-module h1 {
    margin: 160px auto 30px auto; } }

.page-travel .travel-container {
  width: 100%;
  float: left;
  padding: 45px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-travel .travel-container {
      padding: 55px 0 45px 0; } }
  .page-travel .travel-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-travel .travel-container .col1 {
        width: 75%;
        padding-right: 40px; } }
  .page-travel .travel-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-travel .travel-container .col2 {
        width: 25%;
        float: right; } }
  .page-travel .travel-container .blue-button {
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    border-radius: 8px;
    background: #1d3b5e;
    display: inline-block;
    margin-bottom: 5px; }
    .page-travel .travel-container .blue-button:hover {
      background: #FF6936; }
      .page-travel .travel-container .blue-button:hover span {
        color: #FF713D; }
    .page-travel .travel-container .blue-button p {
      width: auto;
      display: inline-block;
      font-size: 16px;
      font-weight: 300;
      color: white;
      margin: 0px; }
      @media all and (min-width: 64em) {
        .page-travel .travel-container .blue-button p {
          width: 100%; } }
    .page-travel .travel-container .blue-button span {
      color: #FF6936;
      font-weight: 900; }
  .page-travel .travel-container .mobile-signup {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 8px 25%;
    border-radius: 8px;
    background: #FF6936;
    color: white;
    margin-bottom: 20px; }
    @media all and (min-width: 64em) {
      .page-travel .travel-container .mobile-signup {
        display: none; } }
  .page-travel .travel-container .signup-container {
    display: none; }
    @media all and (min-width: 64em) {
      .page-travel .travel-container .signup-container {
        display: inline-block;
        margin-top: 25px; } }
    .page-travel .travel-container .signup-container p {
      font-size: 16px; }

/*******************************************/
/*********************************************
:: Faq Page                   
********************************************/
@media all and (min-width: 64em) {
  .page-faq .title-module {
    height: 245px; } }

@media all and (min-width: 64em) {
  .page-faq .title-module h1 {
    margin: 160px auto 30px auto; } }

.page-faq .faq-container {
  width: 100%;
  float: left;
  padding: 0px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-faq .faq-container {
      padding: 55px 0 145px 0; } }
  .page-faq .faq-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-faq .faq-container .col1 {
        width: 30%;
        padding-right: 40px; } }
    .page-faq .faq-container .col1 .anchor-links {
      margin-left: 0px; }
      .page-faq .faq-container .col1 .anchor-links li {
        position: relative;
        width: 100%;
        display: inline-block;
        border-bottom: 1px solid #CCCCCC;
        padding-bottom: 10px;
        margin-bottom: 10px; }
        .page-faq .faq-container .col1 .anchor-links li:before {
          content: '';
          position: absolute;
          top: 9px;
          left: 0px;
          background: url(/images/right-arrow2.png) no-repeat center;
          background-size: contain;
          width: 7px;
          height: 9px; }
      .page-faq .faq-container .col1 .anchor-links li a {
        font-size: 18px;
        font-weight: 700;
        color: #FF6936;
        padding-left: 20px;
        display: inline-block; }
  .page-faq .faq-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px; }
    @media all and (min-width: 64em) {
      .page-faq .faq-container .col2 {
        width: 70%;
        float: right; } }
  .page-faq .faq-container .category {
    width: 100%;
    float: left;
    margin-bottom: 20px; }
    @media all and (min-width: 64em) {
      .page-faq .faq-container .category {
        margin-bottom: 50px; } }
    .page-faq .faq-container .category h4 {
      border-bottom: 2px solid #FF6936;
      padding-bottom: 5px;
      margin-bottom: 5px; }
      @media all and (min-width: 64em) {
        .page-faq .faq-container .category h4 {
          border-bottom: none;
          margin-bottom: 15px; } }
    .page-faq .faq-container .category article {
      width: 100%;
      float: left;
      padding: 14px 0 0 0;
      border-bottom: 1px solid #CCCCCC;
      border-radius: 4px; }
      @media all and (min-width: 64em) {
        .page-faq .faq-container .category article {
          border: 1px solid #CCCCCC;
          padding: 22px;
          margin-bottom: 7px; } }
      .page-faq .faq-container .category article .faq-question {
        width: 100%;
        float: left;
        cursor: pointer; }
        .page-faq .faq-container .category article .faq-question p {
          width: 90%;
          color: #FF6936;
          font-size: 14px;
          font-weight: 700;
          line-height: 18px;
          float: left;
          display: inline-block;
          margin-bottom: 8px; }
          @media all and (min-width: 64em) {
            .page-faq .faq-container .category article .faq-question p {
              font-size: 16px;
              margin-bottom: 0px; } }
        .page-faq .faq-container .category article .faq-question:after {
          content: "\e964";
          float: right;
          display: inline-block;
          font-weight: 600;
          color: black;
          font-family: "icomoon";
          speak: none;
          font-size: 12px;
          font-style: normal;
          font-weight: 900;
          font-variant: normal;
          text-transform: none;
          line-height: 1; }
          @media all and (min-width: 64em) {
            .page-faq .faq-container .category article .faq-question:after {
              top: 2px;
              position: relative; } }
        .page-faq .faq-container .category article .faq-question.active p {
          color: black;
          margin-bottom: 15px; }
        .page-faq .faq-container .category article .faq-question.active:after {
          content: "\e963"; }
      .page-faq .faq-container .category article .faq-answer {
        display: none; }
        .page-faq .faq-container .category article .faq-answer p {
          font-size: 14px; }
          @media all and (min-width: 64em) {
            .page-faq .faq-container .category article .faq-answer p {
              font-size: 16px; } }

.page-faq .SumoSelect {
  width: 100%;
  height: 60px;
  background: #FF6936;
  padding: 5px 0;
  margin-bottom: 20px; }
  @media all and (min-width: 64em) {
    .page-faq .SumoSelect {
      display: none; } }
  .page-faq .SumoSelect .CaptionCont {
    background: white;
    color: black;
    border-radius: 4px;
    border: none;
    padding: 0px 3%;
    line-height: 36px;
    width: 94%;
    margin: 10px 3%; }
    .page-faq .SumoSelect .CaptionCont label > i:before {
      background: url(/images/arrow-down.png) no-repeat center;
      top: 14px; }

.page-faq .SumoSelect > .optWrapper.open {
  top: 59px; }

/*******************************************/
/*********************************************
:: Shopping Cart Page                  
********************************************/
.page-shopping-cart {
  margin-bottom: 80px;
  /*******************************************/ }
  .page-shopping-cart form {
    width: 100%;
    margin-top: 20px; }
    @media all and (min-width: 64em) {
      .page-shopping-cart form {
        padding: 0 2% 0 0;
        margin-top: 0px; } }
  .page-shopping-cart .links {
    display: none; }
    @media all and (min-width: 64em) {
      .page-shopping-cart .links {
        display: inline-block;
        width: 100%;
        float: left;
        background: #FF6936;
        border-radius: 8px 8px 0 0;
        position: absolute;
        top: -44px;
        left: 0;
        z-index: 12; } }
    .page-shopping-cart .links p {
      width: 48%;
      height: 44px;
      line-height: 44px;
      color: white;
      display: inline-block;
      width: auto;
      margin-bottom: 0px; }
      .page-shopping-cart .links p:first-of-type {
        margin-left: 15%;
        width: 38%; }
      .page-shopping-cart .links p:nth-of-type(2) {
        width: 40%; }
      .page-shopping-cart .links p:nth-of-type(2) {
        width: 6%;
        float: right; }
  .page-shopping-cart .cell.total {
    width: 40%; }
    @media all and (min-width: 48em) {
      .page-shopping-cart .cell.total {
        width: 14%; } }
  .page-shopping-cart .product-table-module .line-item .price span {
    color: #FF6936;
    font-size: 1em; }

/*******************************************/
/*********************************************
:: Template Page (includes privacy and terms pages)
********************************************/
@media all and (min-width: 64em) {
  .page-template .title-module {
    height: 364px; } }

@media all and (min-width: 64em) {
  .page-template .title-module h1 {
    margin: 250px auto 30px auto; } }

.page-template .body-container {
  width: 100%;
  float: left;
  padding: 45px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-template .body-container {
      padding: 55px 0 145px 0; } }
  @media all and (min-width: 64em) {
    .page-template .body-container h1 {
      margin-top: 20px; } }
  .page-template .body-container .page-section {
    margin-bottom: 30px; }
  .page-template .body-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-template .body-container .col1 {
        width: 75%;
        padding-right: 40px; } }
  .page-template .body-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-template .body-container .col2 {
        width: 25%;
        float: right; } }

/*******************************************/
/*********************************************
:: Template Page (includes privacy and terms pages)
********************************************/
@media all and (min-width: 64em) {
  .page-about-us .title-module {
    height: 364px; } }

@media all and (min-width: 64em) {
  .page-about-us .title-module h1 {
    margin: 250px auto 30px auto; } }

.page-about-us .body-container {
  width: 100%;
  float: left;
  padding: 45px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-about-us .body-container {
      padding: 55px 0 145px 0; } }
  .page-about-us .body-container .border-bottom {
    padding-bottom: 60px; }
  .page-about-us .body-container .tours-content {
    padding-top: 50px; }
    .page-about-us .body-container .tours-content .video {
      margin-bottom: 20px;
      width: 100%; }
      @media all and (min-width: 64em) {
        .page-about-us .body-container .tours-content .video {
          float: left;
          margin-right: 30px;
          width: 593px; } }
    .page-about-us .body-container .tours-content article .titles p {
      font-size: 20px;
      margin-bottom: 10px; }
  @media all and (min-width: 64em) {
    .page-about-us .body-container h1 {
      margin-top: 20px; } }
  .page-about-us .body-container .page-section {
    margin-bottom: 30px; }
  .page-about-us .body-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-about-us .body-container .col1 {
        width: 75%;
        padding-right: 40px; } }
  .page-about-us .body-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-about-us .body-container .col2 {
        width: 25%;
        float: right; } }

/*******************************************/
/*********************************************
:: Template Page (includes privacy and terms pages)
********************************************/
@media all and (min-width: 64em) {
  .page-travel-info .title-module {
    height: 364px; } }

@media all and (min-width: 64em) {
  .page-travel-info .title-module h1 {
    margin: 250px auto 30px auto; } }

.page-travel-info .body-container {
  width: 100%;
  float: left;
  padding: 45px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-travel-info .body-container {
      padding: 55px 0 145px 0; } }
  .page-travel-info .body-container .border-bottom {
    text-align: center;
    padding-bottom: 60px;
    padding-left: 80px;
    padding-right: 80px; }
    .page-travel-info .body-container .border-bottom p {
      line-height: 24px;
      font-size: 18px; }
  .page-travel-info .body-container .tours-content {
    padding-top: 50px; }
    .page-travel-info .body-container .tours-content .video {
      float: left;
      margin-right: 30px; }
  @media all and (min-width: 64em) {
    .page-travel-info .body-container h1 {
      margin-top: 20px; } }
  .page-travel-info .body-container .page-section {
    margin-bottom: 30px; }
  .page-travel-info .body-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-travel-info .body-container .col1 {
        width: 75%;
        padding-right: 40px; } }
  .page-travel-info .body-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-travel-info .body-container .col2 {
        width: 25%;
        float: right; } }

/*******************************************/
/*********************************************
:: Template Page (includes privacy and terms pages)
********************************************/
@media all and (min-width: 64em) {
  .page-careers .title-module {
    height: 364px; } }

@media all and (min-width: 64em) {
  .page-careers .title-module h1 {
    margin: 250px auto 30px auto; } }

.page-careers .body-container {
  width: 100%;
  float: left;
  padding: 45px 0 25px 0; }
  @media all and (min-width: 64em) {
    .page-careers .body-container {
      padding: 55px 0 145px 0; } }
  .page-careers .body-container .border-bottom {
    padding-bottom: 60px; }
  .page-careers .body-container .tours-content {
    padding-top: 50px; }
    .page-careers .body-container .tours-content .video {
      float: left;
      margin-right: 30px; }
  @media all and (min-width: 64em) {
    .page-careers .body-container h1 {
      margin-top: 20px; } }
  .page-careers .body-container .page-section {
    margin-bottom: 30px; }
  .page-careers .body-container .col1 {
    width: 100%;
    float: left; }
    @media all and (min-width: 64em) {
      .page-careers .body-container .col1 {
        width: 75%;
        padding-right: 40px; } }
  .page-careers .body-container .col2 {
    width: 100%;
    float: left;
    margin-bottom: 0px;
    text-align: center; }
    @media all and (min-width: 64em) {
      .page-careers .body-container .col2 {
        width: 25%;
        float: right; } }

/*******************************************/
.page-splash {
  text-align: center; }
  .page-splash .splash-background {
    background: url("/images/splash-bg.png") no-repeat;
    background-size: cover;
    min-height: 600px;
    padding-top: 300px; }
    .page-splash .splash-background .logo {
      margin-bottom: 70px; }
    .page-splash .splash-background .links {
      padding-bottom: 210px; }
      .page-splash .splash-background .links a {
        text-transform: uppercase;
        letter-spacing: 1.6px;
        width: 348px;
        height: 130px;
        background-color: #feb917;
        display: inline-block;
        margin: 12px;
        padding-top: 45px;
        vertical-align: top; }
        .page-splash .splash-background .links a.auckland {
          background-color: #f37226; }
        .page-splash .splash-background .links a div {
          height: 130px; }
          .page-splash .splash-background .links a div span {
            color: #ffffff;
            font-size: 26px;
            font-weight: 500;
            display: block; }
            .page-splash .splash-background .links a div span.small {
              color: #ffffff;
              font-size: 16px;
              font-weight: 500;
              line-height: 26px; }
  .page-splash .footer {
    min-height: 100px; }
    .page-splash .footer ul {
      margin-left: auto;
      margin-right: auto;
      padding-top: 25px;
      max-width: 1040px;
      *zoom: 1; }
    .page-splash .footer ul:before{
  content: '';
  display: table; }
    .page-splash .footer ul:after{
  content: '';
  display: table;
  clear: both; }
      .page-splash .footer ul li {
        width: 100%; }
        @media all and (min-width: 21.875em) {
          .page-splash .footer ul li {
            width: calc(99.99% * 1/2 - (10px - 10px * 1/2)); }
          .page-splash .footer ul li:nth-child(1n){
    float: left;
    margin-right: 10px;
    clear: none; }
          .page-splash .footer ul li:last-child{
    margin-right: 0; }
          .page-splash .footer ul li:nth-child(2n){
    margin-right: 0;
    float: right; }
          .page-splash .footer ul li:nth-child(2n + 1){
    clear: left; } }
        @media all and (min-width: 28.125em) {
          .page-splash .footer ul li {
            width: calc(99.99% * 1/3 - (10px - 10px * 1/3)); }
          .page-splash .footer ul li:nth-child(1n){
    float: left;
    margin-right: 10px;
    clear: none; }
          .page-splash .footer ul li:last-child{
    margin-right: 0; }
          .page-splash .footer ul li:nth-child(3n){
    margin-right: 0;
    float: right; }
          .page-splash .footer ul li:nth-child(3n + 1){
    clear: left; } }
        @media all and (min-width: 64em) {
          .page-splash .footer ul li {
            width: calc(99.99% * 1/6 - (10px - 10px * 1/6)); }
          .page-splash .footer ul li:nth-child(1n){
    float: left;
    margin-right: 10px;
    clear: none; }
          .page-splash .footer ul li:last-child{
    margin-right: 0; }
          .page-splash .footer ul li:nth-child(6n){
    margin-right: 0;
    float: right; }
          .page-splash .footer ul li:nth-child(6n + 1){
    clear: left; } }

/*********************************************
:: JS Plugins                  
********************************************/
.SumoSelect p {
  margin: 0; }

.SlectBox {
  width: 200px;
  padding: 5px 8px; }

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.SumoSelect > .optWrapper > .options > li label,
.SumoSelect > .CaptionCont {
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none; }

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none; }

.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  box-shadow: 0px 0px 2px #7799D0;
  border-color: #7799D0; }

.SumoSelect > .CaptionCont {
  position: relative;
  border: 1px solid #A4A4A4;
  min-height: 14px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0px; }

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default; }

/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc;
  font-style: italic; }

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 30px; }

.SumoSelect > .CaptionCont > label > i {
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: -2px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8; }

.SumoSelect > .optWrapper {
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -webkit-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -moz-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -ms-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  -o-transition: opacity 200ms ease-out, top 200ms ease-out, visibility 200ms ease-out;
  box-sizing: border-box;
  z-index: -100;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden; }

.SumoSelect > .optWrapper.open {
  top: 35px;
  visibility: visible;
  opacity: 1;
  z-index: 1000; }

.SumoSelect > .optWrapper > .options {
  list-style: none;
  display: block;
  padding: 0px;
  margin: 0px;
  overflow: auto;
  border-radius: 2px;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/ }

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  box-shadow: 0px 0px 100px #595959; }

.SumoSelect > .optWrapper > .options > li {
  padding: 6px 6px;
  border-bottom: 1px solid #F3F3F3;
  position: relative; }

.SumoSelect > .optWrapper > .options > li:first-child {
  border-radius: 2px 2px 0px 0px; }

.SumoSelect > .optWrapper > .options > li:last-child {
  border-bottom: none;
  border-radius: 0px 0px 2px 2px; }

.SumoSelect > .optWrapper > .options > li:hover {
  background-color: #E4E4E4; }

.SumoSelect > .optWrapper > .options > li.sel {
  background-color: #a1c0e4; }

.SumoSelect > .optWrapper > .options > li label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer; }

.SumoSelect > .optWrapper > .options > li span {
  display: none; }

/*Floating styles*/
/*Hover*/
/*.SumoSelect:hover > .CaptionCont > label { background-color: #F1F1F1; }*/
/*disabled state*/
.SumoSelect > .optWrapper > .options > li.disabled {
  background-color: inherit;
  pointer-events: none; }

.SumoSelect > .optWrapper > .options > li.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE 5-7 */
  filter: alpha(opacity=50);
  /* Netscape */
  -moz-opacity: 0.5;
  /* Safari 1.x */
  -khtml-opacity: 0.5;
  /* Good browsers */
  opacity: 0.5; }

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options > li {
  padding-left: 35px;
  cursor: pointer; }

.SumoSelect > .optWrapper.multiple > .options > li span,
.SumoSelect .select-all > span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0px;
  bottom: 0px;
  margin-left: -35px; }

.SumoSelect > .optWrapper.multiple > .options > li span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff; }

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.13);
  border-radius: 0px 0px 3px 3px; }

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0px;
  width: 100%; }

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block; }

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0px 0px 0px 3px; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  border-radius: 0px 0px 3px 0px; }

/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options > li {
  padding: 12px 6px; }

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options > li {
  padding-left: 35px; }

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px; }

/*selected state
    .SumoSelect > .optWrapper.multiple > .options > li.selected span i:after,
    .SumoSelect .select-all.selected > span i:after{content: '';position: absolute;width: 11px;height: 11px;top: 2px;left: 2px;background-color: rgb(17, 169, 17);border-radius: 2px;box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);}
    */
.SumoSelect > .optWrapper.multiple > .options > li.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
  background-color: #11a911;
  box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center; }

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed; }

.SumoSelect.disabled > .CaptionCont {
  border-color: #ccc;
  box-shadow: none; }

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0px 0px;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0px 3px 35px;
  height: 20px; }

.SumoSelect .select-all > span i {
  cursor: pointer; }

.SumoSelect .select-all.partial > span i {
  background-color: #ccc; }

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options > li.optGroup {
  padding-left: 5px;
  text-decoration: underline; }

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/**
 * The picker input element.
 */
.picker__input {
  cursor: default; }

/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec; }

/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%; }

/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s; }

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px; }

.picker__wrap {
  margin: -1px; }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12); }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em; }

.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em; }

@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em; } }

.picker__select--month {
  width: 35%; }

.picker__select--year {
  width: 22.5%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec; }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em; } }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em; } }

.picker__nav--next {
  right: -1em;
  padding-left: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em; } }

.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em; }

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em; } }

.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent; }

.picker__day--today {
  position: relative; }

.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent; }

.picker__day--disabled:before {
  border-top-color: #aaaaaa; }

.picker__day--outfocus {
  color: #dddddd; }

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--highlighted {
  border-color: #0089ec; }

.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center; }

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa; }

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */
.youtube-container {
  display: block;
  width: 100%; }

.youtube-player {
  display: block;
  width: 100%;
  /* assuming that the video has a 16:9 ratio */
  overflow: hidden;
  position: relative;
  height: 100%;
  cursor: hand;
  cursor: pointer;
  height: 180px; }
  @media all and (min-width: 37.5em) {
    .youtube-player {
      height: 250px; } }
  @media all and (min-width: 48em) {
    .youtube-player {
      height: 300px; } }
  @media all and (min-width: 64em) {
    .youtube-player {
      height: 350px; } }
  @media all and (min-width: 72.5em) {
    .youtube-player {
      height: 550px; } }

img.youtube-thumb {
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  height: auto;
  vertical-align: top;
  display: inline-block;
  margin-top: -0.5px; }

.youtube-bg {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center; }

div.play-button {
  display: inline-block;
  position: absolute;
  top: 53%;
  left: 52%;
  transform: translateX(-50%) translateY(-50%); }
  div.play-button:after {
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 30px 0 30px 50px;
    border-color: transparent transparent transparent white; }

#youtube-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

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

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

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

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

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

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

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

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

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

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

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

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

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

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

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

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75); }
  .mfp-arrow-left {
    transform-origin: 0; }
  .mfp-arrow-right {
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

/* Transitions */
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.owl-carousel .fadeIn {
  animation-name: fadeIn; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  transform-style: preserve-3d; }

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

/*********************************************
  :: Multi-Level Push Menu (CoDrops)                           
********************************************/
html.menu-opened,
.menu-opened body,
.menu-opened .container,
.menu-opened .scroller {
  height: 100%;
  overflow: hidden; }

.scroller {
  overflow-y: scroll; }

.scroller,
.scroller-inner {
  position: relative; }

.container {
  position: relative;
  overflow: hidden;
  background: #34495e; }

.mp-pusher {
  position: relative;
  right: 0;
  height: 100%; }

.mp-menu {
  position: absolute;
  /* we can't use fixed here :( */
  top: 0;
  right: 0;
  z-index: 1;
  width: 300px;
  height: 100%;
  border-left: 1px solid #CCCCCC;
  transform: translate3d(100%, 0, 0); }

.mp-level {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: translate3d(100%, 0, 0); }

/* overlays for pusher and for level that gets covered */
.mp-pusher::after,
.mp-level::after,
.mp-level::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  content: '';
  opacity: 0; }

.mp-pusher::after,
.mp-level::after {
  background: transparent;
  transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s; }

.mp-level::after {
  z-index: -1; }

.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s; }

.mp-level.mp-level-overlay {
  cursor: pointer; }

.mp-level.mp-level-overlay.mp-level::before {
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 1; }

.mp-pusher,
.mp-level {
  transition: all 0.6s ease-in-out; }

/* overlap */
.mp-overlap .mp-level.mp-level-open {
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
  transform: translate3d(-40px, 0, 0); }

/* First level */
.mp-menu > .mp-level,
.mp-menu > .mp-level.mp-level-open,
.mp-menu.mp-overlap > .mp-level,
.mp-menu.mp-overlap > .mp-level.mp-level-open {
  box-shadow: none;
  transform: translate3d(0, 0, 0); }

/* cover */
.mp-cover .mp-level.mp-level-open {
  transform: translate3d(0, 0, 0);
  z-index: 1; }

.mp-cover .mp-level.mp-level-open > ul.menu-list > li > .mp-level:not(.mp-level-open) {
  transform: translate3d(100%, 0, 0); }

/* content style */
.mp-menu.mp-overlap .level-title::before {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s, transform 0.1s 0.3s;
  transform: translateX(-100%); }

.mp-overlap .mp-level.mp-level-overlay > .level-title::before {
  opacity: 1;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateX(0%); }

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
/* We'll show the first level only */
.no-csstransforms3d .mp-menu,
.no-js .mp-menu {
  display: none; }

.no-csstransforms3d .mp-menu .mp-level,
.no-js .mp-menu .mp-level {
  display: none; }

.no-csstransforms3d .mp-menu > .mp-level,
.no-js .mp-menu > .mp-level {
  display: block; }

/*********************************************
:: JS Plugins Overrides                
********************************************/
/*********************************************
:: SumoSelect Plugin Styles Override
********************************************/
.SumoSelect {
  width: 100%;
  vertical-align: top;
  height: 41px; }

.SumoSelect > select {
  width: 100%;
  height: 36px; }
  @media all and (min-width: 64em) {
    .SumoSelect > select {
      height: 46px; } }

.SumoSelect > select[multiple] {
  height: 41px; }

/*******************************************/
.SumoSelect.disabled {
  opacity: 0.5;
  cursor: default; }

/*******************************************/
.SumoSelect > .CaptionCont {
  position: absolute;
  top: 0px;
  outline: none;
  border: none;
  width: 100%;
  outline: none;
  border: none;
  width: 100%;
  transition: all .5s ease-in-out;
  box-shadow: none;
  background: white;
  color: #666 !important;
  border: 1px solid #999999;
  padding: 10px;
  height: 36px;
  font-size: 0.938em;
  line-height: 1.7; }
  @media all and (min-width: 64em) {
    .SumoSelect > .CaptionCont {
      height: 46px; } }
  .SumoSelect > .CaptionCont:hover, .SumoSelect > .CaptionCont:focus {
    box-shadow: none; }

.SumoSelect > .CaptionCont {
  font-size: 0.938em;
  line-height: 1.7;
  color: #999999; }
  .SumoSelect > .CaptionCont:hover, .SumoSelect > .CaptionCont:focus {
    box-shadow: none; }

.SumoSelect > .CaptionCont > label {
  margin-bottom: 0px; }

/*******************************************/
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  border-color: #FF6936;
  box-shadow: none; }

/*******************************************/
.SumoSelect > .optWrapper {
  transition: border .5s ease-in-out;
  top: calc(41px - 1px); }

.SumoSelect > .optWrapper.open {
  top: calc(41px - 1px); }

.SumoSelect:focus > .optWrapper.open,
.SumoSelect:hover > .optWrapper.open {
  border-color: #FF6936;
  border-top-color: #FF6936; }

.SumoSelect > .optWrapper > .options {
  border-radius: 0px; }

.SumoSelect > .optWrapper > .options > li {
  padding: 6px 10px 6px 10px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 0px;
  cursor: pointer;
  list-style-type: none; }

.SumoSelect > .optWrapper > .options > li label {
  font-size: 0.938em;
  line-height: 1.7;
  color: #212121;
  margin-bottom: 0px;
  text-transform: none;
  font-weight: 400; }

/*******************************************/
.SumoSelect > .CaptionCont > label > i {
  width: auto;
  height: auto;
  opacity: 1;
  font-style: normal;
  text-align: center; }

.SumoSelect > .CaptionCont > label > i:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 11px;
  margin: auto;
  font-size: 20px;
  vertical-align: top;
  line-height: 41px;
  color: #FF713D;
  background: url(/images/down-grey.png) no-repeat center right;
  top: 18px;
  position: relative; }

/*******************************************/
.SumoSelect > .CaptionCont > span.placeholder,
select .placeholder {
  color: #212121;
  font-style: normal; }

/*******************************************/
.error-SumoSelect > .CaptionCont {
  border: 1px solid #E40000; }

.error-SumoSelect:focus > .CaptionCont,
.error-SumoSelect:hover > .CaptionCont {
  border-color: #E40000; }

.error-SumoSelect select:hover,
.error-SumoSelect select:focus {
  border-color: #E40000; }

.SumoSelect > label.error {
  display: block !important; }

/*********************************************
:: Pickadate.js Plugin Styles Override
********************************************/
/*******************************************/
.calendar-fields-container {
  width: 100%;
  max-width: 500px;
  position: relative; }
  .calendar-fields-container > button {
    position: absolute;
    top: 14px;
    right: 15px;
    font-size: 1.3em;
    line-height: 1.3;
    color: #FF713D; }

.date-select {
  opacity: 1 !important; }

/*******************************************/
.picker {
  top: 37px;
  max-width: 320px;
  display: none; }
  @media all and (min-width: 64em) {
    .picker {
      top: 47px; } }
  .picker td, .picker th {
    padding: 0px;
    text-align: inherit;
    border: none; }

.picker__holder {
  overflow-y: initial; }

.picker--opened {
  display: block !important; }

.picker__footer {
  display: none; }

.picker select {
  display: inline-block;
  height: auto;
  width: auto;
  font-size: 16px;
  line-height: 1.2;
  padding: 0px;
  border: none !important;
  margin: 0px !important; }

/*********************************************
  :: Lightbox Custom Styles (for: Magnific Popup)
********************************************/
/* Overiding Plugin Styles */
button.mfp-close {
  color: white !important;
  background: #90a64c;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1100;
  width: 29px;
  height: 29px;
  font-size: 19px;
  line-height: 29px;
  border-radius: 50%;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease-in-out; }
  @media all and (min-width: 64em) {
    button.mfp-close {
      right: 10px; } }

.mfp-ready {
  z-index: 99999042;
  /*@include opaque;*/
  /*@include rgba(#ECECEC, 0.98);*/ }
  .mfp-ready .mfp-wrap {
    z-index: 99999043; }
  .mfp-ready .mfp-content {
    text-align: center;
    vertical-align: top;
    margin-top: 5%; }

/* Default Fade-zoom animation */
.mfp-zoom-in .lightbox-popup {
  /* start state */
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease-in-out; }

.mfp-zoom-in.mfp-ready .lightbox-popup,
.mfp-zoom-in.mfp-ready .mfp-close {
  /* animate in */
  opacity: 1;
  transform: scale(1); }

.mfp-zoom-in.mfp-removing .lightbox-popup,
.mfp-zoom-in.mfp-removing .mfp-close {
  /* animate out */
  opacity: 0;
  transform: scale(0.9); }

.mfp-zoom-in.mfp-bg {
  /* Dark overlay, start state */
  opacity: 0;
  transition: all 0.3s ease-out;
  background: rgba(0, 0, 0, 0.69); }

.mfp-zoom-in.mfp-ready.mfp-bg {
  /* animate in */
  opacity: 1; }

.mfp-zoom-in.mfp-removing.mfp-bg {
  /* animate out */
  opacity: 0; }

img.mfp-img {
  width: auto;
  max-width: 400px; }

/* Custom Lightbox Popup Styles */
.lightbox-popup {
  /*display: none;*/
  width: 95%;
  /*position: relative;*/
  text-align: center; }

.mfp-ready .lightbox-popup .lightbox-content {
  display: inline-block; }

/* Title */
.lightbox-title {
  display: inline-block;
  width: 100%;
  max-width: 520px;
  color: #FF713D;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  position: relative;
  text-align: center;
  font-family: 'Raleway', 'Helvetica','Arial', sans-serif; }

/* Content */
.lightbox-content {
  display: none;
  width: 100%;
  max-width: 520px;
  text-align: center;
  padding-bottom: 20px; }
  .lightbox-content > *:last-child {
    margin-bottom: 0px; }
  .lightbox-content form {
    float: none;
    display: inline-block;
    max-width: 360px;
    text-align: left; }
  .lightbox-content > button, .lightbox-content > .button {
    font-size: 16px;
    line-height: 22px;
    margin-right: 20px; }
  .lightbox-content input, .lightbox-content textarea {
    border-color: #FF713D; }
  .lightbox-content label a, .lightbox-content label button {
    float: right;
    text-transform: none;
    color: #FF713D;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400; }
  .lightbox-content .button-field {
    padding-top: 10px;
    margin-top: 0px;
    border-top: none;
    text-align: center; }
    .lightbox-content .button-field input {
      float: none;
      display: inline-block; }
  .lightbox-content .lightbox-manual-close-trigger {
    font-size: 14px;
    line-height: 14px; }

.tranzit-popup {
  max-width: 660px;
  margin: 0 auto; }
  .tranzit-popup .title-area {
    background: #FF6936;
    width: 100%;
    float: left;
    padding: 15px 20px;
    border-radius: 4px 4px 0 0; }
    .tranzit-popup .title-area h4 {
      text-align: left;
      color: white;
      font-size: 17px;
      font-weight: 600;
      line-height: 1;
      margin: 0px; }
      @media all and (min-width: 64em) {
        .tranzit-popup .title-area h4 {
          font-size: 22px; } }
  .tranzit-popup .popup-content {
    width: 100%;
    float: left;
    text-align: left;
    padding: 25px 20px;
    background: white;
    border-radius: 0 0 4px 4px; }
    .tranzit-popup .popup-content p {
      text-align: left;
      color: black; }
    .tranzit-popup .popup-content .error {
      color: red; }
    .tranzit-popup .popup-content .success {
      color: green; }

/*********************************************
  :: Owl Carousel Custom Styles (for: Owl Carousel v1)                        
********************************************/
/* Owl Controls */
.owl-theme .owl-controls {
  margin-top: 0px; }

.owl-carousel .owl-video-play-icon {
  background: url("/images/owl-video-play.png") no-repeat; }

.property-thumbs {
  display: none !important; }
  @media all and (min-width: 64em) {
    .property-thumbs {
      display: inline-block !important;
      width: 100%;
      max-width: 1060px;
      margin: 5px auto;
      text-align: center;
      background: white;
      z-index: 9; } }
  .property-thumbs .owl-stage {
    margin: 0 auto; }
  .property-thumbs .owl-item {
    display: inline-block;
    cursor: pointer;
    font-size: 0; }
    .property-thumbs .owl-item img {
      width: 114px;
      height: 77px;
      text-align: center;
      display: inline-block; }

.hero-prev {
  width: 31px;
  height: 36px;
  background: url(/images/left-arrow.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 45%;
  left: 20px;
  z-index: 9;
  cursor: pointer; }

.hero-next {
  width: 31px;
  height: 36px;
  background: url(/images/right-arrow.png) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 45%;
  right: 20px;
  z-index: 9;
  cursor: pointer; }

.owl-controls {
  height: 15px;
  position: absolute;
  bottom: 50%;
  left: 6%; }
  @media all and (min-width: 64em) {
    .owl-controls {
      bottom: 30%;
      left: 12%; } }

.owl-dots {
  width: 100%;
  height: 15px;
  text-align: left; }

.owl-dot {
  margin: 0 3px;
  width: 12px;
  height: 12px;
  border: 1px solid #979797;
  border-radius: 50%;
  background: transparent;
  display: inline-block; }
  .owl-dot.active {
    background: #979797;
    border: 1px solid #979797; }

/*********************************************
  :: Off Canvas Menu Custom Styles (for: PushMenu, via codrops)
********************************************/
/*******************************************/
#small-screen-menu-trigger {
  float: right;
  font-size: 1.45em;
  line-height: 1;
  margin: 0 0 0 15px; }
  #small-screen-menu-trigger:before {
    font-family: "icomoon";
    content: "\e920";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  @media all and (min-width: 64em) {
    #small-screen-menu-trigger {
      display: none; } }

.mp-pushed #small-screen-menu-trigger:before {
  content: "\e939"; }

/*******************************************/
.mp-pusher.mp-pushed::after,
.mp-level.mp-level-overlay::after {
  opacity: 0; }

.mp-pusher {
  z-index: 999; }

/*******************************************/
.mp-menu {
  border-left: none; }

/*******************************************/
.mp-level {
  background: #ECECEC;
  padding: 0px 0px 0px 0px; }
  .mp-level ul.menu-list {
    float: left;
    width: 100%;
    margin: 0px;
    padding: 0px; }
    .mp-level ul.menu-list li {
      margin-bottom: 0px;
      position: static; }
      .mp-level ul.menu-list li:before {
        display: none; }
      .mp-level ul.menu-list li > a {
        font-size: 0.92em;
        font-weight: 400;
        line-height: 1;
        padding: 15px 20px 15px 20px;
        display: block;
        position: relative;
        border-bottom: none;
        color: #212121; }
        .mp-level ul.menu-list li > a.bigblue {
          font-size: 1.1em;
          font-weight: 600;
          color: #FF713D;
          border-bottom: 1px solid white; }
        .mp-level ul.menu-list li > a .icon-angle-right {
          color: #FF713D;
          border: 1px solid #FF713D;
          border-radius: 50%;
          margin-left: 7px;
          float: right; }
      .mp-level ul.menu-list li:first-of-type a {
        padding-top: 15px; }
    .mp-level ul.menu-list .active a {
      color: #FF713D; }

.mp-level.mp-level-overlay {
  background: white; }

/*******************************************/
.mp-forward .arrow {
  float: right;
  color: white;
  font-size: 14px;
  line-height: 14px;
  margin-top: 5px; }

/*******************************************/
.mp-menu.mp-cover .level-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  background: black;
  color: white;
  margin-bottom: 0px;
  padding: 15px 15px 15px 10px; }
  .mp-menu.mp-cover .level-title span {
    width: 30px;
    display: inline-block; }

/*******************************************/
.mp-back {
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  background: #FF713D;
  color: white;
  display: block;
  height: 45px;
  padding: 12px 15px 15px 10px; }
  .mp-back:hover, .mp-back:focus {
    color: white; }
  .mp-back .arrow {
    color: white;
    margin-right: 5px; }
