@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

header,
aside,
section,
div,
span,
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-size: 1rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 0;
  width: 100%;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #cc4b00;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

p a {
  text-decoration: underline;
}

img {
  display: block;
  border: none;
}

.skip-links__link {
  position: absolute;
  top: -31.25rem;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-links__link:focus, .skip-links__link:active {
  top: 0px;
  width: auto;
  height: auto;
  padding: 0.625rem;
  overflow: visible;
  background-color: #e65400;
  color: #ffffff;
}

.container {
  width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 0.9375rem;
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 960px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 2200px) {
  .container {
    max-width: 80vw;
  }
}

.container--fluid {
  width: 100%;
  padding: 0;
}

.the-pit {
  overflow: hidden;
  position: relative;
  right: 0;
  display: block;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav--is-on .the-pit {
  right: calc(100% - 45px);
}
@media (min-width: 500px) {
  .nav--is-on .the-pit {
    right: 20rem;
  }
}
@media (min-width: 960px) {
  .nav--is-on .the-pit {
    right: 0;
  }
}

.grids {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
.grids.grids--margins [class^=grid-] {
  margin-right: 0rem;
}
.grids.grids--margins [class^=grid-]:last-child {
  margin-right: 0;
}
@media (min-width: 700px) {
  .grids {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .grids.grids--margins [class^=grid-] {
    margin-right: 1.875rem;
  }
}

.grids--dont-stack {
  flex-flow: row nowrap;
}
.grids--dont-stack.grids--margins [class^=grid-] {
  margin-right: 1.25rem;
}
.grids--dont-stack.grids--margins [class^=grid-]:last-child {
  margin-right: 0;
}

[class^=grid-] {
  width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

@media (min-width: 700px) {
  .grid-1 {
    width: 8.33333%;
  }
}

@media (min-width: 700px) {
  .grid-2 {
    width: 16.66666%;
  }
}

@media (min-width: 700px) {
  .grid-3 {
    width: 25%;
  }
}

@media (min-width: 700px) {
  .grid-4 {
    width: 33.33333%;
  }
}

@media (min-width: 700px) {
  .grid-5 {
    width: 41.66666%;
  }
}

@media (min-width: 700px) {
  .grid-6 {
    width: 50%;
  }
}

@media (min-width: 700px) {
  .grid-7 {
    width: 58.33333%;
  }
}

@media (min-width: 700px) {
  .grid-8 {
    width: 66.66666%;
  }
}

@media (min-width: 700px) {
  .grid-9 {
    width: 75%;
  }
}

@media (min-width: 700px) {
  .grid-10 {
    width: 83.33333%;
  }
}

@media (min-width: 700px) {
  .grid-11 {
    width: 91.66666%;
  }
}

@media (min-width: 700px) {
  .grid-12 {
    width: 100%;
  }
}

@media (min-width: 700px) {
  .grid--border-left {
    padding-left: 1.875rem;
    border-left: solid 1px #d6d6d6;
  }
}

@media (min-width: 700px) {
  .grid--border-right {
    padding-left: 1.875rem;
    border-left: solid 1px #d6d6d6;
  }
}

.wallmaster {
  width: 100%;
  background-color: #ffffff;
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.small-device {
  display: none;
}
.small-device i {
  text-align: center;
  font-size: 8.75rem;
  padding-bottom: 1.25rem;
  color: #e65400;
}
.small-device p {
  color: #505050;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0;
  line-height: 1.75rem;
}
@media (min-width: 0px) and (max-width: 319px) {
  .small-device {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 90;
    display: block;
    visibility: visible;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 0px) and (max-width: 319px) {
  body,
  html {
    overflow: hidden;
  }
}
.small-device__logo {
  margin: 1.25rem 0.625rem;
  font-family: "skeletor";
  font-size: 4.375rem;
  color: #e65400;
}
.small-device__logo:before {
  content: "\e91a";
}

.small-device__text {
  text-align: center;
  color: #505050;
  text-transform: uppercase;
}

.small-device__phone {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  word-break: break-all;
}

.form-field {
  position: relative;
  margin-bottom: 1.5rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.form-field__label,
.fieldset__label {
  color: #505050;
  cursor: pointer;
  display: block;
  margin-left: 0.625rem;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
}

.form-field--inverse .form-field__label,
.form-field--inverse .fieldset__label {
  color: #ffffff;
}

.form-field--inline,
.fieldset--inline {
  display: inline-block;
  margin-right: 1.25rem;
}
.form-field--inline:last-child,
.fieldset--inline:last-child {
  margin-right: 0;
}

select::-ms-expand {
  display: none;
}

.form--iframe {
  padding: 1.25rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}
.form--iframe iframe {
  width: 100%;
  height: 64rem;
}
@media (min-width: 1200px) {
  .form--iframe {
    padding: 1.25rem 1.875rem 2.5rem 1.875rem;
  }
}

.form-field__checkbox {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.form-field__checkbox [type=checkbox] {
  position: absolute;
  left: -1000em;
}

.form-field__checkbox-custom {
  position: relative;
  height: 1.25rem;
  width: 1.25rem;
  margin: 0 0.625rem 0 0;
  padding: 0;
  background-color: #ffffff;
  border: solid 2px #505050;
  border-radius: 2px;
  cursor: pointer;
}

.form-field__checkbox-input:checked + .form-field__checkbox-custom {
  background-color: #fdb913;
  border-color: #fdb913;
}

.form-field__checkbox-input:focus + .form-field__checkbox-custom {
  border-color: #fdb913;
}

.form-field__checkbox-input:checked + .form-field__checkbox-custom:after {
  content: "\e8f3";
  font-family: "skeletor";
  font-size: 0.75rem;
  color: #ffffff;
  position: absolute;
  top: 0.1875rem;
  left: 0rem;
}

.form-field__checkbox-text {
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  color: #505050;
  flex: 1 0 0%;
}

.form-field--checkbox.alert:after {
  display: none;
}

.form-field--checkbox.alert .form-field__message {
  bottom: -2.0625rem;
  width: auto;
}

.form-field__checkbox--large .form-field__checkbox-custom {
  width: 2.5rem;
  height: 2.5rem;
}
.form-field__checkbox--large .form-field__checkbox-custom:after {
  font-size: 1.5rem !important;
  left: 0.1875rem !important;
  top: 0.375rem !important;
}
.form-field__checkbox--large .form-field__checkbox-text {
  font-size: 1.25rem;
}

.alert .form-field__checkbox-custom {
  border-color: #fdb913;
}

.fieldset {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  margin-bottom: 1.5rem;
}

.fieldset .form-field__message {
  position: relative;
  bottom: auto;
}

.fieldset__phone {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.fieldset__phone .form-field {
  margin-right: 1.25rem;
  margin-bottom: 0.625rem;
  flex: 2;
}
.fieldset__phone .form-field:first-child {
  flex: 1;
}
.fieldset__phone .form-field:nth-child(2) {
  flex: 1;
}
.fieldset__phone .form-field:last-child {
  margin-right: 0px;
}
.fieldset__phone .form-field__input {
  padding-right: 0.625rem;
}

.form-field__input {
  width: 100%;
  margin: 0;
  padding: 0.4375rem 0.625rem;
  padding-right: 2.5rem;
  font-size: 1rem;
  color: #505050;
  border: solid 1px #d6d6d6;
  border-top-color: transparent;
  border-right-color: transparent;
  outline: none;
  box-shadow: 0 0 2px 2px rgba(230, 84, 0, 0);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.form-field__input:hover, .form-field__input:focus {
  border: solid 1px #fdb913;
  background-color: #f1f1f0;
}

.form-field--inverse .form-field__input {
  background-color: transparent;
}

.alert .form-field__input {
  border: solid 1px #fdb913;
  background-color: #f1f1f0;
  box-shadow: inset 0 0 0px 1px #fdb913;
}

.form-field--input.alert:after {
  content: "\e930";
  bottom: 0.5rem;
  right: 0.5rem;
  color: #fdb913;
  font-size: 1.25rem;
  font-family: "skeletor" !important;
  position: absolute;
  z-index: 10;
}

.form-field--inverse .form-field__input:hover,
.form-field--inverse .form-field__input:focus {
  background-color: #ffffff;
}

.form-field__input:hover:disabled {
  border-color: #d6d6d6;
  border-top-color: transparent;
  border-right-color: transparent;
  background-color: transparent;
  cursor: not-allowed !important;
}

.alert--red .form-field__input {
  border-color: #da2128;
  box-shadow: inset 0 0 0px 1px #da2128;
}
.alert--red.form-field--input.alert:after {
  color: #da2128;
}

.form-field__radio {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.form-field__radio [type=radio] {
  position: absolute;
  left: -1000em;
}

.form-field__radio-custom {
  position: relative;
  height: 1.25rem;
  width: 1.25rem;
  margin: 0 0.625rem 0 0;
  padding: 0;
  background-color: #ffffff;
  border: solid 2px #505050;
  cursor: pointer;
  border-radius: 50%;
}

.form-field__radio-input:checked + .form-field__radio-custom {
  border-color: #fdb913;
}

.form-field__radio-input:focus + .form-field__radio-custom {
  border-color: #fdb913;
}

.form-field__radio-input:checked + .form-field__radio-custom:after {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #fdb913;
  position: absolute;
  top: 0.125rem;
  right: 0.125rem;
  border-radius: 50%;
  content: "";
}

.form-field__radio-text {
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  color: #505050;
  flex: 1 0 0%;
}

.form-field--radio.alert:after {
  display: none;
}

.form-field--radio.alert .form-field__message {
  bottom: -2.0625rem;
  width: auto;
}

.form-field__radio--large .form-field__radio-custom {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 3px;
}
.form-field__radio--large .form-field__radio-custom:after {
  width: 1.625rem !important;
  height: 1.625rem !important;
  top: 0.25rem !important;
  right: 0.25rem !important;
}

.alert .form-field__radio-custom {
  border-color: #fdb913;
}

.form-field__select {
  position: relative;
}

.form-field__select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  width: 100%;
  padding: 0.4375rem 2.5rem 0.4375rem 0.625rem;
  border-radius: 0;
  border: solid 1px #d6d6d6;
  border-top-color: transparent;
  border-right-color: transparent;
  font-size: 1rem;
  background-color: #ffffff;
  color: #505050;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.form-field__select select:hover, .form-field__select select:focus {
  background-color: #f1f1f0;
  border-color: #fdb913;
  outline: none;
}

.form-field__select:after {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  margin-top: -0.3125rem;
  z-index: 10;
  font-family: "skeletor" !important;
  font-size: 0.625rem;
  content: "\e936";
  color: #fdb913;
  pointer-events: none;
}

.alert .form-field__select:after {
  content: "\e930";
  font-size: 1.25rem;
  margin-top: -0.625rem;
}

.alert .form-field__select select {
  border: solid 1px #fdb913;
  background-color: #f1f1f0;
  box-shadow: inset 0 0 0px 1px #fdb913;
}

.select-filter {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.select-filter .form-field {
  margin-bottom: 0;
}
.select-filter select {
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}
.select-filter .form-field--select + .btn {
  margin-left: 0.625rem;
}

.form-field__toggle {
  cursor: pointer;
  display: inline-block;
}

.form-field__toggle [type=radio] {
  position: absolute;
  left: -1000em;
}

.form-field__toggle-custom {
  padding: 0.25rem 1.25rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.875rem;
  margin-right: 0;
  border: solid 2px #505050;
  color: #505050;
  cursor: pointer;
  box-sizing: content-box;
  border-top-radius: 1.25rem;
  border-right-radius: 1.25rem;
  border-bottom-radius: 1.25rem;
  border-left-radius: 1.25rem;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.form-field__toggle-custom:hover {
  background-color: #505050;
  color: #ffffff;
}
@media (min-width: 400px) {
  .form-field__toggle-custom:last-child {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .form-field__toggle-custom {
    padding: 0.4375rem 2.25rem;
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

.form-field__toggle-input:checked + .form-field__toggle-custom {
  border-color: #505050;
  background-color: #505050;
  color: #ffffff;
}

.form-field__toggle-input:focus + .form-field__toggle-custom {
  background-color: #505050;
}

.form-field__toggle--light .form-field__toggle-custom {
  border-color: #ffffff;
  color: #ffffff;
}
.form-field__toggle--light .form-field__toggle-input:checked + .form-field__toggle-custom {
  background-color: #ffffff;
  color: #505050;
}

.form-field__toggles {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.form-field__toggles .form-field__toggle-custom {
  text-transform: none;
  border-right-width: 1px;
  border-left-width: 1px;
}
.form-field__toggles > :first-child .form-field__toggle-custom {
  border-left-width: 2px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.form-field__toggles > :last-child .form-field__toggle-custom {
  border-right-width: 2px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.form-field__toggles > :only-child .form-field__toggle-custom {
  border-right-width: 2px;
  border-radius: 4px;
}

.form-field__message {
  position: absolute;
  padding: 0.125rem 0.3125rem;
  background-color: #f1f1f0;
  font-size: 0.75rem;
  color: #505050;
  bottom: -1.3125rem;
  width: 100%;
  font-style: italic;
  display: none;
  overflow: hidden;
}

.alert .form-field__message {
  display: block;
  -webkit-animation-name: slide-open;
          animation-name: slide-open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.form--compressed .alert .form-field__message {
  display: block;
  -webkit-animation-name: slide-open-compressed;
          animation-name: slide-open-compressed;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.form-field__message--invert {
  background-color: #505050;
  color: #ffffff;
  font-weight: bold;
}

@-webkit-keyframes slide-open {
  from {
    height: 0px;
  }
  to {
    height: 1.3125rem;
  }
}

@keyframes slide-open {
  from {
    height: 0px;
  }
  to {
    height: 1.3125rem;
  }
}
@-webkit-keyframes slide-open-compressed {
  from {
    height: 0px;
  }
  to {
    height: 1.6875rem;
  }
}
@keyframes slide-open-compressed {
  from {
    height: 0px;
  }
  to {
    height: 1.6875rem;
  }
}
.form--compressed .form-field {
  margin-bottom: 0.625rem;
}
.form--compressed .form-field__label {
  margin-bottom: 0.3125rem;
}
.form--compressed .form-field__input,
.form--compressed .form-field__select select {
  padding: 0.3125rem 0.625rem;
}
.form--compressed .form-field__select:after {
  bottom: 0.5rem;
}
.form--compressed .form-field--select.alert:after,
.form--compressed .form-field--input.alert:after {
  bottom: 2.0625rem;
}
.form--compressed .form-field__message {
  padding: 0.3125rem 0.625rem;
}
.form--compressed .alert .form-field__message {
  position: relative;
  bottom: auto;
}

.form-field__group {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.form-field__addon {
  background-color: #d6d6d6;
  height: 2.125rem;
  max-height: 2.125rem;
  line-height: 2.125rem;
  overflow: hidden;
  font-size: 0.9375rem;
  color: #505050;
  padding: 0 0.875rem;
}

.form-field__group .form-field__input {
  width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1, .h1 {
  font-family: "Square Serif", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #505050;
  margin-top: -0.5625rem;
}
h1 sup, .h1 sup {
  font-size: 1.875rem;
}
@media (min-width: 960px) {
  h1, .h1 {
    margin-top: -1rem;
    font-size: 3.625rem;
  }
}

h2, .h2 {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #505050;
}
@media (min-width: 500px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}

h3, .h3 {
  max-width: 100%;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #505050;
}
@media (min-width: 960px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}

h4, .h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #505050;
}

.headline {
  margin: 0 0 1.25rem 0;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: normal;
  color: #505050;
}
@media (min-width: 500px) {
  .headline {
    font-size: 2rem;
  }
}

.sub-headline {
  margin: 0 0 1.25rem 0;
  max-width: 100%;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #505050;
}
@media (min-width: 960px) {
  .sub-headline {
    font-size: 1.5rem;
  }
}

p {
  margin: 0 0 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #505050;
}
@media (min-width: 960px) {
  p {
    font-size: 1rem;
  }
}

.epic-text {
  margin-bottom: 1.875rem;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: normal;
  color: #505050;
}
@media (min-width: 960px) {
  .epic-text {
    font-size: 1.75rem;
  }
}

.small-text {
  font-size: 0.875rem;
}

.large-text {
  font-size: 2.75rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

.hidden-text {
  position: absolute;
  top: -200px;
}

/* font-face Mixins: 
    - Need one for each unicode-range. 
    - It is a variable font, so font-weight ranges can be defined together.  */
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-cyrillic-ext.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-style: normal;
  font-stretch: normal;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-cyrillic.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-style: normal;
  font-stretch: normal;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-greek-ext.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+1F00-1FFF;
  font-style: normal;
  font-stretch: normal;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-greek.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-style: normal;
  font-stretch: normal;
}
/* hebrew */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-hebrew.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
  font-style: normal;
  font-stretch: normal;
}
/* math */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-math.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0330, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2034-2037, U+2057, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2102, U+210A-210E, U+2110-2112, U+2115, U+2119-211D, U+2124, U+2128, U+212C-212D, U+212F-2131, U+2133-2138, U+213C-2140, U+2145-2149, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B6, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
  font-style: normal;
  font-stretch: normal;
}
/* symbols */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-symbols.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8B1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA88, U+1FA90-1FABD, U+1FABF-1FAC5, U+1FACE-1FADB, U+1FAE0-1FAE8, U+1FAF0-1FAF8, U+1FB00-1FBFF;
  font-style: normal;
  font-stretch: normal;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-vietnamese.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-style: normal;
  font-stretch: normal;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-latin-ext.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-style: normal;
  font-stretch: normal;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-latin.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-style: normal;
  font-stretch: normal;
}
/* font-face Mixins: 
    - Need one for each font-weight */
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Light-webfont.woff2") format("woff2");
  font-weight: 250;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Book-webfont.woff2") format("woff2");
  font-weight: 400;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Medium-webfont.woff2") format("woff2");
  font-weight: 500;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Demi-webfont.woff2") format("woff2");
  font-weight: 600;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Bold-webfont.woff2") format("woff2");
  font-weight: 700;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
.section,
section {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .section,
  section {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}

.section--skin-gray,
.section--skin-devastator,
.section--skin-jetfire,
.section--skin-wrek-gar {
  background-color: #f1f1f0;
  margin-bottom: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .section--skin-gray,
  .section--skin-devastator,
  .section--skin-jetfire,
  .section--skin-wrek-gar {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.section--skin-devastator {
  background-color: #454545;
}
.section--skin-devastator h2,
.section--skin-devastator .h2 {
  color: #ffffff;
  margin-bottom: 0.875rem;
}
@media (min-width: 960px) {
  .section--skin-devastator h2,
  .section--skin-devastator .h2 {
    color: #ffffff;
    margin-top: -0.5625rem;
    margin-bottom: 1.5rem;
  }
}

.section--skin-jetfire {
  background-color: #ffffff;
}

.section--skin-wrek-gar {
  background-color: #f9f5eb;
}

.block {
  display: block;
}

.block--inline {
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul,
.ol,
ul,
ol {
  font-size: 1rem;
  color: #505050;
}
.ul li,
.ol li,
ul li,
ol li {
  margin-bottom: 0.875rem;
  line-height: 1.625rem;
}

.ul--bullets,
.ol--bullets {
  list-style: inside;
  list-style-type: none;
}
.ul--bullets li,
.ol--bullets li {
  position: relative;
  padding-left: 1.25rem;
}
.ul--bullets li:before,
.ol--bullets li:before {
  font-family: "skeletor";
  position: absolute;
  left: 0;
  top: 0;
  content: "\e93d";
  color: #fdb913;
  font-size: 0.75rem;
  display: block;
}
.ul--bullets a,
.ol--bullets a {
  text-decoration: underline;
}
.ul--bullets a:hover, .ul--bullets a:focus,
.ol--bullets a:hover,
.ol--bullets a:focus {
  text-decoration: none;
}

.ul--bullets-alt li:before,
.ol--bullets-alt li:before {
  color: #ababab;
}

.table {
  overflow-x: scroll;
  display: block;
  width: 100%;
}

table {
  border-collapse: collapse;
  width: inherit;
  border-left: solid 10px #fdb913;
}

tr {
  border-bottom: solid 1px #d6d6d6;
}
tr:nth-child(even) {
  background-color: #f1f1f0;
}

th {
  padding: 1.25rem 0.875rem;
  font-weight: bold;
  text-align: left;
  min-width: 3.125rem;
  color: #505050;
}

td {
  padding: 0.875rem 0.875rem;
  min-width: 6.25rem;
  color: #505050;
}

tfoot tr {
  background-color: #505050;
  border-bottom: none;
}
tfoot td {
  color: #ffffff;
  font-weight: bold;
}

.flex-table {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  table-layout: initial;
  border-left: none;
}
.flex-table .flex-table__header {
  border-color: #d6d6d6;
}
.flex-table thead {
  display: none;
  color: #505050;
  font-size: 0.875rem;
}
@media (min-width: 960px) {
  .flex-table thead {
    display: table-header-group;
  }
}
.flex-table tr {
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
  padding: 0.4375rem;
  background-color: #f1f1f0;
  border: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  .flex-table tr {
    display: table-row;
  }
}
.flex-table td {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.4375rem;
  text-align: right;
  font-size: 0.8125rem;
  color: #505050;
  border-bottom: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  .flex-table td {
    display: table-cell;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}
.flex-table td:before {
  content: attr(data-label);
  color: #505050;
  font-size: 13px;
  font-weight: bold;
  margin-right: 0.875rem;
}
@media (min-width: 960px) {
  .flex-table td:before {
    display: none;
  }
}
.flex-table td:last-child {
  border-bottom: none;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  border: none;
  font-size: 0.875rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  border-radius: 0;
  transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.btn--fluid {
  width: 100%;
}

a.btn {
  text-decoration: none;
}

.btn--primary {
  padding: 0.75rem 1.375rem;
  border: solid 2px #cc4b00;
  background-color: #cc4b00;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #ffffff;
  color: #505050;
  border: inset solid 2px #cc4b00;
}

.btn--secondary {
  padding: 0.75rem 1.375rem;
  border: solid 2px #fdb913;
  background-color: #fdb913;
  color: #505050;
}
.btn--secondary:hover {
  background-color: #ffffff;
  color: #505050;
}

.btn--secondary.btn--inverse {
  background-color: #ffffff;
  color: #505050;
}

.btn--outline {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  color: #505050;
  background-color: #ffffff;
  border: solid 3px #fdb913;
  text-transform: uppercase;
  vertical-align: middle;
}
.btn--outline:hover {
  background-color: #fdb913;
}

.btn--outline.btn--inverse {
  background-color: transparent;
  color: #ffffff;
}

.btn--outline.btn--secondary {
  border-color: #505050;
}
.btn--outline.btn--secondary:hover {
  background-color: #505050;
  color: #ffffff;
}

.btn--outline.btn--secondary.btn--inverse {
  border-color: #ffffff;
}

.btn--icon {
  padding: 0.75rem;
  font-size: 0.875rem;
}

.btn i {
  font-size: 1rem;
}

.btn--next {
  position: relative;
  padding-right: 1.875rem;
}
.btn--next:after {
  position: absolute;
  top: 0.375rem;
  right: 0.625rem;
  font-family: "skeletor";
  font-size: 2rem;
  content: "\e911";
}

.btn--previous {
  position: relative;
  padding-left: 1.875rem;
}
.btn--previous:after {
  position: absolute;
  top: 0.375rem;
  left: 0.625rem;
  font-family: "skeletor";
  font-size: 2rem;
  content: "\e90e";
}

.watch-video {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #ffffff;
  margin-top: 0.625rem;
  padding: 0;
}
.watch-video .span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
}
.watch-video .fs {
  font-size: 2.8125rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (min-width: 960px) {
  .watch-video {
    margin-top: 1.25rem;
  }
  .watch-video .span {
    font-size: 1.375rem;
  }
  .watch-video .fs {
    font-size: 3.25rem;
  }
}

.btn--disabled,
.btn--disabled:hover,
.btn--disabled:focus,
.btn.disabled,
.btn.disabled:hover,
.btn.disabled:focus {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(90%);
}

.btn--loading {
  min-height: 0.875rem;
  color: transparent;
}
.btn--loading:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -0.625rem 0 0 -0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 500rem;
  border: 2px solid rgba(0, 0, 0, 0.15);
}
.btn--loading:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -0.625rem 0 0 -0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-animation: button-spin 0.6s linear;
          animation: button-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #ffffff transparent transparent;
  border-style: solid;
  border-width: 2px;
  box-shadow: 0 0 0 1px transparent;
}
.btn--loading:hover {
  color: transparent;
  cursor: not-allowed;
}

@-webkit-keyframes button-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes button-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-group {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  border: solid 2px #ababab;
  border-radius: 4px;
}
.btn-group .btn {
  display: block;
  margin: 0;
  padding: 0.4375rem 0.875rem;
  align-self: stretch;
  background-color: transparent;
  color: #ababab;
  border-right: solid 2px #ababab;
}
.btn-group .btn:last-child {
  border-right: none;
}
.btn-group .btn:hover, .btn-group .btn.active, .btn-group .btn.btn--active {
  background-color: #ababab;
  color: #ffffff;
}
@media (min-width: 500px) {
  .btn-group .btn {
    padding: 0.8125rem 1.625rem;
  }
}

.btn-group--inverse {
  border-color: #ffffff;
}
.btn-group--inverse .btn {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-group--inverse .btn:hover, .btn-group--inverse .btn.active, .btn-group--inverse .btn.btn--active {
  background-color: #ffffff;
  color: #505050;
}

.divider {
  width: 2.5rem;
  height: 0.1875rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: #d6d6d6;
}
@media (min-width: 700px) {
  .divider {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 960px) {
  .divider {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .divider {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.divider--bumblebee {
  background-color: #fdb913;
}

.divider--trypticon {
  background-color: #505050;
}

.divider--large {
  width: 100%;
  height: 1px;
  background-color: #d6d6d6;
  margin: 1.875rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

@font-face {
  font-family: "skeletor";
  src: url("../fonts/skeletor.woff2") format("woff2");
  font-weight: normal;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
.fs {
  font-family: "skeletor" !important;
  font-size: 0.875rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  vertical-align: middle;
  display: inline-block;
}

.fs--space-right {
  padding-right: 0.625rem;
}

.fs--space-left {
  padding-left: 0.625rem;
}

.fs-halo-ad:before {
  content: "\e900";
}

.fs-halo-biz:before {
  content: "\e901";
}

.fs-halo-film:before {
  content: "\e902";
}

.fs-halo-games:before {
  content: "\e903";
}

.fs-halo-media:before {
  content: "\e904";
}

.fs-halo-music:before {
  content: "\e905";
}

.fs-halo-sports:before {
  content: "\e906";
}

.fs-halo-tech:before {
  content: "\e907";
}

.fs-pencil:before {
  content: "\e908";
}

.fs-pencil-circle:before {
  content: "\e909";
}

.fs-pencil-fill:before {
  content: "\e90a";
}

.fs-phone:before {
  content: "\e90f";
}

.fs-phone-circle:before {
  content: "\e910";
}

.fs-phone-fill:before {
  content: "\e90b";
}

.fs-chat:before {
  content: "\e912";
}

.fs-chat-circle:before {
  content: "\e916";
}

.fs-chat-fill:before {
  content: "\e90c";
}

.fs-info:before {
  content: "\e913";
}

.fs-info-circle:before {
  content: "\e91d";
}

.fs-info-fill:before {
  content: "\e90d";
}

.fs-vr:before {
  content: "\e921";
}

.fs-vr-alt:before {
  content: "\e922";
}

.fs-play:before {
  content: "\e937";
}

.fs-play-alt:before {
  content: "\e923";
}

.fs-facebook:before {
  content: "\e924";
}

.fs-instagram:before {
  content: "\e925";
}

.fs-linkedin:before {
  content: "\e926";
}

.fs-pinterest:before {
  content: "\e927";
}

.fs-snapchat:before {
  content: "\e928";
}

.fs-tumblr:before {
  content: "\e929";
}

.fs-twitter:before {
  content: "\e92a";
}

.fs-youtube:before {
  content: "\e92b";
}

.fs-connect:before {
  content: "\e918";
}

.fs-tiktok:before {
  content: "\e91b";
}

.fs-twitch:before {
  content: "\e91c";
}

.fs-whatsapp:before {
  content: "\e931";
}

.fs-grid-outline:before {
  content: "\e92c";
}

.fs-grid:before {
  content: "\e92d";
}

.fs-list-outline:before {
  content: "\e92e";
}

.fs-list:before {
  content: "\e92f";
}

.fs-alert:before {
  content: "\e930";
}

.fs-check:before {
  content: "\e8f3";
}

.fs-close:before {
  content: "\e934";
}

.fs-angle-down:before {
  content: "\e919";
}

.fs-arrow-left-thin:before {
  content: "\e90e";
}

.fs-arrow-right-thin:before {
  content: "\e911";
}

.fs-arrow-up:before {
  content: "\e935";
}

.fs-arrow-down:before {
  content: "\e936";
}

.fs-arrow-left:before {
  content: "\e938";
}

.fs-arrow-right:before {
  content: "\e939";
}

.fs-upload:before {
  content: "\e93a";
}

.fs-download:before {
  content: "\e93b";
}

.fs-filter:before {
  content: "\e93c";
}

.fs-bullet:before {
  content: "\e93d";
}

.fs-bars:before {
  content: "\e93e";
}

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

.fs-slash-bullet:before {
  content: "\e914";
}

.fs-location-pin:before {
  content: "\e915";
}

.fs-calendar:before {
  content: "\e917";
}

.fs-logo-badge:before {
  content: "\e91a";
}

.blockquote {
  border-left: solid 3px #fdb913;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  color: #505050;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 960px) {
  .blockquote {
    padding: 0.625rem 0.625rem 0.625rem 1.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.blockquote__sig {
  font-weight: bold;
  margin-top: 1.25rem;
}

.close-surface {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.nav--is-on .close-surface,
.off-canvas--is-on .close-surface,
.dropdown--is-on .close-surface,
.search--is-on .close-surface {
  opacity: 1;
  visibility: visible;
}

.ctas .cta:first-child {
  margin-top: 0;
}

.cta {
  padding: 1.25rem;
  padding-right: 3.125rem;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  position: relative;
  cursor: pointer;
  display: block;
}
@media (min-width: 960px) {
  .cta {
    padding: 1.875rem;
    padding-right: 3.75rem;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.cta__title {
  font-weight: bold;
  font-size: 0.875rem;
  padding-bottom: 0.75rem;
}
.cta__title .semi-bold {
  font-weight: 400;
}
@media (min-width: 960px) {
  .cta__title {
    font-size: 1rem;
  }
}

.cta__title:only-child {
  padding-bottom: 0;
}

.cta__title--caps {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 300;
}
@media (min-width: 960px) {
  .cta__title--caps {
    font-size: 1.75rem;
  }
}

.cta__title--large {
  font-size: 1.25rem;
  font-weight: 300;
}
@media (min-width: 960px) {
  .cta__title--large {
    font-size: 1.625rem;
  }
}

.cta__description {
  font-size: 0.9375rem;
}
.cta__description strong {
  display: block;
}

.cta:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  margin-top: -0.9375rem;
}
@media (min-width: 960px) {
  .cta:after {
    margin-top: -1.875rem;
  }
}

.cta--primary {
  background-color: #e65400;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--primary .cta__title {
  color: #ffffff;
}
.cta--primary .cta__description {
  color: #f1f1f0;
}
.cta--primary:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 1.875rem;
  color: #ffffff;
}
.cta--primary:hover {
  background-color: rgb(255, 93.447826087, 0.5);
}
@media (min-width: 960px) {
  .cta--primary:after {
    font-size: 3.75rem;
  }
}

.cta--secondary, .cta--secondary-alt {
  background-color: #ffffff;
  border: solid 1px #e65400;
  border-left: solid 0.1875rem #e65400;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--secondary .cta__title, .cta--secondary-alt .cta__title {
  color: #e65400;
}
.cta--secondary .cta__description, .cta--secondary-alt .cta__description {
  color: #505050;
}
.cta--secondary:after, .cta--secondary-alt:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 1.875rem;
  color: #e65400;
}
.cta--secondary:hover, .cta--secondary-alt:hover {
  background-color: #e65400;
}
.cta--secondary:hover .cta__title, .cta--secondary-alt:hover .cta__title {
  color: #ffffff;
}
.cta--secondary:hover .cta__description, .cta--secondary-alt:hover .cta__description {
  color: #ffffff;
}
.cta--secondary:hover .cta__description strong, .cta--secondary-alt:hover .cta__description strong {
  color: #ffffff;
}
.cta--secondary:hover:after, .cta--secondary-alt:hover:after {
  color: #ffffff;
}
@media (min-width: 960px) {
  .cta--secondary:after, .cta--secondary-alt:after {
    font-size: 3.75rem;
  }
}

.cta--secondary-alt {
  background-color: #ffffff;
}

.cta--secondary-alt-bumblebee {
  border-color: #fdb913;
}
.cta--secondary-alt-bumblebee .cta__title {
  color: #505050;
}
.cta--secondary-alt-bumblebee:hover {
  background-color: #fdb913;
}
.cta--secondary-alt-bumblebee:hover:after {
  background-image: none;
}

.cta--autobot {
  margin: 0.1875rem 0;
  padding: 1.25rem 1.875rem;
  background-color: #f1f1f0;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--autobot .cta__title {
  margin-top: -0.5rem;
  padding-bottom: 0;
  color: #505050;
}
.cta--autobot .cta__description {
  margin-bottom: -0.375rem;
  color: #505050;
}
.cta--autobot:after {
  height: 2.75rem;
  margin-top: -1.375rem;
  right: 0.9375rem;
  font-family: "skeletor";
  content: "\e911";
  font-size: 2.75rem;
  font-weight: bold;
  color: #fdb913;
}
.cta--autobot:hover {
  background-color: #d6d6d6;
}
@media (min-width: 960px) {
  .cta--autobot:after {
    height: 3.5rem;
    margin-top: -1.75rem;
    right: 1.25rem;
    font-size: 3.5rem;
  }
}

.cta--sunstreak {
  display: inline-block;
  padding: 0;
  padding-right: 3.75rem;
  color: #505050;
}
.cta--sunstreak:hover, .cta--sunstreak:focus {
  text-decoration: underline;
}
.cta--sunstreak:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 3.75rem;
  font-weight: bold;
  color: #fdb913;
}

.cta--dark {
  background-color: #505050;
  color: #ffffff;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--dark:hover {
  background-color: rgb(54.5, 54.5, 54.5);
}
.cta--dark:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 1.875rem;
  color: #ffffff;
}
@media (min-width: 960px) {
  .cta--dark:after {
    font-size: 3.75rem;
  }
}

.cta--custom-icon {
  padding-right: 5rem;
}
.cta--custom-icon:after {
  font-size: 2.5rem;
  font-family: "skeletor";
  content: "\e93b";
  background-image: none;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -1.25rem;
}
.cta--custom-icon:hover:after {
  background-image: none;
}
@media (min-width: 960px) {
  .cta--custom-icon:after {
    font-size: 3.125rem;
    margin-top: -1.5625rem;
  }
}

.cta--primary.cta--custom-icon:after {
  color: #ffffff;
}

.cta--secondary.cta--custom-icon:after, .cta--custom-icon.cta--secondary-alt:after {
  color: #e65400;
}
.cta--secondary.cta--custom-icon:hover:after, .cta--custom-icon.cta--secondary-alt:hover:after {
  color: #ffffff;
}

.cta--secondary-alt-bumblebee.cta--custom-icon:after {
  color: #fdb913;
}

.cta--dark.cta--custom-icon:after {
  color: #ffffff;
}

.cta--custom-icon-call:after {
  content: "\e910";
  font-family: "skeletor";
}

.cta--custom-icon-talk:after {
  content: "\e916";
  font-family: "skeletor";
}

.super-cta {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 25rem;
  padding: 2.5rem;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.super-cta__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}

.super-cta__text {
  margin-bottom: 1.5625rem;
  font-size: 1.875rem;
  font-family: "Square Serif", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  z-index: 10;
}
@media (min-width: 960px) {
  .super-cta__text {
    font-size: 3.75rem;
  }
}

.super-cta__description {
  width: 60vw;
  color: #ffffff;
  text-align: center;
  z-index: 10;
}

.super-cta__text ~ .super-cta__description {
  margin-top: -1.125rem;
}

.super-cta .btn {
  text-transform: capitalize;
  background-color: transparent;
  font-weight: 400;
  color: #ffffff;
  z-index: 10;
}
.super-cta .btn:hover, .super-cta .btn:focus {
  background-color: #fdb913;
}

.epic-quote {
  position: relative;
  padding: 0 1.25rem;
  font-family: "Square Serif", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #626262;
}
.epic-quote:before {
  content: "“";
  position: absolute;
  left: -0.875rem;
  top: 0.125rem;
  font-family: "Square Serif", sans-serif;
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 2.25rem;
  color: #f1f1f0;
}
@media (min-width: 960px) {
  .epic-quote {
    font-size: 1.75rem;
  }
}

.epic-quote__sig {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #505050;
}

.epic-quote--ultramagnus:before {
  color: #13b5ea;
}

.epic-quote--bumblebee:before {
  color: #fdb913;
}

.header {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1.875rem;
}
@media (min-width: 960px) {
  .header {
    margin-bottom: 2.5rem;
  }
}

.header p {
  font-size: 1.375rem;
  margin: 0 auto;
  line-height: 2rem;
  width: 100%;
  position: relative;
}
.header p.small-text {
  font-size: 1rem;
  line-height: 1.5625rem;
}
@media (min-width: 500px) {
  .header p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media (min-width: 700px) {
  .header p {
    font-size: 1.375rem;
    line-height: 2rem;
  }
}
@media (min-width: 960px) {
  .header p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1200px) {
  .header p {
    font-size: 1.75rem;
    line-height: 2.4375rem;
  }
}

.header--center {
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.header--2-column {
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.header--inverse .header__primary {
  color: #ffffff;
}
.header--inverse p {
  color: #ffffff;
}
.header--inverse .header__tertiary {
  color: #ffffff;
}

.header__primary {
  font-size: 1.875rem;
  font-weight: 300;
  margin: 0;
  text-transform: none;
  width: 100%;
}
@media (min-width: 500px) {
  .header__primary {
    font-size: 2.375rem;
  }
}
@media (min-width: 700px) {
  .header__primary {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .header__primary {
    font-size: 3.625rem;
  }
}

.header__primary + p {
  padding-top: 1.25rem;
}

.header__secondary + .header__primary {
  margin-top: 1.0625rem;
}

.header__primary + .divider {
  margin-top: 1.25rem;
}

.header__secondary {
  font-size: 1.125rem;
  color: #e65400;
  text-transform: uppercase;
  font-weight: 300;
  width: 100%;
}
@media (min-width: 500px) {
  .header__secondary {
    font-size: 1.25rem;
  }
}
@media (min-width: 700px) {
  .header__secondary {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .header__secondary {
    font-size: 1.75rem;
  }
}

.header__tertiary {
  font-size: 1.125rem;
  font-weight: 300;
  width: 100%;
}
@media (min-width: 500px) {
  .header__tertiary {
    font-size: 1.25rem;
  }
}
@media (min-width: 700px) {
  .header__tertiary {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .header__tertiary {
    font-size: 1.75rem;
  }
}

.heading-group {
  margin-bottom: 1.25rem;
}
@media (min-width: 960px) {
  .heading-group {
    margin-bottom: 1.875rem;
  }
}

.header .divider:last-child,
.header .divider--bumblebee:last-child {
  margin-bottom: 0;
}

.slash-heading {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 2rem;
}

.slash-heading--align-right .slash-heading__title {
  margin-left: auto;
  padding: 0 0 0 1.25rem;
}
@media (min-width: 960px) {
  .slash-heading--align-right .slash-heading__title {
    padding: 0 0 0 1.875rem;
  }
}

.slash-heading--white .slash-heading__title,
.slash-heading--white .slash-heading__button,
.slash-heading--white .slash-heading__filter {
  background-color: #f1f1f0;
}
@media (min-width: 400px) {
  .slash-heading--white .slash-heading__tile-image {
    background-image: url("../images/tiles/slash-tile-white.svg");
  }
}

.slash-heading__tile-image {
  position: absolute;
  width: 100%;
  height: 1.25rem;
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 0.6875rem 1.25rem;
  z-index: 10;
}
@media (min-width: 400px) {
  .slash-heading__tile-image {
    background-image: url("../images/tiles/slash-tile-gray.svg");
  }
}

.slash-heading__title {
  margin-top: -0.125rem;
  padding: 0 1.25rem 0 0;
  background-color: #ffffff;
  z-index: 20;
  font-size: 1.375rem;
  color: #505050;
}
@media (min-width: 960px) {
  .slash-heading__title {
    padding: 0 1.875rem 0 0;
    font-size: 1.75rem;
  }
}

.slash-heading__title--uppercase {
  font-weight: bold;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.slash-heading--filter {
  flex-flow: column nowrap;
}
.slash-heading--filter .slash-heading__tile-image {
  display: none;
}
.slash-heading--filter .select-filter {
  padding: 0;
  background-color: #ffffff;
  z-index: 20;
  flex-flow: column nowrap;
  order: 1;
}
.slash-heading--filter .select-filter .btn {
  width: 100%;
  margin-top: 0.625rem;
  margin-left: 0;
}
.slash-heading--filter .slash-heading__title {
  padding-top: 0.75rem;
  padding-right: 0;
  order: 2;
}
@media (min-width: 825px) {
  .slash-heading--filter {
    flex-flow: row nowrap;
  }
  .slash-heading--filter .slash-heading__tile-image {
    display: block;
  }
  .slash-heading--filter .select-filter {
    padding: 0 0 0 1.25rem;
    margin-left: auto;
    order: 0;
  }
  .slash-heading--filter .slash-heading__title {
    padding-top: 0;
    padding-right: 1.25rem;
    order: 0;
  }
}
@media (min-width: 960px) {
  .slash-heading--filter .select-filter {
    flex-flow: row nowrap;
    width: auto;
    padding: 0 0 0 1.875rem;
  }
  .slash-heading--filter .select-filter .btn {
    width: auto;
    margin-top: 0;
    margin-left: 0.625rem;
  }
}

.slash-heading__button {
  margin-left: auto;
  padding: 0.3125rem 0 0.3125rem 0.625rem;
  color: #ffffff;
  background-color: #ffffff;
  z-index: 20;
}
.slash-heading__button a,
.slash-heading__button button {
  padding: 0.3125rem 0.9375rem;
  color: #ffffff;
  background-color: #505050;
}
@media (min-width: 700px) {
  .slash-heading__button {
    padding: 0.3125rem 0 0.3125rem 1.875rem;
  }
}

.hero {
  position: relative;
  height: 50vh;
  min-height: 18.75rem;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000000;
  background-image: url("../images/skeletor/skeletor-03.jpg");
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.hero .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 500px) {
  .hero {
    height: 18.75rem;
  }
}
@media (min-width: 700px) {
  .hero {
    height: 25rem;
  }
}
@media (min-width: 1200px) {
  .hero {
    height: 50vh;
  }
}

.hero--small {
  height: 9.375rem;
}
@media (min-width: 500px) {
  .hero--small {
    height: 10.3125rem;
  }
}
@media (min-width: 700px) {
  .hero--small {
    height: 15.625rem;
  }
}
@media (min-width: 1200px) {
  .hero--small {
    height: 18.75rem;
  }
}
@media (min-width: 2200px) {
  .hero--small {
    height: 25rem;
  }
}

.hero__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.image-fader {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.image-fader img {
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.image-fader:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #e65400;
}
.image-fader:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #e65400;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-fader:hover img {
  transform: scale(1.1);
}
.image-fader:hover:after {
  opacity: 0.8;
}

.logo {
  display: block;
  height: 1.625rem;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
}
.logo:hover, .logo:focus {
  opacity: 0.5;
}
.logo img {
  height: 1.625rem;
  display: block;
}

.newspaper-columns {
  -moz-columns: 1 auto;
       columns: 1 auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (min-width: 700px) {
  .newspaper-columns {
    -moz-columns: 2 auto;
         columns: 2 auto;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

@media (min-width: 1200px) {
  .newspaper-columns--3-columns {
    -moz-columns: 3 auto;
         columns: 3 auto;
  }
}

.outline-box {
  border: solid 3px #d6d6d6;
  padding: 1.25rem;
}

.outline-box h1 {
  margin-top: auto;
}

.outline-box :last-child {
  margin-bottom: 0;
}

.disclaimer {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 2.5rem;
  margin: 1.25rem 0;
  color: #505050;
}
.disclaimer:after {
  font-family: "skeletor";
  content: "\e914";
  font-size: 1rem;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #e65400;
}
.disclaimer a {
  text-decoration: underline;
}
@media (min-width: 960px) {
  .disclaimer {
    font-size: 1rem;
  }
  .disclaimer:after {
    top: 2px;
  }
}

.disclaimer--gray:after {
  color: #ababab;
}

@media (min-width: 960px) {
  p + .disclaimer {
    margin-top: 2.5rem;
  }
}

.badge {
  display: inline-block;
  padding: 0.4375rem 0.875rem;
  margin-right: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 3px;
  border: solid 2px #ababab;
  color: #ababab;
}
.badge i {
  color: #ababab;
}
.badge:last-child, .badge:only-child {
  margin-right: 0;
}

.badge .fs-close {
  color: #fdb913;
}

.badge--highlight {
  color: #505050;
  border-color: #fdb913;
  background-color: transparent;
}

.badge--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.badge--inverse {
  color: #505050;
  background-color: #ffffff;
}

.badge--highlight.badge--inverse {
  color: #ffffff;
  background-color: transparent;
}

.cards {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.cards > * {
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .cards > * {
    width: calc(100% / 3 - 1.25rem + 1.25rem / 3);
    margin: 0 1.25rem 1.25rem 0;
  }
  .cards > *:nth-child(n) {
    margin-right: 1.25rem;
  }
  .cards > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .cards > * {
    width: calc(100% / 3 - 2.5rem + 2.5rem / 3);
    margin: 0 2.5rem 2.5rem 0;
  }
  .cards > *:nth-child(n) {
    margin-right: 2.5rem;
  }
  .cards > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
.card {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  background-color: #ffffff;
}

.card__image {
  flex: 0 0 36%;
}
.card__image img {
  width: 100%;
}
.card__copy {
  width: 100%;
  height: inherit;
  border: solid 1px #d6d6d6;
}

.card__title {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  margin: 0.625rem 0.625rem 0 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #505050;
  background-color: #fdb913;
}
@media (min-width: 1024px) {
  .card__title {
    margin: 0.9375rem 0.9375rem 0 0.9375rem;
    font-size: 0.875rem;
  }
}

.card__text {
  margin: 0.625rem;
  font-size: 0.75rem;
  color: #505050;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .card__text {
    margin: 0.625rem 0.9375rem 0.625rem 0.9375rem;
    font-size: 0.875rem;
  }
}

.cards--stacked {
  flex-flow: column nowrap;
}
.cards--stacked .card {
  align-items: stretch;
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
.cards--stacked .card:last-child {
  margin-bottom: 0;
}

.card--hero {
  height: 100%;
  flex-flow: column nowrap;
}
.card--hero .card__copy {
  border-top: none;
}
.card--hero .card__text {
  font-size: 1.75rem;
  font-weight: 300;
}

.latest-news-cards {
  overflow: hidden;
  padding: 0 0 2.5rem 0;
}
.latest-news-cards .sub-headline {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.latest-news-cards .card {
  margin-bottom: 0;
}
.latest-news-cards .card__copy {
  border: none;
}

.metabar {
  display: none;
}
@media (min-width: 700px) {
  .metabar {
    display: block;
    height: 2.8125rem;
    line-height: 2.8125rem;
    text-align: right;
    position: fixed;
    top: 0px;
    right: 2.8125rem;
    z-index: 81;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 960px) {
  .metabar {
    width: 100%;
    height: 40px;
    line-height: 40px;
    left: 0px;
    background-color: #f1f1f0;
    border-bottom: solid 1px #d6d6d6;
  }
}

.metabar__item {
  display: inline-block;
  margin: 0 0.75rem;
  font-size: 0.875rem;
  color: #505050;
}
.metabar__item a {
  color: #505050;
}
.metabar__item a:hover {
  color: #fdb913;
}
.metabar__item i {
  padding-left: 0.125rem;
  color: #fdb913;
  vertical-align: baseline;
}
@media (min-width: 960px) {
  .metabar__item {
    margin: 0 1rem;
  }
  .metabar__item:last-child {
    margin-right: 0;
  }
}

.metabar--inverse {
  color: #ffffff;
}
.metabar--inverse a,
.metabar--inverse .metabar__item {
  color: #ffffff;
}
@media (min-width: 700px) {
  .metabar--inverse a,
  .metabar--inverse .metabar__item {
    color: #454545;
  }
}
@media (min-width: 960px) {
  .metabar--inverse {
    background-color: #454545;
  }
  .metabar--inverse a,
  .metabar--inverse .metabar__item {
    color: #ffffff;
  }
}

.topbar {
  height: 2.8125rem;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  background-color: #ffffff;
  border-bottom: solid 0.0625rem #d6d6d6;
  box-shadow: 0px 0px 0.125rem rgba(0, 0, 0, 0.2);
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: initial;
}
.topbar > .container {
  height: 45px;
  position: relative;
  padding-right: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .topbar > .container {
    height: 90px;
    padding-right: 0.9375rem;
  }
}
.topbar.shrink {
  height: 45px;
}
.topbar.shrink > .container {
  height: 45px;
}
@media (min-width: 960px) {
  .topbar {
    height: 90px;
  }
  .topbar > .container {
    height: 90px;
  }
}

.whopper {
  width: 45px;
  height: 45px;
  padding: 0;
  outline: none;
  cursor: pointer;
  order: 3;
}
.whopper i {
  font-size: 1.125rem;
  color: #fdb913;
}
.whopper:hover, .whopper:focus {
  color: #000000;
  background-color: #f1f1f0;
}

.nav--is-on .whopper {
  background-color: #d6d6d6;
}
.nav--is-on .whopper path {
  fill: #505050;
}
.nav--is-on .whopper i {
  color: #505050;
}

.primary-nav {
  width: calc(100% - 45px);
  height: calc(100% - 45px);
  position: fixed;
  top: 45px;
  right: calc(-100% + 45px);
  overflow-y: auto;
  background-color: #f1f1f0;
  visibility: hidden;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.5s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 500px) {
  .primary-nav {
    width: 20rem;
    right: -20rem;
  }
}
@media (min-width: 960px) {
  .primary-nav {
    width: auto;
    height: auto;
    max-width: initial;
    right: auto;
    top: auto;
    visibility: visible;
    position: relative;
    background-color: transparent;
  }
}

.nav--is-on .primary-nav {
  right: 0;
  visibility: visible;
  box-shadow: 0rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.3);
}
@media (min-width: 960px) {
  .nav--is-on .primary-nav {
    box-shadow: none;
  }
}

.nav--is-on {
  overflow: hidden;
}

.shrink .primary-nav .primary-nav__dropdown {
  top: 45px;
}

.primary-nav__block {
  width: 100%;
  margin-right: 1.25rem;
  border-top: solid 0.0625rem #d6d6d6;
  border-bottom: solid 0.0625rem #ffffff;
  color: #d6d6d6;
}
@media (min-width: 960px) {
  .primary-nav__block {
    width: auto;
    margin-right: 1.875rem;
    border: none;
    display: inline-block;
    vertical-align: middle;
  }
  .primary-nav__block:last-child {
    padding-right: 0;
    margin-right: 0;
  }
}

.primary-nav__button,
.primary-nav__link {
  padding: 0.875rem 0.9375rem 0.875rem 0.9375rem;
  margin: 0;
  text-align: left;
  width: 100%;
  display: block;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  font-family: "Open Sans";
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #f1f1f0;
  color: #505050;
  position: relative;
}
.primary-nav__button > i,
.primary-nav__link > i {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 2.8125rem;
  height: 100%;
  line-height: 3.25rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.5rem;
  color: #e65400;
  background-color: #ffffff;
  transform-origin: center;
  transform: rotateZ(0deg);
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.primary-nav__button:hover,
.primary-nav__link:hover {
  color: #fdb913;
}
.primary-nav__button:hover > i,
.primary-nav__link:hover > i {
  color: #fdb913;
}
.primary-nav__button:focus, .primary-nav__button.active,
.primary-nav__link:focus,
.primary-nav__link.active {
  color: #fdb913;
  outline: none;
}
.primary-nav__button:focus > i, .primary-nav__button.active > i,
.primary-nav__link:focus > i,
.primary-nav__link.active > i {
  color: #fdb913;
  background-color: #505050;
}
.primary-nav__button.active > i,
.primary-nav__link.active > i {
  transform: rotateZ(180deg);
}
@media (min-width: 960px) {
  .primary-nav__button,
  .primary-nav__link {
    font-size: 0.875rem;
    padding: 0;
    background-color: transparent;
  }
  .primary-nav__button > i,
  .primary-nav__link > i {
    padding: 0.3125rem;
    position: static;
    top: auto;
    right: auto;
    height: auto;
    width: auto;
    display: inline-block;
    line-height: normal;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .primary-nav__button > i:before,
  .primary-nav__link > i:before {
    margin: auto;
  }
  .primary-nav__button:focus > i, .primary-nav__button.active > i,
  .primary-nav__link:focus > i,
  .primary-nav__link.active > i {
    background-color: transparent;
  }
}

.primary-nav__link--outline {
  padding: 0.3125rem 0.625rem;
  border: solid 3px #fdb913;
}

.primary-nav__button {
  padding-right: 1.1875rem;
}

.primary-nav__button:after {
  font-size: 0.375rem;
  width: 12px;
  height: 6px;
  font-family: "skeletor";
  content: "\e919";
  text-align: center;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -3px;
  color: #e65400;
  transform-origin: center;
  transform: rotateZ(0deg);
  transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 960px) {
  .primary-nav__button:after {
    right: 0px;
  }
}

.primary-nav__block.active .primary-nav__button:after {
  transform: rotateZ(180deg);
  color: #fdb913;
}

.primary-nav__block.active .primary-nav__button:hover:after,
.primary-nav__block.active .primary-nav__button:focus:after {
  color: #fdb913;
}

.primary-nav__block.active .primary-nav__button,
.primary-nav__block.active .primary-nav__button:hover,
.primary-nav__block.active .primary-nav__button:focus {
  color: #fdb913;
}

.primary-nav__dropdown {
  overflow: hidden;
  display: none;
  padding: 0.625rem 0;
  background-color: #505050;
  color: #ffffff;
  transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.primary-nav__dropdown .container {
  padding: 0;
}
@media (min-width: 960px) {
  .primary-nav__dropdown {
    width: 100%;
    margin: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    position: fixed;
    left: 0;
    top: 90px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .primary-nav__dropdown .container {
    padding: 0 0.9375rem;
  }
}

.primary-nav__dropdown-item {
  position: relative;
  margin: 0;
}
.primary-nav__dropdown-item:hover a:after {
  width: 4px;
}
@media (min-width: 960px) {
  .primary-nav__dropdown-item {
    display: inline-block;
    padding: 0;
    margin-right: 1.25rem;
  }
  .primary-nav__dropdown-item:last-child {
    margin-right: 0;
  }
  .primary-nav__dropdown-item:hover a:after {
    height: 4px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .primary-nav__dropdown-item {
    margin-right: 1.875rem;
  }
}

.primary-nav__dropdown-link {
  display: block;
  position: relative;
  padding: 0.625rem 0.75rem;
  color: #ffffff;
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.25rem;
}
.primary-nav__dropdown-link:after {
  height: 100%;
  width: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  box-sizing: initial;
  background-color: #fdb913;
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 960px) {
  .primary-nav__dropdown-link {
    padding: 0.625rem 0;
    line-height: normal;
  }
  .primary-nav__dropdown-link:after {
    height: 0px;
    width: 100%;
    top: auto;
    bottom: 0px;
    left: 0px;
  }
}
@media (min-width: 1200px) {
  .primary-nav__dropdown-link {
    font-size: 1rem;
  }
}

.primary-nav__dropdown-title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0.9375rem;
  margin-bottom: 0;
  line-height: normal;
}
@media (min-width: 960px) {
  .primary-nav__dropdown-title {
    padding: 1.875rem 0.9375rem 0.4375rem 0;
  }
}

.primary-nav__dropdown-title-link {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.125rem;
  color: #fdb913;
  position: relative;
}
.primary-nav__dropdown-title-link i {
  padding-left: 1.875rem;
  font-size: 0.75rem;
  opacity: 0;
  transition: padding 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s, opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.primary-nav__dropdown-title-link:hover {
  text-decoration: underline;
}
@media (min-width: 1200px) {
  .primary-nav__dropdown-title-link {
    font-size: 1.375rem;
  }
}

.primary-nav__block.active .primary-nav__dropdown-title-link:after {
  display: inline-block;
  margin-left: 0.625rem;
  vertical-align: middle;
  font-family: "skeletor";
  font-size: 1rem;
  content: "\e939";
  color: #fdb913;
  transition: margin-left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-name: arrowSlide;
          animation-name: arrowSlide;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes arrowSlide {
  from {
    margin-left: 1.25rem;
  }
  to {
    margin-left: 0.625rem;
  }
}

@keyframes arrowSlide {
  from {
    margin-left: 1.25rem;
  }
  to {
    margin-left: 0.625rem;
  }
}
.footer {
  width: 100%;
  padding: 2.5rem 0 0 0;
  background-color: #505050;
  color: #ffffff;
  position: relative;
  right: 0;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav--is-on .footer {
  right: calc(100% - 45px);
}
@media (min-width: 500px) {
  .nav--is-on .footer {
    right: 20rem;
  }
}
@media (min-width: 960px) {
  .nav--is-on .footer {
    right: 0;
  }
}

.footer .logo {
  width: 100%;
  margin-bottom: 1.875rem;
  display: block;
  text-align: center;
}
.footer .logo img {
  display: inline-block;
}
@media (min-width: 1200px) {
  .footer .logo {
    width: auto;
  }
}

.footer__contact {
  width: 100%;
  margin-bottom: 1.875rem;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  flex: 0 3 auto;
}
@media (min-width: 700px) {
  .footer__contact {
    flex-flow: row nowrap;
    justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .footer__contact {
    padding-bottom: 1.875rem;
    border-bottom: solid 0.0625rem #626262;
  }
}

.footer__contact-block {
  width: 100%;
}
@media (min-width: 700px) {
  .footer__contact-block {
    width: 25%;
  }
}

.footer__contact-block:nth-child(2),
.footer__contact-block:nth-child(3) {
  width: 50%;
}
@media (min-width: 700px) {
  .footer__contact-block:nth-child(2),
  .footer__contact-block:nth-child(3) {
    width: 25%;
  }
}

.footer__contact-address {
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .footer__contact-address {
    margin-right: 0.625rem;
    margin-bottom: 0;
  }
}

.footer__contact-phone {
  margin-bottom: 1.875rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 700px) {
  .footer__contact-phone {
    margin-bottom: 0;
    flex: 0 0 auto;
    align-items: flex-start;
  }
}

.footer__contact-phone-number {
  color: #fdb913;
}
.footer__contact-phone-number:hover {
  color: #fdb913;
  text-decoration: underline;
}

.footer__contact .btn {
  width: 100%;
  background-color: #454545;
  border: 1px solid #454545;
  color: #ffffff;
}
.footer__contact .btn:hover {
  background-color: #fdb913;
  color: #ffffff;
}
@media (min-width: 700px) {
  .footer__contact .btn {
    width: auto;
    flex: 0 0 auto;
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .footer__contact .btn {
    margin-left: 0;
  }
}

.footer__links {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  flex: 0 1 auto;
}

.footer__links-group {
  width: 50%;
  padding: 0 0.5rem 1.25rem 0;
}
.footer__links-group li {
  padding-bottom: 0.875rem;
}
.footer__links-group a {
  color: #ffffff;
  font-size: 0.8125rem;
}
.footer__links-group a:hover {
  color: #fdb913;
}
.footer__links-group i {
  font-size: 1rem;
  vertical-align: middle;
  margin-right: 0.625rem;
  min-width: 1.25rem;
  text-align: center;
}
@media (min-width: 500px) {
  .footer__links-group {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .footer__links-group {
    padding-bottom: 0;
    width: auto;
  }
}

.footer__sub-footer {
  padding: 0.9375rem 0;
  text-align: center;
  background-color: #454545;
}
@media (min-width: 960px) {
  .footer__sub-footer {
    padding: 0.625rem 0;
  }
}

.footer__sub-footer .container {
  padding: 0;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}

.footer__sub-footer-company {
  padding: 0.9375rem 0px 0.625rem 0px;
  font-size: 0.6875rem;
  color: #ffffff;
  order: 2;
}
@media (min-width: 960px) {
  .footer__sub-footer-company {
    padding: 0.625rem 0;
  }
}

.footer__sub-footer-links {
  width: 100%;
}
.footer__sub-footer-links li {
  display: inline-block;
  margin: 0;
}
.footer__sub-footer-links a {
  font-size: 0.75rem;
  color: #ffffff;
  padding: 0rem 0.625rem;
  display: block;
}
.footer__sub-footer-links a:hover {
  text-decoration: underline;
}
@media (min-width: 960px) {
  .footer__sub-footer-links a {
    padding: 0.625rem 0.9375rem;
  }
}

.footer__tagline {
  margin-bottom: 1.875rem;
  text-align: center;
  font-family: "Square Serif", sans-serif;
  font-size: 1.6875rem;
  letter-spacing: 0.00875rem;
  font-weight: 250;
}

.footer__tagline--border-bottom {
  padding-bottom: 1.875rem;
  border-bottom: solid 0.0625rem #626262;
}

.footer__disclaimer p {
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #d6d6d6;
}
.footer__disclaimer a {
  color: #d6d6d6;
}

@media (min-width: 700px) {
  .footer .accordion {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 700px) {
  .footer .accordion .accordion-card {
    width: 25%;
  }
}
.footer .accordion .accordion-card__button {
  padding: 1.25rem 0 1.25rem 0;
  background-color: transparent;
  border-color: #626262;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 700px) {
  .footer .accordion .accordion-card__button {
    display: none;
    visibility: hidden;
  }
}
.footer .accordion .accordion-card__button-icon {
  text-align: right;
  line-height: 3.75rem;
  color: #ffffff;
}
@media (min-width: 700px) {
  .footer .accordion .accordion-card__dropdown {
    display: block !important;
    height: auto !important;
  }
}
.footer .accordion .footer__links-group {
  width: auto;
}
.footer .accordion .accordion-card__dropdown-block {
  padding: 0;
}
.footer .accordion .footer-link-titles {
  display: none;
}
@media (min-width: 700px) {
  .footer .accordion .footer-link-titles {
    display: block;
    margin-bottom: 1.25rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    font-weight: bold;
  }
}
.footer .accordion .social-icons {
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .accordion .social {
  width: 1.875rem;
  height: 1.875rem;
}
.footer .accordion .social-icons__name,
.footer .accordion .social-icons__handle {
  display: none;
  visibility: hidden;
}
.footer .accordion .social-icons__container {
  margin-left: 0;
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 700px) {
  .footer .accordion .accordion-card.be-accordion {
    width: 100%;
  }
}

.be-related-link-container {
  width: auto;
  margin: 0;
  padding: 0;
  padding-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .be-related-link-container {
    margin-top: 1.25rem;
    padding-top: 1.125rem !important;
    padding-bottom: 1.25rem;
    border-top: solid 1px #626262;
  }
}

.be-label {
  display: none !important;
  visibility: hidden !important;
}

@media (min-width: 700px) {
  .be-list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }
}

.be-list-item {
  padding-bottom: 1.25rem;
  text-align: left;
}
@media (min-width: 700px) {
  .be-list-item {
    margin-right: 1.875rem;
    padding-bottom: 0;
  }
  .be-list-item:first-child:before {
    margin-right: 1.875rem;
    font-size: 0.6875rem;
    font-weight: bold;
    text-transform: uppercase;
    content: "Also of Interest:";
  }
  .be-list-item:last-child {
    margin-right: 0;
  }
}

.be-list-item .be-related-link {
  font-size: 0.8125rem;
  color: #ffffff;
}

.accordion-card__button {
  position: relative;
  width: 100%;
  padding: 0.8125rem 1.25rem;
  border: none;
  border-top: solid 1px #d6d6d6;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #505050;
  background-color: #f1f1f0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-card__button:hover {
  color: #fdb913;
  background-color: rgb(236.075862069, 236.075862069, 234.724137931);
  cursor: pointer;
}

.accordion-card__button-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 3.125rem;
  height: 100%;
  line-height: 3.25rem;
  text-align: center;
  font-size: 0.5625rem;
  color: #fdb913;
}
.accordion-card__button-icon i {
  transform-origin: center;
  transform: rotateZ(0deg);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-card__dropdown {
  height: 0; /* Initially collapsed */
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #505050;
  color: #ffffff;
}

.accordion-card__dropdown-block {
  padding: 1.25rem;
}

.accordion-card--active .accordion-card__button {
  background-color: rgb(233.6137931034, 233.6137931034, 232.0862068966);
}
.accordion-card--active .accordion-card__button-icon {
  background-color: #505050;
  color: #fdb913;
}
.accordion-card--active .accordion-card__button-icon i {
  transform: rotateZ(180deg);
}

.accordion .sub-headline,
.accordion .headline,
.accordion .form-field__checkbox-text,
.accordion p {
  color: #ffffff;
}
.accordion a {
  color: #fdb913;
}
.accordion img {
  margin-bottom: 1.25rem;
}

.lightbox {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  overflow-y: auto;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

.lightbox__close-surface {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox__controls {
  position: fixed;
  top: 15px;
  right: 15px;
}
.lightbox__controls i {
  font-size: 1.875rem;
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lightbox__controls:hover i {
  color: #fdb913;
}

.lightbox__content {
  position: relative;
  width: 100%;
  margin: auto auto;
  padding: 2.5rem 2.5rem;
  background-color: #ffffff;
}
.lightbox__content iframe {
  border: none;
  width: 100%;
}
@media (min-width: 960px) {
  .lightbox__content {
    width: 75%;
  }
}

.lightbox--active {
  overflow: hidden;
}
.lightbox--active .lightbox {
  opacity: 1;
  visibility: visible;
}

.lightbox--iframe .lightbox__content {
  padding: 0;
  background-color: #000000;
}
.lightbox--iframe iframe {
  display: block;
}

.selections {
  border: solid 3px #f1f1f0;
}

.selections > * {
  padding: 1.25rem;
}

.selections p {
  margin: 0;
}

.selections__title {
  padding-bottom: 0;
}

.selections__sub-title {
  font-weight: bold;
  color: #505050;
  margin-top: 0.625rem;
}

.selections__label {
  width: 100%;
  display: block;
  padding: 0;
  margin-bottom: 1px;
}
.selections__label:last-child {
  margin-bottom: 0;
}

.selections__input {
  left: -62.5rem;
  position: absolute;
}

.selections__custom-field {
  cursor: pointer;
  color: #505050;
  padding: 0.625rem 1.25rem;
  position: relative;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.selections__custom-field:hover {
  background-color: rgb(250.8482758621, 250.8482758621, 250.5517241379);
}

.selections__input:checked + .selections__custom-field {
  background-color: #f1f1f0;
}
.selections__input:checked + .selections__custom-field:after {
  position: absolute;
  right: 0.9375rem;
  top: 0.9375rem;
  font-family: "skeletor" !important;
  content: "\e934";
  color: #e65400;
}

.site-search {
  padding: 1.25rem 0;
  border-bottom: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  .site-search {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: 0;
    border: none;
  }
}

.site-search__button {
  display: none;
  visibility: hidden;
}
.site-search__button:focus {
  border-bottom: 1px hidden #505050;
}
@media (min-width: 960px) {
  .site-search__button {
    padding: 0.625rem;
    display: block;
    visibility: visible;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-size: 1rem;
    color: #fdb913;
    background-color: transparent;
    border: none;
    margin: 0;
    cursor: pointer;
    outline: none;
  }
  .site-search__button i {
    vertical-align: middle;
    transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .site-search__button:hover i, .site-search__button:focus i {
    color: #505050;
  }
  .site-search__button:focus i {
    border-bottom: 1px hidden #505050;
  }
}

.site-search__panel .container {
  padding: 0;
}
@media (min-width: 960px) {
  .site-search__panel {
    position: fixed;
    right: 0;
    top: 40px;
    overflow: hidden;
    background-color: #f1f1f0;
    width: 0;
    height: 90px;
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .site-search__panel .container {
    height: 100%;
    padding: 0 0.9375rem;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .site-search__panel i {
    font-size: 0.75rem;
  }
}

@media (min-width: 960px) {
  .shrink .site-search__panel {
    height: 45px;
  }
}

.search--is-on .site-search__panel {
  width: 100%;
}

.site-search__field-group {
  width: 100%;
}

#search_input {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0.875rem 3.125rem 0.875rem 0.9375rem;
  outline: none;
  border: none;
  border-radius: 0;
  font-size: 1.125rem;
  color: #000000;
  background-image: none;
  box-sizing: inherit;
}
@media (min-width: 960px) {
  #search_input {
    padding: 1.25rem 3.125rem 1.25rem 1.5625rem;
    font-size: 1rem;
    visibility: hidden;
    background-color: transparent;
    outline: none;
    transition: padding 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  #search_input:focus {
    border-bottom: solid 1px #d6d6d6;
  }
}

@media (min-width: 960px) {
  .search--is-on #search_input {
    visibility: visible;
  }
}

@media (min-width: 960px) {
  .shrink #search_input {
    padding: 0.3125rem 0.625rem;
  }
}

#search_form {
  position: relative;
}

.site-search__submit-button {
  position: absolute;
  right: 0.375rem;
  top: 50%;
  margin-top: -1.125rem;
}
.site-search__submit-button i {
  color: #505050;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  padding: 0.625rem 0.625rem;
}
.site-search__submit-button:hover i, .site-search__submit-button:focus i {
  color: #fdb913;
}
.site-search__submit-button:focus i {
  border-bottom: 1px hidden #fdb913;
}

.swift__form {
  margin-top: 1.5625rem;
  position: relative;
  width: 100%;
}
@media (min-width: 960px) {
  .swift__form {
    width: 50%;
  }
}

.swift__form .st-default-search-input {
  width: 100% !important;
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  color: #505050 !important;
  background-image: none;
  padding: 0.6875rem 0.875rem 0.6875rem 0.875rem !important;
  box-sizing: inherit;
}

.swift-search__button {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  apperance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.swift-search__button i {
  font-size: 1.125rem;
  color: #505050;
}

#swift-search .st-ui-injected-on-page-container {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
#swift-search .st-search-summary > .st-query-present {
  color: #505050;
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 960px) {
  #swift-search .st-search-summary > .st-query-present {
    font-size: 1.5rem;
  }
}
#swift-search .st-ui-injected-content {
  margin-top: 0.625rem;
  padding-bottom: 1.25rem;
}
#swift-search a.st-ui-result.st-ui-image {
  padding: 0.75rem 1.25rem 1.875rem 0;
  margin-bottom: 1.25rem;
}
@media (min-width: 960px) {
  #swift-search a.st-ui-result.st-ui-image {
    padding: 0.75rem 1.25rem 1.875rem 4.375rem;
  }
}
#swift-search .st-ui-type-heading {
  margin-bottom: 0.625rem;
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: 300;
  white-space: normal;
  line-height: 30px;
}
#swift-search .st-ui-type-heading em {
  font-weight: 500;
}
#swift-search .st-ui-type-detail,
#swift-search .st-ui-type-detail-bold {
  font-size: 0.875rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  font-weight: 300;
  max-height: none;
  color: #505050;
  padding-top: 0.5rem;
}
@media (min-width: 960px) {
  #swift-search .st-ui-type-detail,
  #swift-search .st-ui-type-detail-bold {
    font-size: 1rem;
  }
}
#swift-search .st-ui-thumbnail img {
  display: none;
}
@media (min-width: 960px) {
  #swift-search .st-ui-thumbnail img {
    display: block;
  }
}
#swift-search .st-ui-thumbnail img[src=""] {
  display: none;
}
#swift-search .st-ui-thumbnail {
  display: none;
}
@media (min-width: 960px) {
  #swift-search .st-ui-thumbnail {
    display: block;
    background-image: none !important;
    width: 8rem;
    height: 5rem;
    margin-right: 1.25rem;
    margin-top: 0.375rem;
  }
}
#swift-search a.st-ui-result:before {
  display: none;
}
#swift-search .st-ui-footer {
  margin: 0;
  padding: 0;
}
#swift-search .st-ui-pagination-link {
  display: block;
  line-height: 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #e65400;
  text-decoration: underline;
  text-align: center;
  margin-right: 0.625rem;
  float: left;
}
#swift-search .st-ui-pagination-link.st-ui-pagination-number-link {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f1f1f0;
  border: solid 0.0625rem transparent;
}
#swift-search .st-ui-pagination-link.st-ui-pagination-number-link.active {
  background-color: transparent;
  border-color: #505050;
  color: #505050;
  text-decoration: none;
}
#swift-search .st-result-pagination-link span.st-ui-arrow {
  display: none;
}
#swift-search section.st-ui-no-results .st-ui-type-heading {
  position: unset;
}

@media (min-width: 700px) {
  .off-canvas {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.off-canvas__panel {
  width: calc(100% - 45px);
  height: calc(100% - 45px);
  padding: 1.25rem;
  padding-top: 2.5rem;
  position: fixed;
  top: 45px;
  right: calc(-100% - 45px);
  z-index: 71;
  overflow: auto;
  background-color: #f1f1f0;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 400px) {
  .off-canvas__panel {
    width: 20rem;
    min-width: 20rem;
  }
}
@media (min-width: 700px) {
  .off-canvas__panel {
    min-width: 15rem;
    height: auto;
    position: static;
    top: initial;
    right: initial;
    z-index: auto;
    padding: 0;
    padding-right: 1.875rem;
    margin-right: 1.875rem;
    border-right: solid 1px #d6d6d6;
    background-color: transparent;
  }
}

.off-canvas--is-on .off-canvas__panel {
  right: 0px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.off-canvas__panel-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0.9375rem;
  right: 0.6875rem;
}
.off-canvas__panel-close i {
  font-size: 1.375rem;
  color: #505050;
}
@media (min-width: 700px) {
  .off-canvas__panel-close {
    display: none;
    visibility: hidden;
  }
}

.off-canvas__panel-title {
  font-size: 1rem;
  font-weight: bold;
  color: #505050;
  margin-bottom: 2.5rem;
}

.off-canvas__panel-label {
  font-weight: bold;
  color: #505050;
  margin-bottom: 1.25rem;
}

.off-canvas__panel fieldset {
  margin-bottom: 1.25rem;
}

.off-canvas-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: #fdb913;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.off-canvas-toggle i {
  padding-right: 0.625rem;
  font-size: 1.875rem;
}
@media (min-width: 700px) {
  .off-canvas-toggle {
    display: none;
    visibility: hidden;
  }
}

.progress-dots--center {
  text-align: center;
}

.progress-dots__dot {
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  margin: 0 0.3125rem;
  border: solid 2px #fdb913;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.progress-dots__dot:first-child {
  margin-left: 0;
}
.progress-dots__dot:last-child {
  margin-right: 0;
}
.progress-dots__dot.active {
  background-color: #fdb913;
}
.progress-dots__dot.active:before {
  width: 17px;
}
.progress-dots__dot:before {
  position: absolute;
  width: 0px;
  height: 6px;
  top: 50%;
  margin-top: -3px;
  left: -18px;
  content: "";
  background-color: #fdb913;
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.progress-dots__dot:first-child:before {
  display: none;
}
@media (min-width: 500px) {
  .progress-dots__dot {
    margin: 0 0.625rem;
  }
  .progress-dots__dot:before {
    left: -28px;
  }
  .progress-dots__dot.active:before {
    width: 27px;
  }
}

.dropdown__toggle {
  position: relative;
  cursor: pointer;
}

.dropdown__menu {
  width: auto;
  padding: 0.4375rem 0;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  border: solid 1px #d6d6d6;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 13.75rem;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown__title {
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0.9375rem 0.625rem;
  font-weight: bold;
  border-bottom: solid 2px #fdb913;
  color: #505050;
}

.dropdown__item {
  width: 100%;
  padding: 0.625rem;
  display: block;
  font-size: 0.875rem;
  text-align: left;
}
.dropdown__item:hover, .dropdown__item:focus {
  background-color: #f1f1f0;
}
.dropdown__item.active {
  background-color: #f1f1f0;
}
.dropdown__item i {
  margin-right: 0.3125rem;
}

a.dropdown__item {
  color: #505050;
}

button.dropdown__item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #505050;
  margin: 0;
  display: block;
  cursor: pointer;
}

.dropdown__divider,
.dropdown__menu hr {
  display: block;
  height: 1px;
  background-color: #d6d6d6;
}

.dropdown--fluid .dropdown__menu {
  width: 100%;
}

.dropdown.show .dropdown__menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.subbar {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 2.8125rem;
  z-index: 71;
  background-color: #ffffff;
  transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: solid 1px #d6d6d6;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  box-sizing: initial;
}
.subbar .container {
  height: inherit;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding-right: 0;
}
.subbar .whopper {
  margin-left: auto;
}
@media (min-width: 960px) {
  .subbar {
    top: 5.6875rem;
    background-color: #505050;
    border-bottom: solid 1px #626262;
  }
  .subbar .container {
    padding-right: 0.9375rem;
  }
  .subbar .whopper {
    display: none;
  }
}

.subbar__title {
  font-family: "Square Serif", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #505050;
}
.subbar__title span {
  font-family: "Square Serif", sans-serif;
  font-weight: 500;
}
@media (min-width: 960px) {
  .subbar__title {
    color: #ffffff;
  }
}

.subbar__logo img {
  height: 1.375rem;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.subbar__logo img:hover, .subbar__logo img:focus {
  opacity: 0.6;
}
@media (min-width: 1200px) {
  .subbar__logo img {
    height: 1.625rem;
  }
}

.subbar__nav {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 45px);
  height: calc(100% - 45px);
  position: fixed;
  right: calc(-100% + 45px);
  top: 46px;
  z-index: 80;
  background-color: #f1f1f0;
  box-shadow: -1px 2px 3px 0px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.5s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 500px) {
  .subbar__nav {
    width: 20rem;
    right: -20rem;
  }
}
@media (min-width: 960px) {
  .subbar__nav {
    flex-flow: row nowrap;
    justify-content: flex-end;
    width: auto;
    height: auto;
    margin-left: auto;
    position: static;
    top: auto;
    right: auto;
    background-color: transparent;
    box-shadow: none;
    visibility: visible;
  }
}

.nav--is-on .subbar__nav {
  right: 0px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  visibility: visible;
}
@media (min-width: 960px) {
  .nav--is-on .subbar__nav {
    box-shadow: none;
  }
}

.subbar__nav-link {
  width: 100%;
  display: block;
  padding: 0.875rem 0.9375rem;
  border-top: solid 1px #d6d6d6;
  border-bottom: solid 1px #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  color: #505050;
}
.subbar__nav-link:first-child {
  margin-top: 0;
  border-top: none;
}
.subbar__nav-link:last-child {
  margin-bottom: 0;
  border-color: #d6d6d6;
}
.subbar__nav-link:hover, .subbar__nav-link:focus {
  color: #fdb913;
}
@media (min-width: 960px) {
  .subbar__nav-link {
    display: inline-block;
    width: auto;
    margin: 0 0.9375rem;
    padding: 0;
    border: none;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
  }
  .subbar__nav-link:first-child {
    margin-left: 0;
  }
  .subbar__nav-link:last-child {
    margin-right: 0;
  }
}

@media (min-width: 960px) {
  .subbar--all-links {
    padding: 0.3125rem 0;
  }
}
@media (min-width: 960px) {
  .subbar--all-links .subbar__nav {
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .subbar--all-links .subbar__nav-link {
    margin-left: 0;
    margin-right: 1.25rem;
    padding: 0.3125rem 0;
  }
}

@media (min-width: 960px) {
  .subbar__nav-link ~ .subbar__search {
    margin-left: -0.9375rem;
  }
}

.subbar__search {
  position: relative;
  width: 100%;
}
@media (min-width: 960px) {
  .subbar__search {
    display: block;
    visibility: visible;
    width: auto;
  }
}

.subbar__search-field {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #d6d6d6;
  margin-left: 0rem;
  padding: 0.875rem 3.125rem 0.875rem 0.9375rem;
  background-color: #ffffff;
  font-size: 1.125rem;
}
.subbar__search-field:hover, .subbar__search-field:focus {
  outline: none;
  border: solid 1px #fdb913;
}
@media (min-width: 960px) {
  .subbar__search-field {
    width: auto;
    margin-left: 2.125rem;
    padding: 0.5rem 2.125rem 0.5rem 0.625rem;
    font-size: 0.8125rem;
  }
}

.subbar__search-button {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: 0.375rem;
  padding: 0.625rem;
  margin-top: -1.125rem;
}
.subbar__search-button i {
  font-size: 1rem;
}
@media (min-width: 960px) {
  .subbar__search-button {
    top: 0px;
    right: 0px;
    padding: 0.5rem;
    margin-top: auto;
  }
}

.subbar__icon-button {
  margin-left: auto;
  background-color: #fdb913;
}
.subbar__icon-button .btn--icon {
  padding: 0.875rem 1.25rem;
}
.subbar__icon-button span {
  display: none;
}
.subbar__icon-button i {
  color: #ffffff;
}
@media (min-width: 700px) {
  .subbar__icon-button {
    margin-right: 0.3125rem;
    background-color: #ffffff;
    border: solid 3px #fdb913;
  }
  .subbar__icon-button .btn--icon {
    padding: 0.3125rem 0.625rem;
    font-weight: normal;
    color: #505050;
  }
  .subbar__icon-button span {
    display: inline-block;
  }
  .subbar__icon-button i {
    display: none;
  }
}
@media (min-width: 960px) {
  .subbar__icon-button {
    display: none;
  }
}

.subbar__icon-button + .whopper {
  margin-left: 0;
}

.youtube-player {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 71;
  background: transparent;
}

.youtube-player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.youtube-player:hover img {
  filter: brightness(75%);
  transform: scale(1.1);
}

.youtube-player .play {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  height: 4.5rem;
  width: 4.5rem;
  left: 50%;
  top: 50%;
  margin-left: -2.25rem;
  margin-top: -2.25rem;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.youtube-player .play:after {
  font-family: "skeletor";
  font-size: 4.5rem;
  color: #ffffff;
  content: "\e923";
}

.pagination {
  padding: 1.5625rem;
  padding-left: 0;
  font-size: 1rem;
  text-align: left;
}

.pagination__list {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.3125rem;
  font-weight: 700;
  background-color: #ffffff;
  color: #cc4b00;
  border: 1px solid #505050;
  text-align: center;
  text-decoration: none;
}

.pagination__list.current {
  border-color: #505050;
  border-width: 1px;
  background-color: #505050;
  color: #ffffff;
  text-decoration: none;
}

.pagination__prev-next {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem 0.9375rem;
  background-color: #ffffff;
  border: 1px solid #505050;
  display: inline-block;
}

.pagination--dark-mode .pagination__list {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
}
.pagination--dark-mode .pagination__list.current {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #e65400;
}
.pagination--dark-mode .pagination__prev-next {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
}

.flex-features {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: center;
}

.flex-features__block {
  position: relative;
  width: 100%;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.flex-features__block:last-child .flex-features__body {
  border-right: solid 1px #d6d6d6;
}
.flex-features__block:nth-child(n+4) {
  display: none;
}
.flex-features__block:hover {
  opacity: 0.9;
}
.flex-features__block:hover .flex-features__read-more {
  text-decoration: underline;
}
@media (min-width: 500px) {
  .flex-features__block:first-child {
    min-width: 100%;
  }
}
@media (min-width: 700px) {
  .flex-features__block {
    flex: 1;
    min-width: 18.75rem;
  }
  .flex-features__block:first-child .flex-features__image {
    height: 22.5rem;
  }
}
@media (min-width: 960px) {
  .flex-features__block:first-child {
    min-width: 18.75rem;
  }
  .flex-features__block:first-child .flex-features__image {
    height: 15rem;
  }
}
@media (min-width: 1200px) {
  .flex-features__block:first-child .flex-features__image {
    height: 18.75rem;
  }
}
@media (min-width: 1600px) {
  .flex-features__block:first-child .flex-features__image {
    height: 22.5rem;
  }
  .flex-features__block:nth-child(n+4) {
    display: block;
  }
}
@media (min-width: 2200px) {
  .flex-features__block {
    max-width: 40rem;
  }
}

.flex-features__inner {
  height: 9.125rem;
  border-left: solid 1px #d6d6d6;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

.flex-features__image {
  display: block;
  position: relative;
  height: 15rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 960px) {
  .flex-features__image {
    height: 15rem;
  }
}
@media (min-width: 1200px) {
  .flex-features__image {
    height: 18.75rem;
  }
}
@media (min-width: 1600px) {
  .flex-features__image {
    height: 22.5rem;
  }
}

.flex-features__title {
  padding: 0.625rem 1.875rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fdb913;
  font-size: 0.875rem;
  font-weight: bold;
  color: #505050;
  text-transform: uppercase;
}

.flex-features__body {
  padding: 1.25rem;
  overflow: hidden;
  text-align: left;
  background-color: #f1f1f0;
  border-left: solid 1px #d6d6d6;
  border-bottom: solid 1px #d6d6d6;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.flex-features__body p {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 300;
}
.flex-features__body i {
  margin-right: 0.9375rem;
  font-size: 3.75rem;
  color: #fdb913;
}

.flex-features__footer {
  position: absolute;
  bottom: 0px;
}

.flex-features__read-more {
  font-size: 0.8125rem;
  color: #505050;
  font-weight: 600;
  padding-left: 1.25rem;
  padding-bottom: 1.25rem;
}
.flex-features__read-more .divider {
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 0;
}
.flex-features__read-more a {
  color: #505050;
}
.flex-features__read-more a:hover {
  text-decoration: underline;
}

.story-zone .story-zone__headline {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media (min-width: 500px) {
  .story-zone .story-zone__headline {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 700px) {
  .story-zone .story-zone__headline {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.story-zone .flex-features__block {
  padding-bottom: 3.375rem;
  min-width: initial;
  border-left: solid 1px #d6d6d6;
}
.story-zone .flex-features__block:last-child .flex-features__body {
  border-right: none;
}
@media (min-width: 700px) {
  .story-zone .flex-features__block:nth-child(1) {
    margin-right: 2.5rem;
  }
}
@media (min-width: 960px) {
  .story-zone .flex-features__block:nth-child(2) {
    margin-right: 2.5rem;
  }
}
.story-zone .flex-features__body {
  background-color: transparent;
  border-bottom: none;
  border-left: none;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.story-zone .flex-features__title {
  position: static;
  left: initial;
  bottom: initial;
  background-color: transparent;
  color: #505050;
  padding: 0;
  text-transform: none;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  width: 100%;
}
.story-zone p {
  font-size: 1rem;
  width: 100%;
}
.story-zone .flex-features__block .flex-features__image {
  height: 15rem;
}
@media (min-width: 960px) {
  .story-zone .flex-features__block .flex-features__image {
    height: 11.25rem;
  }
}
@media (min-width: 2200px) {
  .story-zone .flex-features__block .flex-features__image {
    height: 12.5rem;
  }
}
.story-zone .flex-features__block:nth-child(n+2) {
  display: none;
  visibility: hidden;
}
@media (min-width: 700px) {
  .story-zone .flex-features__block:nth-child(n+2) {
    display: block;
    visibility: visible;
  }
}
.story-zone .flex-features__block:nth-child(n+3) {
  display: none;
  visibility: hidden;
}
@media (min-width: 960px) {
  .story-zone .flex-features__block:nth-child(n+3) {
    display: block;
    visibility: visible;
  }
}

.align-contents-vertical-center {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
}

.align-contents-horizontal-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
}

.align-contents-center {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.dev-tools {
  position: fixed;
  bottom: 0.9375rem;
  right: 0.9375rem;
  background-color: #000000;
  padding: 0.9375rem 2.5rem;
  display: block;
  opacity: 0.8;
  z-index: 100;
  box-shadow: 0 4px 6px 0px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 0.8125rem;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bp-monitor {
  font-weight: bold;
}

.bp-monitor span:after {
  content: "MOBILE";
  display: inline-block;
  font-weight: normal;
  color: #d6d6d6;
}
@media (min-width: 400px) {
  .bp-monitor span:after {
    content: "MOBILE LARGE";
  }
}
@media (min-width: 500px) {
  .bp-monitor span:after {
    content: "TABLET SMALL";
  }
}
@media (min-width: 700px) {
  .bp-monitor span:after {
    content: "TABLET";
  }
}
@media (min-width: 825px) {
  .bp-monitor span:after {
    content: "TABLET LARGE";
  }
}
@media (min-width: 960px) {
  .bp-monitor span:after {
    content: "NARROW";
  }
}
@media (min-width: 1024px) {
  .bp-monitor span:after {
    content: "DESKTOP SMALL";
  }
}
@media (min-width: 1200px) {
  .bp-monitor span:after {
    content: "DESKTOP";
  }
}
@media (min-width: 1600px) {
  .bp-monitor span:after {
    content: "DESKTOP LARGE";
  }
}
@media (min-width: 2200px) {
  .bp-monitor span:after {
    content: "WIDE";
  }
}

.dev-visible-grids > * {
  background-color: #f1f1f0;
  padding: 0.625rem;
  border: dashed 2px #d6d6d6;
  color: #505050;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.75rem;
}

.zapados {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.zapados > * {
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .zapados > * {
    width: calc(100% / 5 - 1.25rem + 1.25rem / 5);
    margin: 0 1.25rem 1.25rem 0;
  }
  .zapados > *:nth-child(n) {
    margin-right: 1.25rem;
  }
  .zapados > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .zapados > * {
    width: calc(100% / 5 - 2.5rem + 2.5rem / 5);
    margin: 0 2.5rem 2.5rem 0;
  }
  .zapados > *:nth-child(n) {
    margin-right: 2.5rem;
  }
  .zapados > *:nth-child(5n+5) {
    margin-right: 0;
  }
}

.babooz {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row nowrap;
}
.babooz > * {
  margin: 0;
  width: calc(100% / 10);
}

.krikeyz {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.krikeyz > * {
  margin: 0;
  width: 100%;
}
@media (min-width: 500px) {
  .krikeyz > * {
    width: calc(100% / 7);
    margin: 0;
  }
}

.flattop {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.flattop > * {
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .flattop > * {
    width: calc(100% / 5 - 1.25rem + 1.25rem / 5);
    margin: 0 1.25rem 1.25rem 0;
  }
  .flattop > *:nth-child(n) {
    margin-right: 1.25rem;
  }
  .flattop > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .flattop > * {
    width: calc(100% / 5 - 2.5rem + 2.5rem / 5);
    margin: 0 2.5rem 2.5rem 0;
  }
  .flattop > *:nth-child(n) {
    margin-right: 2.5rem;
  }
  .flattop > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
.flattop > * {
  margin-bottom: 0;
}

.disabled,
.disabled:hover,
.disabled:focus {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.fluid,
img.fluid {
  width: 100%;
}

.hide {
  display: none !important;
  visibility: hidden !important;
}

@media (min-width: 960px) {
  .hide-desktop {
    display: none !important;
    visibility: hidden !important;
  }
}

.hide-mobile {
  display: none !important;
  visibility: hidden !important;
}
@media (min-width: 960px) {
  .hide-mobile {
    display: block !important;
    visibility: visible !important;
  }
}

.inline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.inline-list--align-left {
  justify-content: flex-start;
}

.inline-list--margins > * {
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  margin-bottom: 0.625rem;
}

.inline-list--justified {
  justify-content: space-between;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.side-padding {
  padding-left: 5% !important;
  padding-right: 5% !important;
}

.no-margins,
.no-margin {
  margin: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.skin-bg-devastator {
  background-color: #454545;
}

.skin-txt-hotrod {
  color: #e65400;
}

.skin-txt-ultramagnus {
  color: #13b5ea;
}

.skin-txt-jetfire {
  color: #ffffff;
}

.skin-txt-bumblebee {
  color: #fdb913;
}

.spacer {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.spacer-30 {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
}

.spacer-40 {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.spacer-50 {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}

.spacer-60 {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
}

.snake-mountain {
  position: static;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.snake-mountain .metabar,
.snake-mountain .subbar {
  display: none;
  visibility: hidden;
}

.snake-mountain .wallmaster {
  height: 45px;
}
@media (min-width: 960px) {
  .snake-mountain .wallmaster {
    height: 90px;
  }
}

.snake-mountain--metabar .wallmaster {
  height: 45px;
}
@media (min-width: 960px) {
  .snake-mountain--metabar .wallmaster {
    height: 8.1875rem;
  }
}
@media (min-width: 700px) {
  .snake-mountain--metabar .metabar {
    display: block;
    visibility: visible;
  }
}
.snake-mountain--metabar .topbar {
  top: 0px;
}
@media (min-width: 960px) {
  .snake-mountain--metabar .topbar {
    top: 40px;
  }
}
.snake-mountain--metabar .site-search__panel {
  top: 40px;
}
.snake-mountain--metabar .primary-nav__dropdown {
  top: 131px;
}
.snake-mountain--metabar .shrink .primary-nav__dropdown {
  top: 86px;
}

@media (min-width: 960px) {
  .snake-mountain--subbar .wallmaster {
    height: 8.5rem;
  }
}
.snake-mountain--subbar .subbar {
  display: block;
  visibility: visible;
}
@media (min-width: 960px) {
  .snake-mountain--subbar .subbar.shrink {
    top: 2.875rem;
  }
}
.snake-mountain--subbar .subbar.subbar--all-links {
  height: 2.25rem;
}
.snake-mountain--subbar .topbar {
  display: none;
  visibility: hidden;
}
@media (min-width: 960px) {
  .snake-mountain--subbar .topbar {
    display: block;
    visibility: visible;
  }
}

.snake-mountain--metabar.snake-mountain--subbar .subbar {
  top: 0;
}
@media (min-width: 960px) {
  .snake-mountain--metabar.snake-mountain--subbar .subbar {
    top: 131px;
  }
}

@media (min-width: 960px) {
  .snake-mountain--metabar.snake-mountain--subbar .subbar.shrink {
    top: 5.375rem;
  }
}

.snake-mountain--metabar.snake-mountain--subbar .wallmaster {
  height: 45px;
}
@media (min-width: 960px) {
  .snake-mountain--metabar.snake-mountain--subbar .wallmaster {
    height: 177px;
  }
}

.snake-mountain--metabar.snake-mountain--subbar .shrink .primary-nav__dropdown {
  top: 5.375rem;
}

.snake-mountain--topbar-mini .wallmaster {
  height: 2.8125rem;
}
@media (min-width: 960px) {
  .snake-mountain--topbar-mini .wallmaster {
    height: 5.75rem;
  }
}
.snake-mountain--topbar-mini .topbar {
  display: block;
  visibility: visible;
  height: 45px;
}
.snake-mountain--topbar-mini .topbar > .container {
  height: 45px;
}
.snake-mountain--topbar-mini .subbar {
  top: 0;
}
@media (min-width: 960px) {
  .snake-mountain--topbar-mini .subbar {
    top: 2.875rem;
  }
}

.flex-columns {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.categories-columns {
  width: 100%;
  margin: 1%;
}
@media (min-width: 500px) {
  .categories-columns {
    width: 49%;
    margin: 1% 2% 1% 0rem;
  }
  .categories-columns:nth-child(2n+0) {
    margin-right: 0;
  }
}
@media (min-width: 700px) {
  .categories-columns {
    width: 32%;
    margin: 1% 2% 1% 0rem;
  }
  .categories-columns:nth-child(2n+0) {
    margin-right: 2%;
  }
  .categories-columns:nth-child(3n+0) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .categories-columns {
    width: 24%;
    margin: 1% 1.3% 1% 0rem;
  }
  .categories-columns:nth-child(3n+0), .categories-columns:nth-child(2n+0) {
    margin-right: 1.3%;
  }
  .categories-columns:nth-child(4n+0) {
    margin-right: 0;
  }
}

.hero-content {
  margin-top: auto;
}

.hero-content .sub-headline {
  color: #ffffff;
}

.article-post .blockquote {
  border-left: solid 0.375rem #fdb913;
  margin-top: 0;
  padding: 0 0.625rem 0 1.25rem;
}

.article-post .sidebar__block .slash-heading--alt .slash-heading__title {
  color: #505050;
}

.article__block-image {
  width: 100%;
  display: block;
  padding: 1.875rem 0;
}

.article__block-image-alt {
  width: 100%;
  display: block;
  padding: 1.875rem 0 0;
}

.article-video {
  padding-right: 5%;
  margin-bottom: 1.25rem;
}
.article-video figure {
  margin: 0px;
}

.article-image__center {
  margin: 0 auto;
  margin-bottom: 1.25rem;
}
.article-image__center figure {
  margin: 0px;
}
.article-image__center img {
  margin: 0 auto;
}

.article-headline {
  font-family: "Square Serif", sans-serif;
  color: #505050;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.625rem 0;
}
@media (min-width: 700px) {
  .article-headline {
    font-size: 1.875rem;
  }
}
@media (min-width: 960px) {
  .article-headline {
    font-size: 2.5rem;
  }
}

.article-date {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  margin-bottom: 1.875rem;
  color: #505050;
}
@media (min-width: 700px) {
  .article-date {
    font-size: 1.25rem;
  }
}

.categoryType {
  position: absolute;
  left: 0px;
  bottom: 0;
  padding: 0.3125rem 0.9375rem;
  color: #505050;
  background-color: #d6d6d6;
  font-weight: bold;
}
.categoryType p {
  margin-bottom: 0;
}

.share-this {
  background-color: #f1f1f0;
  margin-bottom: 0.625rem;
  position: relative;
}
.share-this p {
  font-size: 0.875rem;
  padding: 1.25rem 1.875rem 2.5rem 1.875rem;
  margin-bottom: 0.9375rem;
}
.share-this a.twitterShare {
  text-align: right;
  position: absolute;
  right: 1.875rem;
  bottom: 1.25rem;
  text-decoration: underline;
}
.share-this a.twitterShare:hover {
  text-decoration: none;
}
.share-this a.twitterShare i.fs.fs-twitter-alt {
  padding-left: 0.3125rem;
}

.image-block {
  padding-right: 5%;
}
.image-block .blockquote {
  margin-top: 0.9375rem;
}

.featuredstory a.featuredstory__link {
  color: #505050;
}
.featuredstory a.featuredstory__link:hover {
  color: #e65400;
}

a.related-topics {
  color: #505050;
  padding: 0.625rem;
  border: 2px solid #fdb913;
  font-weight: bold;
  margin: 0 0.3125rem 0.625rem 0;
  display: inline-block;
  font-size: 0.875rem;
}
a.related-topics:hover {
  color: #fdb913;
}

.cta--secondary-alt-trypticon .cta__title {
  color: #505050;
}

.article__block .grid-column.grid-column-3.grid-column--margins {
  margin-right: 0px;
}
.article__block .grid-column-3 .grid {
  display: none;
}
.article__block .grid-column-3 .grid:first-child {
  display: block;
}
@media (min-width: 700px) {
  .article__block .grid-column-3 .grid {
    display: block;
  }
}

.featuredarticle {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #505050;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  flex-direction: row; /* Chrome, Safari, Opera */
  page-break-inside: avoid; /* Firefox */
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.featuredarticle a.featuredarticle__link {
  color: #505050;
}
.featuredarticle a.featuredarticle__link:hover {
  color: #e65400;
}

.small-link-arrow {
  display: inline-block;
  position: relative;
  color: #505050;
  font-weight: bold;
  padding-right: 1.25rem;
  text-decoration: none;
  line-height: initial;
}
.small-link-arrow:after {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -0.5625rem;
  font-family: "skeletor";
  font-size: 1.125rem;
  content: "\e939";
  color: #fdb913;
  text-decoration: none;
}
.small-link-arrow:hover {
  text-decoration: underline;
}

.newspaper-columns--link-list a.small-link-arrow:after {
  text-decoration: none;
}

.current-search-phrase {
  position: relative;
  padding: 2.8125rem 2.625rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  background-color: #f1f1f0;
  border: solid 1px #d6d6d6;
  color: #505050;
}

.current-search-phrase:after {
  font-family: "FSiconakron";
  content: "\e901";
  position: absolute;
  right: 2.625rem;
  top: 50%;
  margin-top: -0.375rem;
  font-size: 0.75rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.current-search-phrase:hover:after,
.current-search-phrase:focus:after {
  opacity: 0.5;
}

.search-result {
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
  border-bottom: solid 1px #d6d6d6;
}

.search-result + .previous-next {
  border-top: none;
  padding-top: 0;
}

.search-results {
  background-color: #f1f1f0;
  padding-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .search-results {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 960px) {
  .search-results {
    padding-bottom: 3.75rem;
  }
}

.search-articles .flex-columns {
  padding-top: 1.875rem;
}

.search-articles .flex-columns {
  padding-top: 1.875rem;
}

.no-results {
  padding-top: 3.75rem;
}
.no-results .flex-columns {
  padding-top: 0rem;
}

.bling__form {
  margin-top: 1.5625rem;
  position: relative;
  width: 100%;
}
@media (min-width: 960px) {
  .bling__form {
    width: 50%;
  }
}

.bling__input {
  width: 100%;
  margin: 0;
  padding: 0.6875rem 0.875rem;
  padding-right: 2.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  border: none;
  color: #505050;
}

.bling__button {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  apperance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.bling__button i {
  font-size: 1.125rem;
  color: #505050;
}

/* Change the white to any color ;) */
.bling__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 2.5rem white inset;
}

#theBling .bcs-query-rewrite a,
#theBling .bcs-result a {
  display: block;
  padding-bottom: 0.625rem;
  color: #e65400;
  font-size: 1.5rem;
  text-decoration: underline;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
}
#theBling .bcs-query-rewrite a:hover,
#theBling .bcs-result a:hover {
  color: #505050;
}
#theBling cite {
  display: none;
}
#theBling .bcs-caption-image {
  display: none;
}
@media (min-width: 960px) {
  #theBling .bcs-caption-image {
    display: block;
  }
}
#theBling .bcs-query-rewrite, #theBling .bcs-result {
  padding-left: 0;
}
#theBling .bcs-result {
  border-bottom: solid 1px #d6d6d6;
  margin-bottom: 1.25rem;
  padding-bottom: 1.875rem;
}
#theBling .bcs-pagination a {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #e65400;
  text-decoration: underline;
  background-color: #f1f1f0;
  border: solid 1px transparent;
}
#theBling .bcs-pagination a.bcs-current-page {
  background-color: transparent;
  border-color: #505050;
  color: #505050;
  text-decoration: none;
}
#theBling .no-hero {
  padding-bottom: 1.875rem;
}
@media (min-width: 960px) {
  #theBling .no-hero {
    padding-bottom: 3.75rem;
  }
}

.wrapper-12days .topbar {
  display: block !important;
}
.wrapper-12days .topbar .primary-nav__block:last-child {
  display: none;
}
@media (min-width: 960px) {
  .wrapper-12days .topbar .primary-nav__block:last-child {
    display: inline-block;
  }
}

.hero-12dog {
  height: 18.75rem;
  margin-top: 0.9375rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000000;
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
  position: relative;
}
.hero-12dog .sub-headline {
  color: #ffffff;
}
@media (min-width: 500px) {
  .hero-12dog {
    height: 25.9375rem;
  }
}
@media (min-width: 960px) {
  .hero-12dog {
    margin-top: 1.875rem;
  }
}

.hero-12dog .container {
  position: relative;
  overflow: hidden;
  height: inherit;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}

.headline-12dog {
  font-family: "Square Serif", sans-serif;
  font-size: 2.0625rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.125rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .headline-12dog {
    font-size: 2.875rem;
  }
}
@media (min-width: 960px) {
  .headline-12dog {
    font-size: 3.25rem;
  }
}

a.raffle {
  color: #ffffff;
  padding: 0.625rem 0.9375rem;
  border: 2px solid #fdb913;
  margin: 1.875rem auto 0rem;
  font-size: 1rem;
}
a.raffle:hover {
  color: #fdb913;
}

.giveaway {
  background-color: #000000;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}
.giveaway .grid-row.grid-row--margins {
  padding-bottom: 3.75rem;
}

.hero-giveaway {
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
}

.announcement {
  color: #ffffff;
  padding: 0 0 1.25rem 0;
}
.announcement p {
  color: #ffffff;
}

.featuredGift {
  position: relative;
  box-shadow: 0 0 0.5rem #d6d6d6;
}

.featuredgift__content {
  position: absolute;
  bottom: 3.125rem;
  padding: 0 1.875rem;
}

.dayTab {
  position: absolute;
  bottom: 0;
  left: 0;
}
.dayTab p {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.125rem 0.6875rem;
  background-color: #fdb913;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}

.featuredgift__description {
  margin: 1.25rem 1.25rem 0 0;
}
.featuredgift__description p {
  color: #ffffff;
}

.social {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.social .social__copy {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: bold;
  margin: 0 0 1.25rem 0;
}
@media (min-width: 700px) {
  .social .social__copy {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}
.social a.facebookShare, .social a.twitterShare {
  font-size: 3.75rem;
  color: #fdb913;
  margin-right: 1.5625rem;
}
.social a.facebookShare .fs, .social a.twitterShare .fs {
  vertical-align: top;
  font-size: 3.75rem;
}

.entryform {
  margin: 0 0 2.5rem 0;
}
.entryform .rules a {
  text-decoration: underline;
  color: #ffffff;
}

.gifts {
  background-color: #000000;
}

.gifts-days {
  width: 100%;
  background-color: #000000;
  border: 1px solid #454545;
}
.gifts-days:hover .overlay-rollover {
  opacity: 0.2;
}
.gifts-days:hover p.gifts-days__discription {
  display: block;
}
.gifts-days:hover .gifts-days__header-alt {
  color: #ffffff;
}
@media (min-width: 500px) {
  .gifts-days {
    width: 50%;
  }
}
@media (min-width: 700px) {
  .gifts-days {
    width: 33.33%;
  }
}
@media (min-width: 960px) {
  .gifts-days {
    width: 25%;
  }
}

.gifts-days__block {
  position: relative;
}

.gifts-days__imageoverlay {
  opacity: 0.2;
}

.gifts-days__winner {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 25%;
  width: 12.5rem;
  text-align: center;
}
.gifts-days__winner .header__tertiary {
  color: #ffffff;
  font-weight: 500;
}
.gifts-days__winner p {
  line-height: 1.25rem;
}

img.gift-icon {
  margin: 0 auto;
  padding-bottom: 0.9375rem;
}

.dayCopy {
  padding-bottom: 1.875rem;
}
.dayCopy p {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.125rem 0.6875rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}

.gifts-days__headline {
  font-size: 1.125rem;
  font-weight: bold;
  color: #ffffff;
  width: 100%;
}
@media (min-width: 500px) {
  .gifts-days__headline {
    font-size: 1.25rem;
  }
}

.gifts-days__header {
  font-size: 1.125rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0.625rem;
  width: 100%;
}
@media (min-width: 500px) {
  .gifts-days__header {
    font-size: 1.25rem;
  }
}

img.gift-image {
  border: none;
}

.gifts-days__content {
  position: absolute;
  bottom: 0;
  padding: 0 0.9375rem 1.5625rem;
}
@media (min-width: 700px) {
  .gifts-days__content {
    padding: 0 0.625rem 1.5625rem;
  }
}
@media (min-width: 960px) {
  .gifts-days__content {
    padding: 0 0.9375rem 1.5625rem;
  }
}

.gifts-days__header-alt {
  font-size: 1.125rem;
  font-weight: 300;
  color: #505050;
  margin-bottom: 0.625rem;
  width: 100%;
}
@media (min-width: 960px) {
  .gifts-days__header-alt {
    font-size: 1.25rem;
  }
}

p.gifts-days__discription {
  line-height: 1.125rem;
  color: #ffffff;
  font-size: 0.875rem;
  display: none;
  margin-bottom: 0.75rem;
}
@media (min-width: 700px) {
  p.gifts-days__discription {
    line-height: 1rem;
  }
}
@media (min-width: 960px) {
  p.gifts-days__discription {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.wrapper-12days .footer__links {
  margin-bottom: 0rem;
}
.wrapper-12days .footer__links .footer__link-item a {
  text-decoration: underline;
}

.faq-block {
  margin-bottom: 1.875rem;
  border-bottom: solid 1px #d6d6d6;
}
.faq-block:last-child {
  border-bottom: none;
}

p.footer__paragraph {
  color: #ffffff;
  margin: 1.25rem 0 0rem;
  font-size: 0.75rem;
}

ul.footer__links.official-rules {
  display: none;
}

#mmm_cookies .CookieDeclarationTableHeader {
  border-color: #d6d6d6;
}
#mmm_cookies .CookieDeclarationType {
  border-color: #d6d6d6;
}
#mmm_cookies colgroup {
  display: none;
  visibility: hidden;
}
#mmm_cookies table {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  table-layout: initial;
}
#mmm_cookies thead {
  display: none;
  color: #505050;
  font-size: 0.875rem;
}
@media (min-width: 960px) {
  #mmm_cookies thead {
    display: table-header-group;
  }
}
#mmm_cookies tr {
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
  padding: 0.4375rem;
  background-color: #f1f1f0;
  border: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  #mmm_cookies tr {
    display: table-row;
  }
}
#mmm_cookies td {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.4375rem;
  text-align: right;
  font-size: 0.8125rem;
  color: #505050;
  border-bottom: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  #mmm_cookies td {
    display: table-cell;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}
#mmm_cookies td:before {
  content: attr(data-label);
  color: #505050;
  font-size: 13px;
  font-weight: bold;
  margin-right: 0.875rem;
}
@media (min-width: 960px) {
  #mmm_cookies td:before {
    display: none;
  }
}
#mmm_cookies td:last-child {
  border-bottom: none;
}

#CybotCookiebotDialog {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3) !important;
}

#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: auto !important;
  margin: 0;
  margin-right: 0.625rem;
  padding: 0.875rem 1.5rem;
  background-color: #e65400;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: normal;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept:hover,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:hover {
  background-color: #505050;
  color: #ffffff;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept:first-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:first-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:first-child {
  background-color: #505050;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept:last-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:last-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:last-child {
  margin-right: 0;
}
#CybotCookiebotDialogBody #CybotCookiebotDialog a,
#CybotCookiebotDialogBody #CybotCookiebotDialog div,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentControls,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentTitle {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentTitle {
  color: #505050;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentText {
  margin-bottom: 0.3125rem;
  color: #505050;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper {
  width: 100%;
  margin-bottom: 0.5625rem;
  text-align: center;
}

#CybotCookiebotDialogPoweredbyCybot {
  display: none;
  visibility: hidden;
}

.subbar .whopper {
  margin-left: 0;
}

.request-info {
  margin-left: auto;
  background-color: #fdb913;
}
.request-info .btn--icon {
  padding: 0.875rem 1.25rem;
}
.request-info span {
  display: none;
}
.request-info i {
  color: #ffffff;
}
@media (min-width: 700px) {
  .request-info {
    margin-right: 0.3125rem;
    background-color: #ffffff;
    border: solid 3px #fdb913;
  }
  .request-info .btn--icon {
    padding: 0.3125rem 0.625rem;
    font-weight: normal;
    color: #505050;
  }
  .request-info span {
    display: inline-block;
  }
  .request-info i {
    display: none;
  }
}
@media (min-width: 960px) {
  .request-info {
    display: none;
  }
}

@media (min-width: 960px) {
  .subbar__search-field {
    width: 10.0625rem;
  }
}

.para-cta {
  padding-top: 0;
}
.para-cta p {
  padding-left: 10%;
  padding-right: 10%;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
.para-cta .divider {
  margin-right: auto;
  margin-left: auto;
}

.keep-exploring h3 {
  font-weight: 400;
  margin-top: -0.5rem;
}
.keep-exploring li {
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}
.keep-exploring a {
  font-size: 0.875rem;
  text-decoration: underline;
  color: #505050;
}
@media (min-width: 960px) {
  .keep-exploring {
    display: block;
  }
}

.article__block [class^=grid-] {
  display: none;
}
.article__block [class^=grid-]:first-child {
  display: block;
}
@media (min-width: 700px) {
  .article__block [class^=grid-] {
    display: block;
  }
}

.sidebar__block.form-embed {
  margin-bottom: 1.875rem;
}
.sidebar__block iframe {
  border: none;
}

.error-page .grids {
  margin: 3.75rem 0;
}
.error-page .h1 {
  margin-bottom: 1.25rem;
}
.error-page a:hover {
  color: #505050;
}

.grid--center-vertical {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
}

.skip-links__link {
  position: absolute;
  top: -31.25rem;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-links__link:focus, .skip-links__link:active {
  top: 0px;
  width: auto;
  height: auto;
  padding: 0.625rem;
  overflow: visible;
  background-color: #e65400;
  color: #ffffff;
}

.header p {
  font-size: 1rem;
}

.slash-heading {
  min-height: 2rem;
}
/*# sourceMappingURL=app.css.map */
