/* ==========================================================================
	Base
/* ========================================================================== */
html {
  height: auto;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

html,
button,
input,
select,
textarea {
  font-family: 'Avenir LT W01_45 Book';
  color: #333d47;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.4;
  background: black;
  -webkit-font-smoothing: antialiased;
  font-family: 'Avenir LT W01_45 Book';
  height: 100vh;
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.gm-style img {
  max-width: none;
}

/* ==========================================================================
	Links
/* ========================================================================== */
a {
  text-decoration: underline;
}
a img {
  border: 0;
}

a:focus {
  outline: 0;
}

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

#page {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* ==========================================================================
	Typography
/* ========================================================================== */
/* Headers */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em;
  line-height: 1.5em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-weight: 400;
  font-family: "Avenir LT W01_95 Black";
}

h3 {
  margin: 0;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.025em;
  font-weight: 400;
  font-family: "Avenir LT W01_95 Black";
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
    line-height: 28px;
  }
}

h4 {
  font-size: 1.3em;
  font-weight: normal;
}

h5, h6 {
  margin: 0;
  font-size: 12px;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Avenir LT W01_95 Black";
}

/* Content Block Elements */
dl,
menu,
ol,
ul,
p,
pre {
  margin: 0 0 1em;
}

/* Lists */
menu,
ol,
ul {
  padding: 0 0 0 2em;
}

/* Selection Colors */
::-moz-selection {
  background: #333d47;
  color: white;
  text-shadow: none;
}

::selection {
  background: #333d47;
  color: white;
  text-shadow: none;
}

/* =============================================================================
	Helper Classes
/* ========================================================================== */
/* Prefixed with tags to override default tag styling for these elemets if .button is added */
button,
.button,
a.button,
input.button {
  display: inline-block;
}

/* Responsive Media Styles */
.media img,
.media video,
.media object,
.media iframe {
  width: 100%;
  height: auto;
}

/* Clear Fix */
.clearfix:after,
.cf:after {
  content: '';
  display: table;
  clear: both;
}

/* Floats */
.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignnone {
  display: inline-block;
}

.aligncenter {
  display: block;
  float: none;
  text-align: center;
  clear: both;
  margin: 20px auto;
}

/* =============================================================================
	Structural Styles, Media Queries & Page Styling
/* ========================================================================== */
.container {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
.container:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.error404 {
  text-align: center;
}
.error404 ul {
  text-align: left;
}

.content.full-width,
.full-width {
  float: none;
  width: 100%;
}

.article {
  margin-bottom: 1em;
}

/* Navigation */
nav > ul {
  margin: 0;
  padding: 0;
}
nav ul:after {
  content: '';
  display: table;
  clear: both;
}

/* Paginations */
.navigation.pagination {
  clear: both;
}

@media (max-width: 767px) {
  #page .hidden-xs {
    display: none;
  }
}
#page .visible-xs {
  display: none;
}
@media (max-width: 767px) {
  #page .visible-xs {
    display: block;
  }
}

input:not([type=submit]) {
  display: block;
  width: 100%;
  max-width: 450px;
  padding: 19px 15px 17px;
  margin: 20px auto 10px;
  border: 2px solid #d5d9de;
  border-radius: 5px;
  line-height: 20px;
  font-size: 16px;
  -webkit-appearance: none;
}
input:not([type=submit]):focus, input:not([type=submit]):active {
  outline: none;
  border-color: #ffff00;
}
input:not([type=submit]).error {
  border-color: #d72a31;
}
@media (max-width: 767px) {
  input:not([type=submit]) {
    font-size: 14px;
    padding: 14px 15px 13px;
  }
}

input[type=submit] {
  -webkit-appearance: none;
  background-color: white;
  border: 2px solid #333d47;
  font-size: 20px;
  line-height: 20px;
  font-family: "Avenir LT W01_95 Black";
  padding: 19px 55px 17px;
  border-radius: 40px;
  margin-top: 20px;
  cursor: pointer;
}
input[type=submit]:hover {
  border-color: #ffff00;
}
input[type=submit]:active, input[type=submit]:focus {
  outline: none;
}
@media (max-width: 767px) {
  input[type=submit] {
    font-size: 14px;
    padding: 14px 45px 13px;
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

fieldset {
  border: none;
}

/* =============================================================================
	Layout
/* ========================================================================== */
header.main {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 30px 0 0;
  z-index: 99;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  transition: all 750ms ease-out;
}
header.main:after {
  content: '';
  display: table;
  clear: both;
}
header.main .container {
  transition: all 750ms ease-out;
}
@media (max-width: 991px) {
  header.main {
    padding: 15px 0 0;
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}
header.main .logo {
  display: block;
  float: left;
  height: 72px;
  width: 60px;
  overflow: hidden;
}
@media (max-width: 767px) {
  header.main .logo {
    height: 50px;
    width: 42px;
  }
}
header.main .logo img {
  display: block;
  position: relative;
}
header.main .logo:hover img {
  margin-top: -72px;
}
@media (max-width: 767px) {
  header.main .logo:hover img {
    margin-top: -50px;
  }
}
header.main .menu-trigger {
  display: block;
  float: right;
  padding: 30px 20px;
  margin-top: 5px;
  margin-right: -20px;
}
@media (max-width: 767px) {
  header.main .menu-trigger {
    margin-top: -2px;
  }
}
header.main .menu-trigger span {
  display: block;
  position: relative;
  width: 24px;
  height: 3px;
  background-color: white;
}
header.main .menu-trigger span:before, header.main .menu-trigger span:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: white;
}
header.main .menu-trigger span:before {
  top: -9px;
}
header.main .menu-trigger span:after {
  bottom: -9px;
}
header.main .menu-trigger:hover span {
  background-color: #ffff00;
}
header.main .menu-trigger:hover span:before, header.main .menu-trigger:hover span:after {
  background-color: #ffff00;
}

body.loading header.main {
  opacity: 0;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

body.page-open header.main .container {
  opacity: 0;
  margin-top: -100px;
}

.main-menu {
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  width: 305px;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  transition: box-shadow 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, box-shadow 500ms ease-in-out;
  transition: transform 500ms ease-in-out, box-shadow 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
  background-color: white;
}
.main-menu .nav-wrapper {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-menu .nav-wrapper .inner {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
.main-menu .menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  margin: 40px 30px;
  -webkit-transform: translate3d(0, 50%, 0);
          transform: translate3d(0, 50%, 0);
  z-index: 2;
  opacity: 0;
  transition: all 500ms ease-out;
  transition-delay: 300ms;
}
.main-menu .menu-close:before, .main-menu .menu-close:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  margin-top: -1.5px;
  margin-left: -13px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  background-color: #333d47;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
}
.main-menu .menu-close:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.main-menu .menu-close:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.main-menu .menu-close:hover:before, .main-menu .menu-close:hover:after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.main-menu nav {
  padding: 10px;
  text-align: center;
  font-family: "Avenir LT W01_85 Heavy";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.05em;
}
.main-menu nav a {
  display: inline-block;
  position: relative;
  padding: 5px 20px;
  text-decoration: none;
  color: #828f9b;
  transition: color 200ms ease-in-out;
}
@media (max-width: 991px) {
  .main-menu nav a {
    padding: 5px 10px;
  }
}
.main-menu nav a:hover {
  color: #333d47;
}
.main-menu nav a span {
  position: relative;
  z-index: 1;
}
.main-menu nav a:before, .main-menu nav a:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  top: 50%;
  margin-top: -0.5px;
  background: #ffff00;
}
.main-menu nav a:before {
  left: -2.5px;
}
.main-menu nav a:after {
  right: 2.5px;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.main-menu nav ul {
  list-style-type: none;
  padding: 50px 0 0;
  margin: 0;
}
.main-menu nav ul li {
  padding: 5px 0;
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
          transform: translate3d(0, 50%, 0);
  transition: all 500ms ease-out;
  white-space: nowrap;
}
.main-menu nav ul li.active a {
  color: #333d47;
}
.main-menu nav ul li.active a:before {
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.main-menu nav ul li.active a:after {
  background: transparent;
  width: 100%;
  transition: 0s;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu nav ul li {
  transition-delay: 100ms;
}
.main-menu.active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.main-menu.active svg path {
  stroke-dashoffset: 0;
  transition: all 1.5s ease-in-out;
}
.main-menu.active .menu-close {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition-delay: 1s;
}
.main-menu.active nav ul li {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.main-menu.active nav ul li:nth-last-child(1) {
  transition-delay: 550ms;
}
.main-menu.active nav ul li:nth-last-child(2) {
  transition-delay: 650ms;
}
.main-menu.active nav ul li:nth-last-child(3) {
  transition-delay: 750ms;
}
.main-menu.active nav ul li:nth-last-child(4) {
  transition-delay: 850ms;
}
.main-menu.active nav ul li:nth-last-child(5) {
  transition-delay: 950ms;
}
.main-menu.active nav ul li:nth-last-child(6) {
  transition-delay: 1050ms;
}
.main-menu.active nav ul li:nth-last-child(7) {
  transition-delay: 1150ms;
}
.main-menu.active nav ul li:nth-last-child(8) {
  transition-delay: 1250ms;
}
.main-menu.active nav ul li:nth-last-child(9) {
  transition-delay: 1350ms;
}
.main-menu.shadow {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
}

body.activity-playing header.main.hidden {
  opacity: 0;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

/* IE menu fallback */
body.ie header.main .main-menu {
  background-color: white;
  width: 390px;
}
body.ie header.main .main-menu svg {
  display: none;
}

@media (max-width: 991px) {
  body.ios header.main .main-menu {
    width: 320px;
  }
}
@media (max-width: 480px) {
  body.ios header.main .main-menu {
    background-color: white;
    width: 290px;
  }
  body.ios header.main .main-menu nav {
    padding: 15px;
  }
  body.ios header.main .main-menu svg {
    display: none;
  }
}

footer.main {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 55;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  transition: all 300ms linear;
}

body:not(.select-activity) footer.main.hidden {
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}

@media (max-width: 991px) {
  body:not(.select-activity):not(.camper-activity) {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

body.loading footer.main {
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

body.loaded footer.main {
  transition: all 750ms ease-out;
}

.play, .volume {
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 1;
  padding: 12px;
}
.play span, .volume span {
  display: block;
  width: 36px;
  height: 36px;
}

body.select-activity footer.main .play {
  display: none;
}

.play {
  left: 30px;
}
.play span {
  background: url(../images/ico_play.svg) top left no-repeat;
  background-size: 100% auto;
}
.play:hover span {
  background-position: 0 -36px;
}

body.video-playing .play span {
  background-position: 0 -72px;
}
body.video-playing .play:hover span {
  background-position: 0 -108px;
}
body.video-playing .overlay .play span {
  background-position: 0 -148px;
}
body.video-playing .overlay .play:hover span {
  background-position: 0 -222px;
}

.volume {
  right: 30px;
  bottom: 5px;
}
.volume span {
  width: 32px;
  height: 26px;
  background: url(../images/ico_volume.svg) top left no-repeat;
  background-size: 100% auto;
}
.volume:hover span {
  background-position: 0 -26px;
}

body.video-muted .volume span {
  background-position: 0 -52px;
}
body.video-muted .volume:hover span {
  background-position: 0 -78px;
}

body.start-your-day.video-playing #page footer.main, body.start-your-day.video-paused #page footer.main {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
body.start-your-day.video-playing #page footer.main.hidden, body.start-your-day.video-paused #page footer.main.hidden {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
body.start-your-day.video-playing #page footer.main .play, body.start-your-day.video-playing #page footer.main .timeline, body.start-your-day.video-playing #page footer.main .mobile-timeline, body.start-your-day.video-paused #page footer.main .play, body.start-your-day.video-paused #page footer.main .timeline, body.start-your-day.video-paused #page footer.main .mobile-timeline {
  display: none;
}

.loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #a0bee6;
}

.loader {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  opacity: 0;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  transition: all 500ms ease-in-out;
}

body.loading .loader {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

body.loading-finished .loader {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.loader svg path {
  fill: none;
  stroke-width: 6;
}

.loader svg path.loader-circlebg {
  stroke: white;
  opacity: 0.2;
}

.loader svg path.loader-circle {
  transition: stroke-dashoffset 0.2s;
  stroke: white;
  stroke-dashoffset: 192.617;
}

.timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-bottom: 18px;
  padding: 0 110px;
}
.timeline ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0;
}
.timeline ul li {
  display: inline-block;
  width: 13.3%;
}
.timeline ul li .icon {
  width: 47px;
  height: 52px;
  position: absolute;
  bottom: -11px;
  cursor: pointer;
  z-index: 1;
}
.timeline ul li .inner {
  position: relative;
  padding: 0 5px;
}
.timeline ul li:first-child, .timeline ul li:last-child {
  width: 16.75%;
}
.timeline ul li:first-child .icon {
  left: 1px;
  background: url(../images/ico_sunrise.svg) 0 0 no-repeat;
}
.timeline ul li:first-child.active .icon, .timeline ul li:first-child.playing .icon {
  background-position: 0 -52px;
}
.timeline ul li:first-child .inner {
  padding-left: 0;
}
.timeline ul li:last-child .inner {
  padding-right: 0;
}
.timeline ul li:last-child .icon {
  right: 1px;
  background: url(../images/ico_sunset.svg) 0 0 no-repeat;
}
.timeline ul li:last-child.active .icon {
  background-position: 0 -52px;
}
.timeline ul li:not(.start):not(.end) .icon {
  display: none;
}
.timeline ul li.end .dot {
  display: none;
}
.timeline ul li .dot {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  margin: -6px -17px 0 0;
  cursor: pointer;
  z-index: 1;
}
.timeline ul li .dot span {
  display: block;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  border-radius: 50%;
}
.timeline ul li .dot:hover span {
  background-color: white;
}
.timeline ul li .line-wrapper {
  padding: 10px 0;
}
.timeline ul li.playing .line-wrapper {
  cursor: pointer;
}
.timeline ul li .line {
  position: relative;
  height: 3px;
  background-color: white;
}
.timeline ul li .line span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  background-color: #ffff00;
}
.timeline ul li.active .dot span {
  background-color: #ffff00;
  border-color: #ffff00;
}
.timeline ul li.active .line span {
  width: 100% !important;
}

body.select-camper #page footer.main, body.camper-playing #page footer.main {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
body.select-camper #page footer.main.hidden, body.camper-playing #page footer.main.hidden {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
body.select-camper #page footer.main .play, body.select-camper #page footer.main .mobile-timeline, body.camper-playing #page footer.main .play, body.camper-playing #page footer.main .mobile-timeline {
  display: none;
}
body.select-camper #page footer.main .timeline ul li .inner, body.camper-playing #page footer.main .timeline ul li .inner {
  padding: 0;
}
body.select-camper #page footer.main .timeline ul li .dot, body.camper-playing #page footer.main .timeline ul li .dot {
  display: none;
}
body.select-camper #page footer.main .timeline ul li .line span, body.camper-playing #page footer.main .timeline ul li .line span {
  display: none;
}
body.select-camper #page footer.main .timeline ul li:first-child .line span, body.camper-playing #page footer.main .timeline ul li:first-child .line span {
  display: block;
  width: 47px !important;
}
body.select-camper #page footer.main .timeline ul li:first-child .icon, body.camper-playing #page footer.main .timeline ul li:first-child .icon {
  background-position: 0 -52px;
}

.mobile-timeline {
  text-align: center;
  color: white;
}
.mobile-timeline .nav {
  display: inline-block;
  position: relative;
  padding: 5px;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-family: "Avenir LT W01_95 Black";
}
.mobile-timeline .nav .arrow {
  display: block;
  padding: 10px;
  position: absolute;
  top: 50%;
  margin: -22px 10px 0 8px;
}
.mobile-timeline .nav .arrow:after {
  content: " ";
  display: block;
  width: 25px;
  height: 23px;
}
.mobile-timeline .nav .arrow.arrow-left {
  right: 100%;
}
.mobile-timeline .nav .arrow.arrow-left:after {
  background: url(../images/chevron_left-double.svg) 0 0 no-repeat;
  background-size: 100% auto;
}
.mobile-timeline .nav .arrow.arrow-right {
  left: 100%;
}
.mobile-timeline .nav .arrow.arrow-right:after {
  background: url(../images/chevron_right-double.svg) 0 0 no-repeat;
  background-size: 100% auto;
}

.screen-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.video-wrapper .main-video-wrapper, .video-wrapper .bg-video-wrapper {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-wrapper .bg-video-wrapper:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.video-wrapper .main-video-wrapper {
  display: none;
  z-index: 15;
}
.video-wrapper .bg-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-wrapper video {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) and (orientation: portrait) {
  .video-wrapper video {
    object-fit: scale-down;
    width: 100%;
    height: 100%;
  }
}
.video-wrapper .main-video-wrapper .table {
  height: 100%;
}
.video-wrapper .main-video-wrapper .table .table-cell {
  height: 100vh;
}
@media (max-width: 991px) and (orientation: portrait) {
  .video-wrapper .main-video-wrapper .table {
    display: table;
    width: 100%;
  }
  .video-wrapper .main-video-wrapper .table .table-cell {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    background-color: black;
  }
}

body.ios .video-wrapper .bg-wrapper {
  display: block;
}

body.video-playing .video-wrapper .bg-wrapper, body.video-paused .video-wrapper .bg-wrapper {
  opacity: 0;
}

body.ios.select-camper .video-wrapper .bg-wrapper, body.select-activity .video-wrapper .bg-wrapper {
  opacity: 1;
}

#current, #duration {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  color: white;
}

#duration {
  top: 60%;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 55;
}
.overlay .play {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.overlay .play span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
}
.overlay .play:hover span {
  background-position: 0 -74px;
}

body.select-activity .overlay {
  display: none;
}

#video-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 20;
}

.spinner {
  margin: -20px 0 0 -20px;
  height: 40px;
  width: 40px;
  -webkit-animation: rotate 0.8s infinite linear;
          animation: rotate 0.8s infinite linear;
  border: 6px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* This used to work for parent element of button divs */
/* But it is not enough now, below dont hide play button parent div */
*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */
*::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */
/* This one works */
*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

body.ie #page video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
}

.screen-wrapper .activity-wrapper {
  position: absolute;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  color: white;
}
.screen-wrapper .activity-wrapper h2 {
  margin: 0;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .screen-wrapper .activity-wrapper h2 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
  }
}
.screen-wrapper .activity-wrapper .inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.screen-wrapper .activity-wrapper .inner .choices {
  display: inline-block;
  width: 100%;
  max-width: 580px;
}
.screen-wrapper .activity-wrapper .inner .choices ul {
  list-style: none;
  margin: 0;
  padding: 20px 0 100px;
}
.screen-wrapper .activity-wrapper .inner .choices ul:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .screen-wrapper .activity-wrapper .inner .choices ul {
    padding: 20px 7px 30px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .screen-wrapper .activity-wrapper .inner .choices ul {
    text-align: center;
  }
}
.screen-wrapper .activity-wrapper .inner .choices ul li {
  width: 50%;
  float: left;
  padding: 15px;
}
@media (max-width: 767px) {
  .screen-wrapper .activity-wrapper .inner .choices ul li {
    padding: 7px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .screen-wrapper .activity-wrapper .inner .choices ul li {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    float: none;
  }
  .screen-wrapper .activity-wrapper .inner .choices ul li:after {
    content: '';
    display: table;
    clear: both;
  }
}
.screen-wrapper .activity-wrapper .inner .choices ul li.one-item {
  float: none;
  margin: 0 auto;
}
.screen-wrapper .activity-wrapper .inner .choices ul li.hidden {
  display: none;
}
.screen-wrapper .activity-wrapper .inner .choices ul li .img-wrapper, .screen-wrapper .activity-wrapper .inner .choices ul li .caption {
  border: 6px solid white;
}
.screen-wrapper .activity-wrapper .inner .choices ul li .img-wrapper {
  padding: 50px 10px;
  min-height: 210px;
}
@media (max-width: 767px) {
  .screen-wrapper .activity-wrapper .inner .choices ul li .img-wrapper {
    display: none;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .screen-wrapper .activity-wrapper .inner .choices ul li .img-wrapper {
    display: block;
    width: 25%;
    float: left;
    min-height: 70px;
    padding: 10px 5px;
    text-align: center;
    border: 3px solid white;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .screen-wrapper .activity-wrapper .inner .choices ul li .img-wrapper img {
    max-height: 44px;
    width: auto;
  }
}
.screen-wrapper .activity-wrapper .inner .choices ul li .caption {
  border-top: 0;
  padding: 10px;
}
@media (max-width: 767px) {
  .screen-wrapper .activity-wrapper .inner .choices ul li .caption {
    border: 3px solid white;
    position: relative;
  }
  .screen-wrapper .activity-wrapper .inner .choices ul li .caption:after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -7px;
    width: 9px;
    height: 15px;
    background: url(../images/chevron_right.svg) 0 0 no-repeat;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .screen-wrapper .activity-wrapper .inner .choices ul li .caption {
    width: 75%;
    float: left;
    border-left: none;
    padding: 21px 10px;
  }
}
.screen-wrapper .activity-wrapper .inner .choices ul li .link {
  cursor: pointer;
}
@media (min-width: 992px) {
  .screen-wrapper .activity-wrapper .inner .choices ul li .link:hover .img-wrapper, .screen-wrapper .activity-wrapper .inner .choices ul li .link:hover .caption {
    border-color: #ffff00;
  }
}

/* SLIDER NAV */
.slider .slider-button {
  display: block;
  position: absolute;
  z-index: 58;
  height: 70%;
  width: 120px;
  top: 15%;
  transition: opacity 400ms, -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, opacity 400ms;
  transition: transform 500ms ease-in-out, opacity 400ms, -webkit-transform 500ms ease-in-out;
}
@media (max-width: 767px) and (orientation: portrait) {
  .slider .slider-button {
    display: none;
  }
}
.slider .slider-button span {
  display: block;
  width: 26px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -11px;
  background-size: 26px 48px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.slider .slider-button:hover span {
  background-position: 0 -24px;
}
.slider .slider-button.prev {
  left: 0;
}
.slider .slider-button.prev span {
  background-image: url(../images/chevron_left-double.svg);
  margin-left: -20px;
}
.slider .slider-button.next {
  right: 0;
}
.slider .slider-button.next span {
  background-image: url(../images/chevron_right-double.svg);
  margin-left: -6px;
}
.slider .slider-button.inactive, .slider .slider-button.disabled {
  opacity: 0.3;
}

.activity-playing .slider-button.hidden {
  opacity: 0;
}
.activity-playing .slider-button.hidden.prev {
  -webkit-transform: translate3d(-30%, 0, 0);
          transform: translate3d(-30%, 0, 0);
}
.activity-playing .slider-button.hidden.next {
  -webkit-transform: translate3d(30%, 0, 0);
          transform: translate3d(30%, 0, 0);
}

/* SLIDER SCREENS */
.screen-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 500ms linear, -webkit-transform 600ms cubic-bezier(0.75, 0.17, 0.38, 0.9);
  transition: transform 600ms cubic-bezier(0.75, 0.17, 0.38, 0.9), opacity 500ms linear;
  transition: transform 600ms cubic-bezier(0.75, 0.17, 0.38, 0.9), opacity 500ms linear, -webkit-transform 600ms cubic-bezier(0.75, 0.17, 0.38, 0.9);
}
.screen-wrapper.current {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 2;
}
.screen-wrapper.next {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  opacity: 0;
}
.screen-wrapper.prev {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  opacity: 0;
}
.screen-wrapper.temp-next, .screen-wrapper.temp-prev {
  opacity: 0;
}

.select-activity .screen-wrapper.temp-next, .select-activity .screen-wrapper.temp-prev {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  z-index: 1;
}

/* Effect 9: Surrounding borders */
.anim {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 0px solid rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.anim div {
  position: fixed;
  background: white;
}

.anim div:first-child,
.anim div:nth-child(3) {
  width: 0;
  height: 15px;
}

.anim div:nth-child(2),
.anim div:nth-child(4) {
  width: 15px;
  height: 0;
}

.anim div:first-child {
  top: 0;
  left: 0;
}

.anim.animate div:first-child {
  width: 100%;
  transition: width 1s linear 0.3s;
}

.anim div:nth-child(2) {
  top: 0;
  right: 0;
}

.anim.animate div:nth-child(2) {
  height: 100%;
  transition: height 1s linear 1.3s;
}

.anim div:nth-child(3) {
  right: 0;
  bottom: 0;
}

.anim.animate div:nth-child(3) {
  width: 100%;
  transition: width 1s linear 2.3s;
}

.anim div:nth-child(4) {
  bottom: 0;
  left: 0;
}

.anim.animate div:nth-child(4) {
  height: 100%;
  transition: height 1s linear 3.3s;
}

.anim.animate {
  z-index: 100;
  border: 15px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: border 0.3s, opacity 0.3s 4.3s;
}

.three-items.choices {
  display: inline-block;
  width: 100%;
}
.three-items.choices h2 {
  margin: 0;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .three-items.choices h2 {
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 0.05em;
  }
}
.three-items.choices ul {
  list-style: none;
  margin: 0;
  padding: 40px 0 80px;
  text-align: center;
}
.three-items.choices ul:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .three-items.choices ul {
    padding: 20px 15px 30px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .three-items.choices ul {
    text-align: center;
  }
}
.three-items.choices ul li {
  display: inline-block;
  position: relative;
  margin: 0 17px;
  min-width: 150px;
  padding: 0;
  border: 3px solid white;
  text-align: center;
  cursor: pointer;
}
.three-items.choices ul li:after {
  content: '';
  display: table;
  clear: both;
}
.three-items.choices ul li .img-wrapper, .three-items.choices ul li .caption {
  float: left;
}
.three-items.choices ul li .img-wrapper {
  padding: 20px 15px;
  border-right: 3px solid white;
  height: 64px;
}
@media (max-width: 991px) {
  .three-items.choices ul li .img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.three-items.choices ul li .caption {
  width: 225px;
  padding: 12px 10px;
}
@media (max-width: 991px) {
  .three-items.choices ul li .caption {
    width: 100%;
    padding-left: 75px;
  }
}
.three-items.choices ul li:hover {
  border-color: #ffff00;
}
.three-items.choices ul li:hover .img-wrapper {
  border-color: #ffff00;
}
@media (max-width: 991px) {
  .three-items.choices ul li {
    display: block;
    max-width: 300px;
    margin: 0 auto 20px;
  }
}

.lightbox-wrapper {
  display: none;
}
.lightbox-wrapper .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  margin: 30px 30px;
  z-index: 2;
  transition: all 500ms ease-out;
  transition-delay: 300ms;
  z-index: 110;
}
.lightbox-wrapper .close:before, .lightbox-wrapper .close:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 3px;
  margin-top: -1.5px;
  margin-left: -13px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  background-color: white;
  transition: -webkit-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  z-index: 4;
}
@media (max-width: 991px) and (orientation: portrait) {
  .lightbox-wrapper .close:before, .lightbox-wrapper .close:after {
    background-color: #333d47;
  }
}
.lightbox-wrapper .close:before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.lightbox-wrapper .close:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 992px) {
  .lightbox-wrapper .close:hover:before, .lightbox-wrapper .close:hover:after {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
}

.lightbox {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 105;
}
.lightbox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) and (orientation: portrait) {
  .lightbox video {
    object-fit: scale-down;
    width: 100%;
    height: auto;
  }
}
.lightbox footer {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 30px;
  padding: 30px;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  transition: all 300ms linear;
}
.lightbox footer .timeline {
  padding: 0 230px 0 115px;
  margin-bottom: 18px;
}
.lightbox footer .timeline .inner {
  padding: 10px 0;
  cursor: pointer;
}
.lightbox footer .timeline .line {
  height: 3px;
  background-color: white;
  position: relative;
}
.lightbox footer .timeline .line span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #ffff00;
}
.lightbox footer .timeline .line span:after {
  content: " ";
  display: block;
  width: 6px;
  height: 16px;
  background-color: #ffff00;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -8px 0 0 -3px;
}
.lightbox footer .duration {
  width: 115px;
  position: absolute;
  bottom: 0;
  padding: 19px 0;
  right: 115px;
  text-align: right;
  font-size: 12px;
  line-height: 20px;
  font-family: "Avenir LT W01_95 Black";
  color: white;
}
.lightbox footer .duration .total:before {
  content: "/";
  padding: 0 5px;
}
.lightbox footer .duration .current {
  color: #ffff00;
}
@media (max-width: 991px) and (orientation: portrait) {
  .lightbox .video-wrapper {
    display: table;
    width: 100%;
    height: 100%;
  }
}
.lightbox .video-wrapper .inner {
  height: 100%;
}
@media (max-width: 991px) and (orientation: portrait) {
  .lightbox .video-wrapper .inner {
    display: table-cell;
    vertical-align: middle;
  }
}

body.lightbox-playing .lightbox footer.hidden {
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}
@media (max-width: 991px) {
  body.lightbox-playing .lightbox footer.hidden {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 991px) {
  body.lightbox-playing .lightbox footer .timeline .line {
    background-color: rgba(51, 61, 71, 0.3);
  }
  body.lightbox-playing .lightbox footer .duration {
    color: rgba(51, 61, 71, 0.3);
  }
}

#error, #success {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -80px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, -80px, 0);
          transform: translate3d(0, -80px, 0);
  transition: opacity 1200ms linear 150ms, visibility 1200ms linear 150ms, -webkit-transform 1200ms ease-in-out 150ms;
  transition: transform 1200ms ease-in-out 150ms, opacity 1200ms linear 150ms, visibility 1200ms linear 150ms;
  transition: transform 1200ms ease-in-out 150ms, opacity 1200ms linear 150ms, visibility 1200ms linear 150ms, -webkit-transform 1200ms ease-in-out 150ms;
}
#error.active, #success.active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}
#error h5, #success h5 {
  font-size: 40px;
  line-height: 40px;
  text-transform: none;
  margin: 30px 0 10px;
  letter-spacing: 0.025em;
}

form label {
  width: 100%;
  display: block;
  padding-bottom: 5px;
  font-size: 16px;
}

.debug {
  position: absolute;
  top: 50%;
  z-index: 999999;
  background-color: red;
}

.start-screens, .end-screens {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.end-screens {
  display: none;
  z-index: 26;
}

body.start-your-day footer.main, body.select-camper footer.main, body.camper-playing footer.main, body.camper-selected footer.main, body.end-screen footer.main {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}
body.start-your-day .slider-button, body.select-camper .slider-button, body.camper-playing .slider-button, body.camper-selected .slider-button, body.end-screen .slider-button {
  display: none;
}
body.start-your-day .bg-video-wrapper:after, body.select-camper .bg-video-wrapper:after, body.camper-playing .bg-video-wrapper:after, body.camper-selected .bg-video-wrapper:after, body.end-screen .bg-video-wrapper:after {
  display: none;
}
body.start-your-day #activities-wrapper, body.select-camper #activities-wrapper, body.camper-playing #activities-wrapper, body.camper-selected #activities-wrapper, body.end-screen #activities-wrapper {
  display: none;
}

body.camper-activity .slider-button, body.camper-intro .slider-button {
  display: none;
}

footer.end {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 20px;
  line-height: 20px;
  font-family: "Avenir LT W01_85 Heavy";
  letter-spacing: 0.05em;
  z-index: 5;
}
footer.end .start-new-day {
  position: relative;
  display: inline-block;
  margin: 0 0 65px 40px;
  color: white;
  text-decoration: none;
}
footer.end .start-new-day:before {
  content: " ";
  display: inline-block;
  width: 9px;
  height: 15px;
  margin-right: 15px;
  background: url(../images/chevron_left.svg) 0 0;
  background-size: 9px 15px;
}
footer.end .start-new-day:after {
  content: " ";
  height: 3px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 7px;
  background: white;
}
footer.end .start-new-day:hover:after {
  background-color: #ffff00;
}

.start-your-day-trigger {
  display: block;
  width: 297px;
  height: 300px;
  background-image: url(../images/ico_start.svg);
  background-size: 297px 600px;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -150px 0 0 -148.5px;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: opacity 1000ms ease-in-out, -webkit-transform 1000ms ease-in-out;
  transition: transform 1000ms ease-in-out, opacity 1000ms ease-in-out;
  transition: transform 1000ms ease-in-out, opacity 1000ms ease-in-out, -webkit-transform 1000ms ease-in-out;
  transition-delay: 750ms;
}
.start-your-day-trigger:hover {
  background-position: 0 -300px;
}
@media (max-width: 767px) {
  .start-your-day-trigger {
    width: 248px;
    height: 250px;
    background-size: 248px 500px;
    margin: -125px 0 0 -124px;
  }
  .start-your-day-trigger:hover {
    background-position: 0 -250px;
  }
}

body.loading .start-your-day-trigger {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
}

.start-next {
  display: none;
  position: absolute;
  z-index: 58;
  height: 70%;
  width: 120px;
  top: 15%;
  transition: opacity 400ms, -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, opacity 400ms;
  transition: transform 500ms ease-in-out, opacity 400ms, -webkit-transform 500ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
@media (max-width: 767px) and (orientation: portrait) {
  .start-next {
    display: none;
  }
}
.start-next span {
  display: block;
  width: 26px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -11px;
  background-size: 26px 48px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.start-next:hover span {
  background-position: 0 -24px;
}
.start-next.next {
  right: 0;
}
.start-next.next span {
  background-image: url(../images/chevron_right-double.svg);
  margin-left: -6px;
}

body.start-your-day.video-playing #page .start-next, body.start-your-day.video-paused #page .start-next {
  display: block;
  visibility: visible;
  opacity: 1;
}

.start-screen.select-camper {
  display: none;
}
.start-screen.select-camper .select-camper-wrapper {
  position: absolute;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  color: white;
}
.start-screen.select-camper .select-camper-wrapper h2 {
  margin: 0;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.025em;
}
@media (max-width: 767px) {
  .start-screen.select-camper .select-camper-wrapper h2 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
  }
}
.start-screen.select-camper .select-camper-wrapper .inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices {
  display: inline-block;
  width: 100%;
  max-width: 580px;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul {
  list-style: none;
  margin: 0;
  padding: 40px 0 50px;
  text-align: center;
  font-size: 0;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  .start-screen.select-camper .select-camper-wrapper .inner .choices ul {
    padding: 20px 7px 30px;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .start-screen.select-camper .select-camper-wrapper .inner .choices ul {
    text-align: center;
  }
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li {
  display: inline-block;
  position: relative;
  min-width: 150px;
  padding: 12px 25px;
  border: 4px solid white;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .start-screen.select-camper .select-camper-wrapper .inner .choices ul li {
    padding: 15px 10px;
    min-width: 110px;
  }
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:after, .start-screen.select-camper .select-camper-wrapper .inner .choices ul li:before {
  content: " ";
  display: block;
  position: absolute;
  width: 51px;
  height: 4px;
  background-color: white;
}
@media (max-width: 767px) {
  .start-screen.select-camper .select-camper-wrapper .inner .choices ul li:after, .start-screen.select-camper .select-camper-wrapper .inner .choices ul li:before {
    width: 42px;
  }
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:first-child {
  border-left: none;
  margin-right: -2px;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .start-screen.select-camper .select-camper-wrapper .inner .choices ul li:first-child {
    padding-left: 0;
  }
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:first-child:before {
  right: 100%;
  bottom: -4px;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:first-child:after {
  right: 100%;
  top: -4px;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:last-child {
  border-right: none;
  margin-left: -2px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .start-screen.select-camper .select-camper-wrapper .inner .choices ul li:last-child {
    padding-right: 0;
  }
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:last-child:before {
  left: 100%;
  top: -4px;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:last-child:after {
  left: 100%;
  bottom: -4px;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:hover {
  border-color: #ffff00;
  z-index: 1;
}
.start-screen.select-camper .select-camper-wrapper .inner .choices ul li:hover:before, .start-screen.select-camper .select-camper-wrapper .inner .choices ul li:hover:after {
  background-color: #ffff00;
}

body.select-camper .bg-wrapper {
  background-position: top center;
}

.end-screen.bedtime {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.end-screen.bedtime .bedtime-wrapper {
  position: absolute;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  color: white;
}
.end-screen.bedtime .bedtime-wrapper .inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

body.ios .end-screen.bedtime {
  background: url(../images/bedtime-bg.jpg);
}

.pages {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 60;
  background-color: white;
  font-size: 20px;
  line-height: 20px;
  font-family: "Avenir LT W01_85 Heavy";
  letter-spacing: 0.05em;
}
.pages .page {
  display: none;
}
.pages .page-wrapper {
  position: absolute;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 1;
}
.pages .page-wrapper .inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}
.pages .three-items.choices {
  color: #333d47;
}
.pages .three-items.choices a {
  color: #333d47;
}
.pages .three-items.choices ul li {
  border-color: #333d47;
}
.pages .three-items.choices ul li .img-wrapper {
  border-color: #333d47;
}
.pages .three-items.choices ul li:hover {
  border-color: #ffff00;
}
.pages .three-items.choices ul li:hover .img-wrapper {
  border-color: #ffff00;
}
.pages .back {
  position: absolute;
  display: inline-block;
  margin: 0 0 65px 25px;
  padding-bottom: 10px;
  top: 50px;
  color: #333d47;
  text-decoration: none;
  font-family: "Avenir LT W01_95 Black";
  z-index: 2;
}
.pages .back:before {
  content: " ";
  display: inline-block;
  width: 9px;
  height: 15px;
  margin-right: 15px;
  background: url(../images/chevron_left-black.svg) 0 0;
  background-size: 9px 15px;
}
.pages .back:after {
  content: " ";
  height: 3px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: -3px;
  background: #333d47;
}
.pages .back:hover:after {
  background-color: #ffff00;
}

.page-share {
  display: none;
}
.page-share .three-items.choices ul li.copy .hidden {
  display: none;
}
.page-share .three-items.choices ul li.copy.copied {
  border-color: #ffff00;
}
.page-share .three-items.choices ul li.copy.copied .img-wrapper {
  border-color: #ffff00;
}
.page-share .three-items.choices ul li.copy.copied .img-wrapper, .page-share .three-items.choices ul li.copy.copied .caption {
  display: none;
}
.page-share .three-items.choices ul li.copy.copied .hidden {
  display: block;
}

@media (max-width: 1199px) {
  .page-gallery .page-wrapper, .page-gallery .page-wrapper .inner {
    display: block;
    height: 100%;
  }
}
.page-gallery .gallery-slider-button {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: yellow;
  z-index: 10;
  cursor: pointer;
}
.page-gallery .gallery-slider-button.next {
  right: 0;
  background: url(../images/chevron_right-black.svg) center center no-repeat;
}
.page-gallery .gallery-slider-button.prev {
  left: 0;
  background: url(../images/chevron_left-black.svg) center center no-repeat;
}
@media (max-width: 1199px) {
  .page-gallery .gallery-slider-button {
    display: none;
  }
}
.page-gallery .gallery-wrapper {
  padding: 0 100px;
  font-size: 0;
  letter-spacing: 0;
  text-align: left;
}
@media (max-width: 1199px) {
  .page-gallery .gallery-wrapper {
    padding: 125px 100px 20px;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .page-gallery .gallery-wrapper {
    padding: 125px 10px 20px;
  }
}
.page-gallery .slide {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  width: 100%;
  white-space: normal;
  transition: -webkit-transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out;
  transition: transform 800ms ease-in-out, -webkit-transform 800ms ease-in-out;
}
@media (max-width: 1199px) {
  .page-gallery .slide {
    display: block;
    height: auto;
  }
}
.page-gallery .slider {
  padding: 50px 0;
  white-space: nowrap;
  overflow: hidden;
}
.page-gallery .slider.next .slide {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
@media (max-width: 1199px) {
  .page-gallery .slider {
    height: 100%;
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .page-gallery .slider {
    text-align: center;
    padding: 0;
  }
}
.page-gallery .gallery-item {
  display: inline-block;
  width: 33.3333%;
  padding: 0 20px;
  margin-bottom: 20px;
  vertical-align: top;
  font-size: 15px;
  font-family: "Avenir LT W01_95 Black";
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transform: translate3d(0, -20px, 0);
          transform: translate3d(0, -20px, 0);
  opacity: 0;
  transition: opacity 700ms ease-in-out, -webkit-transform 700ms ease-in-out;
  transition: transform 700ms ease-in-out, opacity 700ms ease-in-out;
  transition: transform 700ms ease-in-out, opacity 700ms ease-in-out, -webkit-transform 700ms ease-in-out;
  transition-delay: 300ms;
}
@media (max-width: 1199px) {
  .page-gallery .gallery-item {
    width: 50%;
    float: left;
  }
}
@media (max-width: 767px) {
  .page-gallery .gallery-item {
    width: 100%;
    float: none;
    max-width: 300px;
  }
}
.page-gallery .gallery-item .video-wrapper {
  height: auto;
}
.page-gallery .gallery-item .video-wrapper .vid {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.page-gallery .gallery-item .video-wrapper .vid img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  -webkit-backface-visibility: hidden;
}
.page-gallery .gallery-item .video-wrapper .caption {
  position: relative;
}
.page-gallery .gallery-item .video-wrapper .caption:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
}
.page-gallery .gallery-item .video-wrapper:hover .caption {
  color: #ffff00;
}
.page-gallery .gallery-item .video-wrapper:hover .caption:after {
  background-color: #ffff00;
}
.page-gallery .gallery-item video {
  height: auto;
  display: block;
}
.page-gallery .gallery-item footer {
  line-height: 40px;
}
.page-gallery .gallery-item footer:after {
  content: '';
  display: table;
  clear: both;
}
.page-gallery .gallery-item footer .caption {
  float: left;
}
.page-gallery .gallery-item footer time {
  font-size: 12px;
  float: right;
}

.page-gallery.current .gallery-item {
  transition-delay: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

/**
 * iPad with portrait orientation.
 */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  body, #page, .video-wrapper .main-video-wrapper .table .table-cell, .main-menu, #screens-wrapper {
    height: 1024px;
  }
}
/**
 * iPad with landscape orientation.
 */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
  body, #page, .video-wrapper .main-video-wrapper .table .table-cell, .main-menu, #screens-wrapper {
    height: 768px;
  }
}
/**
 * iPhone 5
 * You can also target devices with aspect ratio.
 */
@media screen and (device-aspect-ratio: 40 / 71) {
  body, #page, .video-wrapper .main-video-wrapper .table .table-cell, .main-menu, #screens-wrapper {
    height: 500px;
  }
}
.bg-wrapper {
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#screens-wrapper {
  height: 100vh;
}


.hubspot-form-wrapper {
  max-width: 450px;
  margin:0 auto;
  padding: 30px;
}