@charset "UTF-8";
/* styles for validation helpers */
.field-validation-error {
  color: #b94a48;
  font-weight: 500;
  font-size: 11px;
}
@media screen and (min-width: 1001px) {
  .field-validation-error {
    font-size: 16px;
  }
}

.field-validation-valid {
  display: none;
}

input.input-validation-error, select.input-validation-error {
  border: 1px solid #b94a48;
}

input[type=checkbox].input-validation-error {
  border: 0 none;
}

.validation-summary-errors {
  color: #b94a48;
}

.validation-summary-valid {
  display: none;
}

.Button {
  font-family: "EMPrint", Arial, sans-serif;
  font-stretch: normal;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  background-color: transparent;
  line-height: 1.1;
  padding: 8px 14px 10px;
  letter-spacing: 1.5px;
  transition: background 175ms cubic-bezier(0.215, 0.61, 0.355, 1), color 175ms cubic-bezier(0.215, 0.61, 0.355, 1);
  border: 1px solid #FFF;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.Button:hover, .Button:focus {
  background-color: #ff0000;
  border-color: #ff0000;
  cursor: pointer;
  text-decoration: none;
}
.Button:disabled, .Button[disabled] {
  color: rgba(255, 255, 255, 0.5);
}
.Button.Blue {
  color: #fff;
  background-color: #235ba8;
}
.Button.Blue:hover {
  color: #fff;
  background-color: #1f5093;
  text-decoration: none;
}
.Button.Blue.Glass {
  background: linear-gradient(to bottom, #2766bd 0%, #235ba8 25%, #163969 100%);
}
.Button.Blue.Glass:hover {
  background: linear-gradient(to bottom, #235ba8 0%, #1f5093 25%, #112d54 100%);
}
.Button span {
  display: inline-flex;
  pointer-events: none;
}
.Button .arrow {
  padding-left: 20px;
}
.Button .arrow img {
  height: 14px;
  width: auto;
}

.icon {
  background-repeat: no-repeat;
  display: inline-block;
}
.icon, .icon > li, .icon > li > a {
  position: relative;
}

.icon-globe-small {
  background-image: url("../Images/Global/icons.png");
  background-position: -288px -55px;
  width: 16px;
  height: 16px;
}

.custom-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  min-height: 16px;
  padding-left: 26px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 0px;
  font-size: 1.25em;
  line-height: 1.25;
  padding-left: 2.5rem;
}
@media screen and (min-width: 1001px) {
  .custom-checkbox {
    font-size: 0.8rem;
    padding-left: 1.5rem;
    font-size: 0.75em;
  }
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  /*&:focus {
      ~ .checkmark {
          border: 1px solid rgba($custom-checkbox-border-color, 1);
          box-shadow: 0 0 0.5rem rgba($custom-checkbox-border-color, 1);
      }
  }*/
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  /*border: $custom-checkbox-border-width solid $custom-checkbox-border-color;*/
}
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  /*width: $custom-checkbox-size / 2.5 - $custom-checkbox-border-width;
  height: $custom-checkbox-size / 1.5 - $custom-checkbox-border-width;
  border: solid $custom-checkbox-border-color;
  border-width: 0 $custom-checkbox-size/8 $custom-checkbox-size/8 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);*/
}
.custom-checkbox:hover input ~ .checkmark, .custom-checkbox:focus-within input ~ .checkmark {
  border-color: #ff323c;
}

.radio-buttons-container {
  margin-top: 1rem;
  margin-left: 1rem;
}

.radio-holder {
  margin-bottom: 1rem;
}

.custom-radio-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  min-height: 20px;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 0px;
}
.custom-radio-button input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  /*&:checked ~ .radio {
      background-color: #2196F3;
  }*/
}
.custom-radio-button input:checked ~ .radio:after {
  display: block;
}
.custom-radio-button .radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #9a9a9a;
}
.custom-radio-button .radio:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  background: #000;
}
@media screen and (min-width: 601px) {
  .custom-radio-button .label {
    margin-top: -3px;
  }
}
@media screen and (min-width: 1001px) {
  .custom-radio-button .label {
    margin-top: -5px;
  }
}
.custom-radio-button:hover input ~ .radio, .custom-radio-button:focus-within input ~ .radio {
  border-color: #b4b4b4;
}

@media screen and (min-width: 801px) {
  .custom-fileupload .content {
    display: grid;
    grid-template-columns: auto 50%;
    grid-gap: 2rem;
  }
}
.custom-fileupload .button-upload {
  display: block !important;
  text-align: center;
  background-color: #0067b1;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  margin: 0 !important;
  font-weight: 500;
  cursor: pointer;
}
.custom-fileupload .button-upload:hover, .custom-fileupload .button-upload:focus {
  background-color: #04538d;
}
.custom-fileupload .upload-verbiage {
  font-size: 0.8rem;
}
.custom-fileupload .upload-verbiage ul li {
  margin-left: 1.5em;
}
.custom-fileupload .hint {
  font-size: 0.8rem;
}
.custom-fileupload .custom-file {
  height: auto;
  margin-bottom: 10px;
}
.custom-fileupload .custom-file-input {
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}
.custom-fileupload #Image {
  cursor: pointer;
  text-transform: initial !important;
}
.custom-fileupload .icon-loading {
  display: none;
}
.custom-fileupload #Progress {
  width: 0%;
}
.custom-fileupload .progress-container {
  background-color: #e6e6e6;
}
.custom-fileupload .progress {
  background-color: #727272;
}
.custom-fileupload table {
  width: 100%;
  max-width: 1000px;
  word-break: break-all;
  table-layout: fixed;
}
.custom-fileupload table thead tr {
  background-color: #bdc4dd !important;
}
.custom-fileupload table thead th:first-child, .custom-fileupload table tbody th {
  width: 15%;
}
.custom-fileupload table thead th:last-child, .custom-fileupload table tbody td:last-child {
  width: 20%;
}
.custom-fileupload table tr {
  background-color: white;
}
.custom-fileupload table tr th {
  text-align: center;
  border-bottom: 1px solid #dee2e6;
}
.custom-fileupload table tr td {
  vertical-align: middle;
  border-bottom: 1px solid #dee2e6;
  text-align: center;
}
.custom-fileupload table ul {
  list-style: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth !important;
}

html, body {
  font-family: "EMprint", Arial, sans-serif;
  font-size: 12px;
  min-width: 300px;
  margin: 0px;
  padding: 0px;
}
@media only screen and (min-width: 0) {
  html .display-desktop, body .display-desktop {
    display: none;
  }
  html .display-mobile, body .display-mobile {
    display: block;
  }
}
@media only screen and (min-width: 1001px) {
  html .display-desktop, body .display-desktop {
    display: block;
  }
  html .display-mobile, body .display-mobile {
    display: none;
  }
}
@media screen and (min-width: 451px) {
  html, body {
    font-size: 12px;
  }
}
@media screen and (min-width: 601px) {
  html, body {
    font-size: 12px;
  }
}
@media screen and (min-width: 801px) {
  html, body {
    font-size: 14px;
  }
}
@media screen and (min-width: 1001px) {
  html, body {
    font-size: 18px;
  }
}
@media screen and (min-width: 1201px) {
  html, body {
    font-size: 20px;
  }
}
@media screen and (min-width: 1401px) {
  html, body {
    font-size: 22px;
  }
}

body {
  background-color: #E5E5E5;
}

.hidden {
  display: none !important;
}

a, a:focus {
  outline: 0;
  text-decoration: none;
}

::-moz-placeholder {
  color: #9e9e9e;
  opacity: 1;
}

::placeholder, select:required:invalid {
  color: #9e9e9e;
  opacity: 1;
}

select option:not(:first-of-type) {
  color: #000;
}

option[value=""][disabled] {
  display: none;
}

#Slider {
  position: relative;
  transition: right 400ms ease;
  right: 0px;
}
@media screen and (min-width: 1001px) {
  #Slider {
    transition: right 0ms ease;
  }
}
#Slider.HamburgerMenuOpen {
  right: 300px;
}
@media screen and (min-width: 1001px) {
  #Slider.HamburgerMenuOpen {
    right: 0px;
  }
}

#Wrapper {
  max-width: 1920px;
  margin: 0px auto;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.3);
}
#Wrapper #Content {
  background-color: #FFF;
  color: #000;
}
#Wrapper #Content a:not(.Button) {
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
#Wrapper #Content a:not(.Button):link, #Wrapper #Content a:not(.Button):visited, #Wrapper #Content a:not(.Button):focus {
  color: #0067b1;
  text-decoration: none;
}
#Wrapper #Content a:not(.Button):hover {
  color: #0067b1;
  border-color: #0067b1;
}

.Title {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.Subtitle {
  font-size: 1.4rem;
  line-height: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-control, select.form-control:not([size]):not([multiple]) {
  height: 36px;
  font-family: Arial, sans-serif;
}

table.DarkTable {
  border-collapse: collapse;
}
table.DarkTable td, table.DarkTable th {
  text-align: left;
  border: 1px solid #000;
  padding: 8px 12px;
}
table.DarkTable th {
  background-color: #000;
  color: #FFF;
  vertical-align: middle;
}

sup {
  top: 0.26em;
  position: relative;
  line-height: 0px;
}

.form-check-input {
  margin-top: 0;
}
@media screen and (min-width: 1001px) {
  .form-check-input {
    margin-top: 0.25rem;
  }
}

.Required, .RequiredField:after {
  color: #fe000c;
}

.RequiredField:after {
  content: " *";
}

@media screen and (min-width: 1001px) {
  .border-right-md-1 {
    border-right: 1px solid #000;
  }
}
/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
  padding: 0;
}

/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
  top: 0;
  bottom: 0;
}

/* padding for main container */
.mfp-no-margins .mfp-container {
  padding: 0;
}

.mfp-bottom-bar {
  margin-top: 24px;
}

/*
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: none;
    max-height: 90%;
}
*/
.RoundedCorners {
  border-radius: 21px;
}

.TightSpacing {
  line-height: 1.2;
  margin-bottom: 0px;
}

.font-weight-semibold {
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group .form-control-label {
  margin-bottom: 0;
}

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

.inline-spacer {
  display: inline-block;
  width: 12px;
}

.gutter-mobile-left-full {
  padding-left: 0px !important;
}

.gutter-mobile-right-full {
  padding-right: 0px !important;
}

.gutter-mobile-left-half {
  padding-left: 35px !important;
}

.gutter-mobile-right-half {
  padding-right: 35px !important;
}

@media screen and (min-width: 451px) {
  .gutter-mobiletablet-left-full {
    padding-left: 0px !important;
  }

  .gutter-mobiletablet-right-full {
    padding-right: 0px !important;
  }

  .gutter-mobiletablet-left-half {
    padding-left: 35px !important;
  }

  .gutter-mobiletablet-right-half {
    padding-right: 35px !important;
  }
}
@media screen and (min-width: 601px) {
  .gutter-tablet-left-full {
    padding-left: 0px !important;
  }

  .gutter-tablet-right-full {
    padding-right: 0px !important;
  }

  .gutter-tablet-left-half {
    padding-left: 35px !important;
  }

  .gutter-tablet-right-half {
    padding-right: 35px !important;
  }
}
@media screen and (min-width: 801px) {
  .gutter-tabletdesktop-left-full {
    padding-left: 0px !important;
  }

  .gutter-tabletdesktop-right-full {
    padding-right: 0px !important;
  }

  .gutter-tabletdesktop-left-half {
    padding-left: 35px !important;
  }

  .gutter-tabletdesktop-right-half {
    padding-right: 35px !important;
  }
}
@media screen and (min-width: 1001px) {
  .gutter-desktop-left-full {
    padding-left: 0px !important;
  }

  .gutter-desktop-right-full {
    padding-right: 0px !important;
  }

  .gutter-desktop-left-half {
    padding-left: 35px !important;
  }

  .gutter-desktop-right-half {
    padding-right: 35px !important;
  }
}
@media screen and (min-width: 1201px) {
  .gutter-desktophd-left-full {
    padding-left: 0px !important;
  }

  .gutter-desktophd-right-full {
    padding-right: 0px !important;
  }

  .gutter-desktophd-left-half {
    padding-left: 35px !important;
  }

  .gutter-desktophd-right-half {
    padding-right: 35px !important;
  }
}
@media screen and (min-width: 1401px) {
  .gutter-hd-left-full {
    padding-left: 0px !important;
  }

  .gutter-hd-right-full {
    padding-right: 0px !important;
  }

  .gutter-hd-left-half {
    padding-left: 35px !important;
  }

  .gutter-hd-right-half {
    padding-right: 35px !important;
  }
}
.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-direction-column {
  flex-direction: column;
}

.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .d-mobiletablet-none {
    display: none;
  }

  .d-mobiletablet-inline-block {
    display: inline-block;
  }

  .d-mobiletablet-block {
    display: block;
  }

  .d-mobiletablet-inline {
    display: inline;
  }

  .d-mobiletablet-flex {
    display: flex;
  }

  .d-mobiletablet-inline-flex {
    display: inline-flex;
  }

  .flex-direction-mobiletablet-row {
    flex-direction: row;
  }

  .flex-direction-mobiletablet-column {
    flex-direction: column;
  }

  .text-align-mobiletablet-left {
    text-align: left;
  }

  .text-align-mobiletablet-center {
    text-align: center;
  }

  .text-align-mobiletablet-right {
    text-align: right;
  }
}
@media screen and (min-width: 601px) {
  .d-tablet-none {
    display: none;
  }

  .d-tablet-inline-block {
    display: inline-block;
  }

  .d-tablet-block {
    display: block;
  }

  .d-tablet-inline {
    display: inline;
  }

  .d-tablet-flex {
    display: flex;
  }

  .d-tablet-inline-flex {
    display: inline-flex;
  }

  .flex-direction-tablet-row {
    flex-direction: row;
  }

  .flex-direction-tablet-column {
    flex-direction: column;
  }

  .text-align-tablet-left {
    text-align: left;
  }

  .text-align-tablet-center {
    text-align: center;
  }

  .text-align-tablet-right {
    text-align: right;
  }
}
@media screen and (min-width: 801px) {
  .d-tabletdesktop-none {
    display: none;
  }

  .d-tabletdesktop-inline-block {
    display: inline-block;
  }

  .d-tabletdesktop-block {
    display: block;
  }

  .d-tabletdesktop-inline {
    display: inline;
  }

  .d-tabletdesktop-flex {
    display: flex;
  }

  .d-tabletdesktop-inline-flex {
    display: inline-flex;
  }

  .flex-direction-tabletdesktop-row {
    flex-direction: row;
  }

  .flex-direction-tabletdesktop-column {
    flex-direction: column;
  }

  .text-align-tabletdesktop-left {
    text-align: left;
  }

  .text-align-tabletdesktop-center {
    text-align: center;
  }

  .text-align-tabletdesktop-right {
    text-align: right;
  }
}
@media screen and (min-width: 1001px) {
  .d-desktop-none {
    display: none;
  }

  .d-desktop-inline-block {
    display: inline-block;
  }

  .d-desktop-block {
    display: block;
  }

  .d-desktop-inline {
    display: inline;
  }

  .d-desktop-flex {
    display: flex;
  }

  .d-desktop-inline-flex {
    display: inline-flex;
  }

  .flex-direction-desktop-row {
    flex-direction: row;
  }

  .flex-direction-desktop-column {
    flex-direction: column;
  }

  .text-align-desktop-left {
    text-align: left;
  }

  .text-align-desktop-center {
    text-align: center;
  }

  .text-align-desktop-right {
    text-align: right;
  }
}
@media screen and (min-width: 1201px) {
  .d-desktophd-none {
    display: none;
  }

  .d-desktophd-inline-block {
    display: inline-block;
  }

  .d-desktophd-block {
    display: block;
  }

  .d-desktophd-inline {
    display: inline;
  }

  .d-desktophd-flex {
    display: flex;
  }

  .d-desktophd-inline-flex {
    display: inline-flex;
  }

  .flex-direction-desktophd-row {
    flex-direction: row;
  }

  .flex-direction-desktophd-column {
    flex-direction: column;
  }

  .text-align-desktophd-left {
    text-align: left;
  }

  .text-align-desktophd-center {
    text-align: center;
  }

  .text-align-desktophd-right {
    text-align: right;
  }
}
@media screen and (min-width: 1401px) {
  .d-hd-none {
    display: none;
  }

  .d-hd-inline-block {
    display: inline-block;
  }

  .d-hd-block {
    display: block;
  }

  .d-hd-inline {
    display: inline;
  }

  .d-hd-flex {
    display: flex;
  }

  .d-hd-inline-flex {
    display: inline-flex;
  }

  .flex-direction-hd-row {
    flex-direction: row;
  }

  .flex-direction-hd-column {
    flex-direction: column;
  }

  .text-align-hd-left {
    text-align: left;
  }

  .text-align-hd-center {
    text-align: center;
  }

  .text-align-hd-right {
    text-align: right;
  }
}
.FlexGrid > .Row {
  display: flex;
  flex-direction: row;
}
.FlexGrid > .Row > .Col {
  flex: 100%;
}
.FlexGrid > .Row > .Fourth {
  flex: 25%;
}
.FlexGrid > .Row > .Half {
  flex: 50%;
}
.FlexGrid > .Row > .ThreeFourths {
  flex: 75%;
}

form label {
  display: block;
}
form input, form select {
  display: block;
  width: 100%;
}

.View {
  background: #fff;
  position: relative;
}
.View .RedText {
  color: #fe000c;
}
.View .ResponsiveBGCenter {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.View .ResponsiveBGTopLeft {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
.View .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.View .swiper-button-prev, .View .swiper-button-next {
  opacity: 0.5;
}
.View .swiper-button-prev:hover, .View .swiper-button-next:hover {
  opacity: 1;
}
.View .BackArrow {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  cursor: pointer;
  z-index: 15;
}
.View .BackArrow img {
  width: 3rem;
  height: auto;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
}
.View .WeeklyAdventureBundles {
  position: relative;
  background-color: #000;
  background-image: url(../Images/Home/WeeklyAdventureBundlesBG.png);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.View .WeeklyAdventureBundles .Content {
  position: relative;
  text-align: center;
}
.View .WeeklyAdventureBundles .Content .TagLine {
  color: #fff;
  font-size: 1.2rem;
}
.View .WeeklyAdventureBundles .Content .Title {
  color: #fe000c;
  font-weight: bold;
  font-size: 2rem;
  margin-top: 0.5%;
}
.View .WeeklyAdventureBundles .Content .Line {
  border-top: 1px solid #fe000c;
  width: 12rem;
  margin: 0px auto;
  margin-top: 1.5%;
  margin-bottom: 1.5%;
}
.View .WeeklyAdventureBundles .Content .SubTitle {
  color: #b5b5b5;
  font-size: 1rem;
  padding: 0px 16px;
}
.View .WeeklyAdventureBundles .Content .swiper-container {
  margin-top: 5rem;
}
.View .WeeklyAdventureBundles .Content .swiper-container .Slide {
  position: relative;
  line-height: 1;
}
.View .WeeklyAdventureBundles .Content .swiper-container .Slide > img {
  width: auto;
  height: 16rem;
  margin: 0px auto;
}
@media screen and (min-width: 451px) {
  .View .WeeklyAdventureBundles .Content .swiper-container .Slide > img {
    height: 13rem;
  }
}
@media screen and (min-width: 601px) {
  .View .WeeklyAdventureBundles .Content .swiper-container .Slide > img {
    height: 14rem;
  }
}
@media screen and (min-width: 801px) {
  .View .WeeklyAdventureBundles .Content .swiper-container .Slide > img {
    height: 16rem;
  }
}
@media screen and (min-width: 1001px) {
  .View .WeeklyAdventureBundles .Content .swiper-container .Slide > img {
    height: 16rem;
  }
}
@media screen and (min-width: 1201px) {
  .View .WeeklyAdventureBundles .Content .swiper-container .Slide > img {
    height: 18rem;
  }
}
@media screen and (min-width: 1401px) {
  .View .WeeklyAdventureBundles .Content .swiper-container .Slide > img {
    height: 20rem;
  }
}
.View .WeeklyAdventureBundles .Content .swiper-container .Slide .Name {
  color: #fff;
  font-size: 1rem;
  margin-top: 1rem;
}
.View .WeeklyAdventureBundles .Content .swiper-slide {
  filter: brightness(100%);
  transition: filter 500ms cubic-bezier(0.215, 0.61, 0.355, 1), color 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 451px) {
  .View .WeeklyAdventureBundles .Content .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(25%);
  }
}
.View .WeeklyAdventureBundles .Content .swiper-button-prev, .View .WeeklyAdventureBundles .Content .swiper-button-next {
  color: #fe000c;
  width: 5rem;
  height: 5rem;
  margin-top: 0px;
  transform: translate(0, -50%);
}
.View .WeeklyAdventureBundles .Content .swiper-button-prev::after, .View .WeeklyAdventureBundles .Content .swiper-button-next::after {
  font-size: 3rem;
}
.View .WeeklyAdventureBundles .Content .Button {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fe000c;
  color: #fff;
  margin-top: 5rem;
  font-size: 1.2rem;
  padding: 0.75rem 3rem;
}
.View .WeeklyAdventureBundles .Content .Button:hover {
  background-color: #191919;
}

.View.Home {
  /*.Button {
      background-color: transparent;
      border: 2px solid #FFF;
      color: #FFF;
      font-size: 1.2rem;
      padding: 0.75rem 3rem;

      &:hover, &:focus {
          background-color: color.scale(#235ba8, $lightness: -10%);
      }

      &:disabled, &[disabled] {
          color: rgba(255, 255, 255, 0.5);
      }
  }*/
}
.View.Home .EntryForm {
  overflow: hidden;
}
.View.Home .EntryForm #Banner {
  top: 0;
  width: 100%;
  height: 0;
  padding-bottom: calc(100% * (3/2));
  /* crop Banner from top using aspect-ratio (3:2) */
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm #Banner {
    padding-bottom: calc(100% * (1/2));
    /* crop Banner from top using aspect-ratio (1:2) */
  }
}
.View.Home .EntryForm #Banner .Banner-Background:after {
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, black 60%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
  /* IE6-9 */
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm #Banner .Banner-Background:after {
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, black 82%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
    /* IE6-9 */
  }
}
.View.Home .EntryForm #Banner .Banner-Content {
  bottom: 0;
}
.View.Home .EntryForm .Main {
  position: relative;
  z-index: 10;
  background-color: #000;
  color: #FFF;
  padding: 0 5% 5%;
}
.View.Home .EntryForm .Content {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 801px) {
  .View.Home .EntryForm .Content {
    flex: 62.5%;
    order: 1;
  }
}
.View.Home .EntryForm .Content a:not(.Button):link, .View.Home .EntryForm .Content a:not(.Button):visited, .View.Home .EntryForm .Content a:not(.Button):focus {
  color: #FFF;
  text-decoration: underline;
}
.View.Home .EntryForm .Content a:not(.Button), .View.Home .EntryForm .Content a:not(.Button):hover {
  text-decoration: underline;
  border-bottom: 1px solid rgba(212, 212, 212, 0.4);
}
.View.Home .EntryForm .Content a:not(.Button):hover, .View.Home .EntryForm .Content a:not(.Button):focus {
  color: #fe000c;
  border-bottom: 1px solid #d4d4d4;
  outline: 0;
}
.View.Home .EntryForm .Content form {
  padding: 0;
  padding-bottom: 4rem;
}
.View.Home .EntryForm .Content form .Warning {
  color: red;
}
.View.Home .EntryForm .Content form p {
  font-size: 0.9em;
  font-weight: bold;
}
.View.Home .EntryForm .Content form .Row {
  display: block;
}
@media screen and (min-width: 601px) {
  .View.Home .EntryForm .Content form .Row {
    display: flex;
  }
}
.View.Home .EntryForm .Content form .field-validation-error {
  font-size: 12px;
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm .Content form .field-validation-error {
    font-size: 0.8rem;
  }
}
.View.Home .EntryForm .Content form .FormField {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm .Content form .FormField {
    margin-top: 0.25rem;
    margin-bottom: 0;
  }
}
.View.Home .EntryForm .Content form .FormField label {
  font-size: 16px;
  margin-bottom: 0.4rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 601px) {
  .View.Home .EntryForm .Content form .FormField label {
    display: flex;
  }
}
.View.Home .EntryForm .Content form .FormField input, .View.Home .EntryForm .Content form .FormField select {
  background-color: transparent;
  color: #FFF;
  padding: 0.3rem;
  border: none;
  border-bottom: 1px solid #d3d7dd;
  margin-bottom: 0.5rem;
  font-size: 16px;
}
.View.Home .EntryForm .Content form .FormField input:focus, .View.Home .EntryForm .Content form .FormField select:focus {
  outline: none !important;
  border: 1px solid #fe000c;
  box-shadow: 0 0 0.5rem #fe000c;
}
.View.Home .EntryForm .Content form .FormField input:-webkit-autofill,
.View.Home .EntryForm .Content form .FormField input:-webkit-autofill:hover,
.View.Home .EntryForm .Content form .FormField input:-webkit-autofill:focus,
.View.Home .EntryForm .Content form .FormField input:-webkit-autofill:active,
.View.Home .EntryForm .Content form .FormField select:-webkit-autofill,
.View.Home .EntryForm .Content form .FormField select:-webkit-autofill:hover,
.View.Home .EntryForm .Content form .FormField select:-webkit-autofill:focus,
.View.Home .EntryForm .Content form .FormField select:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #23232329;
}
.View.Home .EntryForm .Content form .FormField .option-placeholder {
  color: #b8b8b8;
}
.View.Home .EntryForm .Content form .FormField ::-moz-placeholder {
  color: #b8b8b8;
  opacity: 1;
  /* Firefox */
}
.View.Home .EntryForm .Content form .FormField ::placeholder {
  color: #b8b8b8;
  opacity: 1;
  /* Firefox */
}
.View.Home .EntryForm .Content form .FormField ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #b8b8b8;
}
.View.Home .EntryForm .Content form .FormField #EmailSuggestion {
  font-size: 12px;
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm .Content form .FormField #EmailSuggestion {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  .View.Home .EntryForm .Content form .Fourth, .View.Home .EntryForm .Content form .Half, .View.Home .EntryForm .Content form .ThreeFourths {
    flex: 1;
  }
}
.View.Home .EntryForm .Content form .FormFields {
  max-width: 900px;
}
.View.Home .EntryForm .Content form .Checkboxes {
  max-width: 700px;
}
.View.Home .EntryForm .Content form .ReCaptcha {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.View.Home .EntryForm .Content form .ReCaptcha .g-recaptcha {
  margin-bottom: 0.2rem;
}
.View.Home .EntryForm .check {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm .check {
    margin-bottom: 1rem;
  }
}
.View.Home .EntryForm .Prompt {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm .Prompt {
    font-size: 1rem;
  }
}
.View.Home .EntryForm .Subprompt {
  font-size: 1.2rem;
  margin-top: -0.75rem;
  margin-bottom: 2.2rem;
  color: gray;
}
@media screen and (min-width: 1001px) {
  .View.Home .EntryForm .Subprompt {
    font-size: 0.75rem;
    margin-bottom: 1.6rem;
  }
}
.View.Home .Confirmation {
  overflow: hidden;
}
.View.Home .Confirmation #Banner {
  top: 0;
  width: 100%;
  height: 0;
  padding-bottom: calc(100% * (3/2));
  /* crop Banner from top using aspect-ratio (3:2) */
}
@media screen and (min-width: 1001px) {
  .View.Home .Confirmation #Banner {
    padding-bottom: calc(100% * (1/2));
    /* crop Banner from top using aspect-ratio (1:2) */
  }
}
.View.Home .Confirmation #Banner .Banner-Background:after {
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
  /* IE6-9 */
}
@media screen and (min-width: 1001px) {
  .View.Home .Confirmation #Banner .Banner-Background:after {
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 90%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
    /* IE6-9 */
  }
}
.View.Home .Confirmation #Banner .Banner-Content {
  bottom: 0;
}
.View.Home .Confirmation .Content {
  width: 100%;
  margin: 0 auto;
}
.View.Home .Confirmation .Content .indent {
  margin-left: 1rem;
}
.View.Home .Confirmation .Content form {
  padding: 0;
}
.View.Home .Confirmation .Content form .Warning {
  color: red;
}
.View.Home .Confirmation .Content form p {
  font-size: 0.9em;
  font-weight: bold;
}
.View.Home .Confirmation .Content form .Row {
  display: block;
}
@media screen and (min-width: 601px) {
  .View.Home .Confirmation .Content form .Row {
    display: flex;
  }
}
.View.Home .Confirmation .Content form .field-validation-error {
  font-size: 12px;
}
@media screen and (min-width: 1001px) {
  .View.Home .Confirmation .Content form .field-validation-error {
    font-size: 0.8rem;
  }
}
.View.Home .Confirmation .Content form .FormField {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.View.Home .Confirmation .Content form .FormField label {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 601px) {
  .View.Home .Confirmation .Content form .FormField label {
    display: flex;
  }
}
.View.Home .Confirmation .Content form .FormField input, .View.Home .Confirmation .Content form .FormField select {
  padding: 0.3rem;
  border: 1px solid #d3d7dd;
  margin-bottom: 0.5rem;
}
.View.Home .Confirmation .Content form .FormField input:focus, .View.Home .Confirmation .Content form .FormField select:focus {
  outline: none !important;
  border: 1px solid #fe000c;
  box-shadow: 0 0 0.5rem #fe000c;
}
.View.Home .Confirmation .Content form .FormField #EmailSuggestion {
  font-size: 12px;
}
@media screen and (min-width: 1001px) {
  .View.Home .Confirmation .Content form .FormField #EmailSuggestion {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  .View.Home .Confirmation .Content form .Fourth, .View.Home .Confirmation .Content form .Half, .View.Home .Confirmation .Content form .ThreeFourths {
    flex: 1;
  }
}
.View.Home .Confirmation .Content table {
  width: 100%;
}
.View.Home .Confirmation .Content table th, .View.Home .Confirmation .Content table td {
  text-align: left;
  vertical-align: top;
  padding-bottom: 0.5rem;
}
.View.Home .Confirmation .Content table td {
  padding-left: 2rem;
}
.View.Home .Confirmation .Content .hint {
  font-size: 1rem;
  color: gray;
}
@media screen and (min-width: 1001px) {
  .View.Home .Confirmation .Content .hint {
    font-size: 0.8rem;
  }
}
.View.Home .Success {
  overflow: hidden;
}
.View.Home .Success #Banner {
  top: 0;
  width: 100%;
  height: 0;
  padding-bottom: calc(100% * (3/2));
  /* crop Banner from top using aspect-ratio (3:2) */
}
@media screen and (min-width: 1001px) {
  .View.Home .Success #Banner {
    padding-bottom: calc(100% * (1/2));
    /* crop Banner from top using aspect-ratio (1:2) */
  }
}
.View.Home .Success #Banner .Banner-Background:after {
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 50%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
  /* IE6-9 */
}
@media screen and (min-width: 1001px) {
  .View.Home .Success #Banner .Banner-Background:after {
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 90%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
    /* IE6-9 */
  }
}
.View.Home .Success #Banner .Banner-Content {
  bottom: 0;
}
@media screen and (min-width: 1001px) {
  .View.Home .Success #Banner .Banner-Content {
    bottom: 10%;
  }
}
.View.Home .Success .Content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.View.Home .Success .Content .Content-Left {
  padding-right: 5%;
  border-right: 2px solid #fe000c;
}
@media screen and (min-width: 1001px) {
  .View.Home .Success .Content .Content-Left {
    border-right: 4px solid #fe000c;
  }
}
.View.Home .Success .Content .Content-Right {
  padding-left: 5%;
}
.View.Home .Success .Content img {
  pointer-events: none;
  height: auto;
  width: 4rem;
}

.View.Info {
  padding: 20px;
}
@media screen and (min-width: 1001px) {
  .View.Info {
    padding: 40px;
  }
}
.View.Info .Title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1rem;
}
.View.Info .SubTitle {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.View.Info .Content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.View.Info .indent {
  margin-left: 2rem;
}
.View.Info .list-item {
  margin-bottom: 1.5rem;
}
.View.Info table {
  border-collapse: collapse;
}
.View.Info table tr:nth-of-type(2n+1) {
  background-color: rgba(0, 0, 0, 0.05);
}
.View.Info table th, .View.Info table td {
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  vertical-align: top;
}
@media screen and (min-width: 451px) {
  .View.Info table th, .View.Info table td {
    padding: 0.75rem;
  }
}
.View.Info.Legal a:not(.Button) {
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
.View.Info.Legal a:not(.Button):link, .View.Info.Legal a:not(.Button):visited, .View.Info.Legal a:not(.Button):focus {
  color: #007bff;
  text-decoration: none;
}
.View.Info.Legal a:not(.Button):hover {
  color: #007bff;
  border-color: #007bff;
}

.View.Notification .Content {
  position: relative;
}
.View.Notification .Content a {
  color: #fe000c;
  font-weight: 600;
  text-decoration: underline;
}
.View.Notification .Content a:hover {
  color: #e5000b;
}
.View.Notification .Content .VerbiageContainer {
  padding: 5rem;
}
.View.Notification .Content .VerbiageContainer .Verbiage {
  text-align: center;
}
.View.Notification .Content .VerbiageContainer .Verbiage .Title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.View.Notification .Content .VerbiageContainer .Verbiage .Description {
  color: #000;
  margin: 0px auto;
  margin-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 32px;
}

#Banner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  font-size: 0;
}
#Banner .Banner-Background {
  position: relative;
  display: inline-block;
  width: 100%;
}
#Banner .Banner-Background:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: inline-block;
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a6000000", endColorstr="#00000000",GradientType=0 );
  /* IE6-9 */
}
#Banner .Banner-Background img {
  display: block;
  content: url("../Images/Promo/Main-Mobile.jpg");
  pointer-events: none;
  position: relative;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1001px) {
  #Banner .Banner-Background img {
    content: url("../Images/Promo/Main-Desktop.jpg");
  }
}
#Banner .Banner-Content {
  font-size: initial;
  color: #FFF;
  position: absolute;
  bottom: 8%;
  z-index: 10;
  width: 100%;
  padding: 5%;
  padding-top: 0;
  padding-bottom: 10%;
}
@media screen and (min-width: 1001px) {
  #Banner .Banner-Content {
    bottom: 0;
    width: 50%;
  }
}
#Banner .Banner-Content .Banner-Content-Title {
  font-size: 28px;
  line-height: 34px;
  width: 100%;
  max-width: 450px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1001px) {
  #Banner .Banner-Content .Banner-Content-Title {
    font-size: 38px;
    line-height: 44px;
  }
}
#Banner .Banner-Content .Banner-Content-Description {
  font-size: 16px;
  line-height: 20.16px;
  margin-bottom: 1.5rem;
}
#Banner .Banner-Content .Banner-Content-Description sup {
  font-size: 6.6px;
  vertical-align: top;
  position: relative;
  top: 7.6px;
}
@media screen and (min-width: 1001px) {
  #Banner .Banner-Content .Banner-Content-Description {
    font-size: 24px;
    line-height: 31px;
  }
  #Banner .Banner-Content .Banner-Content-Description sup {
    font-size: 10px;
    vertical-align: top;
    position: relative;
    top: 11px;
  }
}
#Banner .Banner-Content .Banner-Content-Hint {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #606060;
}
@media screen and (min-width: 1001px) {
  #Banner .Banner-Content .Banner-Content-Hint {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-bottom: 2rem;
  }
}
#Banner .Banner-Content .Banner-Content-Button {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  background: transparent;
  border: 1px solid #FFF;
  padding: 8px 14px 10px;
  transition: background 175ms cubic-bezier(0.215, 0.61, 0.355, 1), color 175ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#Banner .Banner-Content .Banner-Content-Button:focus, #Banner .Banner-Content .Banner-Content-Button:hover {
  color: #FFF;
  background: #ff0000;
  border-color: #ff0000;
  text-decoration: none;
}
#Banner .Banner-Content .Banner-Content-Button span {
  display: inline-flex;
}
#Banner .Banner-Content .Banner-Content-Button .arrow {
  padding-left: 20px;
}
#Banner .Banner-Content .Banner-Content-Button .arrow img {
  height: 14px;
  width: auto;
}