/* rgba(98, 95, 79, 0.16) !default; */
/* #3B392F !default; */
/*#797f85 !default;*/
/*#9ea6ad !default;*/
/* #8fc9ff , #EECA2A !default; */
/*#C5BF9E !default;*/
/* #EECA2A !default; */
/* #3B392F !default; */
/* #EECA2A !default; */
/* #3B392F !default; */
/* #e31b14 !default; */
/* #bd1711 !default; */
.hopper-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.hopper-bg .particles {
  pointer-events: none;
}
.hopper-bg .particles .particle {
  pointer-events: none;
  position: fixed;
  animation-name: hopper-particle;
  -webkit-box-shadow: 0px 0px 10px 0px #c8ffff, 0px 0px 5px 0px #c8ffff;
  box-shadow: 0px 0px 10px 0px #c8ffff, 0px 0px 5px 0px #c8ffff;
}

@keyframes hopper-particle {
  0%, 100% {
    transform: scale3d(0.75, 0.75, 1);
    filter: blur(1px);
  }
  11% {
    filter: blur(2px);
  }
  33% {
    filter: blur(1px);
  }
  50% {
    transform: scale3d(1.7, 1.7, 1);
    filter: blur(2px);
  }
  66% {
    filter: blur(4px);
  }
  77% {
    filter: blur(2px);
  }
}
/* Textures */
:root {
  /* Animations */
  --animate-duration: 350ms;
  --animate-delay: 150ms;
  --animate-fill-mode: both;
}

@keyframes bop-fade {
  0% {
    opacity: 0.75;
    background: #FFCC00;
  }
  50% {
    opacity: 0.33;
    background: #FF0000;
  }
  90% {
    opacity: 0.075;
    background: #000000;
  }
  100% {
    opacity: 0;
    background: #000000;
  }
}
@keyframes new-pip {
  0%, 100% {
    background: #FFF;
  }
  50% {
    background: rgba(255, 255, 255, 0.5);
  }
}
@keyframes new-pip-border {
  0%, 100% {
    border-color: #FFF;
  }
  50% {
    border-color: #625F4F;
  }
}
@keyframes zl-slide {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}
@keyframes pulse {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.05);
  }
}
@keyframes pulse-big {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.3);
  }
}
@keyframes fade {
  0%, 100% {
    opacity: 0.08;
  }
  10%, 45%, 67% {
    opacity: 0.05;
  }
  33%, 55%, 80% {
    opacity: 0.06;
  }
}
.jiggle-slow, .jiggle, .jiggle-fast {
  transition: all 0.3s ease;
}

.jiggle-slow:hover {
  animation: jiggle 2s infinite;
}

.jiggle:hover {
  animation: jiggle 0.5s infinite;
}

.jiggle-fast:hover {
  animation: jiggle 0.2s infinite;
}

@keyframes jiggle {
  0%, 100% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
}
/* transition animations */
/* Animation Utility Classes */
@media (min-width: 0) {
  .animated {
    animation-duration: var(--animate-duration);
    animation-fill-mode: var(--animate-fill-mode);
  }
  .animated.delayed {
    animation-delay: var(--animate-delay);
  }
}
/* Animated Classes */
@media (min-width: 0) {
  .fadeOutBlur {
    animation-name: fadeOutBlur;
  }

  .fadeInBlur {
    animation-name: fadeInBlur;
  }

  .fadeInBlurLeft {
    animation-name: fadeInBlurLeft;
  }

  .fadeOutHide {
    animation-name: fadeOutHide;
  }

  .fadeInShow {
    animation-name: fadeInShow;
  }

  .slideOutUp {
    animation-name: slideOutUp;
  }

  .slideInDown {
    animation-name: slideInDown;
  }

  .slideInLeft {
    animation-name: slideInLeft;
  }

  .slideInRight {
    animation-name: slideInRight;
  }

  .slideOutLeft {
    animation-name: slideOutLeft;
  }

  .slideOutRight {
    animation-name: slideOutRight;
  }

  .fadeInSlide {
    animation-name: fadeInSlide;
  }

  .fadeOutSlide {
    animation-name: fadeOutSlide;
  }
}
/* Partial Animations */
@keyframes fadeOutBlur {
  0% {
    opacity: 1;
    filter: none;
    pointer-events: initial;
  }
  100% {
    opacity: 0;
    filter: blur(50px) brightness(3) saturate(175%);
    pointer-events: none;
  }
}
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(50px) brightness(3) saturate(175%);
    pointer-events: none;
  }
  100% {
    opacity: 1;
    filter: none;
    pointer-events: initial;
  }
}
@keyframes fadeInBlurLeft {
  0% {
    opacity: 0;
    filter: blur(50px) brightness(3) saturate(175%);
    transform: translate3d(calc(var(--side-distance, 100%) * -1), 0, 0);
    pointer-events: none;
  }
  100% {
    opacity: 1;
    filter: none;
    pointer-events: initial;
  }
}
@keyframes slideOutUp {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    transform: translate3d(0, calc(var(--up-distance, 100%) * -1), 0);
  }
}
@keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(0, calc(var(--up-distance, 100%) * -1), 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutHide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeInShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}
@keyframes fadeInSlide {
  0% {
    transform: translate3d(var(--side-distance, 100%), 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeOutSlide {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--side-distance, 100%), 0, 0);
    opacity: 0;
  }
}
/* Reduced Animations - Partial Animations */
@media (prefers-reduced-motion) {
  @keyframes fadeOutBlur {
    100% {
      opacity: 0;
      filter: blur(50px) brightness(3) saturate(175%);
      pointer-events: none;
    }
  }
  @keyframes fadeInBlur {
    100% {
      opacity: 1;
      filter: none;
      pointer-events: initial;
    }
  }
  @keyframes slideOutUp {
    100% {
      visibility: hidden;
    }
  }
  @keyframes slideInDown {
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeOutHide {
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  @keyframes fadeInShow {
    100% {
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes slideInLeft {
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes slideInRight {
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes slideOutLeft {
    0% {
      transform: translate3d(-100%, 0, 0);
    }
    100% {
      transform: translate3d(-100%, 0, 0);
      visibility: hidden;
    }
  }
  @keyframes slideOutRight {
    0% {
      transform: translate3d(100%, 0, 0);
    }
    100% {
      transform: translate3d(100%, 0, 0);
      visibility: hidden;
    }
  }
}
/* New Lightbox */
.paper .notch {
  display: none;
}

@media (min-width: 0) {
  html[lang=es] .accessibility-item-mobile {
    padding: 0 0 !important;
  }

  html[lang=es] .accessibility-settings-mobile-options {
    padding: 10px 0 10px 0 !important;
  }

  body {
    overflow-x: hidden;
  }
  body.min {
    margin-top: 0;
  }

  .row-catch, .universal-nav-top, .universal-nav-bottom {
    transition: filter 0.5s ease, -webkit-filter 0.5s ease;
  }

  .blur {
    overflow: hidden;
  }
  .blur body {
    overflow: hidden;
    position: fixed;
  }
  .ice-text, .heading, .title, .section-header h3, .news-categories-container h3, .feature-box h2, .top-text h2, h1 {
    /* animation: ice-color 7s linear infinite, ice-opacity 5s linear infinite; */
    /* a &:hover, &:hover a { animation: initial; } */
  }

  .zos-lightbox {
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2500000;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  .zos-lightbox .zl-background {
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2550000;
    background-image: url("https://esosslcss-a.akamaihd.net//einstein/images/ice-rev.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }
  .zos-lightbox .zl-background-extra {
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2560000;
    background: url("https://esosslcss-a.akamaihd.net//einstein/images/ice-over.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
  }
  .zos-lightbox .zl-background-scroll {
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2565000;
  }
  .zos-lightbox .zl-background-final {
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2570000;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.25+0,0.25+50,0.75+100 */
    background: -moz-linear-gradient(top, rgba(61, 54, 47, 0.25) 0%, rgba(61, 54, 47, 0.25) 50%, rgba(61, 54, 47, 0.75) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(61, 54, 47, 0.25) 0%, rgba(61, 54, 47, 0.25) 50%, rgba(61, 54, 47, 0.75) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(61, 54, 47, 0.25) 0%, rgba(61, 54, 47, 0.25) 50%, rgba(61, 54, 47, 0.75) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#40ffffff", endColorstr="#bfffffff",GradientType=0 );
    /* IE6-9 */
  }
  @supports (-ms-accelerator: true) {
    .zos-lightbox .zl-background-final {
      opacity: 0.95 !important;
      background: #fff;
    }
  }
  .zos-lightbox .zl-video-bg {
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2545000;
  }
  .zos-lightbox .zl-video-bg video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 0) and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .zos-lightbox .zl-video-bg video {
    display: block;
  }
}
@media (min-width: 0) {
  .zos-lightbox .zl-close {
    position: fixed;
    top: 9px;
    right: 10px;
    z-index: 3000000;
    font-size: 20px;
    color: #FFF;
    line-height: 1;
    cursor: pointer;
  }
  .zos-lightbox .zl-close:hover {
    color: #a0a2a7;
  }
}
@media (min-width: 0) {
  .zos-lightbox .zl-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2700000;
    border-top: solid 2px #a0a2a7;
    background-image: url(https://esosslcss-a.akamaihd.net/einstein/images/grunge.png);
    background-attachment: fixed;
    background-size: auto;
    background-color: #151511;
    text-align: center;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    text-transform: uppercase;
    line-height: 20px;
    padding: 10px 30px 10px 30px;
    -webkit-box-shadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.75);
  }
  .zos-lightbox .zl-menu span {
    display: inline-block;
    font-size: 12px;
    color: #a0a2a7;
    padding: 0px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .zos-lightbox .zl-menu span:hover {
    color: #FFF;
  }
  .zos-lightbox .zl-menu span.focus {
    color: #FFF;
    cursor: initial;
  }
}
@media (min-width: 0) {
  .zos-lightbox .zl-body {
    opacity: 0;
    position: fixed;
    bottom: 50px;
    left: calc(15px + 2%);
    width: calc(100vw - (100vw - 100%) - (30px + 4%));
    height: 100vh;
    text-align: center;
    z-index: 2600000;
    color: #000;
  }
  .zos-lightbox .zl-body p {
    line-height: 1.3;
  }
  .zos-lightbox .zl-body iframe {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  }
  .zos-lightbox .zl-body iframe.external {
    background: #000;
    border: 2px solid #000;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  }
  .zos-lightbox .zl-body .zl-img {
    display: inline-block;
    width: 100%;
    border: 2px solid #000;
    object-fit: contain;
    background: rgba(128, 128, 128, 0.8);
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  }
}
@media (min-width: 0) {
  .zos-lightbox .zl-text {
    position: fixed;
    bottom: 50px;
    left: calc(15px + 2%);
    width: calc(100vw - (100vw - 100%) - (30px + 4%));
    text-align: center;
    z-index: 2600000;
    color: #FFF;
    text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
  }
  .zos-lightbox .zl-text .zl-text-inner {
    display: inline-block;
  }
}
@media (min-width: 0) {
  .zos-lightbox .zl-next {
    right: 0;
    text-align: right;
    padding-right: 2px;
  }
}
@media (min-width: 0) {
  .zos-lightbox .zl-prev {
    left: 0;
    text-align: left;
    padding-left: 2px;
  }
}
@media (min-width: 0) {
  .zos-lightbox .zl-next, .zos-lightbox .zl-prev {
    position: fixed;
    cursor: pointer;
    width: calc(10px + 2%);
    z-index: 2690000;
  }
}
@media (min-width: 0) {
  .ape-scroll-auto {
    overflow-y: auto;
  }
}
@media (min-width: 0) {
  .link-block a[href]::after, .link-block button::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media (min-width: 350px) {
  .zos-lightbox .zl-menu span {
    font-size: 18px;
  }
}
@media (min-width: 450px) {
  html[lang=es] .accessibility-item-mobile {
    padding: 0 10px !important;
  }

  html[lang=es] .accessibility-settings-mobile-options {
    padding: 10px !important;
  }
}
@media (min-width: 768px) {
  .zos-lightbox .zl-close {
    top: 10px;
    right: 13px;
    font-size: 40px;
  }
  .zos-lightbox .zl-menu {
    line-height: 30px;
  }
  .zos-lightbox .zl-menu span {
    font-size: 24px;
    padding: 0px 17px;
  }
  .zos-lightbox .zl-next {
    padding-right: 5px;
  }
  .zos-lightbox .zl-prev {
    padding-left: 5px;
  }
  .zos-lightbox .zl-next, .zos-lightbox .zl-prev {
    font-size: 20px;
  }
  .zos-lightbox .zl-next:hover, .zos-lightbox .zl-prev:hover {
    color: #a0a2a7;
  }
  .zos-lightbox .zl-next:hover .fa:hover, .zos-lightbox .zl-prev:hover .fa:hover {
    color: #FFF;
  }
  .zos-lightbox .zl-next:hover.zl-next, .zos-lightbox .zl-prev:hover.zl-next {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.2+99 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#4d000000",GradientType=1 );
    /* IE6-9 */
  }
  .zos-lightbox .zl-next:hover.zl-prev, .zos-lightbox .zl-prev:hover.zl-prev {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+1,0+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4d000000", endColorstr="#00000000",GradientType=1 );
    /* IE6-9 */
  }
}
@media (min-width: 1025px) {
  .zos-lightbox .zl-text h3 {
    font-size: 32px;
  }
  .zos-lightbox .zl-next, .zos-lightbox .zl-prev {
    font-size: 30px;
  }
}
/* End New Lightbox */
@media (min-width: 0) {
  :focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
  }

  .outline-contrast:focus-visible {
    outline: red auto 1px;
  }

  html {
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  body {
    opacity: 1;
    background: transparent;
    margin-top: 32px;
  }

  .height-wrap.blur {
    opacity: 0;
    filter: blur(50px) brightness(3) saturate(175%);
    pointer-events: none;
  }

  .d-none {
    display: none;
  }

  .invisible {
    visibility: hidden;
  }

  .visible {
    visibility: visible;
  }

  ::-moz-selection {
    background: #FFF;
    color: #151511;
    text-shadow: initial;
  }

  ::selection {
    background: #FFF;
    color: #151511;
    text-shadow: initial;
  }

  textarea, input, button {
    outline: none;
  }

  /* New Cookie Warning and Notice Warning
  -------------------------------------------*/
  .cookie-warning, .notice-warning {
    display: none;
    position: fixed;
    z-index: 999999;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 800px;
    max-width: 100%;
    padding: 15px 50px 15px 15px;
    background: #1e6675;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    text-align: center;
    border-left: 1px solid #0e3138;
    border-top: 1px solid #0e3138;
  }
  .cookie-warning p, .notice-warning p {
    margin: 0;
  }
  .cookie-warning .cb, .cookie-warning .notice, .notice-warning .cb, .notice-warning .notice {
    border: 1px solid #FFF;
    padding: 5px;
    margin: 5px 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.25);
    text-align: center;
  }
  .cookie-warning .cb:hover, .cookie-warning .notice:hover, .notice-warning .cb:hover, .notice-warning .notice:hover {
    background: rgba(255, 255, 255, 0.33);
  }
  .cookie-warning .deny, .notice-warning .deny {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    width: 29px;
    height: 29px;
    padding: 0;
    border: 0;
    background: none;
  }
  .cookie-warning .deny:hover, .notice-warning .deny:hover {
    background: none;
  }

  /* Not Translated Warning
   -------------------------------------------*/
  .not-translated-warning {
    z-index: 9999;
    border: 2px solid black;
    padding: 20px;
    position: fixed;
    background-color: indianred;
    bottom: 0;
    right: 0;
    margin: 0 20px 20px 20px;
    opacity: 0;
    max-width: 85%;
  }
  .not-translated-warning .close {
    cursor: pointer;
    position: absolute;
    top: -13px;
    right: -10px;
    padding: 20px;
  }

  /* Cookie Warning
  -------------------------------------------*/
  /*
  .cookie-warning {
    display: none; position: fixed; z-index: 999999; bottom: 0; right: 0; margin: 0; width: 500px; max-width: 100%; padding: 15px 50px 15px 15px; background: #1e6675; font-size: 16px; box-shadow: 0 0 20px rgba(0,0,0,.8);
    border-left: 1px solid darken(#1e6675, 15%); border-top: 1px solid darken(#1e6675, 15%);

    p { margin: 0;}

    .cookie-btn { position: absolute; right: 15px; top: 15px; cursor: pointer; }
  }
  */
  /* Base Bootstrap Overrides */
  .form-control, .input-group-addon {
    border: 2px solid #000;
    border-radius: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    color: #a0a2a7;
    transition: all 0.3s ease;
    height: 48px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  label {
    font-size: 13px;
    line-height: 1.7;
    text-transform: uppercase;
    color: #c9c8c9;
  }

  .label {
    text-transform: uppercase;
    color: #64b193;
    padding: 0.2em 0.2em 0.3em;
  }

  a.label:hover {
    color: #fff;
  }

  .strike {
    text-decoration: line-through;
    color: #c9c8c9;
  }
  .strike.eso-plus-loyalty {
    color: #3b745e !important;
  }

  .bright {
    color: #FFF;
  }

  .eso-plus-loyalty {
    color: #64b193 !important;
  }
  .eso-plus-loyalty .strike {
    color: #cccccc !important;
  }

  .crown-details {
    font-size: 24px;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    display: inline-block;
    width: 50%;
  }

  img.crown-details {
    width: 25px;
    border: 0;
  }

  .text-info {
    position: relative;
    color: #64b193;
  }

  .crown-flag {
    position: absolute;
    top: -60px;
    left: 15px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    background: rgba(28, 179, 18, 0.8);
    color: rgba(255, 255, 255, 0.84);
    padding: 0 15px;
    font-size: 12px;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  }
  .crown-flag .time-left {
    display: none;
  }
  .crown-flag.lto {
    color: #1cb50d;
    background: rgba(23, 27, 22, 0.8);
    border: 1px solid #000;
  }
  .crown-flag.lto .time-left {
    display: inline-block;
  }
  .crown-flag.new {
    background: rgba(13, 156, 230, 0.8);
  }

  .un-third-level .crown-flag {
    top: initial !important;
    bottom: 20px;
    height: 30px !important;
    line-height: 30px !important;
    padding: 0 5px !important;
    left: 20px !important;
    z-index: 1;
  }

  .un-third-level .eso-plus-label {
    top: initial !important;
    bottom: 20px;
    height: 30px !important;
    line-height: 30px !important;
    padding: 0 1px !important;
    right: 20px !important;
    z-index: 1;
  }

  .crown-title {
    color: #64b193;
    font-size: 14px;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: initial;
  }
  .crown-title:hover {
    color: #FFF;
  }

  .eso-plus-label {
    position: absolute;
    top: -60px;
    right: 0px;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    color: #FFF;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    padding: 0 6px 0 6px;
    font-size: 20px;
    text-transform: uppercase;
    text-align: right;
    background: rgba(23, 27, 22, 0.8);
    border: 1px solid #000;
    right: 15px;
  }
  .eso-plus-label img {
    position: relative;
    top: -2px;
    width: 25px !important;
    border: 0 !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
  }
  .eso-plus-label .epd-label {
    display: none;
  }
  .eso-plus-label:hover, .eso-plus-label.open {
    padding: 0 15px 0 10px !important;
  }
  .eso-plus-label:hover .epd-label, .eso-plus-label.open .epd-label {
    display: inline !important;
  }

  .chalice-icon {
    width: 25px;
    position: relative;
    top: -2px;
  }

  input:not([type=checkbox]):not([type=radio]), select, textarea, .btn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.7;
    padding: 0 20px;
    margin: 10px 0 10px 0;
  }

  select, textarea, .btn {
    text-transform: uppercase;
  }

  input:not([type=checkbox]):not([type=radio]), select, .btn, .dropdown-menu li a {
    height: 48px;
    line-height: 30px;
    padding: 0 15px;
  }

  input:hover, select:hover, textarea:hover, .btn-group:hover, .btn-group:hover > *, .input-group:hover, .input-group:hover > *, .input-group:hover .input-group-btn > *, .dropdown-menu li:hover a {
    color: #FFF;
    border-color: #FFF !important;
  }

  a:hover, a:focus, a:active {
    text-decoration: none;
    color: #FFF;
  }

  .btn {
    text-align: center;
    transition: all 0.3s ease;
    height: 70px;
    line-height: 68px;
    border: solid 2px #c9c8c9;
    font-size: 12px;
  }
  .btn .fa {
    transition: all 0.3s ease;
  }

  .btn-icon {
    padding-left: 30px !important;
  }
  .btn-icon .icon {
    position: relative;
    left: -10px;
    border: 0 !important;
    width: initial !important;
    -webkit-box-shadow: initial !important;
    -moz-box-shadow: initial !important;
    box-shadow: initial !important;
  }

  .btn-icon-rev {
    padding-right: 30px !important;
  }
  .btn-icon-rev .icon {
    position: relative;
    right: -10px;
    border: 0 !important;
    width: initial !important;
    -webkit-box-shadow: initial !important;
    -moz-box-shadow: initial !important;
    box-shadow: initial !important;
  }

  .btn-grade {
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    color: #fff;
    border: 0;
    background: #881A04;
    line-height: 70px;
  }
  .btn-grade:hover, .btn-grade:active, .btn-grade:focus {
    color: #FFF;
    background: #AA2106;
  }

  .btn-arrow {
    padding-right: 40px;
    padding-left: 40px;
    position: relative;
  }
  .btn-arrow i {
    position: absolute;
    right: 20px;
    top: 24px;
    font-size: 20px;
  }

  .btn-arrow-backward {
    padding-right: 40px;
    padding-left: 40px;
    position: relative;
  }
  .btn-arrow-backward i {
    position: absolute;
    left: 20px;
    top: 24px;
    font-size: 20px;
  }

  .btn-arrow.btn-arrow-backward {
    padding-right: 40px;
    padding-left: 40px;
    position: relative;
  }
  .btn-arrow.btn-arrow-backward i:first-child {
    left: 20px;
    right: initial;
  }
  .btn-arrow.btn-arrow-backward i:last-child {
    right: 20px;
    left: initial;
  }

  .btn-minimal {
    color: #C5BF9E;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    height: auto;
    line-height: 29px;
    padding: 0 8px;
    font-size: 18px;
    background: #151511;
    text-shadow: initial;
    margin: 0 5px 20px 5px;
    border-width: 1px;
    vertical-align: middle;
    position: relative;
  }
  .btn-minimal:hover {
    color: #000;
    border-color: #FFF !important;
    background: #FFF;
  }

  .btn-cta {
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    background: #009933;
    border: none;
    color: #FFF;
    font-size: 24px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    width: 100%;
  }
  .btn-cta:hover {
    background: #00B33C;
  }

  .btn-serif {
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  }

  .btn-lrg {
    font-size: 30px;
  }

  /* Refined Buttons */
  .button-base {
    --mw: 0px;
    transition: initial !important;
    transition: color 0.3s ease, border-color 0.3s ease !important;
    display: inline-block;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    text-transform: uppercase;
    background: #151511;
    color: #a0a2a7;
  }
  .button-base * {
    transition: initial !important;
    transition: color 0.3s ease, border-color 0.3s ease !important;
  }

  /* New Buttons Asset Styles */

  /* End New Buttons Asset Styles */

  /* Base Styles */

  /*** Typography ***/
}
@media (min-width: 0) and (min-width: 0px) {
  .button-base {
    height: 33px;
    --h: 33px;
    --pad: 15px;
    --offset: -3px;
  }
}
@media (min-width: 0) and (min-width: 480px) {
  .button-base {
    height: 40px;
    --h: 40px;
    --pad: 15px;
    --offset: -4px;
  }
}
@media (min-width: 0) and (min-width: 768px) {
  .button-base {
    height: 40px;
    --h: 40px;
    --pad: 15px;
    --offset: -4px;
  }
}
@media (min-width: 0) and (min-width: 992px) {
  .button-base {
    height: 45px;
    --h: 45px;
    --pad: 15px;
    --offset: -5px;
  }
}
@media (min-width: 0) and (min-width: 1200px) {
  .button-base {
    height: 50px;
    --h: 50px;
    --pad: 15px;
    --offset: -8px;
  }
}
@media (min-width: 0) and (min-width: 2400px) {
  .button-base {
    height: 80px;
    --h: 80px;
    --pad: 15px;
    --offset: -14px;
  }
}
@media (min-width: 0) and (orientation: portrait) {
  .carousel-wrapper .square .button-base {
    height: 9vw;
    --h: 9vw;
    --pad: 4.5vw;
    --offset: -1.2vw;
    --mw: 25vw;
  }
}
@media (min-width: 0) and (orientation: landscape) {
  .carousel-wrapper .square .button-base {
    height: 5vh;
    --h: 5vh;
    --pad: 2.5vh;
    --offset: -0.7vh;
    --mw: 15vh;
  }
}
@media (min-width: 0) {
  .button-simple {
    padding: 2px;
    margin: 0 calc(var(--pad) / 4);
  }
  .button-simple .bs-wrap {
    min-width: var(--mw);
    padding: 0 var(--pad);
    color: #a0a2a7;
    display: block;
    border: 2px solid #a0a2a7;
    vertical-align: top;
    height: calc(var(--h) - 4px);
  }
  .button-simple .bs-wrap .bs-box {
    vertical-align: middle;
    height: calc(var(--h) - 4px);
    line-height: calc(var(--h) - 8px);
    font-size: calc((var(--h) - 4px) * 0.7);
  }
  .button-simple .bs-wrap:hover {
    color: #FFF;
    border-color: #FFF !important;
  }
}
@media (min-width: 0) {
  .button-goodall {
    margin: 0 calc(var(--pad) / 4);
    background: initial;
    position: relative;
    top: var(--offset);
    /* this is a huge hack */
  }
  .button-goodall .butg-wrap {
    display: block;
    height: var(--h);
  }
  .button-goodall .butg-wrap .bg-left, .button-goodall .butg-wrap .bg-right {
    display: inline-block;
    filter: initial !important;
    border: initial !important;
    box-shadow: initial !important;
    height: var(--h);
    width: auto !important;
    max-width: initial !important;
  }
  .button-goodall .butg-wrap .bg-on {
    display: none;
  }
  .button-goodall .butg-wrap .bg-middle {
    min-width: var(--mw);
    vertical-align: top;
    padding: 0 var(--pad);
    display: inline-block;
    height: var(--h);
    line-height: var(--h);
    font-size: calc(var(--h) * 0.7);
    color: #FFF;
    background: url("https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/shadow-blackwood-xl-button-middle.png");
    background-size: 100% 100%;
  }
  .button-goodall .butg-wrap:hover .bg-on {
    display: inline-block;
  }
  .button-goodall .butg-wrap:hover .bg-off {
    display: none;
  }
  .button-goodall .butg-wrap:hover .bg-middle {
    background: url("https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/shadow-blackwood-xl-button-middle%20hover.png");
    background-size: 100% 100%;
  }
}
@media (min-width: 0) {
  .button-hopper {
    margin: 0 calc(var(--pad) / 4);
    background: initial;
    position: relative;
    top: var(--offset);
    /* this is a huge hack */
  }
  .button-hopper .butg-wrap {
    display: block;
    height: var(--h);
  }
  .button-hopper .butg-wrap .bg-left, .button-hopper .butg-wrap .bg-right {
    display: inline-block;
    filter: initial !important;
    border: initial !important;
    box-shadow: initial !important;
    height: var(--h);
    width: auto !important;
    max-width: initial !important;
  }
  .button-hopper .butg-wrap .bg-on {
    display: none;
  }
  .button-hopper .butg-wrap .bg-middle {
    min-width: var(--mw);
    vertical-align: top;
    padding: 0 var(--pad);
    display: inline-block;
    height: var(--h);
    line-height: var(--h);
    font-size: calc(var(--h) * 0.7);
    color: #FFF;
    background: url("https://esossl-a.akamaihd.net/uploads/website/9cab1858e37b02ad83469a8ae0714978c7ec22d5/u34_web_button_middle.png");
    background-size: 100% 100%;
  }
  .button-hopper .butg-wrap:hover .bg-on {
    display: inline-block;
  }
  .button-hopper .butg-wrap:hover .bg-off {
    display: none;
  }
  .button-hopper .butg-wrap:hover .bg-middle {
    background: url("https://esossl-a.akamaihd.net/uploads/website/9cab1858e37b02ad83469a8ae0714978c7ec22d5/u34_web_button_hover_middle.png");
    background-size: 100% 100%;
  }
}
@media (min-width: 0) {
  .btn-style-base {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  }
  .btn-style-base .big {
    display: none;
  }
  .btn-style-base .icon-img-left, .btn-style-base .icon-img-right {
    max-height: 20px;
    border: none;
    -webkit-box-shadow: initial !important;
    -moz-box-shadow: initial !important;
    box-shadow: initial !important;
  }
  .btn-style-base .img-as-button {
    max-height: 50px;
    border: none;
    margin-bottom: 8px;
    -webkit-box-shadow: initial !important;
    -moz-box-shadow: initial !important;
    box-shadow: initial !important;
  }
}
@media (min-width: 0) {
  .btn-style-basic {
    position: relative;
  }
}
@media (min-width: 0) {
  .btn-style-basic-cta {
    position: relative;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-size: 30px !important;
  }
}
@media (min-width: 0) {
  .btn-style-enhanced-basic {
    height: 40px;
    line-height: 36px;
    margin: 20px 10px 5px 10px;
    border-radius: 3px;
    border-color: #a0a2a7 !important;
    font-size: 12px !important;
  }
  .btn-style-enhanced-basic.btn-arrow i, .btn-style-enhanced-basic.btn-arrow-backward i {
    top: 8px;
  }
  .btn-style-enhanced-basic .icon-img-left, .btn-style-enhanced-basic .icon-img-right {
    position: relative;
    top: -1px;
  }
  .btn-style-enhanced-basic .img-as-button {
    max-height: 30px;
    margin-bottom: 3px;
  }
}
@media (min-width: 0) {
  .btn-style-enhanced-cta {
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    margin: 20px 10px 5px 10px;
    height: 50px;
    line-height: 46px !important;
    font-size: 26px !important;
  }
  .btn-style-enhanced-cta.btn-arrow i, .btn-style-enhanced-cta.btn-arrow-backward i {
    top: 13px;
  }
  .btn-style-enhanced-cta .icon-img-left, .btn-style-enhanced-cta .icon-img-right {
    position: relative;
    top: -1px;
  }
  .btn-style-enhanced-cta .img-as-button {
    max-height: 40px;
    margin-bottom: 6px;
  }
}
@media (min-width: 0) {
  .btn-style-texty {
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    background: initial !important;
    border: initial !important;
    -webkit-box-shadow: initial !important;
    -moz-box-shadow: initial !important;
    box-shadow: initial !important;
    height: initial;
    line-height: initial;
    padding: 0 10px !important;
    margin: 0 5px;
  }
  .btn-style-texty.btn-arrow i, .btn-style-texty.btn-arrow-backward i {
    top: 0;
  }
  .btn-style-texty i:first-child {
    left: 0 !important;
  }
  .btn-style-texty i:last-child {
    right: 0 !important;
  }
  .btn-style-texty .icon-img-left, .btn-style-texty .icon-img-right {
    position: relative;
    top: -1px;
  }
  .btn-style-texty .img-as-button {
    max-height: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 0) {
  .btn-style-buy-now-top {
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    padding: 0 24px;
    height: auto;
    line-height: 29px;
    font-size: 18px !important;
    margin: 0 5px 20px 5px;
    border-width: 1px;
    vertical-align: middle;
    text-shadow: initial;
    position: relative;
  }
  .btn-style-buy-now-top .big {
    display: block !important;
    font-size: 30px !important;
    margin-bottom: 4px;
    position: relative;
  }
  .btn-style-buy-now-top.btn-arrow, .btn-style-buy-now-top.btn-arrow-backward {
    padding: 0 40px;
  }
  .btn-style-buy-now-top.btn-arrow i, .btn-style-buy-now-top.btn-arrow-backward i {
    top: 33px;
  }
  .btn-style-buy-now-top .icon-img-left, .btn-style-buy-now-top .icon-img-right {
    position: absolute;
    top: 35px;
    height: 16px;
  }
  .btn-style-buy-now-top .icon-img-left {
    left: 20px;
  }
  .btn-style-buy-now-top .icon-img-right {
    right: 20px;
  }
  .btn-style-buy-now-top .img-as-button {
    margin: 6px;
  }
}
@media (min-width: 0) {
  .btn-style-buy-now-sku {
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    margin: 0 5px 10px 5px;
    height: auto;
    line-height: 29px;
    padding: 0 8px;
    font-size: 18px !important;
    border-width: 1px;
    text-shadow: initial;
    vertical-align: middle;
    position: relative;
  }
  .btn-style-buy-now-sku.btn-arrow, .btn-style-buy-now-sku.btn-arrow-backward {
    padding: 0 40px !important;
  }
  .btn-style-buy-now-sku.btn-arrow i, .btn-style-buy-now-sku.btn-arrow-backward i {
    top: 4px;
  }
  .btn-style-buy-now-sku .icon-img-left, .btn-style-buy-now-sku .icon-img-right {
    position: relative;
    top: -2px;
  }
  .btn-style-buy-now-sku .img-as-button {
    max-height: 24px;
    margin: 3px;
  }
}
@media (min-width: 0) {
  .fb-bg1, .fb-bg2, .fb-bg3, .fb-bg4 {
    display: none;
  }
}
@media (min-width: 0) {
  .btn-style-frankenstein-cta {
    position: relative;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-size: 30px !important;
    overflow: hidden;
    border: none;
    padding: 0;
    height: 55px;
    margin-top: 25px;
  }
  .btn-style-frankenstein-cta .btn-inside {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    height: 55px;
    line-height: 55px;
  }
  .btn-style-frankenstein-cta .fb-bg1, .btn-style-frankenstein-cta .fb-bg2, .btn-style-frankenstein-cta .fb-bg3, .btn-style-frankenstein-cta .fb-bg4 {
    display: block;
    position: absolute;
    background-size: auto 55px;
    background-position: 0 0;
    height: 80px !important;
    width: 100%;
    max-width: initial;
    border: none;
  }
  .btn-style-frankenstein-cta .fb-bg1 {
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Z2DWsLN7xPRx4vo5xin2s48NXTJyJki0XLrhoLsLmW6mL90OwhTvlIkPuxwUA0GgojaeV7iQqunGyfaKBK6Qk4z2mI09x7P0bxYGFuni6qO14uJzUDOpXvLnFHu344l3GDZWw3apesJ0M83lzcjl1Kkekyh2pcIaJDNANZGdLb7mH5oPPrZpCMvDwXYLUr7B0iFGches/items/button-texture-6.png");
  }
  .btn-style-frankenstein-cta .fb-bg2 {
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Z2DWsLN7xPRx4vo5xin2s48NXTJyJki0XLrhoLsLmW6mL90OwhTvlIkPuxwUA0GgojaeV7iQqunGyfaKBK6Qk4z2mI09x7P0bxYGFuni6qO14uJzUDOpXvLnFHu344l3GDZWw3apesJ0M83lzcjl1Kkekyh2pcIaJDNANZGdLb7mH5oPPrZpCMvDwXYLUr7B0iFGches/items/button-texture-2.png");
  }
  .btn-style-frankenstein-cta .fb-bg3 {
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Z2DWsLN7xPRx4vo5xin2s48NXTJyJki0XLrhoLsLmW6mL90OwhTvlIkPuxwUA0GgojaeV7iQqunGyfaKBK6Qk4z2mI09x7P0bxYGFuni6qO14uJzUDOpXvLnFHu344l3GDZWw3apesJ0M83lzcjl1Kkekyh2pcIaJDNANZGdLb7mH5oPPrZpCMvDwXYLUr7B0iFGches/items/button-texture-3.png");
  }
  .btn-style-frankenstein-cta .fb-bg4 {
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Z2DWsLN7xPRx4vo5xin2s48NXTJyJki0XLrhoLsLmW6mL90OwhTvlIkPuxwUA0GgojaeV7iQqunGyfaKBK6Qk4z2mI09x7P0bxYGFuni6qO14uJzUDOpXvLnFHu344l3GDZWw3apesJ0M83lzcjl1Kkekyh2pcIaJDNANZGdLb7mH5oPPrZpCMvDwXYLUr7B0iFGches/items/button-texture-4.png");
  }
}
@media (min-width: 0) {
  .fb-left, .fb-right {
    display: none;
  }
}
@media (min-width: 0) {
  .btn-style-frankenstein-simple-cta {
    position: relative;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-size: 30px !important;
    border: none;
    padding: 0;
    height: 55px;
    margin: 17px 33px 0px 33px;
    background-color: rgba(0, 0, 0, 0) !important;
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Z2DWsLN7xPRx4vo5xin2s48NXTJyJki0XLrhoLsLmW6mL90OwhTvlIkPuxwUA0GgojaeV7iQqunGyfaKBK6Qk4z2mI09x7P0bxYGFuni6qO14uJzUDOpXvLnFHu344l3GDZWw3apesJ0M83lzcjl1Kkekyh2pcIaJDNANZGdLb7mH5oPPrZpCMvDwXYLUr7B0iFGches/scarp-button-middle.png") !important;
    background-size: 100% 100% !important;
    box-shadow: initial !important;
    -webkit-box-shadow: initial !important;
  }
  .btn-style-frankenstein-simple-cta .btn-inside {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    height: 55px;
    line-height: 55px;
  }
  .btn-style-frankenstein-simple-cta .fb-left, .btn-style-frankenstein-simple-cta .fb-right {
    display: block;
    position: absolute;
    height: 55px;
    width: 33px;
    background-size: 100% 100%;
  }
  .btn-style-frankenstein-simple-cta .fb-left {
    left: -33px;
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Z2DWsLN7xPRx4vo5xin2s48NXTJyJki0XLrhoLsLmW6mL90OwhTvlIkPuxwUA0GgojaeV7iQqunGyfaKBK6Qk4z2mI09x7P0bxYGFuni6qO14uJzUDOpXvLnFHu344l3GDZWw3apesJ0M83lzcjl1Kkekyh2pcIaJDNANZGdLb7mH5oPPrZpCMvDwXYLUr7B0iFGches/scarp-button-left.png");
  }
  .btn-style-frankenstein-simple-cta .fb-right {
    right: -33px;
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Z2DWsLN7xPRx4vo5xin2s48NXTJyJki0XLrhoLsLmW6mL90OwhTvlIkPuxwUA0GgojaeV7iQqunGyfaKBK6Qk4z2mI09x7P0bxYGFuni6qO14uJzUDOpXvLnFHu344l3GDZWw3apesJ0M83lzcjl1Kkekyh2pcIaJDNANZGdLb7mH5oPPrZpCMvDwXYLUr7B0iFGches/scarp-button-right.png");
  }
  .btn-style-frankenstein-simple-cta:hover {
    color: #a0a2a7 !important;
  }
}
@media (min-width: 0) {
  .btn-color-base {
    background: #030303;
    color: #a0a2a7;
  }
  .btn-color-base.active {
    color: #FFF;
    border-color: #FFF !important;
    background: #000;
  }
}
@media (min-width: 0) {
  .btn-color-cta {
    background: #881A04;
    border-color: #881A04 !important;
    color: #FFF;
  }
  .btn-color-cta.active {
    background: #881A04;
    border-color: #881A04 !important;
  }
}
@media (min-width: 0) {
  .btn-color-ps {
    background: #02308C;
    border-color: #000 !important;
    color: #FFF;
  }
}
@media (min-width: 0) {
  .btn-color-xbox {
    background: #007D00;
    border-color: #000 !important;
    color: #FFF;
  }
}
@media (min-width: 0) {
  .btn-color-pc {
    background: #625F4F;
    border-color: #000 !important;
    color: #FFF;
  }
}
@media (min-width: 0) {
  .btn-color-steam {
    background: #000;
    border-color: #000 !important;
    color: #FFF;
  }
}
@media (min-width: 0) {
  .btn-color-buy-now.active {
    color: #000;
    border-color: #FFF !important;
    background: #FFF;
  }
}
@media (min-width: 0) {
  .input-group {
    margin: 10px 0 30px 0;
  }
  .input-group input, .input-group select, .input-group .btn {
    margin: 0 !important;
  }
}
@media (min-width: 0) {
  p {
    margin: 15px 0;
  }
}
@media (min-width: 0) {
  .dropdown-menu {
    padding: 0;
  }
  .dropdown-menu .divider {
    margin: 0;
    padding: 10px;
    background: #000;
  }
  .dropdown-menu li {
    border: 1px solid #000;
    font-size: 16px;
    line-height: 1.7;
    text-transform: uppercase;
  }
  .dropdown-menu li a {
    border: 2px solid #090d0d;
    line-height: 60px;
  }
  .dropdown-menu li:not(.divider):hover a {
    color: #FFF;
  }
}
@media (min-width: 0) {
  .btn-group .btn:not(:first-child), .input-group *:not(:first-child) .btn {
    border-left: 0;
    margin-left: 0;
  }
}
@media (min-width: 0) {
  .btn-group .dropdown-menu {
    top: calc(100% - 22px);
  }
}
@media (min-width: 0) {
  .row-0 {
    min-height: 20px;
  }
}
@media (min-width: 0) {
  .overflow-hidden {
    overflow: hidden;
  }
}
@media (min-width: 0) {
  .selected, .selected * {
    color: #FFF;
    border-color: #FFF;
    background: #000;
  }
}
@media (min-width: 0) {
  h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 1.1;
  }
  h1 strong, h1 b, h2 strong, h2 b, h3 strong, h3 b, h4 strong, h4 b, h5 strong, h5 b, h6 strong, h6 b,
.h1 strong,
.h1 b, .h2 strong, .h2 b, .h3 strong, .h3 b, .h4 strong, .h4 b, .h5 strong, .h5 b, .h6 strong, .h6 b {
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
}
@media (min-width: 0) {
  h1 {
    color: #FFF;
    letter-spacing: 0.01em;
  }
}
@media (min-width: 0) {
  h3.title {
    color: #FFF;
  }
}
@media (min-width: 0) {
  hr {
    margin: 3px 0;
  }
  hr.short {
    margin: 0 100px 0 100px;
  }
  hr.medium {
    margin: 0 50px 0 50px;
  }
  hr.full {
    margin: auto;
  }
  hr.thick {
    border-width: 3px;
  }
  hr.thinner {
    border-width: 2px;
  }
  hr.thinnest {
    border-width: 1px;
  }
}
@media (min-width: 0) {
  .off {
    display: none;
  }
}
@media (min-width: 0) {
  .bottom-spacing {
    margin-bottom: 60px;
  }
}
@media (min-width: 0) {
  .clean-link {
    color: inherit;
  }
  .clean-link:hover, .clean-link:active, .clean-link:focus {
    text-decoration: inherit;
    color: inherit;
  }
}
@media (min-width: 0) {
  .hilight-image {
    position: relative;
  }
}
@media (min-width: 0) {
  .hilight-image::after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
    background-image: url("https://esosslcss-a.akamaihd.net/einstein/images/hilight-munge.png");
    background-size: 100% 100%;
    transition: all 0.3s ease;
  }
}
@media (min-width: 0) {
  .hilight-image:hover::after {
    animation: pulse 11s infinite, fade 7s infinite;
  }
}
@media (min-width: 0) {
  .particle {
    position: absolute;
    display: block;
  }
}
@media (min-width: 0) {
  .p-magic {
    height: 5px;
    width: 5px;
    border-radius: 2.5px;
    background: rgba(197, 191, 158, 0.3);
    opacity: 1;
    z-index: -1;
    -webkit-box-shadow: 0px 0px 10px 5px rgba(197, 191, 158, 0.1);
    -moz-box-shadow: 0px 0px 10px 5px rgba(197, 191, 158, 0.1);
    box-shadow: 0px 0px 10px 5px rgba(197, 191, 158, 0.1);
  }
}
@media (min-width: 0) {
  .icon {
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
    border: none;
    box-shadow: none !important;
    position: relative;
    top: -0.14em;
    transform: initial !important;
  }
}
@media (min-width: 0) {
  h1 .icon {
    height: 60px;
  }
}
@media (min-width: 0) {
  h2 .icon {
    height: 40px;
  }
}
@media (min-width: 0) {
  h3 .icon {
    height: 24px;
  }
}
@media (min-width: 0) {
  h4 .icon {
    height: 16px;
  }
}
@media (min-width: 0) {
  h5 .icon {
    height: 16px;
  }
}
@media (min-width: 0) {
  h6 .icon {
    height: 16px;
  }
}
@media (min-width: 0) {
  h1 {
    font-size: 40px;
  }
}
@media (min-width: 0) {
  .slide-half {
    position: relative;
    overflow: hidden;
  }
}
@media (min-width: 0) {
  .slide-element {
    position: relative;
  }
}
@media (min-width: 0) {
  .text-dark {
    color: #c9c8c9;
  }
}
@media (min-width: 0) {
  .text_block img {
    max-width: 100%;
  }
}
@media (min-width: 0) {
  .offline {
    color: red !important;
  }
  .offline img {
    border-color: red !important;
  }
}
@media (min-width: 0) {
  .super-p {
    font-size: 16px;
  }
}
@media (min-width: 0) {
  .header-bar {
    margin-top: 20px;
  }
}
@media (min-width: 0) {
  .section-header, .section-header-no-bg {
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    letter-spacing: 2px;
    border: 1px solid #000;
    background-image: url("https://esossldevcss-a.akamaihd.net/einstein/images/grunge.png");
    background-size: auto;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .section-header .title, .section-header-no-bg .title {
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 200;
  }
  .section-header .title a, .section-header-no-bg .title a {
    padding: 0 10px 0 0;
    font-size: 20px;
    position: absolute;
    right: 5px;
    letter-spacing: 1px;
    width: 100%;
    height: 100%;
    text-align: right;
    margin-top: -1px;
  }
}
@media (min-width: 0) {
  .section-header-no-bg {
    background: initial;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
}
@media (min-width: 0) {
  .row {
    position: relative;
  }
}
@media (min-width: 0) {
  .side-bar {
    position: relative;
    will-change: top, margin-top;
  }
  .side-bar hr {
    display: none;
  }
}
@media (min-width: 0) {
  .btn, input, select, textarea, .input-group, .pagination {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  }
  .btn .btn, .btn input, .btn select, .btn textarea, .btn .input-group, .btn .pagination, input .btn, input input, input select, input textarea, input .input-group, input .pagination, select .btn, select input, select select, select textarea, select .input-group, select .pagination, textarea .btn, textarea input, textarea select, textarea textarea, textarea .input-group, textarea .pagination, .input-group .btn, .input-group input, .input-group select, .input-group textarea, .input-group .input-group, .input-group .pagination, .pagination .btn, .pagination input, .pagination select, .pagination textarea, .pagination .input-group, .pagination .pagination {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
}
@media (min-width: 0) {
  .well, .second-level, .universal-nav-mobile-container {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  }
}
@media (min-width: 0) {
  .center {
    text-align: center;
  }
}
@media (min-width: 0) {
  .side-nav-box {
    color: #000;
    text-shadow: initial;
    font-size: 18px;
    position: fixed;
    right: 20px;
    z-index: 99999;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 50px;
    padding-bottom: 20px;
  }
  .side-nav-box .side-nav-wrap {
    float: right;
  }
  .side-nav-box .side-nav-top, .side-nav-box .side-nav-bottom {
    cursor: pointer;
    text-align: right;
    position: relative;
    right: 1px;
    display: block;
    height: 26px;
    margin: 0px 0px 5px 0px;
    line-height: 26px;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }
  .side-nav-box .side-nav-top.side-nav-bottom, .side-nav-box .side-nav-bottom.side-nav-bottom {
    top: -5px;
  }
  .side-nav-box .side-nav-item {
    position: relative;
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    z-index: 999999999;
    text-align: center;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .side-nav-box .side-nav-item span {
    display: none;
  }
  .side-nav-box .side-nav-item.is-new {
    background: #FFF;
    animation: new-pip 3s linear infinite;
  }
  .side-nav-box .side-nav-item.on {
    background: #a0a2a7;
    transition: all 0.3s ease;
    animation: initial;
  }
  .side-nav-box .side-nav-item:hover {
    background: #FFF;
    animation: initial;
  }
  .side-nav-box:hover .side-nav-top, .side-nav-box:hover .side-nav-bottom, .side-nav-box:focus-within .side-nav-top, .side-nav-box:focus-within .side-nav-bottom {
    color: #a0a2a7;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15), 1px -1px 0 rgba(0, 0, 0, 0.15), -1px 1px 0 rgba(0, 0, 0, 0.15), -1px -1px 0 rgba(0, 0, 0, 0.15), 1px 0px 0 rgba(0, 0, 0, 0.15), 0px 1px 0 rgba(0, 0, 0, 0.15), -1px 0px 0 rgba(0, 0, 0, 0.15), 0px -1px 0 rgba(0, 0, 0, 0.15), 0px 0px 5px rgba(0, 0, 0, 0.75);
  }
  .side-nav-box:hover .side-nav-top:hover, .side-nav-box:hover .side-nav-top:focus-within, .side-nav-box:hover .side-nav-bottom:hover, .side-nav-box:hover .side-nav-bottom:focus-within, .side-nav-box:focus-within .side-nav-top:hover, .side-nav-box:focus-within .side-nav-top:focus-within, .side-nav-box:focus-within .side-nav-bottom:hover, .side-nav-box:focus-within .side-nav-bottom:focus-within {
    color: #FFF;
  }
  .side-nav-box:hover .side-nav-item, .side-nav-box:focus-within .side-nav-item {
    width: auto;
    height: 31px;
    line-height: 29px;
    padding: 0 15px;
    border-radius: 1px;
    border: solid 1px #c9c8c9;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    text-transform: uppercase;
    background: #030303;
    color: #a0a2a7;
  }
  .side-nav-box:hover .side-nav-item span, .side-nav-box:focus-within .side-nav-item span {
    display: inline;
  }
  .side-nav-box:hover .side-nav-item.is-new, .side-nav-box:focus-within .side-nav-item.is-new {
    background: #030303;
    animation: new-pip-border 3s linear infinite;
  }
  .side-nav-box:hover .side-nav-item.on, .side-nav-box:focus-within .side-nav-item.on {
    background: #a0a2a7;
    border: 1px solid #a0a2a7;
    color: #030303;
    animation: initial;
  }
  .side-nav-box:hover .side-nav-item:hover, .side-nav-box:focus-within .side-nav-item:hover {
    background: #FFF;
    border: 1px solid #FFF;
    color: #030303;
    animation: initial;
  }
}
@media (min-width: 0) {
  .blog-collapse-switch {
    position: relative;
    border: 1px solid #a0a2a7;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: #a0a2a7 !important;
    cursor: pointer;
  }
  .blog-collapse-switch:hover {
    color: #FFF !important;
  }
  .blog-collapse-switch .fa-plus, .blog-collapse-switch .fa-minus {
    transition: opacity 0.3s ease;
    position: absolute;
    right: 0;
  }
  .blog-collapse-switch .fa-minus {
    opacity: 0;
  }
  .blog-collapse-switch.picked .fa-plus {
    opacity: 0;
  }
  .blog-collapse-switch.picked .fa-minus {
    opacity: 1;
  }
}
@media (min-width: 0) {
  .blog-collapse-box {
    display: none;
    background-color: rgba(21, 21, 17, 0.5);
    border: 1px solid #000;
    border-top: 0;
    padding: 15px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 0) {
  .text_block, .html-block, .line-o-images, .header_bar, .tier-1-editorial {
    overflow: hidden;
  }
}
@media (min-width: 0) {
  #blog-body {
    margin: 0 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    background-image: url("https://esossldevcss-a.akamaihd.net/einstein/images/grunge.png");
    background-size: auto;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  #blog-body .text_block, #blog-body .html-block, #blog-body .line-o-images, #blog-body .header_bar, #blog-body .tier-1-editorial {
    overflow: initial;
  }
  #blog-body .row {
    display: block;
  }
  #blog-body .row:before, #blog-body .row:after {
    display: initial !important;
    content: initial !important;
  }
}
@media (min-width: 0) {
  .carousel-sequencer-container {
    overflow: hidden;
    position: relative;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container {
    width: 30000px;
    text-align: left;
    position: relative;
    left: 0;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item {
    margin: 45px 0 45px 0;
    display: block;
    float: left;
    padding: 12px 24px 12px 0;
    vertical-align: top;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item a {
    overflow: hidden;
    cursor: pointer;
    transition: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item a.empty-href {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item a:hover {
    transform: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item a img {
    cursor: pointer;
    transform: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item a img:hover {
    transform: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item a:hover {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    transform: none !important;
    box-shadow: none;
    pointer-events: none;
    cursor: grab;
    text-decoration: none;
    color: #a0a2a7;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item a img {
    cursor: grab;
    border: 2px solid black;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    transform: none;
    box-shadow: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item a img:hover {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    transform: none;
    box-shadow: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item a .carousel-sequencer-item-info-container .carousel-sequencer-item-type, .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item a .carousel-sequencer-item-info-container .carousel-sequencer-item-date, .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.inactive-item a .carousel-sequencer-item-info-container .carousel-sequencer-item-title {
    color: #999999;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item .carousel-sequencer-item-image {
    cursor: pointer;
    border-top: 2px solid #a0a2a7;
    border-bottom: 2px solid #a0a2a7;
    border-left: none;
    border-right: none;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item .carousel-sequencer-item-image:hover {
    border-top: 2px solid #a0a2a7;
    border-bottom: 2px solid #a0a2a7;
    border-left: none;
    border-right: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item .carousel-selected-img {
    cursor: pointer;
    width: 50px;
    box-shadow: none;
    position: absolute;
    border: none;
    z-index: 999;
    transition: all 0.5s ease;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive .carousel-images {
    position: relative;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive .carousel-sequencer-item-image {
    border-top: 2px solid #a0a2a7;
    border-bottom: 2px solid #a0a2a7;
    border-left: none;
    border-right: none;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive .carousel-sequencer-item-image:hover {
    border-top: 2px solid #a0a2a7;
    border-bottom: 2px solid #a0a2a7;
    border-left: none;
    border-right: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive a {
    pointer-events: none;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    text-decoration: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive a:hover {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    transform: none !important;
    box-shadow: none;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #a0a2a7;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive a img {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    border: 2px solid black;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    transform: none;
    box-shadow: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive a img.carousel-selected-img {
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    border: none;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    box-shadow: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item.selected-item.inactive a img:hover {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    box-shadow: none;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item .carousel-sequencer-item-info-container {
    margin: 12px 0 0 0;
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item .carousel-sequencer-item-info-container .carousel-sequencer-item-type {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item .carousel-sequencer-item-info-container .carousel-sequencer-item-date {
    color: #64b193;
    margin: -3px 0 2px 0;
    font-size: 12px;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item .carousel-sequencer-item-info-container .carousel-sequencer-item-title {
    color: #a0a2a7;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    font-size: 24px;
    line-height: 1.2;
  }
  .carousel-sequencer-container .carousel-sequencer-control {
    position: absolute;
    top: 100px;
    font-size: 35px;
    color: #ffffff;
  }
  .carousel-sequencer-container .carousel-sequencer-control .fa {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.75), 1px 1px 1px rgba(0, 0, 0, 0.5);
  }
  .carousel-sequencer-container .carousel-sequencer-control:hover {
    cursor: pointer;
    color: #FFF;
  }
  .carousel-sequencer-container .carousel-sequencer-control:active {
    box-shadow: none;
  }
  .carousel-sequencer-container .carousel-sequencer-control:active .fa {
    color: #FFF;
  }
  .carousel-sequencer-container .carousel-sequencer-control .inactive-control {
    background: #D4D4D4;
    color: #7F7F7F;
    box-shadow: none;
  }
  .carousel-sequencer-container .carousel-sequencer-previous {
    left: 10px;
  }
  .carousel-sequencer-container .carousel-sequencer-next {
    right: 10px;
  }
}
@media (min-width: 0) {
  .sr-only-table-row {
    opacity: 0;
    line-height: 0;
    font-size: 0;
  }
}
@media (min-width: 0) {
  .font-weight-normal {
    font-weight: normal;
  }
}
@media (min-width: 370px) {
  .btn {
    font-size: 16px;
  }

  .btn-lrg {
    font-size: 30px;
  }

  .crown-flag .time-left {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 60px;
  }

  .super-p {
    font-size: 20px;
  }

  .crown-flag {
    font-size: 15px;
  }

  .carousel-sequencer-container {
    overflow: inherit;
  }
  .carousel-sequencer-container .carousel-sequencer-items-container .carousel-sequencer-item a img {
    transform: none;
  }

  .btn:hover, .btn:focus-visible {
    color: #FFF;
    border-color: #FFF !important;
  }

  .btn-color-base:hover {
    color: #FFF;
    border-color: #FFF !important;
    background: #000;
  }

  .btn-color-cta:hover {
    background: #AA2106;
    border-color: #AA2106 !important;
  }

  .btn-color-ps:hover {
    background: #000;
    border-color: #02308C !important;
  }

  .btn-color-xbox:hover {
    background: #000;
    border-color: #007D00 !important;
  }

  .btn-color-pc:hover {
    background: #000;
    border-color: #625F4F !important;
  }

  .btn-color-steam:hover {
    background: #000;
    border-color: #FFF !important;
  }

  .btn-color-buy-now:hover {
    color: #000;
    border-color: #FFF !important;
    background: #FFF;
  }
}
@media (min-width: 992px) {
  .side-bar {
    background-color: inherit;
  }
  .side-bar hr {
    display: block;
    color: #636362;
  }
  .side-bar .crown-flag {
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  body {
    margin-top: 105px;
  }

  #blog-body {
    padding-top: 0px;
  }

  .un-third-level .crown-flag {
    left: 20px !important;
  }
}
@media (min-width: 1200px) {
  body {
    margin-top: 121px;
  }

  .un-third-level .crown-flag {
    left: 30px !important;
  }
}
@media (min-width: 0) {
  .masonry-2, .masonry-3, .masonry-4 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .masonry-2, .masonry-3, .masonry-4 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (min-width: 1025px) {
  .masonry-3, .masonry-4 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (min-width: 1200px) {
  .masonry-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}
@media (min-width: 0) {
  /* Base HTML Styles */
  html {
    background: #090d0d;
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/eso-bg-texture-3.png");
    background-size: auto;
    background-attachment: fixed;
    text-shadow: 0px 0px 1px black, 0px 1px 1px black, 0px 1px 10px black;
  }

  .html-wrap {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/eso-bg-texture-4.png");
    background-size: auto;
    background-attachment: fixed;
    z-index: -1;
  }

  .body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 99999999999;
  }
  .body-overlay .bo-particle {
    pointer-events: none;
    position: fixed;
    margin-top: -3px;
    margin-left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 25px 2px #e0861b;
    box-shadow: 0px 0px 25px 2px #e0861b;
    animation: bop-fade 1s normal forwards ease-in-out;
    animation-iteration-count: 1;
  }

  a, .link-block {
    cursor: pointer;
    transition: color 0.3s ease;
    color: #64b193;
    transition: color 0.3s ease;
  }
  a img, .link-block img {
    border: 2px solid #000;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  a:hover, .link-block:hover {
    color: #FFF;
  }
  a:hover img:not(.video-icon):not(.icon-overlay), .link-block:hover img:not(.video-icon):not(.icon-overlay) {
    border-color: #FFF;
    -webkit-filter: saturate(150%);
    filter: saturate(150%);
  }

  .feature-box {
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .feature-box .feature-content-box {
    padding: 10vw 0;
    min-height: 150vw;
  }
  .feature-box .feature-content-box.no-padding {
    padding: 0;
  }
  .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0.9) 20%, black 50%, rgba(0, 0, 0, 0.9) 80%, rgba(0, 0, 0, 0.75) 90%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0.9) 20%, black 50%, rgba(0, 0, 0, 0.9) 80%, rgba(0, 0, 0, 0.75) 90%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .feature-box .feature-image-wrap .feature-image-box img {
    width: 100%;
  }
  .feature-box .feature-image-wrap .feature-image-box video {
    width: 100%;
  }
  .feature-box .feature-image-wrap .kuula {
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: -100px;
    background: #000;
    opacity: 0.5;
    z-index: -1;
  }
  .feature-box _:-ms-lang(x), .feature-box .feature-image-wrap {
    bottom: 0;
  }
  .feature-box _:-ms-lang(x), .feature-box .feature-image-box {
    height: 100%;
    background-size: cover;
    background-position-x: center;
  }
  .feature-box _:-ms-lang(x), .feature-box .feature-image-box img {
    display: none;
  }
  .feature-box .feature-content-box .feature-box, .feature-box .feature-content-box .header-box, .feature-box .feature-content-box .is-pa, .feature-box .feature-content-box .video-box, .feature-box .feature-content-box .image-box {
    background: initial !important;
    background-image: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: initial;
  }
  .feature-box .feature-content-box .feature-content-box, .feature-box .feature-content-box .header-content-box, .feature-box .feature-content-box .is-pa {
    padding: 0 !important;
    margin: 0 !important;
  }
  .feature-box .feature-content-box .feature-image-wrap, .feature-box .feature-content-box .header-image-wrap {
    display: none;
  }

  .feature-parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .feature-parallax .poster {
    position: absolute;
    left: 0;
    right: 0;
  }
  .feature-parallax .poster .output {
    width: 100%;
    height: auto;
  }
  .feature-parallax .poster img {
    width: 100%;
  }
  .feature-parallax .poster.top {
    top: 0;
  }
  .feature-parallax .poster.bottom {
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .feature-box .feature-content-box {
    min-height: initial;
  }
}
@media (min-width: 1023px) {
  .feature-box .feature-content-box {
    padding: 6vw 0;
  }
}
@media (min-width: 1600px) {
  .feature-box .feature-content-box {
    padding: 3vw 0;
  }
}
/* Carousel Half/Tall */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: url("https://esosslfiles-a.akamaihd.net/cms/2018/02/51902ab959dd1b6b2ee0c6f8dafcfb5b.png");
}
.carousel-wrapper .prev, .carousel-wrapper .next, .carousel-wrapper .pips, .carousel-wrapper .nav, .carousel-wrapper .nav-wrapper {
  position: absolute;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.carousel-wrapper .prev, .carousel-wrapper .next, .carousel-wrapper .pip {
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
  color: #FFF;
}
.carousel-wrapper .prev, .carousel-wrapper .next {
  opacity: 0.8;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15), 1px -1px 0 rgba(0, 0, 0, 0.15), -1px 1px 0 rgba(0, 0, 0, 0.15), -1px -1px 0 rgba(0, 0, 0, 0.15), 1px 0px 0 rgba(0, 0, 0, 0.15), 0px 1px 0 rgba(0, 0, 0, 0.15), -1px 0px 0 rgba(0, 0, 0, 0.15), 0px -1px 0 rgba(0, 0, 0, 0.15), 0px 0px 5px rgba(0, 0, 0, 0.75);
}
.carousel-wrapper:hover .prev:hover, .carousel-wrapper:hover .next:hover {
  opacity: 1;
}
.carousel-wrapper .pip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease;
  position: relative;
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25);
}
.carousel-wrapper .pip.current {
  background: #3a664d;
}
.carousel-wrapper .pip:hover {
  background: #FFF;
}
.carousel-wrapper .nav-wrapper {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.carousel-wrapper .carousel-frame {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  text-align: center;
  font-size: 0px;
  z-index: 8;
}
.carousel-wrapper .carousel-frame.incoming {
  display: block;
  z-index: 8;
}
.carousel-wrapper .carousel-frame.current, .carousel-wrapper .carousel-frame.transition {
  display: block;
  z-index: 9;
}
.carousel-wrapper .carousel-frame .bg-wrapper {
  position: absolute;
  width: 100%;
}
.carousel-wrapper .carousel-frame .bg {
  position: relative;
  left: 0;
  top: 0;
  max-width: initial;
  max-height: initial;
}
.carousel-wrapper .carousel-frame .carousel-content {
  position: relative;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15), 1px -1px 0 rgba(0, 0, 0, 0.15), -1px 1px 0 rgba(0, 0, 0, 0.15), -1px -1px 0 rgba(0, 0, 0, 0.15), 1px 0px 0 rgba(0, 0, 0, 0.15), 0px 1px 0 rgba(0, 0, 0, 0.15), -1px 0px 0 rgba(0, 0, 0, 0.15), 0px -1px 0 rgba(0, 0, 0, 0.15), 0px 0px 5px rgba(0, 0, 0, 0.75);
}
.carousel-wrapper .carousel-frame .carousel-content .square {
  display: block;
  position: relative;
  text-align: left;
}
.carousel-wrapper .carousel-frame .carousel-content .square .square-inner {
  width: 100%;
}
.carousel-wrapper .carousel-frame .carousel-content .square * {
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.carousel-wrapper .carousel-frame .carousel-content .square h1, .carousel-wrapper .carousel-frame .carousel-content .square h2, .carousel-wrapper .carousel-frame .carousel-content .square h3, .carousel-wrapper .carousel-frame .carousel-content .square h4, .carousel-wrapper .carousel-frame .carousel-content .square h5, .carousel-wrapper .carousel-frame .carousel-content .square h6 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-wrapper .carousel-frame .carousel-content .square img {
  max-width: initial;
  min-width: initial;
  width: 100%;
}
.carousel-wrapper .carousel-frame .carousel-content .square img.clean[src*=png] {
  border: initial;
  box-shadow: initial;
  filter: initial !important;
}
.carousel-wrapper .carousel-frame .carousel-content .square img.img-two {
  margin-bottom: 1vh;
  max-height: 25vh;
  object-fit: cover;
}
.carousel-wrapper .carousel-frame .carousel-content .square .video-icon {
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 17px);
  width: 50px;
  border: 0;
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
}
.carousel-wrapper .carousel-frame .carousel-content:not(.dark) a:not(.btn) {
  color: #c8ffff;
}
.carousel-wrapper .carousel-frame .carousel-content:not(.dark) a:not(.btn):hover, .carousel-wrapper .carousel-frame .carousel-content:not(.dark) a:not(.btn):hover * {
  color: #FFF !important;
}
.carousel-wrapper .carousel-frame .carousel-content:not(.btn).dark, .carousel-wrapper .carousel-frame .carousel-content:not(.btn).dark * {
  color: #000 !important;
  font-weight: bold;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1), 1px -1px 0 rgba(255, 255, 255, 0.1), -1px 1px 0 rgba(255, 255, 255, 0.1), -1px -1px 0 rgba(255, 255, 255, 0.1), 1px 0px 0 rgba(255, 255, 255, 0.1), 0px 1px 0 rgba(255, 255, 255, 0.1), -1px 0px 0 rgba(255, 255, 255, 0.1), 0px -1px 0 rgba(255, 255, 255, 0.1);
}
.carousel-wrapper .carousel-frame .carousel-content:not(.btn).dark a:hover, .carousel-wrapper .carousel-frame .carousel-content:not(.btn).dark a:hover *, .carousel-wrapper .carousel-frame .carousel-content:not(.btn).dark * a:hover, .carousel-wrapper .carousel-frame .carousel-content:not(.btn).dark * a:hover * {
  color: #333 !important;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2), 1px -1px 0 rgba(255, 255, 255, 0.2), -1px 1px 0 rgba(255, 255, 255, 0.2), -1px -1px 0 rgba(255, 255, 255, 0.2), 1px 0px 0 rgba(255, 255, 255, 0.2), 0px 1px 0 rgba(255, 255, 255, 0.2), -1px 0px 0 rgba(255, 255, 255, 0.2), 0px -1px 0 rgba(255, 255, 255, 0.2);
}

@media (orientation: portrait) {
  .carousel-wrapper {
    height: 170vw;
  }
  .carousel-wrapper .nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .carousel-wrapper .prev {
    font-size: 10vw;
    top: 77.5vw;
    left: 2vw;
  }
  .carousel-wrapper .next {
    font-size: 10vw;
    top: 77.5vw;
    right: 2vw;
  }
  .carousel-wrapper .pips {
    font-size: 0px;
    bottom: 10vw;
    right: 0;
    left: 0;
    text-align: center;
  }
  .carousel-wrapper .pip {
    height: 6vw;
    width: 6vw;
    border-radius: 3vw;
    margin: 0 1vw;
  }
  .carousel-wrapper .carousel-frame {
    height: 170vw;
  }
  .carousel-wrapper .carousel-frame .square {
    width: 72vw;
    height: 72vw;
    margin: 8vw 13vw 4vw 13vw;
  }
  .carousel-wrapper .carousel-frame .square.s2 {
    margin: 4vw 13vw 4vw 13vw;
  }
  .carousel-wrapper .carousel-frame .square .square-inner.m-center {
    text-align: center;
  }
  .carousel-wrapper .carousel-frame .square .square-inner.m-right {
    text-align: right;
  }
  .carousel-wrapper .carousel-frame .square .square-inner.m-middle {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .carousel-wrapper .carousel-frame .square .square-inner.m-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .carousel-wrapper .carousel-frame .square span, .carousel-wrapper .carousel-frame .square p, .carousel-wrapper .carousel-frame .square blockquote, .carousel-wrapper .carousel-frame .square pre, .carousel-wrapper .carousel-frame .square a, .carousel-wrapper .carousel-frame .square abbr, .carousel-wrapper .carousel-frame .square acronym, .carousel-wrapper .carousel-frame .square address, .carousel-wrapper .carousel-frame .square big, .carousel-wrapper .carousel-frame .square cite, .carousel-wrapper .carousel-frame .square code, .carousel-wrapper .carousel-frame .square del, .carousel-wrapper .carousel-frame .square dfn, .carousel-wrapper .carousel-frame .square em, .carousel-wrapper .carousel-frame .square ins, .carousel-wrapper .carousel-frame .square kbd, .carousel-wrapper .carousel-frame .square q, .carousel-wrapper .carousel-frame .square s, .carousel-wrapper .carousel-frame .square samp,
.carousel-wrapper .carousel-frame .square small, .carousel-wrapper .carousel-frame .square strike, .carousel-wrapper .carousel-frame .square strong, .carousel-wrapper .carousel-frame .square sub, .carousel-wrapper .carousel-frame .square sup, .carousel-wrapper .carousel-frame .square tt, .carousel-wrapper .carousel-frame .square var, .carousel-wrapper .carousel-frame .square b, .carousel-wrapper .carousel-frame .square u, .carousel-wrapper .carousel-frame .square i, .carousel-wrapper .carousel-frame .square center, .carousel-wrapper .carousel-frame .square dl, .carousel-wrapper .carousel-frame .square dt, .carousel-wrapper .carousel-frame .square dd, .carousel-wrapper .carousel-frame .square ol, .carousel-wrapper .carousel-frame .square ul, .carousel-wrapper .carousel-frame .square li, .carousel-wrapper .carousel-frame .square fieldset, .carousel-wrapper .carousel-frame .square form, .carousel-wrapper .carousel-frame .square label, .carousel-wrapper .carousel-frame .square legend, .carousel-wrapper .carousel-frame .square table, .carousel-wrapper .carousel-frame .square caption, .carousel-wrapper .carousel-frame .square tbody, .carousel-wrapper .carousel-frame .square tfoot, .carousel-wrapper .carousel-frame .square thead, .carousel-wrapper .carousel-frame .square tr, .carousel-wrapper .carousel-frame .square th, .carousel-wrapper .carousel-frame .square td, .carousel-wrapper .carousel-frame .square article, .carousel-wrapper .carousel-frame .square aside, .carousel-wrapper .carousel-frame .square details, .carousel-wrapper .carousel-frame .square figure, .carousel-wrapper .carousel-frame .square figcaption, .carousel-wrapper .carousel-frame .square footer, .carousel-wrapper .carousel-frame .square header, .carousel-wrapper .carousel-frame .square hgroup, .carousel-wrapper .carousel-frame .square menu, .carousel-wrapper .carousel-frame .square nav, .carousel-wrapper .carousel-frame .square output, .carousel-wrapper .carousel-frame .square section, .carousel-wrapper .carousel-frame .square summary, .carousel-wrapper .carousel-frame .square time, .carousel-wrapper .carousel-frame .square mark {
    font-size: 3.5vw;
  }
  .carousel-wrapper .carousel-frame .square h1 {
    font-size: 7vw;
  }
  .carousel-wrapper .carousel-frame .square h2 {
    font-size: 6.33vw;
  }
  .carousel-wrapper .carousel-frame .square h3 {
    font-size: 5.66vw;
  }
  .carousel-wrapper .carousel-frame .square h4 {
    font-size: 4.75vw;
  }
  .carousel-wrapper .carousel-frame .square h5 {
    font-size: 4vw;
  }
  .carousel-wrapper .carousel-frame .square h6 {
    font-size: 3.5vw;
  }
  .carousel-wrapper .carousel-frame .square.s-tall span, .carousel-wrapper .carousel-frame .square.s-tall p, .carousel-wrapper .carousel-frame .square.s-tall blockquote, .carousel-wrapper .carousel-frame .square.s-tall pre, .carousel-wrapper .carousel-frame .square.s-tall a, .carousel-wrapper .carousel-frame .square.s-tall abbr, .carousel-wrapper .carousel-frame .square.s-tall acronym, .carousel-wrapper .carousel-frame .square.s-tall address, .carousel-wrapper .carousel-frame .square.s-tall big, .carousel-wrapper .carousel-frame .square.s-tall cite, .carousel-wrapper .carousel-frame .square.s-tall code, .carousel-wrapper .carousel-frame .square.s-tall del, .carousel-wrapper .carousel-frame .square.s-tall dfn, .carousel-wrapper .carousel-frame .square.s-tall em, .carousel-wrapper .carousel-frame .square.s-tall ins, .carousel-wrapper .carousel-frame .square.s-tall kbd, .carousel-wrapper .carousel-frame .square.s-tall q, .carousel-wrapper .carousel-frame .square.s-tall s, .carousel-wrapper .carousel-frame .square.s-tall samp,
.carousel-wrapper .carousel-frame .square.s-tall small, .carousel-wrapper .carousel-frame .square.s-tall strike, .carousel-wrapper .carousel-frame .square.s-tall strong, .carousel-wrapper .carousel-frame .square.s-tall sub, .carousel-wrapper .carousel-frame .square.s-tall sup, .carousel-wrapper .carousel-frame .square.s-tall tt, .carousel-wrapper .carousel-frame .square.s-tall var, .carousel-wrapper .carousel-frame .square.s-tall b, .carousel-wrapper .carousel-frame .square.s-tall u, .carousel-wrapper .carousel-frame .square.s-tall i, .carousel-wrapper .carousel-frame .square.s-tall center, .carousel-wrapper .carousel-frame .square.s-tall dl, .carousel-wrapper .carousel-frame .square.s-tall dt, .carousel-wrapper .carousel-frame .square.s-tall dd, .carousel-wrapper .carousel-frame .square.s-tall ol, .carousel-wrapper .carousel-frame .square.s-tall ul, .carousel-wrapper .carousel-frame .square.s-tall li, .carousel-wrapper .carousel-frame .square.s-tall fieldset, .carousel-wrapper .carousel-frame .square.s-tall form, .carousel-wrapper .carousel-frame .square.s-tall label, .carousel-wrapper .carousel-frame .square.s-tall legend, .carousel-wrapper .carousel-frame .square.s-tall table, .carousel-wrapper .carousel-frame .square.s-tall caption, .carousel-wrapper .carousel-frame .square.s-tall tbody, .carousel-wrapper .carousel-frame .square.s-tall tfoot, .carousel-wrapper .carousel-frame .square.s-tall thead, .carousel-wrapper .carousel-frame .square.s-tall tr, .carousel-wrapper .carousel-frame .square.s-tall th, .carousel-wrapper .carousel-frame .square.s-tall td, .carousel-wrapper .carousel-frame .square.s-tall article, .carousel-wrapper .carousel-frame .square.s-tall aside, .carousel-wrapper .carousel-frame .square.s-tall details, .carousel-wrapper .carousel-frame .square.s-tall figure, .carousel-wrapper .carousel-frame .square.s-tall figcaption, .carousel-wrapper .carousel-frame .square.s-tall footer, .carousel-wrapper .carousel-frame .square.s-tall header, .carousel-wrapper .carousel-frame .square.s-tall hgroup, .carousel-wrapper .carousel-frame .square.s-tall menu, .carousel-wrapper .carousel-frame .square.s-tall nav, .carousel-wrapper .carousel-frame .square.s-tall output, .carousel-wrapper .carousel-frame .square.s-tall section, .carousel-wrapper .carousel-frame .square.s-tall summary, .carousel-wrapper .carousel-frame .square.s-tall time, .carousel-wrapper .carousel-frame .square.s-tall mark {
    font-size: 2.5vw;
  }
  .carousel-wrapper .carousel-frame .square.s-tall h1 {
    font-size: 6vw;
  }
  .carousel-wrapper .carousel-frame .square.s-tall h2 {
    font-size: 5.33vw;
  }
  .carousel-wrapper .carousel-frame .square.s-tall h3 {
    font-size: 4.66vw;
  }
  .carousel-wrapper .carousel-frame .square.s-tall h4 {
    font-size: 3.75vw;
  }
  .carousel-wrapper .carousel-frame .square.s-tall h5 {
    font-size: 3vw;
  }
  .carousel-wrapper .carousel-frame .square.s-tall h6 {
    font-size: 2.5vw;
  }
  .carousel-wrapper .carousel-frame .square .super-title {
    margin-bottom: 2vw;
  }
  .carousel-wrapper .carousel-frame .square p {
    margin: 0.8vw 0;
  }
  .carousel-wrapper.carousel-tall-wrapper {
    height: 100vh;
  }
  .carousel-wrapper.carousel-tall-wrapper .prev {
    font-size: 10vw;
    top: 45vw;
    left: 2vw;
  }
  .carousel-wrapper.carousel-tall-wrapper .next {
    font-size: 10vw;
    top: 45vw;
    right: 2vw;
  }
  .carousel-wrapper.carousel-tall-wrapper .carousel-frame {
    height: 100vh;
  }
  .carousel-wrapper.carousel-tall-wrapper .square {
    top: calc(50vh - 42vw);
  }
}
@media (orientation: landscape) {
  .carousel-wrapper {
    height: 50vh;
  }
  .carousel-wrapper .nav {
    position: relative;
    margin: 0 auto;
    width: 100vh;
    height: 50vh;
  }
  .carousel-wrapper .prev {
    font-size: 6vh;
    top: 22vh;
    left: -1vh;
  }
  .carousel-wrapper .next {
    font-size: 6vh;
    top: 22vh;
    right: -1vh;
  }
  .carousel-wrapper .pips {
    font-size: 10vh;
    bottom: 2vh;
    right: 0;
    left: 0;
    text-align: center;
  }
  .carousel-wrapper .pip {
    height: 2vh;
    width: 2vh;
    border-radius: 1vh;
    margin: 0 0.5vh;
  }
  .carousel-wrapper .carousel-frame {
    height: 50vh;
  }
  .carousel-wrapper .carousel-frame .carousel-half-content, .carousel-wrapper .carousel-frame .carousel-tall-content {
    margin: 0 auto;
    width: 100vh;
  }
  .carousel-wrapper .carousel-frame .square {
    width: 40vh;
    height: 40vh;
    margin: 5vh 2.5vh 5vh 7.5vh;
    float: left;
  }
  .carousel-wrapper .carousel-frame .square.s2 {
    margin: 5vh 7.5vh 5vh 2.5vh;
  }
  .carousel-wrapper .carousel-frame .square.swap {
    margin: 5vh 4vh 5vh 6vh;
    float: right;
  }
  .carousel-wrapper .carousel-frame .square.swap.s1 {
    margin: 5vh 7.5vh 5vh 2.5vh;
  }
  .carousel-wrapper .carousel-frame .square .square-inner.d-center {
    text-align: center;
  }
  .carousel-wrapper .carousel-frame .square .square-inner.d-right {
    text-align: right;
  }
  .carousel-wrapper .carousel-frame .square .square-inner.d-middle {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .carousel-wrapper .carousel-frame .square .square-inner.d-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .carousel-wrapper .carousel-frame .square span, .carousel-wrapper .carousel-frame .square p, .carousel-wrapper .carousel-frame .square blockquote, .carousel-wrapper .carousel-frame .square pre, .carousel-wrapper .carousel-frame .square a, .carousel-wrapper .carousel-frame .square abbr, .carousel-wrapper .carousel-frame .square acronym, .carousel-wrapper .carousel-frame .square address, .carousel-wrapper .carousel-frame .square big, .carousel-wrapper .carousel-frame .square cite, .carousel-wrapper .carousel-frame .square code, .carousel-wrapper .carousel-frame .square del, .carousel-wrapper .carousel-frame .square dfn, .carousel-wrapper .carousel-frame .square em, .carousel-wrapper .carousel-frame .square ins, .carousel-wrapper .carousel-frame .square kbd, .carousel-wrapper .carousel-frame .square q, .carousel-wrapper .carousel-frame .square s, .carousel-wrapper .carousel-frame .square samp,
.carousel-wrapper .carousel-frame .square small, .carousel-wrapper .carousel-frame .square strike, .carousel-wrapper .carousel-frame .square strong, .carousel-wrapper .carousel-frame .square sub, .carousel-wrapper .carousel-frame .square sup, .carousel-wrapper .carousel-frame .square tt, .carousel-wrapper .carousel-frame .square var, .carousel-wrapper .carousel-frame .square b, .carousel-wrapper .carousel-frame .square u, .carousel-wrapper .carousel-frame .square i, .carousel-wrapper .carousel-frame .square center, .carousel-wrapper .carousel-frame .square dl, .carousel-wrapper .carousel-frame .square dt, .carousel-wrapper .carousel-frame .square dd, .carousel-wrapper .carousel-frame .square ol, .carousel-wrapper .carousel-frame .square ul, .carousel-wrapper .carousel-frame .square li, .carousel-wrapper .carousel-frame .square fieldset, .carousel-wrapper .carousel-frame .square form, .carousel-wrapper .carousel-frame .square label, .carousel-wrapper .carousel-frame .square legend, .carousel-wrapper .carousel-frame .square table, .carousel-wrapper .carousel-frame .square caption, .carousel-wrapper .carousel-frame .square tbody, .carousel-wrapper .carousel-frame .square tfoot, .carousel-wrapper .carousel-frame .square thead, .carousel-wrapper .carousel-frame .square tr, .carousel-wrapper .carousel-frame .square th, .carousel-wrapper .carousel-frame .square td, .carousel-wrapper .carousel-frame .square article, .carousel-wrapper .carousel-frame .square aside, .carousel-wrapper .carousel-frame .square details, .carousel-wrapper .carousel-frame .square figure, .carousel-wrapper .carousel-frame .square figcaption, .carousel-wrapper .carousel-frame .square footer, .carousel-wrapper .carousel-frame .square header, .carousel-wrapper .carousel-frame .square hgroup, .carousel-wrapper .carousel-frame .square menu, .carousel-wrapper .carousel-frame .square nav, .carousel-wrapper .carousel-frame .square output, .carousel-wrapper .carousel-frame .square section, .carousel-wrapper .carousel-frame .square summary, .carousel-wrapper .carousel-frame .square time, .carousel-wrapper .carousel-frame .square mark {
    font-size: 2vh;
  }
  .carousel-wrapper .carousel-frame .square h1 {
    font-size: 4vh;
  }
  .carousel-wrapper .carousel-frame .square h2 {
    font-size: 3.66vh;
  }
  .carousel-wrapper .carousel-frame .square h3 {
    font-size: 3.33vh;
  }
  .carousel-wrapper .carousel-frame .square h4 {
    font-size: 3vh;
  }
  .carousel-wrapper .carousel-frame .square h5 {
    font-size: 2.5vh;
  }
  .carousel-wrapper .carousel-frame .square h6 {
    font-size: 2vh;
  }
  .carousel-wrapper .carousel-frame .square .super-title {
    text-align: center;
    width: 85vh !important;
    margin-bottom: 2vh;
  }
  .carousel-wrapper .carousel-frame .square p {
    margin: 1vh 0;
  }
  .carousel-wrapper.carousel-tall-wrapper {
    height: calc(100vh - 127px);
  }
  .carousel-wrapper.carousel-tall-wrapper .nav {
    height: calc(100vh - 127px);
  }
  .carousel-wrapper.carousel-tall-wrapper .prev {
    font-size: 6vh;
    top: calc(47vh - 63.5px);
    left: -1vh;
  }
  .carousel-wrapper.carousel-tall-wrapper .next {
    font-size: 6vh;
    top: calc(47vh - 63.5px);
    right: -1vh;
  }
  .carousel-wrapper.carousel-tall-wrapper .carousel-frame {
    height: calc(100vh - 127px);
  }
  .carousel-wrapper.carousel-tall-wrapper .carousel-frame .square {
    width: 80vh;
    height: calc(80vh - 127px);
    margin: 10vh;
  }
}
.universal-search-wrapper {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999999;
}
.universal-search-wrapper .universal-search-ice {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("./einstein/images/ice-rev.jpg");
  background-attachment: fixed;
  background-size: cover;
  opacity: 0.2;
  background-position: center;
  z-index: -1;
}
.universal-search-wrapper.open {
  display: block;
}
.universal-search-wrapper .universal-search-box {
  width: 100%;
  max-width: 600px;
  position: absolute;
  background-image: url("https://esosslcss-a.akamaihd.net/einstein/images/grunge.png");
  background-attachment: fixed;
  background-size: auto;
  border-bottom: 2px solid #000;
  background-color: #030303;
  padding-bottom: 15px;
  top: 0;
  left: 0;
  z-index: 9999999;
  height: 10000px;
}
.universal-search-wrapper .universal-search-box .search-btn-close {
  border: none;
  background: none;
  border: none;
  color: #b7b09d;
  font-size: 22px;
  padding: 25px 0 5px 25px;
  display: block;
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 99;
  background: none;
}
.universal-search-wrapper .universal-search-box .search-close {
  color: #a0a2a7;
  font-size: 22px;
  padding: 6px 0 5px 10px;
  display: block;
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 99;
}
.universal-search-wrapper .universal-search-box .search-close:hover {
  color: #FFF;
}
.universal-search-wrapper .universal-search-box .search-title {
  width: 100%;
  text-align: center;
  color: #a0a2a7;
  padding: 0 0 5px 5px;
  display: inline-block;
  line-height: 37px;
  font-family: "Einstein Futura PT Cond", serif;
  font-size: 24px;
}
.universal-search-wrapper .universal-search-box .search-box {
  width: calc(100% - 60px);
  margin: 10px 1.5% 0 1%;
}
.universal-search-wrapper .universal-search-box .search-btn {
  background-color: inherit;
  border: none;
  color: #a0a2a7;
  font-size: 24px;
  margin: 20px 2% 0 -24px;
}
.universal-search-wrapper .universal-search-box .search-btn:hover {
  color: #FFF;
}
.universal-search-wrapper .universal-search-box .search-autocomplete p {
  margin: 5px 0;
  color: #a0a2a7;
  text-transform: uppercase;
  padding: 0 20px;
}
.universal-search-wrapper .universal-search-box .search-autocomplete p:hover {
  color: #FFF;
  cursor: pointer;
}
.universal-search-wrapper .universal-search-box .search-autocomplete p:nth-of-type(1) {
  padding-top: 60px;
}

@media (min-width: 1025px) {
  .universal-search-wrapper .universal-search-box {
    top: initial;
    height: initial;
    max-width: 100%;
    padding: 60px 0;
  }
  .universal-search-wrapper .universal-search-box .search-btn {
    margin: 20px 2% 0 -11%;
  }
  .universal-search-wrapper .universal-search-box .search-autocomplete p {
    margin: 30px 2%;
    color: #a0a2a7;
    text-transform: uppercase;
    padding: 0;
  }
  .universal-search-wrapper .unibox__selectable:hover .unibox__content-container {
    background: #757575;
  }
}
.ss360-layer, #unibox-suggest-box {
  background: rgba(0, 0, 0, 0.9) !important;
  border: solid 2px #000;
  color: #FFF;
}
.ss360-layer p, #unibox-suggest-box p {
  margin: 0 !important;
}
.ss360-layer input, #unibox-suggest-box input {
  margin: 0 !important;
  height: 44px !important;
}
.ss360-layer .ss360-custom-search__searchbutton, #unibox-suggest-box .ss360-custom-search__searchbutton {
  background-color: #e31b14 !important;
  border-color: #e31b14 !important;
  color: #FFF !important;
}
.ss360-layer a img, #unibox-suggest-box a img {
  margin: 0 15px;
  width: calc(100% - 30px);
}
.ss360-layer .ss360-suggests__header, .ss360-layer .unibox__suggest-heading, #unibox-suggest-box .ss360-suggests__header, #unibox-suggest-box .unibox__suggest-heading {
  padding: 0;
  color: #FFF;
}
.ss360-layer .ss360-data-points, #unibox-suggest-box .ss360-data-points {
  display: none;
}
.ss360-layer .ss360-suggests__link, .ss360-layer .unibox__search-content, #unibox-suggest-box .ss360-suggests__link, #unibox-suggest-box .unibox__search-content {
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  text-transform: uppercase;
  color: #FFF;
}

@media (min-width: 0) {
  html.no-background, html.no-background body {
    background: transparent !important;
  }
  html.no-background .gatekeeper, html.no-background body .gatekeeper {
    background: #090d0d;
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/eso-bg-texture-3.png");
    background-size: auto;
    background-attachment: fixed;
    width: 400px;
    height: 400px;
    border: #877869 solid;
    top: calc(50vh - 200px);
  }
  html.no-background .gatekeeper .logo, html.no-background body .gatekeeper .logo {
    padding-top: 10px;
  }
  html.no-background .gatekeeper.denied, html.no-background body .gatekeeper.denied {
    height: 200px;
    width: 400px;
    top: calc(50vh - 100px);
  }

  .age_gate_denied_privacy_policy {
    text-align: center;
    margin-top: 7px;
    z-index: initial;
    color: #a0a2a7 !important;
  }
  .age_gate_denied_privacy_policy a i {
    padding-right: 7px;
  }

  .gatekeeper {
    margin: auto;
    position: relative;
    top: calc(50vh - 146px);
    /* Remove controls from Firefox */
    /* Re-applies the controls on :hover and :focus */
  }
  .gatekeeper .close-age-gate {
    cursor: pointer;
    margin-top: -20px;
  }
  .gatekeeper h4 {
    font-size: 41px;
    margin: 0;
    color: #a0a2a7;
    font-family: "Einstein Futura PT Cond", sans-serif;
    text-align: center;
  }
  .gatekeeper .logo {
    position: relative;
    text-align: center;
  }
  .gatekeeper .logo img {
    display: none;
  }
  .gatekeeper p {
    font-size: 16px;
    color: #CCC;
    text-align: center;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    margin: 0px 0px 18px 0px;
  }
  .gatekeeper form {
    text-align: center;
    margin-bottom: 30px;
  }
  .gatekeeper .gate-input-container {
    position: relative;
    display: inline-block;
  }
  .gatekeeper .gate-input-container .day.gate-error-message, .gatekeeper .gate-input-container .month.gate-error-message {
    max-width: 85px;
  }
  .gatekeeper .gate-input-container .year.gate-error-message {
    max-width: 100px;
  }
  .gatekeeper input {
    background: #282828;
    border: 2px solid black;
    color: white;
    text-shadow: 0 1px 1px black, 0 1px 1px black;
    height: 48px;
    line-height: 30px;
    padding: 0 15px;
    font-family: "Einstein Futura PT Cond", sans-serif;
    font-size: 30px !important;
    text-shadow: none;
    text-align: center;
  }
  .gatekeeper input::selection {
    background-color: #c9c8c9;
    color: #000;
  }
  .gatekeeper input::-moz-selection {
    background-color: #c9c8c9;
    color: #000;
  }
  .gatekeeper input.gate-error {
    border: 2px solid red;
  }
  .gatekeeper input.gate-error:focus {
    border: 2px solid red;
  }
  .gatekeeper ::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
  }
  .gatekeeper :-ms-input-placeholder {
    color: #999;
    opacity: 1;
  }
  .gatekeeper ::-moz-placeholder {
    color: #999;
    opacity: 1;
  }
  .gatekeeper :-moz-placeholder {
    /* Chrome */
    color: #999;
    opacity: 1;
  }
  .gatekeeper input[type=number] {
    -moz-appearance: textfield;
  }
  .gatekeeper input[type=number]:hover,
.gatekeeper input[type=number]:focus {
    -moz-appearance: number-input;
  }
  .gatekeeper input:focus {
    border: 2px solid #fff;
  }
  .gatekeeper input[name=month], .gatekeeper input[name=day] {
    width: 65px;
  }
  .gatekeeper input[name=year] {
    width: 85px;
  }
  .gatekeeper button.btn-gate {
    background-color: #000;
    color: #a0a2a7;
    border: 2px solid #a0a2a7;
    font-family: "Einstein Futura PT Cond", sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    padding: 8px 40px;
    height: initial !important;
    line-height: 1.45;
  }
  .gatekeeper button.btn-gate:disabled {
    color: #636362;
    border: 2px solid #282828 !important;
  }
  .gatekeeper button.btn-gate i.fa {
    padding-top: 4px;
    margin: 0 -25px 0 0;
  }
  .gatekeeper .gate-helper {
    display: none;
    font-size: 10px;
    color: #a0a2a7;
    text-shadow: none;
    position: absolute;
    top: 9px;
    left: 5px;
  }
  .gatekeeper .gate-error-message {
    color: red;
    font-size: 12px;
    text-align: left;
    padding: 8px 0 0 8px;
    position: absolute;
    margin-bottom: 20px;
    display: none;
  }
  .gatekeeper .gate-generic-error-message {
    position: relative;
    color: red;
    font-size: 12px;
    text-align: left;
    padding: 8px 0 0 8px;
    margin-bottom: 20px;
    opacity: 1;
    text-align: center;
  }
}
@media (min-width: 350px) {
  .gatekeeper input {
    padding-left: 18px;
  }
  .gatekeeper input[name=month], .gatekeeper input[name=day] {
    width: 85px;
  }
  .gatekeeper input[name=year] {
    width: 100px;
  }
  .gatekeeper .logo img {
    width: 285px;
    margin: 0;
    display: inline;
  }
}
@media (min-width: 768px) {
  .gatekeeper h3 {
    font-size: 24px;
  }
  .gatekeeper form {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .gatekeeper {
    max-width: 50%;
  }
  .gatekeeper form {
    margin-bottom: 30px;
  }
}
.prefers-reduced-motion video.bg {
  display: none;
}

.prefers-high-contrast {
  background: #0C0C0C;
  color: #FFF !important;
}
.prefers-high-contrast p {
  color: #FFF !important;
}
.prefers-high-contrast a {
  color: #c8ffff;
}
.prefers-high-contrast a:hover, .prefers-high-contrast a:active, .prefers-high-contrast a:focus {
  color: #FFF;
}
.prefers-high-contrast .feature-image-box img, .prefers-high-contrast img.bg, .prefers-high-contrast video.bg {
  filter: brightness(25%) saturate(150%);
}

@media (min-width: 0px) {
  .post-title div {
    margin: 30px 0;
  }
  .post-title .tags {
    margin: 0;
    font-size: 22px;
  }
  .post-title p {
    margin: 10px 0;
    font-size: 20px;
    color: #c9c8c9;
  }
}

@media (min-width: 0px) {
  .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6, .crownstore-item-body h2, .crownstore-item-body h3, .crownstore-item-body h4, .crownstore-item-body h5, .crownstore-item-body h6 {
    color: #FFF;
  }
}

@media (min-width: 0px) {
  .post-body, .text_block, .crownstore-item-body {
    color: #c9c8c9;
    margin-bottom: 30px;
    /* Advanced Styles */
  }
  .post-body img:not(.icon), .post-body iframe, .post-body video, .text_block img:not(.icon), .text_block iframe, .text_block video, .crownstore-item-body img:not(.icon), .crownstore-item-body iframe, .crownstore-item-body video {
    width: 100%;
    max-width: 100%;
    border: 2px solid #000;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  }
  .post-body img:not(.icon).nostretch, .post-body iframe.nostretch, .post-body video.nostretch, .text_block img:not(.icon).nostretch, .text_block iframe.nostretch, .text_block video.nostretch, .crownstore-item-body img:not(.icon).nostretch, .crownstore-item-body iframe.nostretch, .crownstore-item-body video.nostretch {
    width: initial;
  }
  .post-body h2 img, .text_block h2 img, .crownstore-item-body h2 img {
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
  .post-body .tags, .text_block .tags, .crownstore-item-body .tags {
    margin: 57px 0 27px 0;
  }
  .post-body a:hover img, .post-body a:hover video, .post-body a:hover iframe, .text_block a:hover img, .text_block a:hover video, .text_block a:hover iframe, .crownstore-item-body a:hover img, .crownstore-item-body a:hover video, .crownstore-item-body a:hover iframe {
    border-color: #FFF;
  }
  .post-body p:first-child, .text_block p:first-child, .crownstore-item-body p:first-child {
    margin-top: 0;
  }
  .post-body p:empty, .text_block p:empty, .crownstore-item-body p:empty {
    display: none;
  }
  .post-body .bigger, .text_block .bigger, .crownstore-item-body .bigger {
    font-size: 20px;
    font-style: italic;
  }
  .post-body ul, .text_block ul, .crownstore-item-body ul {
    padding-left: 20px;
  }
  .post-body li, .text_block li, .crownstore-item-body li {
    margin-bottom: 10px;
  }
  .post-body .big, .text_block .big, .crownstore-item-body .big {
    font-size: 22px;
  }
  .post-body .dev-comment, .text_block .dev-comment, .crownstore-item-body .dev-comment {
    display: block;
    background-color: rgba(21, 21, 17, 0.5);
    border: 1px solid #000;
    padding: 15px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
}

.media-page {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 0px) {
  .media-page img {
    width: 100%;
    border: 2px solid #000;
  }
  .media-page h1 {
    margin-top: 20px;
  }
}
.media-category {
  position: relative;
  margin-bottom: 20px;
  clear: both;
}
.media-category .t2-width {
  display: block;
  padding: 0 15px 20px 15px;
  width: 320px;
  float: left;
  height: 250px;
}
.media-category .t2-width h4 {
  margin-top: 10px;
}
@media (min-width: 0px) {
  .media-category img {
    width: 100%;
    border: 2px solid #000;
  }
  .media-category h1 {
    margin-top: 20px;
  }
}
@media (min-width: 0px) {
  .category-title div {
    margin: 30px 0;
  }
  .category-title p {
    color: #c9c8c9;
    font-size: 20px;
    margin-top: 0px;
  }
}

@media (min-width: 0px) {
  .category-body .more-news {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .category-body .archive-date-slug:not(:first-of-type) .section-header {
    margin-top: 40px;
  }
  .category-body .link-block {
    padding-left: 0.2px;
  }
}
@media (min-width: 992px) {
  .category-body .more-news {
    margin-bottom: 0;
  }
}

.tier-0-editorial {
  display: block;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
}
@media (min-width: 0px) {
  .tier-0-editorial img {
    width: 100%;
  }
  .tier-0-editorial .t0-overlay {
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
  }
  .tier-0-editorial .t0-overlay .t0-wrap {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }
  @supports (-ms-ime-align: auto) {
    .tier-0-editorial .t0-overlay .t0-wrap {
      transition: initial;
    }
  }
  .tier-0-editorial .t0-overlay .t0-wrap h1, .tier-0-editorial .t0-overlay .t0-wrap .h1 {
    color: #64b193;
    font-size: 36px;
    text-shadow: 0px 0px 10px black, 0px 0px 20px black, 0px 0px 30px black;
    font-weight: bold;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .tier-0-editorial .t0-overlay .t0-wrap h4, .tier-0-editorial .t0-overlay .t0-wrap .h4 {
    text-transform: initial;
    color: #e6e3de;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-shadow: 0px 0px 10px black, 0px 0px 20px black, 0px 0px 30px black;
    font-size: 18px;
  }
  .tier-0-editorial .t0-overlay .t0-wrap .btn {
    width: 100%;
    max-width: 300px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .tier-0-editorial .t0-overlay a.t0-wrap:hover, .tier-0-editorial .t0-overlay a.t0-wrap:active, .tier-0-editorial .t0-overlay a.t0-wrap:focus {
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .tier-0-editorial .t0-overlay a.t0-wrap:hover h1, .tier-0-editorial .t0-overlay a.t0-wrap:active h1, .tier-0-editorial .t0-overlay a.t0-wrap:focus h1 {
    color: #FFF;
  }
  .tier-0-editorial .t0-overlay img {
    max-width: 100px;
    height: auto;
    float: left;
    border: 0;
  }
  .tier-0-editorial .t0-middle {
    top: 54%;
    transform: translateY(-40%);
  }
}
@media (min-width: 768px) {
  .tier-0-editorial .img-show {
    height: 45vw;
  }
  .tier-0-editorial .t0-overlay {
    bottom: 5px;
  }
  .tier-0-editorial .t0-overlay .t0-wrap h1, .tier-0-editorial .t0-overlay .t0-wrap .h1 {
    font-size: 40px;
  }
  .tier-0-editorial .t0-overlay .t0-wrap h4, .tier-0-editorial .t0-overlay .t0-wrap .h4 {
    font-size: 22px;
  }
  .tier-0-editorial .t0-overlay .t0-wrap.iconed {
    text-align: left;
  }
  .tier-0-editorial .t0-overlay .t0-wrap.iconed * {
    margin-left: 100px;
  }
}
@media (min-width: 850px) {
  .tier-0-editorial .t0-overlay .t0-wrap h1 {
    font-size: 42px;
  }
}
@media (min-width: 900px) {
  .tier-0-editorial .t0-overlay .t0-wrap h1 {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .tier-0-editorial .t0-overlay {
    bottom: 5px;
  }
  .tier-0-editorial .t0-overlay.iconed {
    bottom: 10px;
  }
  .tier-0-editorial .t0-overlay .t0-wrap.iconed * {
    margin-left: 200px;
  }
  .tier-0-editorial .t0-overlay .t0-wrap.iconed h1 {
    margin-top: 30px;
  }
  .tier-0-editorial .t0-overlay img {
    max-width: 200px;
  }
}
@media (min-width: 1200px) {
  .tier-0-editorial .img-show {
    height: 36vw;
  }
  .tier-0-editorial .t0-overlay {
    bottom: 10px;
    max-width: 1200px;
    left: calc(50% - 600px);
  }
}
@media (min-width: 1300px) {
  .tier-0-editorial .t0-overlay {
    bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .tier-0-editorial .t0-overlay {
    bottom: 15px;
  }
}
@media (min-width: 1500px) {
  .tier-0-editorial .t0-overlay {
    bottom: 20px;
  }
}
@media (min-width: 1600px) {
  .tier-0-editorial .t0-overlay {
    bottom: 25px;
  }
}

.tier-1-editorial {
  margin-top: -15px;
  padding-top: 15px;
}
@media (min-width: 0px) {
  .tier-1-editorial .t1-box {
    margin: 0 0 20px 0;
  }
  .tier-1-editorial .t1-box img {
    display: inline-block;
  }
  .tier-1-editorial .t1-box .tag-n-date {
    width: 100%;
  }
  .tier-1-editorial .t1-box hr {
    margin-bottom: 20px;
  }
  .tier-1-editorial .t1-box h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-top: 20px;
  }
  .tier-1-editorial .t1-box .social-shares {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .tier-1-editorial .t1-box .social-shares span {
    color: #a0a2a7;
  }
  .tier-1-editorial .t1-box .text-dark {
    font-size: 16px;
    margin: 0;
  }
  .tier-1-editorial .t1-box hgroup {
    text-align: center;
  }
  .tier-1-editorial .t1-box:hover h2, .tier-1-editorial .t1-box:hover p {
    color: #FFF;
  }
  .tier-1-editorial .t1-box:hover img {
    border-color: #FFF;
  }
}
@media (min-width: 768px) {
  .tier-1-editorial .t1-box h2 {
    font-size: 60px;
  }
  .tier-1-editorial .t1-box .text-dark {
    font-size: 20px;
  }
}

.tier-2-list-item .section-recent-news {
  padding-bottom: 20px;
}
.tier-2-list-item .section-recent-news p {
  margin-top: 0;
  color: #c9c8c9;
  font-size: 12px;
}
.tier-2-list-item .section-recent-news p.date {
  margin-bottom: 0;
}
.tier-2-list-item .section-recent-news .line {
  margin: 20px 15px 0 15px;
  background: #000;
  height: 1px;
  width: calc(100% - 30px);
}
.tier-2-list-item .section-recent-news hr {
  margin: 10px 0 0 0;
}
.tier-2-list-item .section-recent-news:hover p, .tier-2-list-item .section-recent-news:hover h3 {
  color: #FFF;
  margin-left: 0.55px;
}
.tier-2-list-item .section-recent-news:hover img {
  border-color: #FFF;
}
.tier-2-list-item .section-recent-news:last-child {
  border: 0;
}

@media (min-width: 0) {
  .social-list {
    overflow: hidden;
    text-align: center;
  }
  .social-list li {
    padding: 3px;
  }
  .social-list .social-ul {
    list-style: none;
    display: inline-block;
    margin-top: 15px;
    font-size: 22px;
    margin: 0px 0 30px 0;
  }
  .social-list .social-icon {
    color: white;
    text-shadow: none;
  }
}
@media (min-width: 323px) {
  .social-list li {
    padding: 5px;
  }
}

.line-o-images {
  margin-top: -15px;
  padding-top: 15px;
}
.line-o-images img {
  border: solid 2px #000;
}
.line-o-images a.lol-border img {
  border: 0;
}
.line-o-images .lol-col {
  margin-bottom: 20px;
  position: relative;
}
.line-o-images .lol-col a {
  position: initial;
}
.line-o-images .lol-border img {
  border: solid 2px #000;
}
.line-o-images .lol-main {
  width: 100%;
}
.line-o-images .lol-hover {
  width: calc(100% - 30px);
  position: absolute;
  margin: 0 15px;
  top: 0;
  left: 0;
  opacity: 0;
}
.line-o-images .lol-grey img {
  -webkit-filter: grayscale(1);
  filter: gray;
  filter: grayscale(1);
}
.line-o-images .lol-hover-color .lol-main {
  -webkit-filter: grayscale(0.5);
  filter: gray;
  filter: grayscale(0.5);
}
.line-o-images .lol-text {
  position: absolute;
  right: 15px;
  left: 15px;
  color: #FFF;
  font-weight: normal;
}
.line-o-images .lol-text.lol-top {
  top: 15px;
}
.line-o-images .lol-text.lol-bottom {
  bottom: 15px;
}
.line-o-images .lol-text.lol-center {
  bottom: 15px;
  top: 15px;
  vertical-align: middle;
}
.line-o-images .lol-col:hover .lol-hover {
  opacity: 1;
}

@media (min-width: 0) {
  .side-bar .line-o-images {
    display: block;
    width: 100%;
    margin: -15px 0 20px 0;
  }
  .side-bar .line-o-images .lol-text {
    margin-left: 30px;
  }
}
@media (min-width: 0) {
  .tier-2-gallery-item-video {
    margin-bottom: 20px;
  }
  .tier-2-gallery-item-video .section-recent-videos {
    height: 80vw;
  }
  .tier-2-gallery-item-video .section-recent-videos .img-box {
    position: relative;
  }
  .tier-2-gallery-item-video .section-recent-videos .img-box .img-responsive {
    margin: 0 0 10px 0;
    width: 100%;
  }
  .tier-2-gallery-item-video .section-recent-videos .img-box .video-icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    width: 50px;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
    max-width: auto;
  }
  .tier-2-gallery-item-video .section-recent-videos:hover p, .tier-2-gallery-item-video .section-recent-videos:hover h3 {
    color: #FFF;
  }
  .tier-2-gallery-item-video .section-recent-videos:hover img {
    border-color: #FFF;
  }
}
@media (min-width: 768px) {
  .tier-2-gallery-item-video .tier-2-gallery-col {
    margin-bottom: 0px;
  }
  .tier-2-gallery-item-video .section-recent-videos {
    height: 300px;
  }
}
@media (min-width: 2400px) {
  .tier-2-gallery-item-video .section-recent-videos {
    height: 550px;
  }
}

@media (min-width: 0) {
  .tier-2-gallery-item .tier-2-container, .tier-2-carousel-sequencer .tier-2-container {
    margin-bottom: 30px;
    font-size: 12px;
  }
  .tier-2-gallery-item .tier-2-container h3, .tier-2-carousel-sequencer .tier-2-container h3 {
    margin-top: 10px;
  }
  .tier-2-gallery-item .tier-2-container hr, .tier-2-carousel-sequencer .tier-2-container hr {
    margin: 10px 0;
  }
  .tier-2-gallery-item .tier-2-container p, .tier-2-carousel-sequencer .tier-2-container p {
    margin-top: 0;
  }
  .tier-2-gallery-item .tier-2-container:hover p, .tier-2-gallery-item .tier-2-container:hover h3, .tier-2-gallery-item .tier-2-container:hover .tag-n-date a, .tier-2-gallery-item .tier-2-container:hover .date a, .tier-2-carousel-sequencer .tier-2-container:hover p, .tier-2-carousel-sequencer .tier-2-container:hover h3, .tier-2-carousel-sequencer .tier-2-container:hover .tag-n-date a, .tier-2-carousel-sequencer .tier-2-container:hover .date a {
    color: #FFF;
  }
  .tier-2-gallery-item .tier-2-container:hover img, .tier-2-carousel-sequencer .tier-2-container:hover img {
    border-color: #FFF;
  }
  .tier-2-gallery-item .tier-2-container .carousel-sequencer-item-image, .tier-2-carousel-sequencer .tier-2-container .carousel-sequencer-item-image {
    width: 300px;
  }
  .tier-2-gallery-item .tier-2-container .tag-n-date, .tier-2-carousel-sequencer .tier-2-container .tag-n-date {
    padding: 5px 0px;
  }
  .tier-2-gallery-item .tier-2-container .tag-n-date a, .tier-2-carousel-sequencer .tier-2-container .tag-n-date a {
    color: #999;
  }
  .tier-2-gallery-item .tier-2-container .tag-n-date a.label, .tier-2-carousel-sequencer .tier-2-container .tag-n-date a.label {
    color: #a0a2a7;
    padding: 0.2em 0.2em 0.3em;
  }
  .tier-2-gallery-item .tier-2-container .tag-n-date a.label:hover, .tier-2-carousel-sequencer .tier-2-container .tag-n-date a.label:hover {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .tier-2-gallery-item .two-up, .tier-2-carousel-sequencer .two-up {
    height: 420px;
  }
  .tier-2-gallery-item .tier-2-container .carousel-sequencer-item-image, .tier-2-carousel-sequencer .tier-2-container .carousel-sequencer-item-image {
    width: 300px;
  }
}
@media (min-width: 1024px) {
  .tier-2-gallery-item .two-up, .tier-2-carousel-sequencer .two-up {
    height: 420px;
  }
  .tier-2-gallery-item .tier-2-container .carousel-sequencer-item-image, .tier-2-carousel-sequencer .tier-2-container .carousel-sequencer-item-image {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .tier-2-gallery-item .two-up, .tier-2-carousel-sequencer .two-up {
    height: 420px;
  }
  .tier-2-gallery-item .tier-2-container .carousel-sequencer-item-image, .tier-2-carousel-sequencer .tier-2-container .carousel-sequencer-item-image {
    width: 300px;
  }
}
@media (min-width: 2400px) {
  .tier-2-gallery-item .two-up, .tier-2-carousel-sequencer .two-up {
    height: 670px;
  }
  .tier-2-gallery-item .tier-2-container .carousel-sequencer-item-image, .tier-2-carousel-sequencer .tier-2-container .carousel-sequencer-item-image {
    width: 300px;
  }
}

@media (min-width: 0) {
  .tier-2-line .tier-2-container {
    margin-bottom: 20px;
  }
  .tier-2-line .tier-2-container p {
    font-size: 12px;
    margin-top: 0;
  }
  .tier-2-line .tier-2-container h3 {
    margin-top: 10px;
  }
  .tier-2-line .tier-2-container hr {
    margin: 10px 0;
  }
  .tier-2-line .tier-2-container:hover p, .tier-2-line .tier-2-container:hover h3 {
    color: #FFF;
  }
  .tier-2-line .tier-2-container:hover img {
    border-color: #FFF;
  }
}
@media (min-width: 768px) {
  .tier-2-line .tier-2-container {
    height: 400px;
  }
}
@media (min-width: 1920px) {
  .tier-2-line .tier-2-container {
    height: 20vw;
  }
}
@media (min-width: 3000px) {
  .tier-2-line .tier-2-container {
    height: 18vw;
  }
}
@media (min-width: 3000px) {
  .tier-2-line .tier-2-container {
    height: 18vw;
  }
}

.tier-2-wide-line {
  display: block;
  clear: both;
  padding: 0 0 50px 0;
}
.tier-2-wide-line h4 {
  margin-top: 10px;
}
.tier-2-wide-line .img-responsive {
  width: 100%;
}

.tier-2-wide-line .news-snip, .tier-2-wide-line-video .news-snip {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .tier-2-wide-line .news-snip, .tier-2-wide-line-video .news-snip {
    height: 40vw;
  }
}
@media (min-width: 1024px) {
  .tier-2-wide-line .news-snip, .tier-2-wide-line-video .news-snip {
    height: 23vw;
  }
}
@media (min-width: 1200px) {
  .tier-2-wide-line .news-snip, .tier-2-wide-line-video .news-snip {
    height: 12vw;
  }
}
@media (min-width: 1920px) {
  .tier-2-wide-line .news-snip, .tier-2-wide-line-video .news-snip {
    height: 12vw;
  }
}
@media (min-width: 3000px) {
  .tier-2-wide-line .news-snip, .tier-2-wide-line-video .news-snip {
    height: 12vw;
  }
}

.tier-2-wide-line-tumblr {
  display: block;
  clear: both;
  padding: 0 0 50px 0;
}
.tier-2-wide-line-tumblr .tumblr-item {
  display: none;
}
.tier-2-wide-line-tumblr h4 {
  margin-top: 10px;
}
.tier-2-wide-line-tumblr .news-snip {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .tier-2-wide-line-tumblr .news-snip {
    height: 40vw;
  }
}
@media (min-width: 1024px) {
  .tier-2-wide-line-tumblr .news-snip {
    height: 20vw;
  }
}
@media (min-width: 1200px) {
  .tier-2-wide-line-tumblr .news-snip {
    height: 17vw;
  }
}
@media (min-width: 1920px) {
  .tier-2-wide-line-tumblr .news-snip {
    height: 14vw;
  }
}
@media (min-width: 3000px) {
  .tier-2-wide-line-tumblr .news-snip {
    height: 10vw;
  }
}
.tier-2-wide-line-tumblr .img-responsive {
  width: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .tier-2-wide-line-tumblr .img-responsive {
    max-height: calc(40vw - 60px);
  }
}
@media (min-width: 1024px) {
  .tier-2-wide-line-tumblr .img-responsive {
    max-height: calc(20vw - 60px);
  }
}
@media (min-width: 1200px) {
  .tier-2-wide-line-tumblr .img-responsive {
    max-height: calc(17vw - 60px);
  }
}
@media (min-width: 1920px) {
  .tier-2-wide-line-tumblr .img-responsive {
    max-height: calc(14vw - 60px);
  }
}
@media (min-width: 3000px) {
  .tier-2-wide-line-tumblr .img-responsive {
    max-height: calc(10vw - 60px);
  }
}

.tier-2-wide-line-video {
  display: block;
  clear: both;
  padding: 0 0 50px 0;
}
.tier-2-wide-line-video h4 {
  margin-top: 10px;
}
.tier-2-wide-line-video .slot {
  position: relative;
}
.tier-2-wide-line-video .img-responsive {
  width: 100%;
}
.tier-2-wide-line-video .icon-overlay {
  margin-top: 0px;
  width: 50px;
  border: 0;
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  top: calc(50% - 17px);
  box-shadow: none;
}

.tier-2-wide-line-spotify {
  display: block;
  clear: both;
  padding: 0 0 50px 0;
}
.tier-2-wide-line-spotify iframe {
  width: 100%;
  margin-bottom: 24px;
  border: 2px solid #000;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}

@media (min-width: 0px) {
  .tier-3-link-list {
    margin-bottom: 20px;
  }
  .tier-3-link-list .section {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    background-image: url("https://esossldevcss-a.akamaihd.net/einstein/images/grunge.png");
    background-size: auto;
    padding-top: 0;
    padding-bottom: 30px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .tier-3-link-list .section h3 {
    color: #FFF;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px;
    font-size: 18px;
  }
  .tier-3-link-list .section h4 {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    border-left: 0;
    border-right: 0;
    padding: 5px;
    margin-bottom: 20px;
  }
  .tier-3-link-list .section h4:not(:first-of-type) {
    margin-top: 30px;
  }
  .tier-3-link-list .section a {
    padding: 7.5px 30px;
    display: inline-block;
    width: 100%;
    font-size: 14px;
  }
}

@media (min-width: 0) {
  .news-categories .bg-fix {
    margin-bottom: 20px;
  }
  .news-categories .news-categories-box {
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid #000;
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/eso-bg-texture-3.png");
    background-size: auto;
    padding-top: 0;
    padding-bottom: 30px;
    font-size: 14px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .news-categories .news-categories-box img {
    border-width: 0;
    box-shadow: none;
    transform: none;
  }
  .news-categories .news-categories-box .news-categories-container .heading {
    color: #FFF;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px;
    font-size: 18px;
    font-weight: 200;
  }
  .news-categories .news-categories-box .news-categories-container ul {
    margin: 0 20px 3px 20px;
  }
  .news-categories .news-categories-box .news-categories-container li {
    text-align: center;
    margin: 20px 0;
    padding: 0;
  }
  .news-categories .news-categories-box .news-categories-container a {
    text-transform: uppercase;
  }
  .news-categories .news-categories-box .news-categories-container a .name {
    font-size: 12px;
  }
  .news-categories .news-categories-box .news-archives-container .heading {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    border-left: 0;
    border-right: 0;
    padding: 5px;
    margin: 20px 0;
    color: #c9c8c9;
    font-size: 1.17em;
  }
  .news-categories .news-categories-box .news-archives-container .heading:not(:first-of-type) {
    margin-top: 30px;
  }
  .news-categories .news-categories-box .news-archives-container ul {
    padding-left: 0;
    margin: 0 20px;
  }
  .news-categories .news-categories-box .news-archives-container li {
    display: block;
    float: left;
    padding: 0;
    list-style-type: none;
    list-style-position: inside;
    width: 50%;
    text-align: center;
    line-height: 1.3;
  }
  .news-categories .news-categories-box .news-archives-container li a {
    margin-bottom: 10px;
    display: block;
  }
  .news-categories .news-categories-box .news-archives-container .history-block {
    margin: 0 20px 0 20px;
    padding: 0 10px 0 10px;
  }
  .news-categories .news-categories-box .news-archives-container .history-block table {
    color: #666;
    width: 100%;
  }
}
@media (min-width: 0px) {
  .social-share .share {
    float: left;
    margin-bottom: 20px;
  }
  .social-share .share a {
    margin-right: 5px;
    padding: 6px 15px;
    color: #fff;
  }
  .social-share .share i {
    margin-right: 10px;
  }
  .social-share .share-facebook a {
    background: #3b5998;
  }
  .social-share .share-twitter a {
    background: #00aced;
  }
  .social-share .share-email a {
    background: #3490F3;
  }
}

@media (min-width: 0px) {
  .timeline-box {
    margin-bottom: 50px;
    transition: initial;
    transition: color, background 0.3s ease;
  }
  .timeline-box .hilight-image {
    position: initial;
  }
  .timeline-box .update-image, .timeline-box .update-icon, .timeline-box .update-info, .timeline-box .top-line-mobile-wrap {
    display: block;
    float: left;
  }
  .timeline-box .update-image {
    width: 85%;
  }
  .timeline-box .top-line-mobile-wrap {
    width: 15%;
    text-align: center;
    height: 100%;
  }
  .timeline-box .top-line-mobile {
    width: 4px;
    background: #c9c8c9;
    display: block;
    height: 100%;
    margin: 0 auto;
  }
  .timeline-box .top-line-mobile.none {
    opacity: 0;
  }
  .timeline-box .update-icon {
    width: 15%;
    text-align: center;
    height: 100%;
  }
  .timeline-box .update-icon .top-line, .timeline-box .update-icon .bottom-line {
    width: 4px;
    background: #c9c8c9;
    display: block;
    height: 30px;
    margin: 0 auto;
  }
  .timeline-box .update-icon .top-line.none, .timeline-box .update-icon .bottom-line.none {
    opacity: 0;
  }
  .timeline-box .update-icon i {
    display: inline-block;
    background: #000;
    border: 2px solid #c9c8c9;
    border-radius: 10px;
    height: 20px;
    width: 20px;
    z-index: 9999;
    margin-top: -2px;
    transition: all 0.3s ease;
  }
  .timeline-box .update-icon i.dlc, .timeline-box .update-icon i.chapter {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -11px;
  }
  .timeline-box .update-icon i.dlc {
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/jdfjhfdg/icon-update-dlc-active.png");
  }
  .timeline-box .update-icon i.chapter {
    background-image: url("https://esossl-a.akamaihd.net/uploads/website/jdfjhfdg/icon-update-chapter-active.png");
  }
  .timeline-box .update-icon .bottom-line {
    height: calc(100% + 2px);
    margin-top: -9px;
  }
  .timeline-box .update-icon .bottom-line.none {
    opacity: 0;
  }
  .timeline-box .update-info {
    width: 85%;
  }
  .timeline-box .update-info h2 {
    font-size: 60px;
    line-height: 1.3;
  }
  .timeline-box .update-info h4 {
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  }
  .timeline-box .update-info .bullet {
    margin-left: 30px;
    text-indent: -15px;
    color: #c9c8c9;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .timeline-box .update-info .fa-circle {
    font-size: 10px;
  }
  .timeline-box .update-info .bullet-icon {
    width: 15px;
  }
  .timeline-box:hover .update-icon i {
    border-color: #FFF;
  }
  .timeline-box:hover .update-icon i.dlc {
    background-image: url("https://esosslcss-a.akamaihd.net/einstein/images/icon-update-dlc-over.png");
  }
  .timeline-box:hover .update-icon i.chapter {
    background-image: url("https://esosslcss-a.akamaihd.net/einstein/images/icon-update-chapter-over.png");
  }
  .timeline-box:hover .update-info .bullet {
    color: #FFF;
  }
  .timeline-box a:hover img {
    transform: initial;
  }
}
@media (min-width: 992px) {
  .timeline-box .update-image {
    width: 46%;
    margin-left: 0;
  }
  .timeline-box .update-icon {
    width: 8%;
  }
  .timeline-box .update-info {
    width: 46%;
  }
  .timeline-box .top-line-mobile-wrap {
    display: none;
  }
  .timeline-box:hover .update-icon i {
    animation: pulse-big 4s infinite;
  }
}

@media (min-width: 0px) {
  .eso-plus-months .platforms {
    margin-bottom: 20px;
    background: #000;
    overflow: hidden;
  }
  .eso-plus-months .platforms .line {
    height: 2px;
    margin: 2px;
    background: #a0a2a7;
    width: calc(100% - 4px);
  }
  .eso-plus-months .platforms .boxes {
    overflow: hidden;
    margin: 0 1px;
  }
  .eso-plus-months .platforms .boxes .box {
    padding: 10px 0;
    width: 33.3333333333%;
    float: left;
  }
  .eso-plus-months .platforms .boxes .box .logo-box {
    height: 100px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 100px;
    cursor: pointer;
  }
  .eso-plus-months .platforms .boxes .box .logo-box img {
    max-width: 80%;
  }
  .eso-plus-months .platforms .boxes .box .logo-box img.white, .eso-plus-months .platforms .boxes .box .logo-box img.gold {
    display: none;
  }
  .eso-plus-months .platform {
    display: none;
    border: 4px solid #000;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .eso-plus-months .platform:hover {
    transform: scale(1.01);
  }
  .eso-plus-months .platform img {
    width: 100%;
  }
  .eso-plus-months .platform .details {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: #FFF;
  }
  .eso-plus-months .platform .details b {
    font-weight: 900;
  }
  .eso-plus-months .platform .details:hover {
    text-decoration: none;
  }
  .eso-plus-months .platform .details .top, .eso-plus-months .platform .details .bottom, .eso-plus-months .platform .details .left, .eso-plus-months .platform .details .right-top, .eso-plus-months .platform .details .right-bottom {
    width: 100%;
    text-align: center;
  }
  .eso-plus-months .platform .details .top {
    margin-top: 6vw;
  }
  .eso-plus-months .platform .details .top h4, .eso-plus-months .platform .details .top .h4 {
    color: #a0a2a7;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    margin-top: 20px;
    line-height: 1.3;
    font-size: 3vw;
  }
  .eso-plus-months .platform .details .top h2, .eso-plus-months .platform .details .top .h2 {
    line-height: 1.3;
    font-size: 12vw;
  }
  .eso-plus-months .platform .details .left {
    text-align: left;
    padding-left: 20px;
  }
  .eso-plus-months .platform .details .left li {
    font-size: 4vw;
  }
  .eso-plus-months .platform .details .left li .fa {
    color: #FFF;
    width: 6vw;
  }
  .eso-plus-months .platform .details .bottom {
    position: absolute;
    bottom: 2px;
  }
  .eso-plus-months .platform .details .bottom .best-value {
    display: inline-block;
    border: 1px solid #000;
    width: calc(100% - 20px);
    font-size: 5vw;
  }
  .eso-plus-months .platform .details .right-top h3, .eso-plus-months .platform .details .right-top .h3, .eso-plus-months .platform .details .right-bottom h3, .eso-plus-months .platform .details .right-bottom .h3 {
    font-size: 5vw;
  }
  .eso-plus-months .platform .details .right-top p, .eso-plus-months .platform .details .right-bottom p {
    font-size: 3vw;
    margin: 0;
  }
  .eso-plus-months .platform .details ul {
    list-style: none outside none;
    padding-left: 0;
  }
  .eso-plus-months .ps4 {
    border-color: #02308C;
  }
  .eso-plus-months .ps4.on {
    background: #02308C;
  }
  .eso-plus-months .ps4 .bottom .best-value {
    background: #02308C;
  }
  .eso-plus-months .xbox {
    border-color: #007D00;
  }
  .eso-plus-months .xbox.on {
    background: #007D00;
  }
  .eso-plus-months .xbox .bottom .best-value {
    background: #007D00;
  }
  .eso-plus-months .pc {
    border-color: #625F4F;
  }
  .eso-plus-months .pc.on {
    background: #625F4F;
  }
  .eso-plus-months .pc .bottom .best-value {
    background: #625F4F;
  }
  .eso-plus-months .ps4, .eso-plus-months .xbox, .eso-plus-months .pc {
    transition: all 0.3s ease;
  }
  .eso-plus-months .ps4 .best-value, .eso-plus-months .xbox .best-value, .eso-plus-months .pc .best-value {
    transition: all 0.3s ease;
  }
}
@media (min-width: 400px) {
  .eso-plus-months .platform .details .bottom {
    bottom: 10px;
  }
}
@media (min-width: 768px) {
  .eso-plus-months .platform .details .top {
    margin-top: 0;
  }
  .eso-plus-months .platform .details .top h4, .eso-plus-months .platform .details .top .h4 {
    font-size: 16px;
  }
  .eso-plus-months .platform .details .top h2, .eso-plus-months .platform .details .top .h2 {
    font-size: 60px;
  }
  .eso-plus-months .platform .details .bottom {
    bottom: 5px;
  }
  .eso-plus-months .platform .details .bottom .best-value {
    width: 25%;
    font-size: 22px;
  }
  .eso-plus-months .platform .details .left {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
    padding: 0;
  }
  .eso-plus-months .platform .details .left li {
    font-size: 14px;
    max-width: 240px;
  }
  .eso-plus-months .platform .details .left li .fa {
    width: 30px;
  }
  .eso-plus-months .platform .details .right-top {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
  }
  .eso-plus-months .platform .details .right-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
  }
  .eso-plus-months .platform .details .right-top h3, .eso-plus-months .platform .details .right-top .h3, .eso-plus-months .platform .details .right-bottom h3, .eso-plus-months .platform .details .right-bottom .h3 {
    font-size: 30px;
  }
  .eso-plus-months .platform .details .right-top p, .eso-plus-months .platform .details .right-bottom p {
    font-size: 13px;
    margin: 0;
  }
}
@media (min-width: 991px) {
  .eso-plus-months .ps4:hover {
    background: #02308C;
  }
  .eso-plus-months .xbox:hover {
    background: #007D00;
  }
  .eso-plus-months .pc:hover {
    background: #625F4F;
  }
  .eso-plus-months .ps4:hover, .eso-plus-months .xbox:hover, .eso-plus-months .pc:hover {
    border-color: #FFF;
  }
}
@media (min-width: 1200px) {
  .eso-plus-months .platform .details .left li {
    font-size: 18px;
    max-width: initial;
  }
}
@media (min-width: 2400px) {
  .eso-plus-months .platform .details .top h2 {
    font-size: 130px;
  }
  .eso-plus-months .platform .details .top h4 {
    font-size: 30px;
  }
  .eso-plus-months .platform .details .left li {
    font-size: 30px;
  }
  .eso-plus-months .platform .details .left li .fa {
    width: 60px;
  }
  .eso-plus-months .platform .details .right-top h3, .eso-plus-months .platform .details .right-top .h3 {
    font-size: 60px;
  }
}

.details-grid {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 0px) {
  .details-grid .bg-plate {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    margin-bottom: 20px;
    padding: 20px 20px 60px 20px;
    overflow: hidden;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .details-grid .top-text h2 {
    color: #FFF;
    font-size: 60px;
    line-height: 1.3;
  }
  .details-grid .top-text p {
    line-height: 1.3;
  }
  .details-grid .grid {
    height: 30px;
    line-height: 30px;
    word-wrap: break-word;
  }
  .details-grid .grid .row {
    margin-bottom: 20px;
  }
  .details-grid .grid .grid-title {
    color: #FFF;
  }
  .details-grid .grid .grid-title span {
    padding-left: 25px;
  }
  .details-grid .grid .thin {
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    text-indent: 0;
    padding-right: 30px;
  }
  .details-grid .grid .fa {
    color: #FFF;
    width: 25px;
  }
  .details-grid .grid .grey {
    color: #c9c8c9;
    padding-right: 20px;
  }
  .details-grid .grid .grey .fa {
    color: #c9c8c9;
  }
  .details-grid .table {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    text-align: left;
    border-spacing: 0px 20px;
  }
  .details-grid .table .fa {
    color: #FFF;
    width: 25px;
  }
  .details-grid .table .thin {
    color: #FFF;
    font-size: 16px;
    text-indent: 0;
    font-weight: normal;
  }
  .details-grid .table tbody .thin {
    text-transform: uppercase;
  }
  .details-grid .table .grey {
    color: #c9c8c9;
  }
  .details-grid .table .grey .fa {
    color: #c9c8c9;
  }
}
@media (min-width: 768px) {
  .details-grid .grid {
    padding: 0 40px;
  }
  .details-grid .table {
    padding: 0 40px 0 40px;
    border-spacing: 10px 20px;
  }
}
@media (min-width: 992px) {
  .details-grid .row {
    margin-bottom: 10px;
  }
  .details-grid .grid {
    text-indent: -15px;
    margin-left: 30px;
  }
  .details-grid .grid .thin {
    color: #fff;
  }
  .details-grid .grid .grid-title span {
    padding-left: 15px;
  }
  .details-grid .grid .fa {
    width: 15px;
  }
  .details-grid .table {
    text-indent: -15px;
  }
  .details-grid .table .thin {
    color: #fff;
  }
  .details-grid .table .fa {
    width: 15px;
  }
}
@media (max-width: 992px) {
  .details-grid .table td, .details-grid .table th {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .details-grid .table .sr-only-xs, .details-grid .table .sr-only-sm {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  background-image: url("./einstein/images/ice-rev.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 999999;
  filter: blur(1px);
  display: block;
  top: 0;
  left: 0;
}
.overlay .overlay-ice {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("./einstein/images/ice-rev.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

.crown-pack-slot {
  overflow: hidden;
}
@media (min-width: 0px) {
  .crown-pack-slot .crown-pack-slot-container {
    margin-bottom: 10px;
    position: relative;
    border: 4px solid black;
    transition: all 0.3s ease;
    z-index: 99;
  }
  @supports (-ms-ime-align: auto) {
    .crown-pack-slot .crown-pack-slot-container {
      transition: none;
    }
  }
  .crown-pack-slot .crown-pack-slot-container:hover {
    border-color: #FFF;
    transform: scale(1.01);
    cursor: pointer;
  }
  .crown-pack-slot .crown-pack-slot-container.open:hover {
    transform: initial;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details {
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    margin-top: 5%;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .top h4 {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    line-height: 1.3;
    font-size: 3vw;
    color: #FFF;
    font-weight: bold;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .middle h2 {
    line-height: 1.3;
    font-size: 12vw;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .bottom {
    padding: 0px 6px 0px 6px;
    font-size: 4vw;
    background-color: #3f5f61;
    display: inline-block;
    position: absolute;
    left: -4px;
    bottom: 20%;
  }
  .crown-pack-slot .crown-pack-slot-container img.slot {
    width: 100%;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container {
    background: #000;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes {
    height: 100%;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes .box {
    width: 33.3333333333%;
    float: left;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes .box.ps4:hover {
    background: #02308C;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes .box.xbox:hover {
    background: #007D00;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes .box.pc:hover {
    background: #625F4F;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes .box .logo-box {
    top: calc(50% - 50px);
    height: 100px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    line-height: 100px;
    cursor: pointer;
    position: absolute;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes .box .logo-box img {
    transform: initial;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
    max-width: 80%;
  }
  .crown-pack-slot .crown-pack-slot-platforms-container .boxes .box .logo-box img.white {
    display: none;
  }
}
@media (min-width: 768px) {
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details {
    margin-top: 3%;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .top h4 {
    font-size: 16px;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .middle h2 {
    font-size: 60px;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .bottom {
    bottom: 20%;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details {
    margin-top: 5%;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .bottom {
    bottom: 30%;
  }
}
@media (min-width: 1200px) {
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details {
    margin-top: 2%;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .bottom {
    bottom: 20%;
  }
}
@media (min-width: 2400px) {
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .top h4 {
    font-size: 30px;
  }
  .crown-pack-slot .crown-pack-slot-container .crown-pack-slot-details .middle h2 {
    font-size: 130px;
  }
}

.updates-header {
  position: relative;
  overflow: hidden;
  border: solid 2px #000;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
@media (min-width: 0px) {
  .updates-header .img-bg, .updates-header .cinemagraph {
    width: 100%;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .updates-header .cinemagraph {
    margin-bottom: -8px;
  }
  .updates-header .content-box {
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    z-index: 99;
    height: 100%;
  }
  .updates-header .content-box .cta-logo-top {
    width: auto;
    max-width: 100%;
    display: inline-block;
    margin-top: 10px;
  }
  .updates-header .content-box .mininav {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    padding: 0 15px;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5), 1px 1px 2px black, 1px 2px 4px black;
  }
  .updates-header .content-box .mininav a {
    padding: 4px;
    color: #FFF;
  }
  .updates-header .content-box .mininav a:hover {
    color: #a0a2a7;
  }
  .updates-header .content-box .mininav .blue-btn {
    padding: 5px 10px;
    background: #881A04;
    border: 0;
    color: #FFF;
    display: inline-block;
  }
  .updates-header .content-box .mininav .blue-btn:hover {
    background: #AA2106;
  }
  .updates-header .content-box .mininav .crown-btn {
    color: #FFF;
    display: inline-block;
  }
  .updates-header .content-box .mininav .crown-btn:hover {
    color: #a0a2a7;
  }
  .updates-header .content-box .mininav .crown-btn .icon {
    height: 20px;
  }
  .updates-header .content-box .cta-logo {
    width: 60vw;
  }
  .updates-header .content-box h2 {
    font-family: Garamond, Palatino;
    color: #a0a2a7;
    letter-spacing: 8px;
    font-weight: 200;
    line-height: 1.7;
    font-size: 7vw;
  }
  .updates-header .content-box .youtube {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .updates-header .content-box .youtube.background-click-link {
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
  }
  .updates-header .content-box .youtube.background-click-link:hover img {
    opacity: 1;
  }
  .updates-header .content-box .youtube img {
    border: 0;
    display: inline-block;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
  .updates-header .content-box .youtube img.background-click {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.9;
  }
  .updates-header .ratings {
    position: absolute;
    bottom: 15px;
    right: 10px;
  }
  .updates-header .ratings .rating {
    margin-left: 20px;
    max-height: 100px;
  }
  .updates-header .top-left, .updates-header .top-right, .updates-header .mid-left, .updates-header .mid-right, .updates-header .bot-left, .updates-header .bot-right, .updates-header .top, .updates-header .bot {
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
  }
  .updates-header .top, .updates-header .bot {
    position: absolute;
    width: 50vw;
    font-size: 1.7rem;
    left: calc(50% - 25vw);
  }
  .updates-header .top {
    top: 4%;
  }
  .updates-header .bot {
    bottom: 4%;
  }
  .updates-header .quote {
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .updates-header .attribution {
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-style: italic;
  }
}
@media (min-width: 500px) {
  .updates-header .content-box .mininav {
    margin-top: 5px;
  }
}
@media (min-width: 550px) {
  .updates-header .content-box .cta-logo {
    width: 80vw;
  }
  .updates-header .ratings .rating {
    max-height: initial;
  }
}
@media (min-width: 768px) {
  .updates-header .content-box .cta-logo {
    width: 28vw;
  }
  .updates-header .content-box h2 {
    font-size: 25px;
  }
  .updates-header .ratings .rating {
    max-height: 100px;
  }
  .updates-header .top-left, .updates-header .top-right, .updates-header .bot-left, .updates-header .bot-right {
    position: absolute;
    width: 30vw;
    font-size: 1.5rem;
  }
  .updates-header .top-left {
    top: 3%;
    left: 0.5vw;
  }
  .updates-header .top-right {
    top: 3%;
    right: 0.5vw;
  }
  .updates-header .bot-left {
    bottom: 3%;
    left: 0.5vw;
  }
  .updates-header .bot-right {
    bottom: 3%;
    right: 0.5vw;
  }
}
@media (min-width: 850px) {
  .updates-header .content-box .cta-logo {
    width: 30vw;
  }
}
@media (min-width: 1100px) {
  .updates-header .content-box .cta-logo {
    width: 33vw;
  }
}
@media (min-width: 1200px) {
  .updates-header .content-box .mininav {
    font-size: 18px;
  }
  .updates-header .content-box .cta-logo {
    width: 24vw;
  }
  .updates-header .content-box h2 {
    font-size: 38px;
  }
  .updates-header .ratings .rating {
    max-height: initial;
  }
  .updates-header .top-left, .updates-header .top-right, .updates-header .mid-left, .updates-header .mid-right, .updates-header .bot-left, .updates-header .bot-right {
    position: absolute;
    width: 30vw;
    font-size: 1.3rem;
  }
  .updates-header .top-left {
    top: 10%;
    left: 0vw;
  }
  .updates-header .top-right {
    top: 10%;
    right: 0vw;
  }
  .updates-header .mid-left {
    top: 45%;
    left: 0vw;
  }
  .updates-header .mid-right {
    top: 45%;
    right: 0vw;
  }
  .updates-header .bot-left {
    top: 75%;
    left: 0vw;
  }
  .updates-header .bot-right {
    top: 75%;
    right: 0vw;
  }
}
@media (min-width: 1400px) {
  .updates-header .content-box h2 {
    font-size: 40px;
  }
}
@media (min-width: 1600px) {
  .updates-header .content-box h2 {
    font-size: 44px;
  }
}
@media (min-width: 1800px) {
  .updates-header .content-box h2 {
    font-size: 46px;
  }
}
@media (min-width: 1900px) {
  .updates-header .content-box .cta-logo {
    width: 25vw;
  }
  .updates-header .content-box h2 {
    font-size: 48px;
  }
}

.updates-top-cta {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  background-image: url("./images/bg/smoke-1a.png");
  background-attachment: fixed;
  background-size: auto;
  overflow: hidden;
  border: solid 2px #000;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
@media (min-width: 0px) {
  .updates-top-cta .box-box {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 50px;
  }
  .updates-top-cta .box-box .boxes {
    width: 70%;
    max-width: 360px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .updates-top-cta .box-box .btn {
    position: relative;
  }
  .updates-top-cta .box-box .btn:not(.btn-grade) {
    padding-left: 20px;
  }
  .updates-top-cta .box-box .btn .icon {
    position: relative;
    left: -10px;
  }
  .updates-top-cta .box-box .btn-lrg {
    font-size: 25px;
  }
  .updates-top-cta .bullets-box {
    margin-top: 0px;
    margin-bottom: 40px;
  }
  .updates-top-cta .bullets-box h1 {
    margin-bottom: 20px;
  }
  .updates-top-cta .bullets-box p {
    display: inline-block;
    font-size: 22px;
    margin-bottom: 30px;
    margin-top: 0;
  }
  .updates-top-cta .bullets-box a {
    font-size: 22px;
  }
  .updates-top-cta .bullets-box .bullet h3, .updates-top-cta .bullets-box .bullet h3 a {
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 16px;
    font-weight: bold;
  }
  .updates-top-cta .bullets-box .bullet h3 a {
    color: #a0a2a7;
  }
  .updates-top-cta .bullets-box .bullet h3 a:hover {
    color: #FFF;
  }
  .updates-top-cta .bullets-box .bullet p {
    margin-top: 0;
    font-size: 14px;
    color: #c9c8c9;
  }
  .updates-top-cta .bullets-box .bottom-link {
    margin-top: 0px;
  }
}
@media (min-width: 375px) {
  .updates-top-cta .box-box .btn-lrg {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .updates-top-cta .box-box .boxes {
    width: 100%;
  }
  .updates-top-cta .bullets-box {
    margin-top: 40px;
  }
}

.updates-top-cta-no-box-art {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  background-image: url("./images/bg/smoke-1a.png");
  background-attachment: fixed;
  background-size: auto;
  overflow: hidden;
  border: solid 2px #000;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: center;
}
@media (min-width: 0px) {
  .updates-top-cta-no-box-art .box-box {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .updates-top-cta-no-box-art .box-box .btn {
    position: relative;
  }
  .updates-top-cta-no-box-art .box-box .btn:not(.btn-grade) {
    padding-left: 20px;
  }
  .updates-top-cta-no-box-art .box-box .btn .icon {
    position: relative;
    left: -10px;
  }
  .updates-top-cta-no-box-art .box-box .btn-lrg {
    font-size: 25px;
  }
  .updates-top-cta-no-box-art .bullets-box {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .updates-top-cta-no-box-art .bullets-box h1 {
    margin-bottom: 20px;
  }
  .updates-top-cta-no-box-art .bullets-box p {
    display: inline-block;
    font-size: 22px;
    margin-bottom: 30px;
    margin-top: 0;
  }
  .updates-top-cta-no-box-art .bullets-box a {
    font-size: 22px;
  }
  .updates-top-cta-no-box-art .bullets-box .bullet {
    text-align: left;
  }
  .updates-top-cta-no-box-art .bullets-box .bullet h3, .updates-top-cta-no-box-art .bullets-box .bullet h3 a, .updates-top-cta-no-box-art .bullets-box .bullet .h3, .updates-top-cta-no-box-art .bullets-box .bullet .h3 a {
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 16px;
    font-weight: bold;
  }
  .updates-top-cta-no-box-art .bullets-box .bullet h3 a, .updates-top-cta-no-box-art .bullets-box .bullet .h3 a {
    color: #a0a2a7;
  }
  .updates-top-cta-no-box-art .bullets-box .bullet h3 a:hover, .updates-top-cta-no-box-art .bullets-box .bullet .h3 a:hover {
    color: #FFF;
  }
  .updates-top-cta-no-box-art .bullets-box .bullet p {
    margin-top: 0;
    font-size: 14px;
    color: #c9c8c9;
  }
  .updates-top-cta-no-box-art .bullets-box .bottom-link {
    margin-top: 0px;
  }
}
@media (min-width: 375px) {
  .updates-top-cta-no-box-art .box-box .btn-lrg {
    font-size: 30px;
  }
}

.updates-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 0px) {
  .updates-section .img-bg {
    width: 100%;
  }
  .updates-section .wrapper {
    background: #000;
    border: solid 2px #000;
    border-left: 0;
    border-right: 0;
  }
  .updates-section .content-box {
    position: absolute;
    top: 50vw;
    width: 100%;
    z-index: 99;
  }
  .updates-section .content-box h2 {
    color: #FFF;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .updates-section .content-box p {
    font-size: 18px;
    margin-top: 0;
    font-weight: bold;
    line-height: 1.5;
  }
  .updates-section .content-box .youtube img {
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
  .updates-section .img-bg {
    opacity: 0.75;
  }
  .updates-section .lower-section {
    color: #c9c8c9;
    margin: 10px 0 40px 0;
  }
  .updates-section .lower-section .media {
    margin-top: 10px;
  }
  .updates-section .lower-section .media a {
    margin-bottom: 20px;
  }
  .updates-section .lower-section .media a img {
    width: 100%;
    border: 2px solid #000;
    transition: all 0.3s ease;
  }
  .updates-section .lower-section .media a .text-dark {
    transition: all 0.3s ease;
  }
  .updates-section .lower-section .media a:hover img {
    border-color: #FFF;
    transform: scale(1.01);
  }
  .updates-section .lower-section .media a:hover .text-dark {
    color: #FFF;
  }
  .updates-section .lower-section .media a h4 {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .updates-section .lower-section .line {
    margin-top: -10px;
  }
  .updates-section .lower-section .line div {
    width: 100%;
    border-bottom: solid 4px rgba(197, 191, 158, 0.3);
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
}
@media (min-width: 375px) {
  .updates-section .content-box {
    top: 60vw;
  }
}
@media (min-width: 768px) {
  .updates-section .content-box {
    top: 15vw;
  }
}
@media (min-width: 1024px) {
  .updates-section .content-box {
    top: 10vw;
  }
  .updates-section .content-box h2 {
    font-size: 48px;
  }
  .updates-section .content-box p {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  .updates-section .content-box h2 {
    font-size: 3.2vw;
  }
  .updates-section .content-box p {
    font-size: 1.4vw;
  }
}

.updates-bottom-cta {
  position: relative;
}
@media (min-width: 0px) {
  .updates-bottom-cta .bottom-cta {
    border-top: solid 2px #000;
    background: rgba(0, 0, 0, 0.2);
    background-image: url("./images/bg/smoke-1a.png");
    background-attachment: fixed;
    background-size: auto;
    padding-bottom: 50px;
  }
  .updates-bottom-cta .bottom-cta .boxes {
    width: 100%;
  }
  .updates-bottom-cta .bottom-cta .logo {
    margin-top: 20px;
    display: inline-block;
    max-width: 100%;
  }
  .updates-bottom-cta .bottom-cta h2 {
    color: #FFF;
    font-size: 40px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .updates-bottom-cta .bottom-cta .btn-bottom-cta {
    position: relative;
    font-size: 20px;
  }
  .updates-bottom-cta .bottom-cta .btn-bottom-cta:not(.btn-grade) {
    padding-left: 20px;
  }
  .updates-bottom-cta .bottom-cta .btn-bottom-cta .icon {
    position: relative;
    left: -10px;
  }
}
@media (min-width: 375px) {
  .updates-bottom-cta .bottom-cta .btn-bottom-cta {
    font-size: 30px;
  }
}
@media (min-width: 500px) {
  .updates-bottom-cta .bottom-cta h2 {
    font-size: 60px;
  }
}
@media (min-width: 768px) {
  .updates-bottom-cta .bottom-cta h2 {
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .updates-bottom-cta .bottom-cta h2 {
    margin-top: 50px;
  }
}

.updates-2-header {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .updates-2-header .header-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
  }
  .updates-2-header .header-box .header-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(black 0%, black 50%, black 80%, transparent 100%);
    mask-image: linear-gradient(black 0%, black 50%, black 80%, transparent 100%);
  }
  .updates-2-header .header-box .header-image-wrap .header-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    overflow: hidden;
    position: relative;
  }
  .updates-2-header .header-box .header-image-wrap .header-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .updates-2-header .header-box .logo {
    display: block;
    margin: 66vw auto 0 auto;
    max-width: 100%;
  }
  .updates-2-header .header-box .buttons {
    margin: 0 0 15px 0;
  }
  .updates-2-header .header-box .buttons a img {
    left: -10px;
    height: 30px;
  }
  .updates-2-header .header-box .buttons .btn {
    width: 90%;
    max-width: 250px;
  }
  .updates-2-header .header-box .buttons .btn-trailer {
    width: 80%;
    height: 40px;
  }
  .updates-2-header .header-box .buttons .btn-trailer.btn-icon {
    height: 50px;
    line-height: 47px;
  }
  .updates-2-header .header-box h1 {
    line-height: 1.3;
    margin-top: 30px;
  }
  .updates-2-header .header-box p {
    font-size: 18px;
    padding: 0 4vw 15px 4vw;
  }
  .updates-2-header .ratings {
    margin-bottom: 10vw;
  }
  .updates-2-header .ratings .rating {
    margin: 50px;
  }
}
@media (min-width: 600px) {
  .updates-2-header .header-box {
    min-height: 40vw;
  }
  .updates-2-header .header-box .header-image-wrap {
    height: 40vw;
    width: 100%;
  }
  .updates-2-header .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    width: 100%;
  }
  .updates-2-header .header-box .logo {
    margin: 20vw auto 0 auto;
    width: 80%;
  }
}
@media (min-width: 1023px) {
  .updates-2-header .header-box {
    min-height: 40vw;
  }
  .updates-2-header .header-box p {
    font-size: 22px;
  }
  .updates-2-header .header-box .header-image-wrap {
    height: 40vw;
    width: 100%;
  }
  .updates-2-header .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    width: 100%;
  }
  .updates-2-header .header-box .logo {
    margin: 20vw auto 0 auto;
    width: 550px;
  }
}
@media (min-width: 1200px) {
  .updates-2-header .header-box {
    min-height: 40vw;
  }
  .updates-2-header .header-box .header-image-wrap {
    height: 40vw;
  }
  .updates-2-header .header-box .header-image-wrap .header-image-box {
    height: 40vw;
  }
  .updates-2-header .header-box .logo {
    margin: 20vw auto 0 auto;
    width: 600px;
  }
  .updates-2-header .header-box .header-content-box {
    margin-bottom: 6vw;
  }
  .updates-2-header .ratings {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .updates-2-header .ratings .rating {
    display: block;
    margin: 20px;
  }
}
@media (min-width: 1200px) {
  .updates-2-header .header-box .header-image-wrap .header-image-box {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%, black 50%, transparent 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 25%, black 50%, transparent 100%);
  }
  .updates-2-header .header-box p {
    padding: 0 4vw 15px 4vw;
  }
}
@media (min-width: 1920px) {
  .updates-2-header .header-box {
    min-height: 40vw;
  }
  .updates-2-header .header-box .header-image-wrap {
    height: 40vw;
    max-width: 2000px;
  }
  .updates-2-header .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    max-width: 2000px;
  }
  .updates-2-header .header-box .logo {
    margin: 20vw auto 0 auto;
    width: initial;
  }
}
@media (min-width: 2500px) {
  .updates-2-header .header-box {
    min-height: 40vw;
  }
  .updates-2-header .header-box .header-image-wrap {
    height: 40vw;
    max-width: 4000px;
  }
  .updates-2-header .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    max-width: 4000px;
  }
}

.feature-box .updates-2-header {
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: initial;
  /* FF3.6-15 */
  background: initial;
  /* Chrome10-25,Safari5.1-6 */
  background: initial;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: initial;
  /* IE6-9 */
}

.feature-content-box .updates-2-feature-simple {
  min-height: 80vh;
}
@media (min-width: 1024px) {
  .feature-content-box .updates-2-feature-simple {
    min-height: 45vw;
  }
}
@media (min-width: 1200px) {
  .feature-content-box .updates-2-feature-simple {
    min-height: 40vw;
  }
}
@media (min-width: 2500px) {
  .feature-content-box .updates-2-feature-simple {
    min-height: 45vw;
  }
}

.updates-2-feature-simple {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .updates-2-feature-simple .btn {
    max-width: 250px;
  }
  .updates-2-feature-simple .btn-trailer {
    width: 80%;
    height: 40px;
  }
  .updates-2-feature-simple .feature-box {
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: 4vw 0;
  }
  .updates-2-feature-simple .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .updates-2-feature-simple .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .updates-2-feature-simple .feature-box .feature-image-wrap .feature-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .updates-2-feature-simple .feature-box .feature-image-wrap .kuula {
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: -100px;
    background: #000;
    opacity: 0.5;
    z-index: -1;
  }
  .updates-2-feature-simple .feature-box .feature-image-wrap:not(.feature-parallax-item) {
    height: 100%;
  }
  .updates-2-feature-simple .feature-box .feature-image-wrap:not(.feature-parallax-item) .feature-image-box {
    background-size: cover;
  }
  .updates-2-feature-simple .feature-box .feature-content-box {
    margin-top: 40vw;
    margin-bottom: 15vw;
    font-weight: bold;
  }
  .updates-2-feature-simple .feature-box .feature-content-box p {
    margin: 8px 0;
  }
  .updates-2-feature-simple .feature-box .feature-content-box a img {
    border: 0;
    box-shadow: none;
  }
  .updates-2-feature-simple .feature-box .feature-content-box a:hover {
    box-shadow: none;
  }
  .updates-2-feature-simple .feature-box .feature-content-box .buttons.has-img.btn-style-enhanced-basic {
    height: 50px;
    line-height: 47px;
  }
  .updates-2-feature-simple .feature-box .feature-content-box .buttons img {
    left: -10px;
    height: 30px;
  }
  .updates-2-feature-simple .feature-box .feature-content-box h2 {
    line-height: 1.1;
    font-size: 8vw;
    color: #FFF;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .updates-2-feature-simple .feature-box .feature-content-box .text {
    font-size: 14px;
  }
}
@media (min-width: 600px) {
  .updates-2-feature-simple .feature-box .feature-parallax-item {
    height: 500px;
    width: 100%;
  }
  .updates-2-feature-simple .feature-box .feature-parallax-item .feature-image-box {
    height: 500px;
    width: 100%;
  }
  .updates-2-feature-simple .feature-box .feature-content-box h2 {
    font-size: 40px;
  }
}
@media (min-width: 1023px) {
  .updates-2-feature-simple .feature-box {
    padding: 0;
  }
  .updates-2-feature-simple .feature-box .feature-parallax-item {
    width: 100%;
  }
  .updates-2-feature-simple .feature-box .feature-parallax-item .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
  .updates-2-feature-simple .feature-box .feature-content-box {
    margin-top: 16vw;
  }
}
@media (min-width: 1920px) {
  .updates-2-feature-simple .feature-box .feature-parallax-item {
    max-width: 2000px;
  }
  .updates-2-feature-simple .feature-box .feature-parallax-item .feature-image-box {
    max-width: 2000px;
  }
  .updates-2-feature-simple .feature-box .feature-content-box {
    margin-top: 380px;
  }
}
@media (min-width: 2500px) {
  .updates-2-feature-simple .feature-box .feature-parallax-item {
    max-width: 3000px;
  }
  .updates-2-feature-simple .feature-box .feature-parallax-item .feature-image-box {
    max-width: 3000px;
  }
  .updates-2-feature-simple .feature-box .feature-content-box h2 {
    font-size: 60px;
  }
  .updates-2-feature-simple .feature-box .feature-content-box p {
    font-size: 25px;
  }
}

.feature-box .updates-2-feature-simple {
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: initial;
  /* FF3.6-15 */
  background: initial;
  /* Chrome10-25,Safari5.1-6 */
  background: initial;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: initial;
  /* IE6-9 */
}

.updates-2-feature-accordion {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .updates-2-feature-accordion .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
    padding: 20vw 0;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap .feature-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap .kuula {
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: -100px;
    background: #000;
    opacity: 0.5;
    z-index: -1;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box h2 {
    line-height: 1.3;
    font-size: 40px;
    color: #FFF;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box h3, .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item-head {
    line-height: 1.3;
    font-size: 20px;
    letter-spacing: 3px;
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box h3 {
    margin-bottom: 20px;
    margin-top: 30px;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item {
    border: solid 1px rgba(197, 191, 158, 0.4);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item .accordion-item-head {
    color: #a0a2a7;
    text-align: left;
    padding: 15px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item .accordion-item-head .fa-minus-circle {
    display: none;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item .accordion-item-body {
    display: none;
    border: solid 1px rgba(197, 191, 158, 0.4);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 30px 20px;
    text-align: left;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item.picked .accordion-item-head .fa-minus-circle {
    display: inline;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item.picked .accordion-item-head .fa-plus-circle {
    display: none;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item:hover .accordion-item-head, .updates-2-feature-accordion .feature-box .feature-content-box .accordion-item.picked .accordion-item-head {
    color: #FFF;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box p {
    font-size: 14px;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box img {
    width: 100%;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box .video-icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    width: 50px;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
}
@media (min-width: 600px) {
  .updates-2-feature-accordion .feature-box {
    min-height: 500px;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .updates-2-feature-accordion .feature-box {
    min-height: 50vw;
    padding: 12vw 0;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1600px) {
  .updates-2-feature-accordion .feature-box {
    padding: 6vw 0;
  }
}
@media (min-width: 1920px) {
  .updates-2-feature-accordion .feature-box {
    min-height: 600px;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .updates-2-feature-accordion .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .updates-2-feature-accordion .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .updates-2-feature-accordion .feature-box .feature-content-box p {
    font-size: 20px;
  }
}

.feature-box .updates-2-feature-accordion {
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: initial;
  /* FF3.6-15 */
  background: initial;
  /* Chrome10-25,Safari5.1-6 */
  background: initial;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: initial;
  /* IE6-9 */
}

.updates-2-feature-portraits {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .updates-2-feature-portraits .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
    padding: 20vw 0;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap .feature-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap .kuula {
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: -100px;
    background: #000;
    opacity: 0.5;
    z-index: -1;
  }
  .updates-2-feature-portraits .feature-box .feature-content-box {
    margin-bottom: 40px;
    text-align: left;
  }
  .updates-2-feature-portraits .feature-box .feature-content-box .feature-content-item {
    text-align: center;
  }
  .updates-2-feature-portraits .feature-box .feature-content-box h2 {
    line-height: 1.3;
    font-size: 40px;
    color: #FFF;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .updates-2-feature-portraits .feature-box .feature-content-box p {
    font-size: 14px;
  }
  .updates-2-feature-portraits .feature-box .portraits {
    text-align: center;
    margin-top: 40px;
  }
  .updates-2-feature-portraits .feature-box .portraits .img-wrap {
    display: inline-block;
    cursor: pointer;
    margin: 8px 5px;
    border: 1px solid transparent;
    transition: transform 0.3s ease;
  }
  .updates-2-feature-portraits .feature-box .portraits .img-wrap img {
    width: 75px;
    height: 100px;
    border: 2px solid #000;
    object-fit: cover;
  }
  .updates-2-feature-portraits .feature-box .portraits .img-wrap:hover, .updates-2-feature-portraits .feature-box .portraits .img-wrap.picked {
    border: 2px solid #FFF;
    transform: scale(1.05);
    margin: 7px 4px;
  }
  .updates-2-feature-portraits .feature-box .portraits .img-wrap:hover img, .updates-2-feature-portraits .feature-box .portraits .img-wrap.picked img {
    border-width: 1px;
  }
  .updates-2-feature-portraits .feature-box .portrait-texts {
    position: relative;
  }
  .updates-2-feature-portraits .feature-box .portrait-texts .portrait-text {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    text-align: left;
    margin-top: 40px;
    transition: all 0.3s ease;
    transform: scale(1.3);
    filter: blur(3px);
  }
  .updates-2-feature-portraits .feature-box .portrait-texts .portrait-text img {
    margin-right: 20px;
    width: 50px;
    float: left;
  }
  .updates-2-feature-portraits .feature-box .portrait-texts .portrait-text h3 {
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 1.3;
    font-size: 18px;
    letter-spacing: 3px;
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
  }
  .updates-2-feature-portraits .feature-box .portrait-texts .portrait-text .clear {
    clear: both;
  }
  .updates-2-feature-portraits .feature-box .video-box {
    margin-top: 40px;
    text-align: center;
  }
  .updates-2-feature-portraits .feature-box .video-box h4 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 16px;
    letter-spacing: 3px;
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
  }
  .updates-2-feature-portraits .feature-box .video-box img {
    width: 100%;
  }
  .updates-2-feature-portraits .feature-box .video-box .video-icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    width: 50px;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
  .updates-2-feature-portraits .feature-box .video-box h5 {
    margin-top: 20px;
    text-transform: uppercase;
  }
}
@media (min-width: 550px) {
  .updates-2-feature-portraits .feature-box .portraits .img-wrap img {
    height: 133px;
    width: 100px;
  }
}
@media (min-width: 600px) {
  .updates-2-feature-portraits .feature-box {
    min-height: 500px;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .updates-2-feature-portraits .feature-box {
    min-height: 50vw;
    padding: 12vw 0;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1600px) {
  .updates-2-feature-portraits .feature-box {
    padding: 6vw 0;
  }
  .updates-2-feature-portraits .feature-box .portraits .img-wrap img {
    height: 180px;
    width: 135px;
  }
}
@media (min-width: 1920px) {
  .updates-2-feature-portraits .feature-box {
    min-height: 600px;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .updates-2-feature-portraits .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .updates-2-feature-portraits .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .updates-2-feature-portraits .feature-box .feature-content-box p {
    font-size: 20px;
  }
  .updates-2-feature-portraits .feature-box .portraits .img-wrap img {
    height: 200px;
    width: 150px;
  }
}

.feature-box .updates-2-feature-portraits {
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: initial;
  /* FF3.6-15 */
  background: initial;
  /* Chrome10-25,Safari5.1-6 */
  background: initial;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: initial;
  /* IE6-9 */
}

.updates-2-feature-detail {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .updates-2-feature-detail .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
    padding: 20vw 0;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap .feature-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap .kuula {
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: -100px;
    background: #000;
    opacity: 0.5;
    z-index: -1;
  }
  .updates-2-feature-detail .feature-box .feature-content-box {
    text-align: left;
    font-size: 14px;
  }
  .updates-2-feature-detail .feature-box .feature-content-box .feature-content-item {
    text-align: center;
    font-size: 22px;
  }
  .updates-2-feature-detail .feature-box .feature-content-box h2 {
    line-height: 1.3;
    font-size: 40px;
    color: #FFF;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .updates-2-feature-detail .feature-box .detail-heading h3 {
    border: solid 1px rgba(197, 191, 158, 0.4);
    border-left: 0;
    border-right: 0;
    color: #FFF;
    text-align: left;
    padding: 15px 10px;
    line-height: 1.3;
    font-size: 16px;
    letter-spacing: 3px;
    text-align: left;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
  }
  .updates-2-feature-detail .feature-box .detail-top-img img {
    width: 100%;
    margin-top: 30px;
  }
  .updates-2-feature-detail .feature-box .detail-top-img img.icon-overlay {
    margin-top: 0px;
    width: 50px;
    border: 0;
    position: absolute;
    bottom: 0;
    left: calc(50% - 25px);
    top: calc(50% - 0px);
    box-shadow: none;
  }
  .updates-2-feature-detail .feature-box .detail-top-text {
    margin-top: 30px;
  }
  .updates-2-feature-detail .feature-box .detail-top-heading {
    text-align: center;
    margin-top: 60px;
  }
  .updates-2-feature-detail .feature-box .detail-top-heading h3 {
    color: #FFF;
    font-size: 20px;
  }
  .updates-2-feature-detail .feature-box .detail-item {
    margin-top: 20px;
    margin-bottom: 60px;
    text-align: left;
    overflow: hidden;
  }
  .updates-2-feature-detail .feature-box .detail-item h4 {
    color: #FFF;
    text-align: left;
    padding: 0;
    line-height: 1.3;
    font-size: 16px;
    letter-spacing: 3px;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: bold;
  }
  .updates-2-feature-detail .feature-box .detail-item .detail-item-img {
    text-align: right;
  }
  .updates-2-feature-detail .feature-box .detail-item .detail-item-img img {
    width: 100px;
    max-width: 100%;
    height: auto;
    max-height: 100px;
  }
  .updates-2-feature-detail .feature-box .detail-item .detail-item-img img.just-img {
    border: 2px solid #000;
  }
  .updates-2-feature-detail .feature-box .detail-item .detail-item-img img.small-icon-overlay {
    display: none;
    margin-top: 0px;
    width: 30px;
    border: 0;
    position: absolute;
    bottom: 0;
    left: calc(50% - 15px);
    top: calc(50% - 17px);
    box-shadow: none;
  }
  .updates-2-feature-detail .feature-box .video-box {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  .updates-2-feature-detail .feature-box .video-box h4 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 16px;
    letter-spacing: 3px;
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
  }
  .updates-2-feature-detail .feature-box .video-box img {
    width: 100%;
  }
  .updates-2-feature-detail .feature-box .video-box .video-icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    width: 50px;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
  .updates-2-feature-detail .feature-box .video-box h5 {
    margin-top: 20px;
    text-transform: uppercase;
  }
}
@media (min-width: 600px) {
  .updates-2-feature-detail .feature-box {
    min-height: 500px;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .updates-2-feature-detail .feature-box {
    min-height: 50vw;
    padding: 12vw 0;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1200px) {
  .updates-2-feature-detail .feature-box .detail-item {
    text-align: center;
  }
  .updates-2-feature-detail .feature-box .detail-item h4 {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 10px;
    font-size: 14px;
  }
  .updates-2-feature-detail .feature-box .detail-item .detail-item-img {
    text-align: center;
  }
}
@media (min-width: 1600px) {
  .updates-2-feature-detail .feature-box {
    padding: 6vw 0;
  }
}
@media (min-width: 1920px) {
  .updates-2-feature-detail .feature-box {
    min-height: 600px;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .updates-2-feature-detail .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .updates-2-feature-detail .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .updates-2-feature-detail .feature-box .feature-content-box p {
    font-size: 20px;
  }
}

.feature-box .updates-2-feature-detail {
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: initial;
  /* FF3.6-15 */
  background: initial;
  /* Chrome10-25,Safari5.1-6 */
  background: initial;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: initial;
  /* IE6-9 */
}

.updates-2-bottom {
  position: relative;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .updates-2-bottom .bottom-cta {
    padding: 5vw 0;
    text-align: center;
    font-size: 18px;
  }
  .updates-2-bottom .bottom-cta h2 {
    color: #FFF;
    font-size: 40px;
    line-height: 1.7;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .updates-2-bottom .bottom-cta h3 {
    padding: 15px 10px;
    line-height: 1.3;
    font-size: 18px;
    letter-spacing: 3px;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    color: #FFF;
  }
  .updates-2-bottom .bottom-cta img {
    max-width: 100%;
    margin: 20px 0 40px 0;
  }
  .updates-2-bottom .bottom-cta .mini {
    margin-bottom: 40px;
  }
  .updates-2-bottom .bottom-cta .mini p {
    margin: 0;
    font-size: 12px;
  }
  .updates-2-bottom .bottom-cta .btn-buy-now {
    width: 80%;
    max-width: 350px;
  }
}
@media (min-width: 375px) {
  .updates-2-bottom .bottom-cta .btn-bottom-cta {
    font-size: 30px;
  }
}
@media (min-width: 500px) {
  .updates-2-bottom .bottom-cta h2 {
    font-size: 60px;
  }
}
@media (min-width: 768px) {
  .updates-2-bottom .bottom-cta h2 {
    margin-top: 0px;
  }
}
@media (min-width: 1023px) {
  .updates-2-bottom .bottom-cta p {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .updates-2-bottom .bottom-cta h2 {
    margin-top: 50px;
  }
}

.updates-2-divider {
  position: relative;
}
@media (min-width: 0px) {
  .updates-2-divider .divider-box {
    height: 50px;
    background-size: auto 50px;
    background-position: center center;
    background-repeat-y: no-repeat;
    position: absolute;
    top: -50px;
    bottom: -50px;
    margin: auto;
    z-index: 995;
    width: 100%;
  }
  .updates-2-divider .divider-box .emblem {
    position: absolute;
    top: -500px;
    left: -2000px;
    bottom: -500px;
    right: -2000px;
    margin: auto;
    z-index: 999;
    max-height: 40vw;
  }
}
@media (min-width: 1024px) {
  .updates-2-divider .divider-box .emblem {
    max-height: 200px;
  }
}

.updates-2-feature-sectional {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .updates-2-feature-sectional .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
    padding: 20vw 0;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap .feature-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap .kuula {
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: -100px;
    background: #000;
    opacity: 0.5;
    z-index: -1;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box h2 {
    line-height: 1.3;
    font-size: 40px;
    color: #FFF;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box h3, .updates-2-feature-sectional .feature-box .feature-content-box .accordion-item-head {
    line-height: 1.3;
    font-size: 20px;
    letter-spacing: 3px;
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box h3 {
    margin-bottom: 20px;
    margin-top: 30px;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box .feature-content-item p {
    text-align: center;
    font-size: 22px;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box .fake-accordion-item .accordion-item-head {
    border-top: solid 1px rgba(197, 191, 158, 0.4);
    border-bottom: solid 1px rgba(197, 191, 158, 0.4);
    color: #FFF;
    text-align: center;
    padding: 15px 10px;
    transition: all 0.3s ease;
    font-size: 16px;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box .fake-accordion-item .accordion-item-body {
    padding: 30px 20px;
    text-align: left;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box .fake-accordion-item .accordion-item-body .accordion-item-img {
    margin-bottom: 15px;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box p {
    font-size: 14px;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box img {
    width: 100%;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box .video-icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    width: 50px;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
}
@media (min-width: 600px) {
  .updates-2-feature-sectional .feature-box {
    min-height: 500px;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .updates-2-feature-sectional .feature-box {
    min-height: 50vw;
    padding: 12vw 0;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1600px) {
  .updates-2-feature-sectional .feature-box {
    padding: 6vw 0;
  }
}
@media (min-width: 1920px) {
  .updates-2-feature-sectional .feature-box {
    min-height: 600px;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .updates-2-feature-sectional .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .updates-2-feature-sectional .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .updates-2-feature-sectional .feature-box .feature-content-box .accordion-item-body, .updates-2-feature-sectional .feature-box .feature-content-box p {
    font-size: 20px;
  }
}

.feature-box .updates-2-feature-sectional {
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: initial;
  /* FF3.6-15 */
  background: initial;
  /* Chrome10-25,Safari5.1-6 */
  background: initial;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: initial;
  /* IE6-9 */
}

@media (min-width: 0) {
  .error-suggestions .tier-2-container {
    margin-bottom: 20px;
  }
  .error-suggestions .tier-2-container p {
    font-size: 12px;
    margin-top: 0;
  }
  .error-suggestions .tier-2-container h3 {
    margin-top: 10px;
  }
  .error-suggestions .tier-2-container hr {
    margin: 10px 0;
  }
  .error-suggestions .tier-2-container:hover p, .error-suggestions .tier-2-container:hover h3 {
    color: #FFF;
  }
  .error-suggestions .tier-2-container:hover img {
    border-color: #FFF;
  }
}
@media (min-width: 768px) {
  .error-suggestions .tier-2-container {
    height: 400px;
  }
}
@media (min-width: 1920px) {
  .error-suggestions .tier-2-container {
    height: 20vw;
  }
}
@media (min-width: 3000px) {
  .error-suggestions .tier-2-container {
    height: 18vw;
  }
}
@media (min-width: 3000px) {
  .error-suggestions .tier-2-container {
    height: 18vw;
  }
}

@media (min-width: 0px) {
  .attach-box .bg-fix {
    margin-bottom: 20px;
  }
  .attach-box .dark-bg {
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid #000;
    background-image: url(https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/eso-bg-texture-3.png);
    background-size: auto;
    padding-top: 0;
    padding-bottom: 3px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .attach-box .dark-bg .heading {
    font-size: 18px;
    font-weight: 200;
  }
  .attach-box .dark-bg a:hover, .attach-box .dark-bg a:focus, .attach-box .dark-bg a:active {
    color: #FFF;
    text-decoration: none;
  }
  .attach-box .dark-bg a:hover h3, .attach-box .dark-bg a:hover h4, .attach-box .dark-bg a:hover p, .attach-box .dark-bg a:focus h3, .attach-box .dark-bg a:focus h4, .attach-box .dark-bg a:focus p, .attach-box .dark-bg a:active h3, .attach-box .dark-bg a:active h4, .attach-box .dark-bg a:active p {
    color: #FFF;
  }
  .attach-box .dark-bg h3, .attach-box .dark-bg .h3, .attach-box .dark-bg h4, .attach-box .dark-bg .h4 {
    overflow: hidden;
    width: 100%;
  }
  .attach-box .dark-bg .featured h3 {
    font-size: 18px;
    margin-top: 5px;
    padding-bottom: 0;
    letter-spacing: initial;
    color: #a0a2a7;
    font-size: 24px;
  }
  .attach-box .dark-bg .featured p {
    font-size: 12px;
    color: #c9c8c9;
    margin-top: 0;
    text-transform: initial;
  }
  .attach-box .dark-bg h3, .attach-box .dark-bg .h3 {
    color: #FFF;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px;
  }
  .attach-box .dark-bg h4, .attach-box .dark-bg .h4 {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #000;
    border-left: 0;
    border-right: 0;
    padding: 14px;
    margin: 0;
    position: relative;
    color: #a0a2a7;
    font-size: 24px;
  }
  .attach-box .dark-bg h4:not(:first-of-type), .attach-box .dark-bg .h4:not(:first-of-type) {
    margin-top: 2px;
  }
  .attach-box .dark-bg h4 i, .attach-box .dark-bg .h4 i {
    position: absolute;
    top: 18px;
    right: 20px;
  }
  .attach-box .dark-bg h4 .fa-minus, .attach-box .dark-bg .h4 .fa-minus {
    display: none;
  }
  .attach-box .dark-bg ul {
    padding-left: 0;
    margin: 0 20px;
  }
  .attach-box .dark-bg li {
    display: block;
    padding: 0;
    list-style-type: none;
    list-style-position: inside;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  .attach-box .dark-bg li:last-of-type {
    border: none;
  }
  .attach-box .dark-bg li a {
    margin-bottom: 2px;
    padding: 15px 0;
    display: block;
    color: #a0a2a7;
  }
  .attach-box .dark-bg .accordion-heading {
    cursor: pointer;
  }
  .attach-box .dark-bg .accordion-heading.picked, .attach-box .dark-bg .accordion-heading.picked i {
    color: #FFF !important;
  }
  .attach-box .dark-bg .accordion-heading:hover, .attach-box .dark-bg .accordion-heading:focus, .attach-box .dark-bg .accordion-heading:active {
    color: #FFF;
  }
  .attach-box .dark-bg .accordion-heading:hover i, .attach-box .dark-bg .accordion-heading:focus i, .attach-box .dark-bg .accordion-heading:active i {
    color: #FFF;
  }
  .attach-box .dark-bg .accordion-body {
    display: none;
  }
  .attach-box .mobile-sub-menu {
    width: 100%;
    z-index: 99;
    position: relative;
  }
  .attach-box .mobile-sub-menu .featured img {
    margin-top: 15px;
  }
  .attach-box .mobile-sub-heading {
    color: #FFF;
    font-size: 24px;
    background: #636362;
    padding: 15px;
    line-height: 1.3;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .attach-box .mobile-sub-heading .fa {
    position: absolute;
    right: 36px;
    top: 19px;
  }
  .attach-box .mobile-sub-box {
    overflow-y: scroll;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #000;
  }
  .attach-box .mobile-sub-box .mobile-sub-box-ice {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url("./einstein/images/ice-rev.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
  }
  .attach-box .mobile-sub-box.open {
    display: block;
  }
  .attach-box h3:not(.text-info), .attach-box .h3:not(.text-info) {
    display: none;
  }
  .attach-box .fa-close {
    display: none;
  }
}
@media (min-width: 992px) {
  .attach-box .mobile-sub-menu .featured img {
    margin-top: 0;
  }
  .attach-box .mobile-sub-heading {
    display: none;
  }
  .attach-box .mobile-sub-box {
    overflow-y: initial;
    display: block;
    background: initial;
    border: initial;
  }
  .attach-box .mobile-sub-box .mobile-sub-box-ice {
    display: none;
  }
  .attach-box h3:not(.text-info), .attach-box .h3:not(.text-info) {
    display: block;
  }
  .attach-box .dark-bg {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .attach-box .dark-bg h4 {
    padding: 10px;
    font-size: 18px;
  }
  .attach-box .dark-bg h4 i {
    top: 13px;
  }
  .attach-box .dark-bg li {
    font-size: 14px;
  }
  .attach-box .dark-bg li:last-of-type {
    margin-bottom: 20px;
  }
  .attach-box .dark-bg li a {
    padding: 10px 0;
  }
}

@media (min-width: 0px) {
  .crownstore-category-title-count div {
    margin: 30px 0;
  }
  .crownstore-category-title-count p {
    color: #c9c8c9;
    font-size: 20px;
    margin-top: 0px;
  }
  .crownstore-category-title-count .cat-count {
    color: #FFF;
  }
}

.crownstore-category-item-list {
  position: relative;
  margin-bottom: 20px;
  clear: both;
}
@media (min-width: 0px) {
  .crownstore-category-item-list .t2-width {
    position: relative;
    display: block;
    padding: 0 15px 20px 15px;
    float: left;
    height: 220px;
  }
  .crownstore-category-item-list .t2-width h4 {
    position: relative;
    margin-top: 10px;
    font-size: 20px;
  }
  .crownstore-category-item-list .t2-width p {
    color: #FFF;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-size: 25px;
    margin: 0;
  }
  .crownstore-category-item-list .t2-width .icon {
    width: 25px;
    border: 0;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 300px;
  }
  .crownstore-category-item-list .t2-width.t2-big .eso-plus-label {
    padding: 0 15px 0 10px;
  }
  .crownstore-category-item-list .t2-width.t2-big .eso-plus-label .epd-label {
    display: inline;
  }
  .crownstore-category-item-list img {
    width: 100%;
    border: 2px solid #000;
  }
  .crownstore-category-item-list h1 {
    margin-top: 20px;
  }
}
@media (min-width: 400px) {
  .crownstore-category-item-list .t2-width {
    height: 260px;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 350px;
  }
}
@media (min-width: 450px) {
  .crownstore-category-item-list .t2-width {
    height: 270px;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 400px;
  }
}
@media (min-width: 500px) {
  .crownstore-category-item-list .t2-width {
    height: 280px;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 450px;
  }
}
@media (min-width: 600px) {
  .crownstore-category-item-list .t2-width {
    height: 290px;
  }
  .crownstore-category-item-list .t2-width .eso-plus-label {
    padding: 0 15px 0 10px;
  }
  .crownstore-category-item-list .t2-width .eso-plus-label .epd-label {
    display: inline;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 500px;
  }
}
@media (min-width: 700px) {
  .crownstore-category-item-list .t2-width {
    height: 310px;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 520px;
  }
}
@media (min-width: 768px) {
  .crownstore-category-item-list .t2-width {
    height: 320px;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 320px;
  }
}
@media (min-width: 992px) {
  .crownstore-category-item-list .t2-width {
    height: 280px;
  }
  .crownstore-category-item-list .t2-width .eso-plus-label {
    padding: 0 6px 0 6px;
  }
  .crownstore-category-item-list .t2-width .eso-plus-label .epd-label {
    display: none;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .crownstore-category-item-list .t2-width {
    height: 280px;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 330px;
  }
}
@media (min-width: 2400px) {
  .crownstore-category-item-list .t2-width {
    height: 400px;
  }
  .crownstore-category-item-list .t2-width .eso-plus-label {
    padding: 0 15px 0 10px;
  }
  .crownstore-category-item-list .t2-width .eso-plus-label .epd-label {
    display: inline;
  }
  .crownstore-category-item-list .t2-width.t2-big {
    height: 550px;
  }
}

@media (min-width: 0px) {
  .crownstore-item-top h1 {
    margin-top: 60px;
  }
  .crownstore-item-top p {
    color: #c9c8c9;
    font-size: 30px !important;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    margin: 0;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .crownstore-item-top .crown-details {
    font-size: 30px;
  }
  .crownstore-item-top .icon {
    width: 25px;
  }
}
@media (min-width: 992px) {
  .crownstore-item-top h1 {
    margin-top: 30px;
  }
}

@media (min-width: 0px) {
  .crownstore-item-body .flag-box {
    position: relative;
    margin-top: 5px;
  }
  .crownstore-item-body .flag-box .crown-flag.lto {
    text-transform: uppercase;
  }
  .crownstore-item-body .housing {
    margin-top: 15px;
  }
  .crownstore-item-body .housing p {
    display: inline-block;
    color: #c9c8c9;
    font-size: 30px;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    margin: 0;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .crownstore-item-body .housing .icon {
    width: 25px;
    border: 0;
  }
}

@media (min-width: 0px) {
  .de .crownstore-item-body .flag-box .crown-flag.lto {
    font-size: 10px;
  }
}
@media (min-width: 462px) {
  .de .crownstore-item-body .flag-box .crown-flag.lto {
    font-size: 13px;
  }
}

@media (min-width: 0px) {
  .fr .crownstore-item-body .flag-box .crown-flag.lto {
    font-size: 11px;
  }
}
@media (min-width: 462px) {
  .fr .crownstore-item-body .flag-box .crown-flag.lto {
    font-size: 13px;
  }
}

@media (min-width: 0px) {
  .crownstore-item-platform-buttons p {
    text-transform: uppercase;
    color: #c9c8c9;
    margin-bottom: 5px;
  }
  .crownstore-item-platform-buttons .platform-button {
    display: inline-block;
    width: 25vw;
    margin: 0 10px 20px 10px;
  }
  .crownstore-item-platform-buttons .platform-button img {
    border: 0;
    margin: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
}
@media (min-width: 768px) {
  .crownstore-item-platform-buttons .platform-button {
    width: initial;
  }
}

.free-play {
  text-align: center;
  overflow: hidden;
}
@media (min-width: 0px) {
  .free-play .content-container-wrapper {
    background-color: #000;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .free-play .content-container-wrapper .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .free-play .columns {
    padding: 0px;
  }
  .free-play .bg-gradient-transition {
    background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, black 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000 ", endColorstr="#00000000",GradientType=0 );
    /* IE6-9 */
    height: 120px;
  }
  .free-play .content-container {
    padding: 20px 40px 70px 40px;
    border: 1px solid #000;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    background-color: rgba(59, 57, 47, 0.95);
  }
  .free-play .content-container p {
    color: #FFF;
  }
  .free-play .content-container h2 {
    color: #FFF;
    font-size: 48px;
    line-height: 1;
    padding: 17px 0 22px 0;
  }
  .free-play .content-container h4 {
    font-size: 24px;
    margin-top: -14px;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .free-play .content-container h5 {
    color: #FFF;
    font-size: 30px;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    padding-bottom: 10px;
  }
  .free-play .btn-platform {
    border: 1px solid #000;
    margin-bottom: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
  }
  .free-play .btn-platform img {
    height: 40px;
    border: none;
    box-shadow: none;
  }
  .free-play .btn-ps4 {
    background-color: #02308C;
  }
  .free-play .btn-ps4:hover {
    border-color: #02308C;
  }
  .free-play .btn-xbox {
    background-color: #007D00;
  }
  .free-play .btn-xbox:hover {
    border-color: #007D00;
  }
  .free-play .btn-pcmac {
    background-color: #625F4F;
  }
  .free-play .btn-pcmac:hover {
    border-color: #625F4F;
  }
  .free-play .btn-steam {
    background-color: #000;
  }
  .free-play .btn-steam:hover {
    border-color: #000;
  }
}
@media (min-width: 768px) {
  .free-play .columns {
    padding: 0 15px 0 15px;
  }
  .free-play .content-container {
    margin: 30px 0 30px 0;
  }
  .free-play .content-container img.logo {
    display: none;
  }
  .free-play .content-container h5 {
    margin: 0px;
  }
}
@media (min-width: 1700px) {
  .free-play .columns {
    width: 35%;
    margin-left: 65%;
  }
}

@media (min-width: 0) {
  .search-results .sl-img-plate .tier-2-container {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .search-results .sl-img-plate .tier-2-container {
    height: 35vw;
  }
}
@media (min-width: 992px) {
  .search-results .sl-img-plate .tier-2-container {
    height: 320px;
  }
}
@media (min-width: 1200px) {
  .search-results .sl-img-plate .tier-2-container {
    height: 270px;
  }
}
@media (min-width: 2400px) {
  .search-results .sl-img-plate .tier-2-container {
    height: 450px;
  }
}

.buy-now-top {
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
}

@media (min-width: 0px) {
  .buy-now-top .bnt-bg, .buy-now-lightbox .bnt-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: no-repeat center center;
    background-position: top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transition: background 0.5s ease;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
  }
  .buy-now-top .bnt-grade, .buy-now-lightbox .bnt-grade {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b392f+0,3b392f+100&1+0,0.7+20,0.7+100 */
    background: -moz-linear-gradient(top, rgba(59, 57, 47, 0) 0%, rgba(59, 59, 59, 0.7) 30%, rgba(59, 59, 59, 0.7) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(59, 57, 47, 0) 0%, rgba(59, 59, 59, 0.7) 30%, rgba(59, 59, 59, 0.7) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(59, 57, 47, 0) 0%, rgba(59, 59, 59, 0.7) 30%, rgba(59, 59, 59, 0.7) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#636362", endColorstr="#b33b392f",GradientType=0 );
    /* IE6-9 */
  }
  .buy-now-top .sku-selections, .buy-now-lightbox .sku-selections {
    padding: 20px 10px 10px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.37);
  }
  .buy-now-top .btn-buy-now-sm, .buy-now-top .btn-buy-now-sm-alt, .buy-now-lightbox .btn-buy-now-sm, .buy-now-lightbox .btn-buy-now-sm-alt {
    font-size: 16px !important;
  }
  .buy-now-top .btn-buy-now-sm .fa, .buy-now-top .btn-buy-now-sm-alt .fa, .buy-now-lightbox .btn-buy-now-sm .fa, .buy-now-lightbox .btn-buy-now-sm-alt .fa {
    color: #FFF;
    font-size: 12px;
    position: absolute;
    top: 9px;
    right: 6px;
  }
  .buy-now-top .btn-buy-now-sm .big .fa, .buy-now-top .btn-buy-now-sm-alt .big .fa, .buy-now-lightbox .btn-buy-now-sm .big .fa, .buy-now-lightbox .btn-buy-now-sm-alt .big .fa {
    position: absolute;
    top: 3px;
    right: 0;
  }
  .buy-now-top .btn-buy-now-sm.picked, .buy-now-top .btn-buy-now-sm-alt.picked, .buy-now-lightbox .btn-buy-now-sm.picked, .buy-now-lightbox .btn-buy-now-sm-alt.picked {
    color: #000;
    border-color: #819366 !important;
    background: #819366;
  }
  .buy-now-top .btn-buy-now-sm.picked .fa, .buy-now-top .btn-buy-now-sm-alt.picked .fa, .buy-now-lightbox .btn-buy-now-sm.picked .fa, .buy-now-lightbox .btn-buy-now-sm-alt.picked .fa {
    color: #000;
  }
  .buy-now-top .btn-buy-now-sm.red-box-icon, .buy-now-top .btn-buy-now-sm-alt.red-box-icon, .buy-now-lightbox .btn-buy-now-sm.red-box-icon, .buy-now-lightbox .btn-buy-now-sm-alt.red-box-icon {
    padding-right: 20px;
  }
  .buy-now-top .sku-category-selection span, .buy-now-lightbox .sku-category-selection span {
    display: inline-block;
  }
  .buy-now-top .top-section, .buy-now-lightbox .top-section {
    display: none;
    margin-bottom: 40px;
  }
  .buy-now-top .top-section.picked, .buy-now-lightbox .top-section.picked {
    display: block;
  }
  .buy-now-top .top-section .form-box, .buy-now-lightbox .top-section .form-box {
    background-image: url(https://esossl-a.akamaihd.net/uploads/website/Q3ZeOwb7aw/eso-bg-texture-3.png);
    background-size: auto;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .buy-now-top .top-section h3, .buy-now-lightbox .top-section h3 {
    font-size: 24px;
    line-height: 1;
    text-align: center;
    margin-top: 20px;
  }
  .buy-now-top .top-section h3.selection-label, .buy-now-lightbox .top-section h3.selection-label {
    margin-bottom: 10px;
  }
  .buy-now-top .top-section h2, .buy-now-lightbox .top-section h2 {
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    font-size: 40px;
    line-height: 1;
    text-align: center;
  }
  .buy-now-top .top-section h4, .buy-now-lightbox .top-section h4 {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 24px;
    line-height: 1.3;
    color: #FFF;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .buy-now-top .top-section h4 span, .buy-now-lightbox .top-section h4 span {
    color: #FFF;
    font-size: 20px;
    text-decoration: line-through;
  }
  .buy-now-top .top-section p, .buy-now-lightbox .top-section p {
    text-align: center;
    font-size: 16px;
    padding: 0 15px;
    margin: 20 0 40 0;
  }
  .buy-now-top .top-section .red-box, .buy-now-lightbox .top-section .red-box {
    background: rgba(170, 0, 0, 0.5);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 30px;
    overflow: hidden;
    margin: 0 15px 20px 15px;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  }
  .buy-now-top .top-section .red-box .top img, .buy-now-lightbox .top-section .red-box .top img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
  }
  .buy-now-top .top-section .red-box h3, .buy-now-lightbox .top-section .red-box h3 {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    color: #FFF;
    font-size: 14px;
    line-height: 1.3;
    text-transform: initial;
    margin-top: 0px;
  }
  .buy-now-top .top-section .red-box p, .buy-now-lightbox .top-section .red-box p {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 14px;
    margin: 0;
  }
  .buy-now-top .top-section .red-box .more-details, .buy-now-top .top-section .red-box .fewer-details, .buy-now-lightbox .top-section .red-box .more-details, .buy-now-lightbox .top-section .red-box .fewer-details {
    color: #a0a2a7;
    text-transform: uppercase;
    margin-top: 30px;
    cursor: pointer;
    font-size: 12px;
  }
  .buy-now-top .top-section .red-box .more-details i, .buy-now-top .top-section .red-box .fewer-details i, .buy-now-lightbox .top-section .red-box .more-details i, .buy-now-lightbox .top-section .red-box .fewer-details i {
    font-size: 10px;
  }
  .buy-now-top .top-section .red-box .more-details-box, .buy-now-lightbox .top-section .red-box .more-details-box {
    display: none;
  }
  .buy-now-top .top-section .clear-box, .buy-now-lightbox .top-section .clear-box {
    padding: 30px 0px 0px 0px;
    overflow: hidden;
    margin: 0 15px 20px 15px;
    text-align: center;
  }
  .buy-now-top .top-section .clear-box h3, .buy-now-lightbox .top-section .clear-box h3 {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: initial;
    margin-top: 0px;
  }
  .buy-now-top .top-section .clear-box p, .buy-now-lightbox .top-section .clear-box p {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
  }
  .buy-now-top .top-section .clear-box .less-details-box, .buy-now-lightbox .top-section .clear-box .less-details-box {
    margin-top: 5px;
  }
  .buy-now-top .top-section .clear-box .more-details, .buy-now-top .top-section .clear-box .fewer-details, .buy-now-lightbox .top-section .clear-box .more-details, .buy-now-lightbox .top-section .clear-box .fewer-details {
    color: #FFF;
    text-transform: uppercase;
    margin-top: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
  }
  .buy-now-top .top-section .clear-box .more-details i, .buy-now-top .top-section .clear-box .fewer-details i, .buy-now-lightbox .top-section .clear-box .more-details i, .buy-now-lightbox .top-section .clear-box .fewer-details i {
    font-size: 10px;
  }
  .buy-now-top .top-section .clear-box .more-details-box, .buy-now-lightbox .top-section .clear-box .more-details-box {
    display: none;
    margin-top: 5px;
  }
  .buy-now-top .top-section .carousel, .buy-now-lightbox .top-section .carousel {
    padding: 20px 20px 10px 20px;
    position: relative;
    overflow: hidden;
    width: calc(100% + 40px);
    left: -20px;
  }
  .buy-now-top .top-section .carousel .carousel-item, .buy-now-lightbox .top-section .carousel .carousel-item {
    display: none;
    position: relative;
    transition: transform 0.2s ease;
  }
  .buy-now-top .top-section .carousel .carousel-item.picked, .buy-now-lightbox .top-section .carousel .carousel-item.picked {
    display: block;
  }
  .buy-now-top .top-section .carousel .carousel-item img, .buy-now-lightbox .top-section .carousel .carousel-item img {
    display: inline-block;
    max-width: 100%;
  }
  .buy-now-top .top-section .carousel .carousel-item img[src$=".png"], .buy-now-lightbox .top-section .carousel .carousel-item img[src$=".png"] {
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
    border: 0;
  }
  .buy-now-top .top-section .carousel .carousel-item .video-icon, .buy-now-lightbox .top-section .carousel .carousel-item .video-icon {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 35px);
    width: 100px;
  }
  .buy-now-top .top-section .carousel .cn-prev, .buy-now-top .top-section .carousel .cn-next, .buy-now-lightbox .top-section .carousel .cn-prev, .buy-now-lightbox .top-section .carousel .cn-next {
    position: absolute;
    display: inline-block;
    margin: 0 10px;
    font-size: 35px;
    color: #a0a2a7;
    cursor: pointer;
    opacity: 1;
    top: calc(50% - 23.5px);
    transition: all 0.3s ease;
  }
  .buy-now-top .top-section .carousel .cn-prev:hover, .buy-now-top .top-section .carousel .cn-next:hover, .buy-now-lightbox .top-section .carousel .cn-prev:hover, .buy-now-lightbox .top-section .carousel .cn-next:hover {
    color: #e6e3de;
  }
  .buy-now-top .top-section .carousel .cn-prev, .buy-now-lightbox .top-section .carousel .cn-prev {
    left: 15px;
  }
  .buy-now-top .top-section .carousel .cn-next, .buy-now-lightbox .top-section .carousel .cn-next {
    right: 15px;
  }
  .buy-now-top .top-section .carousel .cn-item, .buy-now-lightbox .top-section .carousel .cn-item {
    display: inline-block;
    font-size: 10px;
    position: relative;
    top: -2px;
    color: #c9c8c9;
    cursor: pointer;
  }
  .buy-now-top .top-section .carousel .cn-item.picked, .buy-now-lightbox .top-section .carousel .cn-item.picked {
    color: #819366;
  }
  .buy-now-top .top-section .carousel .cn-item:hover, .buy-now-lightbox .top-section .carousel .cn-item:hover {
    color: #e6e3de;
  }
  .buy-now-top .top-section .ratings-logo, .buy-now-lightbox .top-section .ratings-logo {
    float: right;
    height: 70px;
    max-height: 100%;
    max-width: 100%;
    border: 0;
    margin: 15px 0 40px 15px;
  }
}
@media (min-width: 350px) {
  .buy-now-top .btn-buy-now-sm, .buy-now-top .btn-buy-now-sm-alt, .buy-now-lightbox .btn-buy-now-sm, .buy-now-lightbox .btn-buy-now-sm-alt {
    font-size: 18px !important;
  }
}
@media (min-width: 768px) {
  .buy-now-top .btn-buy-now-sm:hover .fa, .buy-now-top .btn-buy-now-sm-alt:hover .fa, .buy-now-lightbox .btn-buy-now-sm:hover .fa, .buy-now-lightbox .btn-buy-now-sm-alt:hover .fa {
    color: #000;
  }
  .buy-now-top .top-section h2, .buy-now-lightbox .top-section h2 {
    font-size: 60px;
  }
  .buy-now-top .red-box .top img, .buy-now-lightbox .red-box .top img {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .buy-now-top .top-section .carousel .cn-prev, .buy-now-top .top-section .carousel .cn-next, .buy-now-lightbox .top-section .carousel .cn-prev, .buy-now-lightbox .top-section .carousel .cn-next {
    opacity: 0;
  }
  .buy-now-top .top-section .carousel:hover .cn-prev, .buy-now-top .top-section .carousel:hover .cn-next, .buy-now-top .top-section .carousel:focus-within .cn-prev, .buy-now-top .top-section .carousel:focus-within .cn-next, .buy-now-lightbox .top-section .carousel:hover .cn-prev, .buy-now-lightbox .top-section .carousel:hover .cn-next, .buy-now-lightbox .top-section .carousel:focus-within .cn-prev, .buy-now-lightbox .top-section .carousel:focus-within .cn-next {
    opacity: 1;
  }
}

.btn-buy-now-lg {
  font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  background: #881A04;
  border: none;
  color: #FFF;
  font-size: 24px;
  width: 100%;
  height: 60px;
  line-height: 60px;
}
.btn-buy-now-lg .fa {
  top: 20px;
}
.btn-buy-now-lg:hover {
  background: #AA2106;
}

.lightbox-wrap {
  display: none;
}
.lightbox-wrap.picked {
  display: block;
}

.buy-now-top .img-btn {
  margin-bottom: 10px;
}

.lightbox-box, .buy-now-top, .buy-now-lightbox {
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
}
.lightbox-box .retailers-list a, .buy-now-top .retailers-list a, .buy-now-lightbox .retailers-list a {
  position: relative;
  display: block;
  transition: all 0.3s ease;
  width: 100%;
  border: solid 2px #c9c8c9;
  background: #030303;
  height: 70px;
  line-height: 68px;
  padding-left: 15px;
  margin-bottom: 10px;
}
.lightbox-box .retailers-list a:hover, .buy-now-top .retailers-list a:hover, .buy-now-lightbox .retailers-list a:hover {
  color: #FFF;
  border: 2px solid #FFF;
}
.lightbox-box .retailers-list a.disabled, .buy-now-top .retailers-list a.disabled, .buy-now-lightbox .retailers-list a.disabled {
  background-color: #151511;
  color: #3B392F;
  border-color: #3B392F;
  cursor: default;
}
.lightbox-box .retailers-list a i, .buy-now-top .retailers-list a i, .buy-now-lightbox .retailers-list a i {
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 40px;
  color: #a0a2a7;
  transition: all 0.3s ease;
}
.lightbox-box .row h4, .buy-now-top .row h4, .buy-now-lightbox .row h4 {
  font-size: 16px;
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 10px 0 10px 0;
  font-weight: normal;
  color: #FFF;
  font-weight: bold;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}
.lightbox-box .row h5, .buy-now-top .row h5, .buy-now-lightbox .row h5 {
  font-size: 16px;
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 10px 0 10px 0;
  font-weight: normal;
  color: #FFF;
  font-weight: bold;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}
.lightbox-box .row h6, .buy-now-top .row h6, .buy-now-lightbox .row h6 {
  font-size: 16px;
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  line-height: 1.3;
  text-transform: initial;
  margin: 10px 0 10px 0;
  font-weight: normal;
  color: #FFF;
  font-weight: bold;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}
.lightbox-box .sku-grid, .buy-now-top .sku-grid, .buy-now-lightbox .sku-grid {
  margin: 10px 15px 0px 15px;
  background: #030303;
  border: 2px solid #c9c8c9;
  padding: 15px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.lightbox-box .sku-grid img, .buy-now-top .sku-grid img, .buy-now-lightbox .sku-grid img {
  border: 2px solid #c9c8c9;
  cursor: pointer;
}
.lightbox-box .sku-grid img:hover, .buy-now-top .sku-grid img:hover, .buy-now-lightbox .sku-grid img:hover {
  border-color: #FFF;
}
.lightbox-box .sku-grid .picked img, .buy-now-top .sku-grid .picked img, .buy-now-lightbox .sku-grid .picked img {
  border-color: #819366;
  cursor: initial;
}
.lightbox-box .sku-grid .row h4, .lightbox-box .sku-grid .row h5, .lightbox-box .sku-grid .row h6, .buy-now-top .sku-grid .row h4, .buy-now-top .sku-grid .row h5, .buy-now-top .sku-grid .row h6, .buy-now-lightbox .sku-grid .row h4, .buy-now-lightbox .sku-grid .row h5, .buy-now-lightbox .sku-grid .row h6 {
  margin-top: 0px;
  font-size: 10px;
  color: #FFF;
}
.lightbox-box .sku-grid .row h5, .lightbox-box .sku-grid .row h6, .buy-now-top .sku-grid .row h5, .buy-now-top .sku-grid .row h6, .buy-now-lightbox .sku-grid .row h5, .buy-now-lightbox .sku-grid .row h6 {
  color: #c9c8c9;
}
.lightbox-box .sku-grid ul, .buy-now-top .sku-grid ul, .buy-now-lightbox .sku-grid ul {
  padding-left: 15px;
  margin-bottom: 0;
}
.lightbox-box .sku-grid .small-text, .buy-now-top .sku-grid .small-text, .buy-now-lightbox .sku-grid .small-text {
  font-size: 10px;
}
@media (min-width: 1024px) {
  .lightbox-box .sku-grid, .buy-now-top .sku-grid, .buy-now-lightbox .sku-grid {
    margin: 10px 10px 0px 10px;
  }
  .lightbox-box .sku-grid .row h4, .lightbox-box .sku-grid .row h5, .lightbox-box .sku-grid .row h6, .lightbox-box .sku-grid .buy-now-lightbox .row h4, .lightbox-box .sku-grid .buy-now-lightbox .row h5, .lightbox-box .sku-grid .buy-now-lightbox .row h6, .buy-now-top .sku-grid .row h4, .buy-now-top .sku-grid .row h5, .buy-now-top .sku-grid .row h6, .buy-now-top .sku-grid .buy-now-lightbox .row h4, .buy-now-top .sku-grid .buy-now-lightbox .row h5, .buy-now-top .sku-grid .buy-now-lightbox .row h6, .buy-now-lightbox .sku-grid .row h4, .buy-now-lightbox .sku-grid .row h5, .buy-now-lightbox .sku-grid .row h6, .buy-now-lightbox .sku-grid .buy-now-lightbox .row h4, .buy-now-lightbox .sku-grid .buy-now-lightbox .row h5, .buy-now-lightbox .sku-grid .buy-now-lightbox .row h6 {
    font-size: 16px;
  }
  .lightbox-box .sku-grid .small-text, .buy-now-top .sku-grid .small-text, .buy-now-lightbox .sku-grid .small-text {
    font-size: 12px;
  }
}
.lightbox-box .v-line-l, .buy-now-top .v-line-l, .buy-now-lightbox .v-line-l {
  border-left: 1px solid #c9c8c9;
}
.lightbox-box .v-line-r, .buy-now-top .v-line-r, .buy-now-lightbox .v-line-r {
  border-right: 1px solid #c9c8c9;
}
.lightbox-box .v-line-r-big, .buy-now-top .v-line-r-big, .buy-now-lightbox .v-line-r-big {
  border-right: 2px solid #c9c8c9;
}
.lightbox-box .v-line-l-big, .buy-now-top .v-line-l-big, .buy-now-lightbox .v-line-l-big {
  border-left: 2px solid rgba(0, 0, 0, 0);
}
.lightbox-box .v-pad-bot, .buy-now-top .v-pad-bot, .buy-now-lightbox .v-pad-bot {
  padding-bottom: 15px;
}
.lightbox-box .v-pad-top, .buy-now-top .v-pad-top, .buy-now-lightbox .v-pad-top {
  padding-top: 15px;
}
.lightbox-box .line, .buy-now-top .line, .buy-now-lightbox .line {
  height: 2px;
  background: #c9c8c9;
  width: calc(100% + 15px);
}
.lightbox-box .img-btn, .buy-now-top .img-btn, .buy-now-lightbox .img-btn {
  height: 70px;
  text-align: center;
  line-height: 63px;
  border: solid 2px #c9c8c9;
  background: #030303;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .lightbox-box .img-btn, .buy-now-top .img-btn, .buy-now-lightbox .img-btn {
    margin-bottom: 10px;
  }
}
.lightbox-box .img-btn:hover, .buy-now-top .img-btn:hover, .buy-now-lightbox .img-btn:hover {
  border-color: #FFF;
}
.lightbox-box .img-btn.picked, .buy-now-top .img-btn.picked, .buy-now-lightbox .img-btn.picked {
  border-color: #819366;
}
.lightbox-box .img-btn img, .buy-now-top .img-btn img, .buy-now-lightbox .img-btn img {
  display: inline-block;
  max-height: 80%;
  max-width: 80%;
}
.lightbox-box .form-control, .buy-now-top .form-control, .buy-now-lightbox .form-control {
  height: 70px;
  background: #030303;
  line-height: 42px;
  border: solid 2px #c9c8c9;
}
.lightbox-box .select-container, .buy-now-top .select-container, .buy-now-lightbox .select-container {
  position: relative;
}
.lightbox-box .select-container .select-icon, .buy-now-top .select-container .select-icon, .buy-now-lightbox .select-container .select-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  color: #a0a2a7;
  transition: all 0.3s ease;
}
.lightbox-box .select-container:hover .select-icon, .buy-now-top .select-container:hover .select-icon, .buy-now-lightbox .select-container:hover .select-icon {
  color: #FFF;
}
.lightbox-box .select-container .regions, .lightbox-box .select-container .retailers, .buy-now-top .select-container .regions, .buy-now-top .select-container .retailers, .buy-now-lightbox .select-container .regions, .buy-now-lightbox .select-container .retailers {
  -moz-appearance: none;
}
.lightbox-box p.no-retailers-message, .buy-now-top p.no-retailers-message, .buy-now-lightbox p.no-retailers-message {
  color: #FFF;
  font-size: 20px;
  padding: 0 15px;
}

.lightbox-box {
  overflow: hidden;
}
.lightbox-box .close-it {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #a0a2a7;
  cursor: pointer;
  font-size: 30px;
  z-index: 99999;
}
.lightbox-box .close-it:hover {
  color: #FFF;
}
.lightbox-box .off-box {
  height: initial;
  line-height: initial;
}
.lightbox-box h1, .lightbox-box h2, .lightbox-box h3, .lightbox-box h4, .lightbox-box h5, .lightbox-box h6 {
  text-align: left;
}
.lightbox-box h3 {
  font-size: 20px;
  color: #FFF;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  line-height: 1.3;
  width: 85%;
  text-transform: uppercase;
}
.lightbox-box h2 {
  font-size: 60px;
  color: #FFF;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  line-height: 1.3;
  font-weight: bold;
}
@media (max-width: 350px) {
  .lightbox-box h2 {
    font-size: 50px;
  }
}
.lightbox-box h4 {
  margin: 0px;
}
.lightbox-box a, .lightbox-box .img-btn {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.lightbox-box .row p {
  color: #FFF;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}
.lightbox-box p.no-retailers-message {
  color: #FFF;
  font-size: 20px;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}
.lightbox-box .btn-buy-now-lg {
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  font-size: 20px;
}
.lightbox-box select {
  margin-top: 0;
}

@media (max-width: 320px) {
  .fr .buy-now-top .btn-buy-now-lg {
    font-size: 19px;
  }
  .fr .buy-now-top .btn-buy-now-sm, .fr .buy-now-top .btn-buy-now-sm-alt {
    font-size: 16px;
  }
}
.buy-now-details {
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
}
@media (min-width: 0px) {
  .buy-now-details .tab-box {
    background: rgba(0, 0, 0, 0.2);
    background-image: url("./images/bg/smoke-1a.png");
    background-attachment: fixed;
    background-size: auto;
  }
  .buy-now-details .tab-section {
    display: none;
  }
  .buy-now-details .tab-section.picked {
    display: block;
  }
  .buy-now-details .tab-section .tabs {
    display: none;
    padding: 0;
    margin: 0 15px 20px 15px;
    border: solid 2px #636362;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    position: relative;
    top: -2px;
    width: calc(100% - 30px);
  }
  .buy-now-details .tab-section .bnd-mobile-title {
    color: #FFF;
    margin: 20px 15px;
    padding-bottom: 20px;
    border: solid 2px #000;
    border-color: #636362;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    width: calc(100% - 30px);
  }
  .buy-now-details .tab-section .bnd-mobile-title .fa {
    display: block;
    float: right;
    color: #a0a2a7;
    font-size: 22px;
    margin-right: 5px;
    margin-top: 5px;
  }
  .buy-now-details .tab-section .bnd-mobile-title:hover {
    color: #FFF;
    cursor: pointer;
  }
  .buy-now-details .tab-section .btn-tab {
    width: 100%;
    border: 0;
    color: #a0a2a7;
    text-align: left;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-size: 20px;
    margin: 10px 0;
    height: auto;
    line-height: initial;
    text-transform: uppercase;
    padding-bottom: 10px;
  }
  .buy-now-details .tab-section .btn-tab:hover {
    color: #FFF;
  }
  .buy-now-details .tab-section .btn-tab:first-child {
    margin-top: 0;
  }
  .buy-now-details .tab-section .tab-item {
    height: auto;
    margin-bottom: 20px;
  }
  .buy-now-details .tab-section .tab-item img {
    width: 100%;
    margin-bottom: 10px;
  }
  .buy-now-details .tab-section .tab-item img[src$=".png"] {
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
    border: 0;
  }
  .buy-now-details .tab-section .tab-item .video-icon {
    position: absolute;
    left: calc(50% - 50px);
    top: calc(26.4% - 35px);
    width: 100px;
  }
  .buy-now-details .tab-section .tab-item h3 {
    color: #FFF;
    font-size: 14px;
    line-height: 1.3;
    font-weight: bold;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  }
  .buy-now-details .tab-section .tab-item p {
    color: #c9c8c9;
    font-size: 14px;
    margin: 0;
  }
  .buy-now-details .tab-section .tab-item:hover * {
    color: #FFF;
  }
}
@media (min-width: 992px) {
  .buy-now-details .tab-section .tabs {
    display: block;
  }
  .buy-now-details .tab-section .bnd-mobile-title {
    display: none;
  }
  .buy-now-details .tab-section .btn-tab {
    width: initial;
    border: solid 4px rgba(0, 0, 0, 0);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: #a0a2a7;
    margin: 0;
    padding: 0 30px;
    position: relative;
    top: 2px;
    height: 70px;
    line-height: 66px;
  }
  .buy-now-details .tab-section .btn-tab.picked, .buy-now-details .tab-section .btn-tab:hover {
    border-color: #FFF;
    background: rgba(238, 202, 42, 0.15);
    color: #FFF;
  }
  .buy-now-details .tab-section .tab-item {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .buy-now-details .tab-section .tab-item {
    height: 400px;
  }
}
@media (min-width: 2400px) {
  .buy-now-details .tab-section .tab-item {
    height: 650px;
  }
}

@media (min-width: 0px) {
  .buy-now-grid {
    margin: 20px 0 80px 0;
  }
  .buy-now-grid .heading {
    line-height: 1.3;
    font-size: 40px;
    color: #FFF;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    text-align: center;
    text-transform: uppercase;
    margin-top: 80px;
  }
  .buy-now-grid .ce-mobile {
    font-size: 40px;
    text-align: center;
    color: #FFF;
  }
  .buy-now-grid .secondary {
    display: none;
  }
  .buy-now-grid .grid-box-wrap {
    position: relative;
    color: #c9c8c9;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
    margin-bottom: 80px;
  }
  .buy-now-grid .grid-box-wrap:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
  }
  .buy-now-grid .grid-box-wrap .left-button, .buy-now-grid .grid-box-wrap .right-button {
    position: absolute;
    top: 100px;
    height: 100px;
    width: 30px;
    text-align: center;
    line-height: 100px;
    background: #000;
    color: #a0a2a7;
    z-index: 500;
  }
  .buy-now-grid .grid-box-wrap .left-button:hover, .buy-now-grid .grid-box-wrap .right-button:hover {
    color: #FFF;
    background: rgba(0, 0, 0, 0.8);
  }
  .buy-now-grid .grid-box-wrap .left-button {
    left: 0;
  }
  .buy-now-grid .grid-box-wrap .right-button {
    right: 0;
  }
  .buy-now-grid .grid-box-wrap .grid-menu {
    width: 60%;
    z-index: 100;
  }
  .buy-now-grid .grid-box-wrap .grid-menu .head {
    opacity: 0;
    padding-bottom: 90px;
  }
  .buy-now-grid .grid-box-wrap .grid-items {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 15px);
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item {
    width: calc(100vw - 40px);
    float: left;
    margin: 0 20px;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .show-hide-button {
    display: none;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head {
    text-align: center;
    position: relative;
    padding-bottom: 90px;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head .box-art {
    display: inline-block;
    width: 70%;
    margin: 0 15% 20px 15%;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head .price {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head .price .sale {
    font-size: 14px;
    color: #c9c8c9;
    text-decoration: line-through;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head .main-label {
    display: inline-block;
    font-size: 24px;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    color: #c9c8c9;
    padding-bottom: 0;
    line-height: 1.3;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head .edition {
    display: inline-block;
    font-size: 18px;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    color: #c9c8c9;
    line-height: 1.3;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head .btn-buy-now-lg {
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .head .btn-buy-now-lg .fa {
    top: 15px;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item.picked .main-label, .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item.picked .edition {
    color: #FFF;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item:hover .head .main-label, .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item:hover .head .edition {
    color: #FFF;
  }
  .buy-now-grid .grid-box-wrap .grid-items .grid-items-wrap .grid-item .bullets {
    width: calc(40vw - 25px);
    margin-left: calc(60vw - 10px);
  }
  .buy-now-grid .grid-box-wrap .bullet {
    border: solid 2px #c9c8c9;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding: 20px 0 20px 0;
    transition: all 0.3s ease;
  }
  .buy-now-grid .grid-box-wrap .bullet .point {
    font-size: 24px;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    color: #c9c8c9;
  }
  .buy-now-grid .grid-box-wrap .bullet .description {
    margin: 10px 0;
    font-size: 14px;
  }
  .buy-now-grid .grid-box-wrap .bullet .description p {
    margin: 0;
    padding: 0;
    line-height: 1.3;
  }
  .buy-now-grid .grid-box-wrap .bullet .description ul {
    padding: 0 0 0 20px;
  }
  .buy-now-grid .grid-box-wrap .bullet .check {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1;
  }
  .buy-now-grid .grid-box-wrap .bullet .extra {
    text-align: center;
    font-size: 14px;
  }
  .buy-now-grid .grid-box-wrap .bullet h3 {
    transition: all 0.3s ease;
  }
  .buy-now-grid .grid-box-wrap .bullet-over {
    border-color: #fcfbfc;
    color: #FFF;
  }
  .buy-now-grid .grid-box-wrap .bullet-over h3 {
    color: #FFF !important;
  }
}
@media (min-width: 768px) {
  .buy-now-grid .ce-mobile {
    display: none;
  }
  .buy-now-grid .secondary {
    display: block;
  }
  .buy-now-grid .grid-box-wrap {
    clear: both;
    overflow: hidden;
    margin: 20px 0 60px 0;
  }
  .buy-now-grid .grid-box-wrap .left-button, .buy-now-grid .grid-box-wrap .right-button {
    display: none !important;
  }
  .buy-now-grid .grid-box-wrap .grid-box {
    position: relative;
    transition: all 0.3s ease;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-menu {
    width: 200px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-menu .head {
    opacity: 1;
    position: relative;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-menu .head h2 {
    font-size: 60px;
    color: #FFF;
    line-height: 1.3;
    padding-top: 50px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-menu .bullets {
    margin-bottom: 50px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items {
    left: 210px;
    width: calc(100% - 230px);
    overflow-x: auto;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0);
    height: 10px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items::-webkit-scrollbar-button {
    display: none;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items::-webkit-scrollbar-track-piece {
    background: rgba(0, 0, 0, 0);
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items::-webkit-scrollbar-thumb {
    background: rgba(100, 100, 100, 0.3);
    border-radius: 5px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.1);
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items::-webkit-scrollbar-resizer {
    background: rgba(0, 0, 0, 0.1);
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap {
    overflow-y: hidden;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item {
    width: 196px;
    position: relative;
    transition: all 0.3s linear;
    overflow: hidden;
    margin: 0 15px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item .head {
    position: relative;
    transition: all 0.3s linear;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4f5960+0,4d555e+100&0+0,0.3+100 */
    background: -moz-linear-gradient(top, rgba(79, 89, 96, 0) 0%, rgba(77, 85, 94, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(79, 89, 96, 0) 0%, rgba(77, 85, 94, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(79, 89, 96, 0) 0%, rgba(77, 85, 94, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#004f5960", endColorstr="#4d4d555e",GradientType=0 );
    /* IE6-9 */
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item .head img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item .head h2 {
    line-height: 1;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.min {
    width: 40px;
    margin: 0 2px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.15+0,0.05+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#26000000", endColorstr="#0d000000",GradientType=0 );
    /* IE6-9 */
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.min .btn {
    display: none;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item .show-hide-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: #666;
    z-index: 50;
    cursor: pointer;
    margin: 0 0 30px 1px;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item .show-hide-button:hover {
    color: #999;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item .show-hide-button .fa-eye {
    display: none;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.min .show-hide-button {
    position: relative;
    text-align: center;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.min .show-hide-button .fa-eye-slash {
    display: none;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.min .show-hide-button .fa-eye {
    display: inline;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.min .head, .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.min .bullets {
    opacity: 0;
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item.picked {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4f5a60+0,4f5a60+100&0+0,0.3+100 */
    background: -moz-linear-gradient(top, rgba(79, 90, 96, 0) 0%, rgba(79, 90, 96, 0.3) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(79, 90, 96, 0) 0%, rgba(79, 90, 96, 0.3) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(79, 90, 96, 0) 0%, rgba(79, 90, 96, 0.3) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#004f5a60", endColorstr="#4d4f5a60",GradientType=0 );
    /* IE6-9 */
  }
  .buy-now-grid .grid-box-wrap .grid-box .grid-items .grid-items-wrap .bullets {
    width: initial;
    margin-left: initial;
    margin-bottom: 20px;
    transition: all 0.3s linear;
  }
}
@media (min-width: 768px) {
  .fr .grid-box-wrap .grid-box .grid-items .grid-items-wrap .grid-item .btn-buy-now-lg .grid-btn-buy-now-text {
    font-size: 15px;
  }
}
@media (min-width: 0px) {
  .buy-crowns-2 {
    overflow: hidden;
    padding-bottom: 30px;
  }
  .buy-crowns-2 .platform-selectors {
    margin-bottom: 40px;
  }
  .buy-crowns-2 .platform-selectors .btn {
    padding: 8px 20px;
    margin: 0px -2px;
    font-size: 20px;
    z-index: 2;
  }
  .buy-crowns-2 .platform-selectors .btn.picked {
    color: #000;
    border-color: #EECA2A !important;
    background: #EECA2A;
  }
  .buy-crowns-2 .crown-pack-containers {
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(1.2);
    filter: blur(4px);
    -webkit-filter: blur(4px);
    position: absolute;
  }
  .buy-crowns-2 .crown-pack-containers.picked {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
  .buy-crowns-2 .crown-pack-containers .ribbon {
    font-size: 15px;
    width: 75%;
    position: absolute;
    background: #EECA2A;
  }
  .buy-crowns-2 .crown-pack-containers .ribbon:after {
    content: "";
    position: absolute;
    bottom: 0;
    border: 13px solid #EECA2A;
  }
  .buy-crowns-2 .crown-pack-containers .ribbon:after {
    right: -1em;
    border-right-color: transparent;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack img {
    width: 100%;
    position: absolute;
    z-index: -1;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-amount {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 34px;
    font-weight: bold;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-amount-text {
    font-size: 12px;
    font-weight: bold;
    margin-top: -10px;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    width: 100%;
    margin-top: 21vw;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-price {
    color: #EECA2A;
    font-weight: bold;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-price .onsale {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    text-decoration: line-through;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-sale-banner {
    color: #000;
    background: #EECA2A;
    padding: 2px 0 2px 8px;
    font-size: 13px;
    text-shadow: none;
    margin-top: -54px;
    white-space: nowrap;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 20px;
    height: 36px;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta a {
    color: #fff;
    text-transform: uppercase;
    line-height: 36px;
  }
}
@media (min-width: 450px) {
  .buy-crowns-2 .crown-pack-containers .ribbon {
    width: 60%;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 25vw;
  }
}
@media (min-width: 540px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 28vw;
  }
}
@media (min-width: 620px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 30vw;
  }
}
@media (min-width: 700px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 31vw;
  }
}
@media (min-width: 768px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 18vw;
  }
}
@media (min-width: 830px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 16vw;
  }
}
@media (min-width: 940px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 14vw;
  }
}
@media (min-width: 992px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .ribbon {
    width: 66%;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 6vw;
  }
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container .crown-price.onsale {
    margin-right: 28px;
  }
}
@media (min-width: 1200px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 8vw;
  }
}
@media (min-width: 1400px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 6vw;
  }
}
@media (min-width: 1660px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 5vw;
  }
}
@media (min-width: 2400px) {
  .buy-crowns-2 .crown-pack-containers .crown-pack .crown-bottom-container {
    margin-top: 9vw;
  }
}

@media (min-width: 0px) {
  .fr .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 11px;
  }

  .de .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 16px;
  }
}
@media (min-width: 370px) {
  .fr .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 13px;
  }

  .de .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 20px;
  }
}
@media (min-width: 410px) {
  .fr .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 15px;
  }
}
@media (min-width: 480px) {
  .fr .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .fr .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .fr .buy-crowns-2 .crown-pack-containers .crown-pack .crown-cta {
    font-size: 17px;
  }
}
.promotion {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .promotion .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    padding: 6vw 0;
  }
  .promotion .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .promotion .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .promotion .feature-box .feature-image-wrap .feature-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .promotion .heading-row {
    margin: 0 0 25px 0;
  }
  .promotion .heading {
    text-align: center;
    padding: 0;
  }
  .promotion .promo-image-container img {
    width: 100%;
    margin-bottom: 10px;
  }
  .promotion .promo-block-container .top-text {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
  }
  .promotion .promo-block-container .top-text b {
    color: #FFF;
  }
  .promotion .promo-block-container p {
    font-size: 14px;
    color: #999;
  }
  .promotion .promo-block-container p b {
    color: #FFF;
  }
  .promotion .promo-block-container a {
    padding: 6px 30px;
    width: 100%;
  }
  .promotion .promo-block-container a.video-link {
    padding: 0px;
  }
  .promotion .promo-block-container a.btn-style-enhanced-cta {
    line-height: 35px !important;
  }
  .promotion .promo-block-container a.btn-style-enhanced-basic {
    line-height: 25px !important;
  }
  .promotion .promo-block-container a.has-img {
    height: 50px;
    line-height: 35px !important;
  }
  .promotion .promo-block-container .btn {
    font-size: 20px;
    margin: 0px;
  }
  .promotion .promo-block-container .btn img {
    left: -10px;
    height: 30px;
  }
  .promotion .promo-block-container .video-link:hover {
    box-shadow: none;
  }
  .promotion .promo-block-container .video-link img {
    border: 0;
    box-shadow: none;
  }
  .promotion .promo-block-container .promo-info-container {
    max-width: 300px;
    margin: auto;
  }
  .promotion .xs-only-text {
    text-align: center;
  }
  .promotion .xs-only-text p {
    font-size: 14px;
    color: #999;
  }
  .promotion .xs-only-text p b {
    color: #FFF;
  }
}
@media (min-width: 600px) {
  .promotion .feature-box {
    min-height: 500px;
  }
  .promotion .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .promotion .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .promotion .heading {
    text-align: initial;
  }
  .promotion .promo-block-container .top-text {
    text-align: left;
  }
  .promotion .promo-block-container .promo-text {
    margin-bottom: 30px;
  }
  .promotion .promo-block-container a {
    padding: 6px 45px;
    width: inherit;
  }
  .promotion .promo-block-container a.video-link {
    padding: 0px;
  }
  .promotion .promo-block-container .promo-info-container {
    margin: inherit;
  }
}
@media (min-width: 1023px) {
  .promotion .feature-box {
    padding: 12vw 0;
  }
  .promotion .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .promotion .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1600px) {
  .promotion .feature-box {
    padding: 6vw 0;
  }
}
@media (min-width: 1920px) {
  .promotion .feature-box {
    min-height: 600px;
  }
  .promotion .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .promotion .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .promotion .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .promotion .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
}
@media (min-width: 0px) {
  .promotion .fr .promotion .promo-block-container .btn {
    font-size: 16px;
  }
  .promotion .fr .promotion .promo-block-container a {
    padding: 6px 14px;
  }
  .promotion .fr .promotion .promo-block-container a.video-link {
    padding: 0px;
  }
  .promotion .de .promotion .promo-block-container .btn {
    font-size: 16px;
  }
  .promotion .de .promotion .promo-block-container a {
    padding: 6px 16px;
  }
  .promotion .de .promotion .promo-block-container a.video-link {
    padding: 0px;
  }
}
@media (min-width: 432px) {
  .promotion .fr .promotion .promo-block-container .btn {
    font-size: 20px;
  }
  .promotion .fr .promotion .promo-block-container a {
    padding: 6px 30px;
  }
  .promotion .fr .promotion .promo-block-container a.video-link {
    padding: 0px;
  }
  .promotion .de .promotion .promo-block-container .btn {
    font-size: 20px;
  }
  .promotion .de .promotion .promo-block-container a {
    padding: 6px 30px;
  }
  .promotion .de .promotion .promo-block-container a.video-link {
    padding: 0px;
  }
}

.buttons {
  position: relative;
  z-index: 999;
}
.buttons .full-width .btn {
  width: 100%;
  max-width: 100%;
}
.buttons .align-left {
  text-align: left;
}
.buttons .align-right {
  text-align: right;
}
.buttons .align-center {
  text-align: center;
}

.blog_images {
  text-align: center;
}
@media (min-width: 0px) {
  .blog_images .img-item {
    margin: 15px 0;
    padding: 15px;
    overflow: hidden;
  }
  .blog_images .no-border {
    border: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
  }
  .blog_images h3 {
    margin-top: 15px;
  }
}

.blog_videos {
  z-index: 99 !important;
  overflow: hidden;
  clear: both;
  position: relative;
  margin-bottom: -5px;
}
@media (min-width: 0px) {
  .blog_videos .video-box {
    position: relative;
    background-size: cover;
    background-position: top center;
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    overflow: hidden;
  }
  .blog_videos .video-box .video-item-set {
    display: none;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .blog_videos .video-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .blog_videos .video-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .blog_videos .video-box .img-wrap {
    position: relative;
  }
  .blog_videos .video-box img {
    width: 100%;
  }
  .blog_videos .video-box h3 {
    font-size: 30px;
    color: #FFF;
    margin-top: 3px;
  }
  .blog_videos .video-box .video-item {
    position: relative;
    margin: 10px 0;
    padding-top: 20px;
  }
  .blog_videos .video-box .video-item .zl-link, .blog_videos .video-box .video-item .motd-link {
    position: relative;
  }
  .blog_videos .video-box .video-item .zl-link .video-icon, .blog_videos .video-box .video-item .motd-link .video-icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    width: 50px;
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
  .blog_videos .video-box .video-item h3 {
    color: #a0a2a7;
    margin-top: 5px;
    font-size: 18px;
  }
  .blog_videos .video-nav {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 99999;
  }
  .blog_videos .video-nav span {
    display: inline-block;
    border-radius: 10px;
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    margin: 0 5px;
  }
  .blog_videos .video-nav span.active {
    background: rgba(255, 255, 255, 0.5);
    color: #a0a2a7;
  }
  .blog_videos .video-box-bg {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
    /* IE6-9 */
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 14px;
  }
  .blog_videos .video-box-bg .video-nav {
    bottom: 60px;
  }
}
@media (min-width: 1023px) {
  .blog_videos .video-box {
    margin-top: -45px;
  }
  .blog_videos .video-box-bg {
    padding: 12vw 0;
  }
  .blog_videos .video-box-bg .feature-image-wrap {
    width: 100%;
    height: 100%;
  }
  .blog_videos .video-box-bg .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
  .blog_videos .video-box-bg .video-nav {
    bottom: calc(12vw - 20px);
  }
  .blog_videos .video-box-bg .video-nav span {
    border-radius: 5px;
    height: 10px;
    width: 10px;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .blog_videos .video-box-bg {
    padding: 6vw 0;
  }
  .blog_videos .video-box-bg .video-nav {
    bottom: calc(6vw - 20px);
  }
}
@media (min-width: 1920px) {
  .blog_videos .video-box-bg .feature-image-wrap {
    max-width: 2000px;
  }
  .blog_videos .video-box-bg .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2400px) {
  .blog_videos .video-box-bg .feature-image-wrap {
    max-width: 3000px;
  }
  .blog_videos .video-box-bg .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
}

@media (min-width: 0px) {
  .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6, .crownstore-item-body h2, .crownstore-item-body h3, .crownstore-item-body h4, .crownstore-item-body h5, .crownstore-item-body h6 {
    color: #FFF;
  }
}

@media (min-width: 0px) {
  .post-body-new, .text_block, .crownstore-item-body {
    color: #c9c8c9;
    margin-bottom: 30px;
    /* Advanced Styles */
  }
  .post-body-new #blog-body, .text_block #blog-body, .crownstore-item-body #blog-body {
    overflow: hidden;
  }
  .post-body-new img:not(.icon), .post-body-new iframe, .post-body-new video, .text_block img:not(.icon), .text_block iframe, .text_block video, .crownstore-item-body img:not(.icon), .crownstore-item-body iframe, .crownstore-item-body video {
    width: 100%;
    max-width: 100%;
    border: 2px solid #000;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  }
  .post-body-new img:not(.icon).nostretch, .post-body-new iframe.nostretch, .post-body-new video.nostretch, .text_block img:not(.icon).nostretch, .text_block iframe.nostretch, .text_block video.nostretch, .crownstore-item-body img:not(.icon).nostretch, .crownstore-item-body iframe.nostretch, .crownstore-item-body video.nostretch {
    width: initial;
  }
  .post-body-new h2, .text_block h2, .crownstore-item-body h2 {
    color: #FFF;
  }
  .post-body-new h2 img, .text_block h2 img, .crownstore-item-body h2 img {
    border: 0;
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
  }
  .post-body-new .lead-img, .text_block .lead-img, .crownstore-item-body .lead-img {
    margin-bottom: 15px;
  }
  .post-body-new .video-icon, .text_block .video-icon, .crownstore-item-body .video-icon {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    width: 50px !important;
    border: 0 !important;
    -webkit-box-shadow: initial !important;
    -moz-box-shadow: initial !important;
    box-shadow: initial !important;
  }
  .post-body-new .tags, .text_block .tags, .crownstore-item-body .tags {
    margin: 0;
    font-size: 20px;
  }
  .post-body-new a:hover img, .post-body-new a:hover video, .post-body-new a:hover iframe, .text_block a:hover img, .text_block a:hover video, .text_block a:hover iframe, .crownstore-item-body a:hover img, .crownstore-item-body a:hover video, .crownstore-item-body a:hover iframe {
    border-color: #FFF;
  }
  .post-body-new p:first-child, .text_block p:first-child, .crownstore-item-body p:first-child {
    margin-top: 0;
  }
  .post-body-new p:empty, .text_block p:empty, .crownstore-item-body p:empty {
    display: none;
  }
  .post-body-new .bigger, .text_block .bigger, .crownstore-item-body .bigger {
    font-size: 20px;
    font-style: italic;
  }
  .post-body-new ul, .post-body-new ol, .text_block ul, .text_block ol, .crownstore-item-body ul, .crownstore-item-body ol {
    padding-left: 20px;
  }
  .post-body-new li, .text_block li, .crownstore-item-body li {
    margin-bottom: 10px;
  }
  .post-body-new .big, .text_block .big, .crownstore-item-body .big {
    font-size: 22px;
  }
}

@media (min-width: 0px) {
  .blogs-promo-block .promo {
    margin-bottom: 30px;
  }
  .blogs-promo-block .big-img {
    display: block;
  }
  .blogs-promo-block .sm-img {
    display: none;
  }
}

.side-bar .big-img {
  display: none;
}
.side-bar .sm-img {
  display: block;
}

.promo-top {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .promo-top .header-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
    padding: 10vw 0;
  }
  .promo-top .header-box .header-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(black 0%, black 50%, black 80%, transparent 100%);
    mask-image: linear-gradient(black 0%, black 50%, black 80%, transparent 100%);
  }
  .promo-top .header-box .header-image-wrap .header-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    overflow: hidden;
    position: relative;
  }
  .promo-top .header-box .buttons {
    margin: 0 0 15px 0;
  }
  .promo-top .header-box .buttons a {
    margin: 0;
  }
  .promo-top .header-box .buttons .btn {
    width: 90%;
    max-width: 250px;
  }
  .promo-top .header-box .header-block h1 {
    font-size: 50px;
  }
  .promo-top .header-box .header-block div {
    margin-bottom: 40px;
  }
  .promo-top .header-box .cta {
    margin-bottom: 15px;
  }
  .promo-top .header-box .cta h3 a {
    color: #a0a2a7;
    font-weight: 700;
    font-size: 16px;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    letter-spacing: 3px;
  }
  .promo-top .header-box .cta h3 a:hover {
    color: #ffffff;
  }
  .promo-top .header-box .cta h3 a i {
    display: inline;
  }
  .promo-top .header-box .cta p {
    font-size: 16px;
    font-weight: 100;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 14px;
  }
  .promo-top .header-box h1 {
    font-size: 60px;
    line-height: 1.3;
    margin-top: 250px;
    text-transform: initial;
    font-weight: bold;
  }
  .promo-top .header-box p {
    font-size: 18px;
  }
}
@media (min-width: 375px) {
  .promo-top .header-box .header-block h1 {
    font-size: 60px;
  }
}
@media (min-width: 600px) {
  .promo-top .header-box {
    min-height: 40vw;
  }
  .promo-top .header-box .header-image-wrap {
    height: 40vw;
    width: 100%;
  }
  .promo-top .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    width: 100%;
  }
  .promo-top .header-box h1 {
    margin-top: 250px;
  }
}
@media (min-width: 768px) {
  .promo-top .header-box .cta h3 {
    min-height: 62px;
  }
  .promo-top .header-box .cta h3.short {
    min-height: 0px;
  }
  .promo-top .header-box .buttons a {
    font-size: 20px !important;
  }
  .promo-top .header-box h1 {
    margin-top: 200px;
  }
}
@media (min-width: 1023px) {
  .promo-top .header-box {
    min-height: 40vw;
    padding: 6vw 0;
  }
  .promo-top .header-box p {
    font-size: 22px;
  }
  .promo-top .header-box .header-image-wrap {
    height: 40vw;
    width: 100%;
  }
  .promo-top .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    width: 100%;
  }
  .promo-top .header-box .buttons a {
    font-size: 26px !important;
  }
  .promo-top .header-box h1 {
    margin-top: 300px;
  }
}
@media (min-width: 1200px) {
  .promo-top .header-box {
    min-height: 40vw;
  }
  .promo-top .header-box .cta h3 {
    min-height: 0px;
  }
  .promo-top .header-box .header-image-wrap {
    height: 40vw;
  }
  .promo-top .header-box .header-image-wrap .header-image-box {
    height: 40vw;
  }
  .promo-top .header-box h1 {
    margin-top: 400px;
  }
}
@media (min-width: 1200px) {
  .promo-top .header-box .header-image-wrap .header-image-box {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%, black 50%, transparent 100%);
    mask-image: linear-gradient(to left, transparent 0%, black 25%, black 50%, transparent 100%);
  }
}
@media (min-width: 1600px) {
  .promo-top .header-box {
    padding: 3vw 0;
  }
}
@media (min-width: 1920px) {
  .promo-top .header-box {
    min-height: 40vw;
  }
  .promo-top .header-box .header-image-wrap {
    height: 40vw;
    max-width: 2000px;
  }
  .promo-top .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .promo-top .header-box {
    min-height: 40vw;
  }
  .promo-top .header-box .header-image-wrap {
    height: 40vw;
    max-width: 4000px;
  }
  .promo-top .header-box .header-image-wrap .header-image-box {
    height: 40vw;
    max-width: 4000px;
  }
}

.promo-events {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .promo-events .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    padding: 20vw 0;
  }
  .promo-events .feature-box .tab-content-row {
    position: relative;
  }
  .promo-events .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .promo-events .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .promo-events .feature-box .feature-content-box {
    text-align: left;
    font-size: 14px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item .tab-image, .promo-events .feature-box .feature-content-box .feature-content-item-tab .tab-image {
    display: none;
    width: 100%;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content.active-tab, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content.active-tab {
    opacity: 1;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content .feature-content-tab-content, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content .feature-content-tab-content {
    border-top: 2px solid #a0a2a7;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 25px 0 25px 0;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content .feature-content-tab-content .top-content-row, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content .feature-content-tab-content .top-content-row {
    margin-bottom: 20px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content .feature-content-tab-content p:first-child, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content .feature-content-tab-content p:first-child {
    margin-top: 0;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content .feature-content-tab-content .header-block, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content .feature-content-tab-content .header-block {
    text-align: center;
    text-transform: uppercase;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    color: #FFF;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content .feature-content-tab-content .header-block h2, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content .feature-content-tab-content .header-block h2 {
    font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #FFF;
    letter-spacing: 1.5px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content .feature-content-tab-content img, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content .feature-content-tab-content img {
    width: 100%;
    border: 2px solid #000;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs-content .feature-content-tab-content img.content-block, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs-content .feature-content-tab-content img.content-block {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-item-header, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-item-header {
    margin: 50px 0 10px 0;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    margin: 0 0 4px 0;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container:hover, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container:hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c6c09f+0,c6c09f+100&0.1+0,0+100 */
    background: -moz-linear-gradient(top, rgba(198, 192, 159, 0.1) 0%, rgba(198, 192, 159, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(198, 192, 159, 0.1) 0%, rgba(198, 192, 159, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(198, 192, 159, 0.1) 0%, rgba(198, 192, 159, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1ac6c09f", endColorstr="#00c6c09f",GradientType=0 );
    /* IE6-9 */
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container:hover .feature-content-tab, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container:hover .feature-content-tab {
    transition: all 0.3s ease;
    background-color: rgba(34, 33, 30, 0.8);
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container:hover .info-block .title, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container:hover .info-block .title {
    color: #ffffff;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container:hover .active-tab .info-block .title, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container:hover .active-tab .info-block .title {
    color: #FFF;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container img, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container img {
    cursor: pointer;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab {
    text-align: center;
    min-height: 50px;
    background-color: rgba(48, 47, 40, 0.8);
    cursor: pointer;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab .info-block, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab .info-block {
    display: inline-block;
    line-height: 1.3;
    padding: 10px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab.active-tab, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab.active-tab {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab.active-tab div, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab.active-tab div {
    color: #FFF;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab.active-tab img, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab.active-tab img {
    border: 1px solid #FFF;
    padding: 2px;
    background: #000000;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab .status, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab .status {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 11px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab .title, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab .title {
    color: #a0a2a7;
    font-weight: bold;
    font-size: 12px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab .dates, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab .dates {
    color: #ffffff;
    font-size: 11px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .tab-container .feature-content-tab img, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .tab-container .feature-content-tab img {
    height: 65px;
    width: 50px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item h2, .promo-events .feature-box .feature-content-box .feature-content-item-tab h2 {
    line-height: 1.3;
    font-size: 40px;
    color: #FFF;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    text-align: center;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item h3, .promo-events .feature-box .feature-content-box .feature-content-item-tab h3 {
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    letter-spacing: 3px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item p, .promo-events .feature-box .feature-content-box .feature-content-item-tab p {
    text-align: left;
    font-weight: 100;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item p.emphasis, .promo-events .feature-box .feature-content-box .feature-content-item-tab p.emphasis {
    font-weight: bold;
  }
}
@media (min-width: 600px) {
  .promo-events .feature-box {
    min-height: 500px;
  }
  .promo-events .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .promo-events .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .promo-events .feature-box .feature-content-box .feature-content-item .tab-image, .promo-events .feature-box .feature-content-box .feature-content-item-tab .tab-image {
    display: block;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs {
    margin-bottom: 20px;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .feature-content-tab .triangle-mark, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .feature-content-tab .triangle-mark {
    display: block;
    left: calc(50% - 12px);
    width: 0px;
    top: 258px;
    height: 0px;
    border-bottom: 12px solid #a0a2a7;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    z-index: 1000;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .feature-content-tab .triangle-mark div, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .feature-content-tab .triangle-mark div {
    width: 0px;
    height: 0px;
    border-bottom: 10px solid black;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: 4px;
    right: -10px;
    z-index: 1000;
  }
  .promo-events .feature-box .feature-content-box .feature-content-item.feature-content-tabs .feature-content-tab .triangle-mark div div, .promo-events .feature-box .feature-content-box .feature-content-item-tab.feature-content-tabs .feature-content-tab .triangle-mark div div {
    width: 0px;
    height: 0px;
    border-bottom: 6px solid #a0a2a7;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    position: absolute;
    right: -6px;
    z-index: 1000;
  }
}
@media (min-width: 1023px) {
  .promo-events .feature-box {
    min-height: 50vw;
    padding: 12vw 0;
  }
  .promo-events .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .promo-events .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1600px) {
  .promo-events .feature-box {
    padding: 6vw 0;
  }
}
@media (min-width: 1920px) {
  .promo-events .feature-box {
    min-height: 1280px;
  }
  .promo-events .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .promo-events .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .promo-events .feature-box {
    min-height: 1700px;
  }
  .promo-events .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .promo-events .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .promo-events .feature-box .feature-content-box p {
    font-size: 20px;
  }
}

.promo-sweepstakes {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
}
@media (min-width: 0px) {
  .promo-sweepstakes .collapse-container {
    display: none;
  }
  .promo-sweepstakes .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
    padding: 20vw 0;
  }
  .promo-sweepstakes .feature-box.dark-mode {
    background-color: #000000;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .promo-sweepstakes .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .promo-sweepstakes .feature-box .feature-content-box {
    text-align: left;
    font-size: 14px;
  }
  .promo-sweepstakes .feature-box .feature-content-box hr {
    border: 1px solid black;
    margin: 20px 0;
  }
  .promo-sweepstakes .feature-box .feature-content-box h3 {
    letter-spacing: 1.5px;
    font-weight: bold;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item {
    text-align: center;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.header-block .buttons {
    margin: 0 0 20px 0;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.header-block h1 {
    color: #ffffff;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    text-align: center;
    font-size: 60px;
    line-height: 1.3;
    font-weight: bold;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.header-block img {
    float: left;
    padding: 10px 15px 15px 0;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.header-block p {
    text-align: left;
    text-shadow: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.prize-img-block {
    margin-top: 20px;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.prize-img-block img {
    width: 100%;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.prize-img-block p {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    text-shadow: none;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.sweepstakes-desc-block {
    color: #000000;
    text-shadow: none;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 400;
    transition: all 0.3s ease;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.sweepstakes-desc-block a {
    color: #ffffff;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.sweepstakes-collapse-header-block h3 {
    letter-spacing: 3px;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.sweepstakes-collapse-header-block h3 span {
    cursor: pointer;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.legal-block p {
    font-size: 11px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4980392157);
    text-shadow: none;
    text-align: left;
  }
  .promo-sweepstakes .feature-box .feature-content-box .feature-content-item.legal-block a img {
    border: none;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container {
    color: #363636;
    text-shadow: none;
    font-weight: 700;
    margin: 30px 0 0 0;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container .prize-text-block {
    margin: 0 0 40px 0;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container .prize-text-block p {
    text-align: left;
    margin: 0 0 2px 0;
    font-size: 12px;
    font-weight: normal;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container .prize-text-block h3 {
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin: 0 0 15px 0;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container .faq-header-block {
    margin-bottom: 10px;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container .faq-q-a-block {
    text-align: left;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container .faq-q-a-block h4 {
    font-weight: bold;
    text-transform: initial;
    text-shadow: none;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    letter-spacing: 1.4;
    font-size: 14px;
  }
  .promo-sweepstakes .feature-box .feature-content-box .collapse-container .faq-q-a-block p {
    margin: 0 0 20px 0;
    font-weight: 100;
  }
}
@media (min-width: 600px) {
  .promo-sweepstakes .feature-box {
    min-height: 500px;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .promo-sweepstakes .feature-box {
    min-height: 50vw;
    padding: 12vw 0;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1600px) {
  .promo-sweepstakes .feature-box {
    padding: 6vw 0;
  }
}
@media (min-width: 1920px) {
  .promo-sweepstakes .feature-box {
    min-height: 1280px;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .promo-sweepstakes .feature-box {
    min-height: 1700px;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .promo-sweepstakes .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .promo-sweepstakes .feature-box .feature-content-box p {
    font-size: 20px;
  }
}

.promo-social {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .promo-social .feature-box {
    position: relative;
    min-height: 100vw;
    overflow: hidden;
    text-align: center;
    padding: 5vw 0;
  }
  .promo-social .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .promo-social .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .promo-social .feature-box .feature-content-box {
    text-align: left;
    font-size: 14px;
  }
  .promo-social .feature-box .feature-content-box hr {
    margin: 20px 0 20px 0;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item {
    text-align: center;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item h1 {
    font-size: 60px;
    line-height: 1.3;
    text-transform: initial;
    font-weight: bold;
    margin: 0 0 20px 0;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item h3 {
    text-align: center;
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    letter-spacing: 3px;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.videos-view-all {
    text-align: right;
    margin-bottom: 10px;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.videos-view-all i {
    font-size: 20px;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.videos {
    margin-bottom: 20px;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.videos h4 {
    margin: 10px 0 0 0;
    text-align: left;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.videos p {
    display: inline-block;
    text-align: left;
    margin: 0;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.videos img {
    display: inline;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.videos img.icon-overlay {
    width: 50px;
    border: 0;
    position: absolute;
    bottom: 0;
    left: calc(50% - 25px);
    top: calc(50% - 17px);
    box-shadow: none;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.story-text-block {
    font-size: 18px;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block {
    margin: 20px 0;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet-row {
    margin: auto;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet-row .tweets-col {
    overflow: auto;
    float: none;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet-info {
    display: none;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .view-more-tweets {
    cursor: pointer;
    text-align: center;
    color: #a0a2a7;
    font-weight: 700;
    font-size: 16px;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .view-more-tweets:hover {
    color: #ffffff;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet {
    text-align: left;
    padding: 20px;
    overflow: auto;
    margin: 1px;
    transition: all 0.3s ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0+100;Neutral+Density */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33000000", endColorstr="#00000000",GradientType=0 );
    /* IE6-9 */
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet:hover {
    transition: all 0.3s ease;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c6c09f+0,c6c09f+100&0.1+0,0+100 */
    background: -moz-linear-gradient(top, rgba(198, 192, 159, 0.1) 0%, rgba(198, 192, 159, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(198, 192, 159, 0.1) 0%, rgba(198, 192, 159, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(198, 192, 159, 0.1) 0%, rgba(198, 192, 159, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1ac6c09f", endColorstr="#00c6c09f",GradientType=0 );
    /* IE6-9 */
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet.hidden-tweet {
    display: none;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .fa-stack {
    font-size: 9px;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .fa-twitter {
    line-height: 47px;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .fa-certificate {
    color: #1da1f2;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .tweet-images img {
    margin: 10px 0 5px 0;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .account-name {
    font-weight: bold;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .account-name .name-text {
    display: inline-block;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .account-handle {
    text-transform: initial;
  }
  .promo-social .feature-box .feature-content-box .feature-content-item.tweets-block .tweet .tweet-content {
    margin-top: 15px;
  }
}
@media (min-width: 600px) {
  .promo-social .feature-box {
    min-height: 500px;
  }
  .promo-social .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .promo-social .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .promo-social .feature-box .feature-content-box .feature-content-item h3 {
    color: #ffffff;
  }
}
@media (min-width: 1023px) {
  .promo-social .feature-box {
    min-height: 50vw;
  }
  .promo-social .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .promo-social .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1920px) {
  .promo-social .feature-box {
    min-height: 1280px;
  }
  .promo-social .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .promo-social .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .promo-social .feature-box {
    min-height: 1700px;
  }
  .promo-social .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .promo-social .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .promo-social .feature-box .feature-content-box p {
    font-size: 20px;
  }
}

.kuula {
  z-index: 99 !important;
  overflow: hidden;
  clear: both;
  position: relative;
  margin-bottom: -5px;
  text-align: center;
}
@media (min-width: 0px) {
  .kuula .feature-box {
    position: relative;
    background-size: cover;
    background-position: top center;
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    overflow: hidden;
  }
  .kuula .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .kuula .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .kuula .feature-box img {
    width: 100%;
  }
  .kuula .feature-box img[src$=".jpg"] {
    border: 2px solid #000;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .kuula .feature-box .kuula-img {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 30px;
  }
  .kuula .feature-box h2 {
    line-height: 1.3;
    font-size: 40px;
    color: #FFF;
    margin-top: 0;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  }
  .kuula .feature-box h4 {
    line-height: 1.3;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
    letter-spacing: 3px;
  }
  .kuula .feature-box iframe {
    width: 100%;
    height: 56.25vw;
    border: 2px solid #000 !important;
    margin: 30px 0;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .kuula .feature-box-bg {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
    /* IE6-9 */
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 14px;
  }
}
@media (min-width: 1023px) {
  .kuula .feature-box-bg {
    padding: 12vw 0;
  }
  .kuula .feature-box-bg .feature-image-wrap {
    width: 100%;
    height: 30vw;
  }
  .kuula .feature-box-bg .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
  .kuula .feature-box-bg iframe {
    height: 500px;
  }
}
@media (min-width: 1600px) {
  .kuula .feature-box-bg {
    padding: 6vw 0;
  }
  .kuula .feature-box-bg iframe {
    height: 550px;
  }
}
@media (min-width: 1920px) {
  .kuula .feature-box-bg .feature-image-wrap {
    max-width: 2000px;
    height: 1280px;
  }
  .kuula .feature-box-bg .feature-image-wrap .feature-image-box {
    height: 1280px;
    max-width: 2000px;
  }
  .kuula .feature-box-bg iframe {
    height: 600px;
  }
}
@media (min-width: 2400px) {
  .kuula .feature-box-bg .feature-image-wrap {
    max-width: 3000px;
    height: 1700px;
  }
  .kuula .feature-box-bg .feature-image-wrap .feature-image-box {
    height: 1700px;
    max-width: 3000px;
  }
}

@media (min-width: 0px) {
  .multi-text-block .feature-box {
    position: relative;
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .multi-text-block .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .multi-text-block .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .multi-text-block .feature-box .buttons {
    padding: 20px 0 40px 0;
  }
  .multi-text-block .feature-box img {
    border: 2px solid #000;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .multi-text-block .feature-box .container-fluid {
    padding: 6vw 0;
  }
  .multi-text-block .feature-box-bg {
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
    /* IE6-9 */
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 14px;
  }
}
@media (min-width: 600px) {
  .multi-text-block .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .multi-text-block .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .multi-text-block .heading {
    text-align: initial;
  }
  .multi-text-block .promo-block-container .top-text {
    text-align: left;
  }
  .multi-text-block .promo-block-container .promo-text {
    margin-bottom: 30px;
  }
  .multi-text-block .promo-block-container a {
    padding: 6px 45px;
    width: inherit;
  }
}
@media (min-width: 992px) {
  .multi-text-block .feature-box .buttons {
    padding-top: 20px;
  }
}
@media (min-width: 1023px) {
  .multi-text-block .feature-box-bg {
    padding: 12vw 0;
  }
  .multi-text-block .feature-box-bg .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .multi-text-block .feature-box-bg .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1600px) {
  .multi-text-block .feature-box-bg {
    padding: 6vw 0;
  }
}
@media (min-width: 1920px) {
  .multi-text-block .feature-box-bg {
    min-height: 600px;
  }
  .multi-text-block .feature-box-bg .feature-image-wrap {
    max-width: 2000px;
  }
  .multi-text-block .feature-box-bg .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .multi-text-block .feature-box-bg .feature-image-wrap {
    max-width: 3000px;
  }
  .multi-text-block .feature-box-bg .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
}

.carousel-sequencer {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.15+75,0.25+90,0.33+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.25) 90%, rgba(0, 0, 0, 0.33) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#54000000",GradientType=0 );
  /* IE6-9 */
}
@media (min-width: 0px) {
  .carousel-sequencer .feature-box {
    position: relative;
    overflow: hidden;
  }
  .carousel-sequencer .feature-box .feature-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vw;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 38%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.75) 82%, rgba(0, 0, 0, 0) 100%);
  }
  .carousel-sequencer .feature-box .feature-image-wrap .feature-image-box {
    width: 100%;
    height: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .carousel-sequencer .feature-box .feature-image-wrap .feature-image-box video {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .carousel-sequencer .feature-box .feature-image-wrap .kuula {
    width: calc(100% + 200px);
    height: calc(100% + 100px);
    position: absolute;
    top: 0;
    left: -100px;
    background: #000;
    opacity: 0.5;
    z-index: -1;
  }
  .carousel-sequencer .feature-box .feature-content-box h1 {
    margin-top: 48px;
    margin-bottom: -24px;
    font-size: 40px;
    color: #FFF;
    font-weight: 500;
    font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
    text-align: center;
  }
  .carousel-sequencer .feature-box .feature-content-box h3 {
    text-align: center;
    margin: 48px 0;
  }
}
@media (min-width: 600px) {
  .carousel-sequencer .feature-box .feature-image-wrap {
    height: 500px;
    width: 100%;
  }
  .carousel-sequencer .feature-box .feature-image-wrap .feature-image-box {
    height: 500px;
    width: 100%;
  }
}
@media (min-width: 1023px) {
  .carousel-sequencer .feature-box .feature-image-wrap {
    height: 50vw;
    width: 100%;
  }
  .carousel-sequencer .feature-box .feature-image-wrap .feature-image-box {
    height: 50vw;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 13%, rgba(0, 0, 0, 0.75) 20%, black 30%, black 70%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.5) 87%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 1920px) {
  .carousel-sequencer .feature-box .feature-image-wrap {
    max-width: 2000px;
  }
  .carousel-sequencer .feature-box .feature-image-wrap .feature-image-box {
    max-width: 2000px;
  }
}
@media (min-width: 2500px) {
  .carousel-sequencer .feature-box .feature-image-wrap {
    max-width: 3000px;
  }
  .carousel-sequencer .feature-box .feature-image-wrap .feature-image-box {
    max-width: 3000px;
  }
  .carousel-sequencer .feature-box .feature-content-box p {
    font-size: 20px;
  }
}

@media (min-width: 0px) {
  .tier-2-carousel-sequencer .title {
    text-align: center;
    color: #FFF;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 200;
    margin: 30px 0 -30px 0;
    letter-spacing: 2px;
  }
}

.tier-1-streamer, .tier-2-streamers, .events-streamers {
  position: relative;
  transition: all 0.3s ease;
}
.tier-1-streamer img, .tier-1-streamer .vod, .tier-2-streamers img, .tier-2-streamers .vod, .events-streamers img, .events-streamers .vod {
  display: inline-block;
  width: 100%;
  border: 2px solid #000;
  object-fit: contain;
  background: rgba(128, 128, 128, 0.8);
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.tier-1-streamer .vod, .tier-2-streamers .vod, .events-streamers .vod {
  position: absolute;
  left: 15px;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  border-color: #000;
  width: calc(100% - 30px);
  overflow: hidden;
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
}
.tier-1-streamer .streamer .partner-sticker, .tier-2-streamers .streamer .partner-sticker, .events-streamers .streamer .partner-sticker {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
}
.tier-1-streamer .streamer .partner-sticker img, .tier-2-streamers .streamer .partner-sticker img, .events-streamers .streamer .partner-sticker img {
  width: 100%;
  background: initial;
  border: none;
  box-shadow: initial;
}
.tier-1-streamer .streamer-icon, .tier-2-streamers .streamer-icon, .events-streamers .streamer-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 20px;
  margin-right: 10px;
  background: initial;
  border: none;
  box-shadow: initial;
}
.tier-1-streamer h4, .tier-2-streamers h4, .events-streamers h4 {
  font-weight: bold;
}
.tier-1-streamer h4, .tier-1-streamer h5, .tier-2-streamers h4, .tier-2-streamers h5, .events-streamers h4, .events-streamers h5 {
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  text-transform: initial;
  color: #c9c8c9;
  font-size: 15px;
}
.tier-1-streamer a, .tier-1-streamer a h4, .tier-1-streamer a h5, .tier-1-streamer a p, .tier-2-streamers a, .tier-2-streamers a h4, .tier-2-streamers a h5, .tier-2-streamers a p, .events-streamers a, .events-streamers a h4, .events-streamers a h5, .events-streamers a p {
  transition: all 0.3s ease;
}
.tier-1-streamer a:hover, .tier-1-streamer a:hover h4, .tier-1-streamer a:hover h5, .tier-1-streamer a:hover p, .tier-1-streamer a:hover img, .tier-2-streamers a:hover, .tier-2-streamers a:hover h4, .tier-2-streamers a:hover h5, .tier-2-streamers a:hover p, .tier-2-streamers a:hover img, .events-streamers a:hover, .events-streamers a:hover h4, .events-streamers a:hover h5, .events-streamers a:hover p, .events-streamers a:hover img {
  color: #FFF !important;
  border-color: #FFF;
}
.tier-1-streamer .live, .tier-2-streamers .live, .events-streamers .live {
  color: #FFF;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #623FA0;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 5px;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  font-size: 19px;
  position: absolute;
  top: 10px;
  left: 25px;
}
.tier-1-streamer .live .fa, .tier-2-streamers .live .fa, .events-streamers .live .fa {
  background: #623FA0;
  font-size: 16px;
  padding: 5px;
}

.tier-1-streamer {
  margin-top: 30px;
  margin-bottom: 60px;
}
.tier-1-streamer h3 {
  color: #FFF;
  font-size: 50px;
  line-height: 1.3;
}
.tier-1-streamer p {
  color: #c9c8c9;
  margin: 0;
}
.tier-1-streamer .btn {
  margin-top: 15px;
}
.tier-1-streamer .streamer {
  margin: 15px 0;
}
.tier-1-streamer .streamer-box:hover img, .tier-1-streamer .streamer-box:hover .vod {
  transform: scale(1);
  border-color: #FFF;
}

/* See Tier 1 Streamer for more styles */
.tier-2-streamers {
  margin-bottom: 60px;
  transition: all 0.3s ease;
}
.tier-2-streamers .section-header {
  position: relative;
}
.tier-2-streamers .filters, .tier-2-streamers .filters-2 {
  display: block;
  position: absolute;
  top: 5px;
  left: 15px;
  color: #a0a2a7;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  font-size: 24px;
}
.tier-2-streamers .filters .label-on, .tier-2-streamers .filters-2 .label-on {
  display: none;
  color: #FFF;
}
.tier-2-streamers .filters .big, .tier-2-streamers .filters-2 .big {
  display: none;
}
.tier-2-streamers .filters .langs, .tier-2-streamers .filters .type, .tier-2-streamers .filters-2 .langs, .tier-2-streamers .filters-2 .type {
  display: none;
  position: absolute;
  top: 50px;
  left: -16px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #000;
  padding: 10px 15px;
  min-width: 300px;
  text-align: left;
}
.tier-2-streamers .filters .langs span, .tier-2-streamers .filters .type span, .tier-2-streamers .filters-2 .langs span, .tier-2-streamers .filters-2 .type span {
  display: block;
}
.tier-2-streamers .filters .langs span.on, .tier-2-streamers .filters .type span.on, .tier-2-streamers .filters-2 .langs span.on, .tier-2-streamers .filters-2 .type span.on {
  color: #FFF;
}
.tier-2-streamers .filters span:hover, .tier-2-streamers .filters-2 span:hover {
  border-color: #a0a2a7;
  color: #FFF;
}
.tier-2-streamers .filters-2 {
  left: auto;
  right: 15px;
}
.tier-2-streamers .filters-2 .icon-overlay {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 35px;
  background: initial;
  border: none;
  box-shadow: initial;
}
.tier-2-streamers .filters-2 .type {
  left: auto;
  right: -16px;
}
.tier-2-streamers .filters-2 .type .icon-overlay {
  position: relative;
  top: -3px;
  display: inline-block;
  width: 35px;
  background: initial;
  border: none;
  box-shadow: initial;
}
.tier-2-streamers .streamer {
  margin-top: 0;
}
.tier-2-streamers .streamer-item {
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  top: 0;
}
.tier-2-streamers .streamer-item .wrap {
  border: 2px solid #000;
  margin-bottom: 30px;
}
.tier-2-streamers .streamer-item .streamer-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  position: relative;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.tier-2-streamers .streamer-item img, .tier-2-streamers .streamer-item .vod {
  border: initial;
}
.tier-2-streamers .streamer-item:hover {
  top: -5px;
}
.tier-2-streamers .streamer-item:hover .streamer-box {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
}
.tier-2-streamers .streamer-item:hover img, .tier-2-streamers .streamer-item:hover .vod {
  transform: scale(1);
}
.tier-2-streamers .streamer-item:hover img {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.tier-2-streamers .streamer-item:hover .wrap {
  border-color: #FFF;
}
.tier-2-streamers .dead {
  color: #FFF;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #623FA0;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 5px;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  font-size: 19px;
  position: absolute;
  top: 10px;
  left: 25px;
}
.tier-2-streamers .dead .fa {
  background: #623FA0;
  font-size: 16px;
  padding: 5px;
}
.tier-2-streamers .on .dead {
  display: none;
}
.tier-2-streamers .section-header {
  margin-bottom: 10px;
}
.tier-2-streamers h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tier-2-streamers .streamer {
  overflow: hidden;
}
.tier-2-streamers .streamer h4, .tier-2-streamers .streamer h5 {
  text-align: left;
}
.tier-2-streamers .more-streams, .tier-2-streamers .live-streams {
  color: #a0a2a7;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  font-size: 20px;
  margin: 0 15px;
}
.tier-2-streamers .more-streams:hover, .tier-2-streamers .live-streams:hover {
  color: #FFF;
}
.tier-2-streamers .more-streams.on, .tier-2-streamers .live-streams.on {
  color: #FFF;
}
.tier-2-streamers .streamers-list {
  padding-top: 42px;
}

@media (min-width: 768px) {
  .tier-2-streamers .filters .big, .tier-2-streamers .filters-2 .big {
    display: inline-block;
  }
  .tier-2-streamers .filters .small, .tier-2-streamers .filters-2 .small {
    display: none;
  }
}
.calendar p {
  color: #c9c8c9;
}
.calendar .section-header {
  position: relative;
  margin-bottom: 0;
}
.calendar .section-header .right, .calendar .section-header .left {
  position: absolute;
  top: 18px;
  color: #a0a2a7;
  cursor: pointer;
}
.calendar .section-header .right:hover, .calendar .section-header .left:hover {
  color: #FFF;
}
.calendar .section-header .right {
  right: 15px;
}
.calendar .section-header .left {
  left: 15px;
  display: none;
}
.calendar .calendar-wrap {
  border: 1px solid #000;
  overflow: hidden;
  overflow-x: scroll;
  margin-bottom: 30px;
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.calendar .calendar-wrap::-webkit-scrollbar {
  background-color: #3B392F;
  color: #000;
  width: 16px;
}
.calendar .calendar-wrap::-webkit-scrollbar-button {
  background-color: #3B392F;
  color: #000;
}
.calendar .calendar-wrap::-webkit-scrollbar-track {
  background-color: #3B392F;
  color: #000;
}
.calendar .calendar-wrap::-webkit-scrollbar-track-piece {
  background-color: #3B392F;
  color: #000;
}
.calendar .calendar-wrap::-webkit-scrollbar-thumb {
  background-color: #c9c8c9;
  color: #000;
  border-radius: 8px;
}
.calendar .calendar-wrap::-webkit-scrollbar-corner {
  background-color: #3B392F;
  color: #000;
}
.calendar .calendar-wrap::-webkit-resizer {
  background-color: #3B392F;
  color: #000;
}
.calendar .calendar-wrap .calendar-box {
  width: 7013px;
}
.calendar .calendar-wrap .calendar-box .day {
  width: 500px;
  border-left: 1px solid #000;
  display: block;
  float: left;
  padding: 0 15px 15px 15px;
  position: relative;
}
.calendar .calendar-wrap .calendar-box .day.weekend {
  background: rgba(98, 98, 98, 0.16);
}
.calendar .calendar-wrap .calendar-box .day:first-child {
  border-left: none;
}
.calendar .calendar-wrap .calendar-box .day h2 {
  color: #FFF;
  font-size: 24px;
  margin-top: 10px;
}
.calendar .calendar-wrap .calendar-box .event-item {
  overflow: hidden;
  height: 110px;
  border: 1px solid #000;
  padding: 0;
  background: rgba(0, 0, 0, 0.33);
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.calendar .calendar-wrap .calendar-box .event-item:hover {
  background: rgba(0, 0, 0, 0.66);
  transform: scaleY(1.03);
  z-index: 999999;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
  /* IE + Edge */
}
.calendar .calendar-wrap .calendar-box .event-item:hover _:-ms-lang(x), .calendar .calendar-wrap .calendar-box .event-item:hover {
  transform: initial;
}
.calendar .calendar-wrap .calendar-box .event-item .event-item-inner {
  display: block;
  border: 4px solid #c9c8c9;
  border-top: initial;
  border-bottom: initial;
  padding: 15px;
  height: 108px;
}
.calendar .calendar-wrap .calendar-box .event-item .event-item-inner .event-img {
  transition: margin-left 0s;
  width: initial;
  height: 78px;
  float: left;
  margin-right: 15px;
}
.calendar .calendar-wrap .calendar-box .event-item .event-item-inner h3, .calendar .calendar-wrap .calendar-box .event-item .event-item-inner span, .calendar .calendar-wrap .calendar-box .event-item .event-item-inner p {
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calendar .calendar-wrap .calendar-box .event-item .event-item-inner .fa {
  color: #593F86;
}
.calendar .calendar-wrap .calendar-box .event-item .event-item-inner h3 {
  font-size: 24px;
}
.calendar .calendar-wrap .calendar-box .event-item .event-item-inner h3 .label {
  display: inline-block;
  margin-left: 15px;
  margin-bottom: -3px;
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  font-weight: 400;
}
.calendar .calendar-wrap .calendar-box .event-item.active {
  background: rgba(59, 57, 47, 0.75);
}
.calendar .calendar-wrap .calendar-box .event-item.active:hover {
  background: #3B392F;
}
.calendar .calendar-wrap .calendar-box .event-item.active h3 {
  color: #64b193;
}
.calendar .calendar-wrap .calendar-box .event-item:hover h3, .calendar .calendar-wrap .calendar-box .event-item:hover span, .calendar .calendar-wrap .calendar-box .event-item:hover p {
  color: #FFF;
}

.tier-1-promo {
  margin-bottom: 60px;
  border: 2px solid #000;
  border-left: none;
  border-right: none;
  overflow: hidden;
}
.tier-1-promo .wrap {
  border: 2px solid #a0a2a7;
  border-left: none;
  border-right: none;
  overflow: hidden;
}
.tier-1-promo .wrap .inner {
  border: 2px solid #000;
  border-left: none;
  border-right: none;
  overflow: hidden;
}
.tier-1-promo .wrap .inner .box {
  overflow: hidden;
  padding: 30px 15px;
  transition: all 1s ease;
}
.tier-1-promo .wrap .inner .box h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #FFF;
}
.tier-1-promo .wrap .inner .box span {
  font-size: 14px;
  color: #a0a2a7;
  text-transform: uppercase;
}
.tier-1-promo .wrap .inner .box .container, .tier-1-promo .wrap .inner .box span {
  transition: all 0.5s ease;
}
.tier-1-promo .wrap .inner .box:hover {
  transform: scale(1.1);
}
.tier-1-promo .wrap .inner .box:hover .container {
  padding-left: calc(5% + 100px);
}
.tier-1-promo a:hover .wrap .inner .box span {
  color: #FFF;
}

.smolderscrolls .zvn {
  background-color: rgba(0, 0, 0, 0.9);
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.smolderscrolls .zvn.zvn-fullscreen-mode {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999;
}
.smolderscrolls .zvn .zvn-character {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  animation: breathe 7s infinite;
}
.smolderscrolls .zvn .zvn-logo {
  position: absolute;
  opacity: 0;
}
.smolderscrolls .zvn .zvn-fullscreen {
  position: absolute;
  display: none;
  right: 0;
  top: 0;
  color: #a0a2a7;
  z-index: 99999;
  cursor: pointer;
  text-align: right;
  width: 50px;
  height: 50px;
}
.smolderscrolls .zvn .zvn-fullscreen:hover {
  color: #FFF;
}
.smolderscrolls .zvn .zvn-text {
  position: absolute;
  bottom: 0;
  background-image: url("https://esosslfiles-a.akamaihd.net/smolder/absdfgabdsgvb/text-bg.png");
  background-size: cover;
  background-position: center;
  border: 5px solid #FFF;
  border-radius: 3px;
  font-family: "Jim Nightshade";
  color: #FFF;
  line-height: 1.1;
  z-index: 99;
}
.smolderscrolls .zvn .zvn-text h3 {
  position: absolute;
  color: #FFF;
  left: 0;
  text-shadow: initial;
}
.smolderscrolls .zvn .zvn-text p {
  margin: 0;
  padding: 0;
}
.smolderscrolls .zvn .zvn-text .btn-zvn {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #FFF;
  color: #FFF;
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  cursor: pointer;
}
.smolderscrolls .zvn .zvn-text .btn-zvn:hover {
  color: #FFF;
  border-color: #FFF;
  background: #000;
}
.smolderscrolls .zvn .zvn-text .option-zvn {
  color: #a0a2a7;
  display: block;
  cursor: pointer;
}
.smolderscrolls .zvn .zvn-text .option-zvn:hover {
  color: #FFF;
}
.smolderscrolls .zvn .particle {
  position: absolute;
}
.smolderscrolls .zvn-wrap.zvn-fullscreen-mode {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999;
  background: rgba(0, 0, 0, 0.9);
}
.smolderscrolls .zvn-wrap.zvn-fullscreen-mode .zvn {
  height: 100vh !important;
  max-height: 56vw;
}
@media (orientation: portrait) {
  .smolderscrolls .zvn-character {
    max-width: initial;
    right: initial;
  }
  .smolderscrolls .zvn-wrap.zvn-fullscreen-mode .zvn {
    max-height: initial;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scaleX(1) scaleY(1.02);
  }
  50% {
    transform: scaleX(1.02) scaleY(1);
  }
}
.toc-stub .toc-wrap {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #000;
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 15px 30px 30px 30px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
}
.toc-stub .toc-wrap a {
  display: block;
  font-size: 20px;
}

.cards .card {
  position: relative;
  padding: 15px 15px 75px 15px;
  text-align: left;
}
.cards .card.streamers {
  background: #2B3A51;
}
.cards .card.guides {
  background: #7C4326;
}
.cards .card .img-responsive {
  border: 1px solid #000;
  margin: 15px 0;
  transition: all 0.3s ease;
}
.cards .card .streamer-icon {
  width: 50px;
  margin-right: 15px;
}
.cards .card a {
  color: #fff;
}
.cards .card a:hover .img-responsive {
  border: 1px solid #fff;
}
.cards .card h2, .cards .card h5 {
  font-size: 20px;
  color: #FFF;
  text-align: center;
}
.cards .card h2 {
  font-size: 40px;
  line-height: 0.5;
  margin-bottom: 5px;
}
.cards .card h3 {
  font-size: 24px;
  color: #a0a2a7;
  margin-bottom: 5px;
}
.cards .card h4 {
  font-size: 24px;
  color: #a0a2a7;
  line-height: 1;
}
.cards .card .streamer-title {
  font-size: 16px;
  color: #fff;
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  text-align: left;
}
.cards .card .count {
  font-weight: bold;
}
.cards .card .more {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  font-size: 20px;
  text-align: center;
  color: #a0a2a7;
  text-transform: uppercase;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  background: rgba(0, 0, 0, 0.3);
  padding-top: 12px;
}
.cards .card .more:hover {
  color: #FFF;
}

.link-list .section-box {
  margin-top: -20px;
}
.link-list .section-bg {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 20px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.link-list ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}
.link-list li {
  margin-top: 5px;
}
.link-list h4 {
  letter-spacing: 3px;
  font-family: "ZOS Open Sans", Tahoma, Geneva, sans-serif;
  margin: 15px 0 10px 0;
}

.tier-2-list-item-tabs .menu span {
  display: inline-block;
  font-weight: bold;
  color: #a0a2a7;
  font-size: 20px;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  text-transform: uppercase;
  margin: 0 15px 15px 15px;
  cursor: pointer;
}
.tier-2-list-item-tabs .menu span:hover {
  color: #FFF;
}
.tier-2-list-item-tabs .menu span.on {
  color: #FFF;
  cursor: default;
}
.tier-2-list-item-tabs .panel {
  display: none;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.tier-2-list-item-tabs .panel.on {
  display: block;
}
.tier-2-list-item-tabs .panel .line {
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  margin: 15px 0;
}
.tier-2-list-item-tabs .panel p {
  margin-top: 0;
  color: #c9c8c9;
  transition: all 0.3s ease;
}
.tier-2-list-item-tabs .panel .item-box:hover p {
  color: #FFF;
}
.tier-2-list-item-tabs .panel .tag-n-date .label {
  font-weight: bold;
  text-transform: uppercase;
}
.tier-2-list-item-tabs .panel .img-responsive {
  border: 2px solid #000;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.tier-2-list-item-tabs .panel .item-box:hover .img-responsive {
  border-color: #FFF;
}

.events-head .img-responsive {
  margin-top: 18px;
  border: 2px solid #000;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.5);
}
.events-head .special {
  color: #FFF;
  font-size: 20px;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}

.events-details {
  color: #FFF;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}
.events-details h3 {
  margin-top: 15px;
}

.events-streamers h3 {
  margin-bottom: 15px;
  color: #FFF;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
}
.events-streamers .streamer {
  background: rgba(21, 21, 17, 0.9);
  padding: 15px;
  margin-bottom: 30px;
  height: 70px;
  position: relative;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}

.meter .details {
  margin-bottom: 15px;
}
.meter .details h2, .meter .details h3, .meter .details h4 {
  line-height: 1;
}
.meter .details h2 {
  font-size: 80px;
}
.meter .details h3 {
  font-size: 50px;
}
.meter .details h4 {
  font-size: 28px;
}
.meter .meter-box.fade {
  opacity: 0.5;
}
.meter .meter-box .bulb, .meter .meter-box .bar-wrap, .meter .meter-box .tip, .meter .meter-box .bar-body {
  float: left;
  position: relative;
}
.meter .meter-box .bar-body {
  overflow: visible !important;
}
.meter .meter-box .bar-tip {
  position: absolute;
}
.meter .meter-box .background, .meter .meter-box .foreground, .meter .meter-box .bar, .meter .meter-box .milestone, .meter .meter-box .active, .meter .meter-box .tip-bg, .meter .meter-box .tip-fg {
  display: block;
  position: absolute;
  background-position: right;
}
.meter .meter-box .foreground, .meter .meter-box .bar, .meter .meter-box .active, .meter .meter-box .tip-fg {
  z-index: 100;
}
.meter .meter-box .bar, .meter .meter-box .milestones {
  width: 100%;
}
.meter .meter-box .milestone .hover {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.meter .meter-box .milestone:hover .hover {
  opacity: 1;
}
.meter .reward {
  margin: 15px 0;
}
.meter .reward .img-box {
  position: relative;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
}
.meter .reward .img-box img {
  transform: initial;
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
}
.meter .reward .img-box .img-responsive {
  border: 0;
}
.meter .reward .img-box .lower {
  color: #fff;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 5px 10px;
  text-align: center;
}
.meter .reward .img-box .fa {
  float: left;
  font-size: 30px;
}
.meter .reward .img-box .fa-unlock {
  color: #FFF;
}
.meter .reward .img-box .next-text {
  display: none;
}
.meter .reward .text {
  margin: 30px 0 15px 0;
  color: #fff;
  text-align: left;
}
.meter .reward .text h2, .meter .reward .text h3 {
  text-align: left;
  font-size: 28px;
  line-height: 1;
}
.meter .reward .text h3 {
  margin-top: 5px;
}
.meter .reward.next .img-box {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(238, 202, 42, 0.5);
  -moz-box-shadow: 0px 0px 10px 5px rgba(238, 202, 42, 0.5);
  box-shadow: 0px 0px 10px 5px rgba(238, 202, 42, 0.5);
}
.meter .reward.next .img-box .lower {
  background: #3f3f3f;
}
.meter .reward.next .img-box .next-text {
  display: inline-block;
}

.year-nav .year-nav-sticker {
  z-index: 9999;
  left: 0;
  right: 0;
  border: 2px solid #a0a2a7;
  border-left: none;
  border-right: none;
  background: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  transform: opacity 300ms ease-in-out forwards;
}
.year-nav .year-nav-sticker .nav-item {
  padding: 8px 0;
  position: relative;
}
.year-nav .year-nav-sticker h2, .year-nav .year-nav-sticker .h2 {
  font-family: Palatino;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 2px;
}
.year-nav .year-nav-sticker h2.split {
  font-size: 12px;
}
.year-nav .year-nav-sticker h3, .year-nav .year-nav-sticker .h3 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}
.year-nav .year-nav-sticker h4, .year-nav .year-nav-sticker .h4 {
  font-family: Palatino;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 2px;
}
.year-nav .year-nav-sticker .smudge {
  display: none;
  position: absolute;
  top: -13.5vw;
  left: 23vw;
  width: 50%;
}
.year-nav .year-nav-sticker .active h2, .year-nav .year-nav-sticker .active .h2, .year-nav .year-nav-sticker .active h3, .year-nav .year-nav-sticker .active .h3 {
  color: #FFF;
}
.year-nav .year-nav-sticker .active .smudge {
  display: block;
  z-index: -1;
}
.year-nav .year-nav-sticker .inactive h2, .year-nav .year-nav-sticker .inactive .h2, .year-nav .year-nav-sticker .inactive h3, .year-nav .year-nav-sticker .inactive .h3 {
  color: #c9c8c9;
}
@media (min-width: 768px) {
  .year-nav .year-nav-sticker h2, .year-nav .year-nav-sticker .h2 {
    letter-spacing: 0px;
  }
  .year-nav .year-nav-sticker h2.split, .year-nav .year-nav-sticker .h2.split {
    font-size: 18px;
  }
  .year-nav .year-nav-sticker .smudge {
    top: -6vw;
    left: -0.5vw;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .year-nav .year-nav-sticker h2, .year-nav .year-nav-sticker .h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .year-nav .year-nav-sticker h2.split, .year-nav .year-nav-sticker .h2.split {
    font-size: 18px;
  }
  .year-nav .year-nav-sticker h3, .year-nav .year-nav-sticker .h3 {
    font-size: 18px;
  }
  .year-nav .year-nav-sticker .smudge {
    top: -65px;
    left: -10px;
  }
}
@media (min-width: 1200px) {
  .year-nav .year-nav-sticker h2, .year-nav .year-nav-sticker .h2 {
    font-size: 28px;
  }
  .year-nav .year-nav-sticker h2.split, .year-nav .year-nav-sticker .h2.split {
    font-size: 18px;
  }
  .year-nav .year-nav-sticker h3, .year-nav .year-nav-sticker .h3 {
    font-size: 18px;
  }
  .year-nav .year-nav-sticker .smudge {
    top: -80px;
  }
}
@media (min-width: 2500px) {
  .year-nav .year-nav-sticker h2, .year-nav .year-nav-sticker .h2 {
    font-size: 38px;
  }
  .year-nav .year-nav-sticker h2.split, .year-nav .year-nav-sticker .h2.split {
    font-size: 28px;
  }
  .year-nav .year-nav-sticker h3, .year-nav .year-nav-sticker .h3 {
    font-size: 25px;
  }
  .year-nav .year-nav-sticker .smudge {
    top: -130px;
  }
}

.embeds {
  text-shadow: initial;
}
.embeds .twitter-tweet, .embeds iframe {
  margin-left: auto !important;
  margin-right: auto !important;
}

.carousel-half-feed {
  display: none;
}

.carousel-tall-feed {
  display: none;
}

.feed_line h2, .feed_line h4 {
  margin: 15px 0;
}
.feed_line h4 {
  font-size: 20px;
}
.feed_line .h4 {
  margin: 15px 0;
  font-size: 20px;
}
.feed_line .feed-item {
  margin-bottom: 15px;
}
.feed_line .feed-item h3 {
  margin: 15px 0 0 0;
  color: #64b193;
  transition: color 0.3s ease;
}
.feed_line .feed-item p {
  margin: 5px 0;
  color: #a0a2a7;
  transition: color 0.3s ease;
}
.feed_line .feed-item.link-block:hover h3, .feed_line .feed-item.link-block:hover p, .feed_line .feed-item .link-block:hover h3, .feed_line .feed-item .link-block:hover p {
  color: #FFF;
}
@media (min-width: 2400px) {
  .feed_line .feed-item h3 {
    font-size: 40px;
  }
  .feed_line .feed-item p {
    font-size: 24px;
  }
}

.buy-crowns-nav .container {
  opacity: 1 !important;
}
.buy-crowns-nav .img-responsive {
  width: 100%;
}
.buy-crowns-nav .crown-pack {
  position: relative;
}
.buy-crowns-nav .best-value {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  color: #fff;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  text-transform: uppercase;
  background: rgba(178, 149, 66, 0.8);
  line-height: 1.3;
}
.buy-crowns-nav .crowns {
  display: inline-block;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  text-transform: uppercase;
  color: #a0a2a7;
  margin: 2px 0;
}
.buy-crowns-nav .crowns:hover {
  color: #fff;
}
.buy-crowns-nav .sale {
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  color: #fff;
  background: rgba(72, 156, 75, 0.8);
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
}
@media (min-width: 0px) {
  .buy-crowns-nav .best-value {
    font-size: 6vw;
  }
  .buy-crowns-nav .crowns {
    font-size: 20px;
  }
  .buy-crowns-nav .sale {
    font-size: 6vw;
  }
}
@media (min-width: 768px) {
  .buy-crowns-nav .best-value {
    font-size: 6vw;
  }
  .buy-crowns-nav .crowns {
    font-size: 20px;
  }
  .buy-crowns-nav .sale {
    font-size: 6vw;
  }
}
@media (min-width: 1024px) {
  .buy-crowns-nav .best-value {
    font-size: 14px;
  }
  .buy-crowns-nav .crowns {
    font-size: 24px;
  }
  .buy-crowns-nav .sale {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .buy-crowns-nav .best-value {
    font-size: 16px;
  }
  .buy-crowns-nav .crowns {
    font-size: 24px;
  }
  .buy-crowns-nav .sale {
    font-size: 16px;
  }
}
@media (min-width: 2400px) {
  .buy-crowns-nav .best-value {
    font-size: 24px;
  }
  .buy-crowns-nav .crowns {
    font-size: 24px;
  }
  .buy-crowns-nav .sale {
    font-size: 24px;
  }
}

.buy-crowns-page .img-responsive {
  width: 100%;
}
.buy-crowns-page .across-5 {
  width: calc(20% - 4px);
  margin: 2px;
}
.buy-crowns-page .full-size .crown-pack, .buy-crowns-page .across-5 .crown-pack {
  position: relative;
  margin-bottom: 5px;
}
.buy-crowns-page .best-value {
  position: absolute;
  text-align: left;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 15%;
  color: #fff;
  font-family: Garamond, Palatino;
  text-transform: uppercase;
  line-height: 1;
}
.buy-crowns-page .crowns {
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  font-family: "Einstein Futura PT Cond Bold", impact, charcoal, sans-serif;
  text-transform: uppercase;
}
.buy-crowns-page .full-size .crowns {
  text-align: left;
  padding-left: 15%;
  opacity: 0.5;
}
.buy-crowns-page .across-5 .crowns {
  position: absolute;
}
.buy-crowns-page .sale {
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  color: #fff;
  background: #489c4b;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
}
@media (min-width: 0px) {
  .buy-crowns-page .best-value {
    font-size: 4.2vw;
    top: 0.67vw;
  }
  .buy-crowns-page .full-size .crowns {
    font-size: 10vw;
    top: 8.8vw;
  }
  .buy-crowns-page .across-5 .crowns {
    font-size: 4vw;
    top: 1vw;
  }
  .buy-crowns-page .full-size .sale {
    font-size: 4vw;
  }
  .buy-crowns-page .across-5 .sale {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .buy-crowns-page .best-value {
    font-size: 35px;
    top: 0;
  }
  .buy-crowns-page .full-size .crowns {
    font-size: 70px;
    top: 65px;
  }
  .buy-crowns-page .across-5 .crowns {
    font-size: 20px;
    top: 10px;
  }
  .buy-crowns-page .full-size .sale {
    font-size: 20px;
  }
  .buy-crowns-page .across-5 .sale {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .buy-crowns-page .best-value {
    font-size: 43px;
  }
  .buy-crowns-page .full-size .crowns {
    font-size: 100px;
    top: 85px;
  }
  .buy-crowns-page .across-5 .crowns {
    font-size: 25px;
    top: 10px;
  }
  .buy-crowns-page .full-size .sale {
    font-size: 25px;
  }
  .buy-crowns-page .across-5 .sale {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .buy-crowns-page .best-value {
    font-size: 52px;
  }
  .buy-crowns-page .full-size .crowns {
    font-size: 120px;
    top: 95px;
  }
  .buy-crowns-page .across-5 .crowns {
    font-size: 30px;
    top: 17px;
  }
  .buy-crowns-page .full-size .sale {
    font-size: 30px;
  }
  .buy-crowns-page .across-5 .sale {
    font-size: 25px;
  }
}
@media (min-width: 2400px) {
  .buy-crowns-page .best-value {
    font-size: 93px;
  }
  .buy-crowns-page .full-size .crowns {
    font-size: 240px;
    top: 190px;
  }
  .buy-crowns-page .across-5 .crowns {
    font-size: 52px;
    top: 34px;
  }
  .buy-crowns-page .full-size .sale {
    font-size: 52px;
  }
  .buy-crowns-page .across-5 .sale {
    font-size: 40px;
  }
}

.buy-crowns-buttons .btn img {
  margin-bottom: 5px;
  height: 100%;
}
@media (min-width: 2400px) {
  .buy-crowns-buttons .btn {
    height: 140px;
    line-height: 136px;
    border-size: 4px;
    font-size: 24px;
  }
}

.carousel-tall-streamer {
  position: relative;
  transition: all 0.3s ease;
  margin-top: 30px;
  margin-bottom: 60px;
}
.carousel-tall-streamer img, .carousel-tall-streamer .vod {
  display: inline-block;
  width: 100%;
  border: 2px solid #000;
  object-fit: contain;
  background: rgba(128, 128, 128, 0.8);
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.75);
}
.carousel-tall-streamer .vod {
  position: absolute;
  left: 0px;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  border-color: #000;
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
}
.carousel-tall-streamer .streamer .partner-sticker {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
}
.carousel-tall-streamer .streamer .partner-sticker img {
  width: 100%;
  background: initial;
  border: none;
  box-shadow: initial;
}
.carousel-tall-streamer .streamer-icon {
  width: 6vh !important;
  height: 6vh;
  border: 1px solid #000;
  border-radius: 20px;
  background: initial;
  border: none;
  box-shadow: initial;
  float: left;
  margin-right: 1vh;
  margin-top: 1vh;
}
.carousel-tall-streamer .streamer-info {
  margin-top: 1vh;
  float: left;
}
.carousel-tall-streamer h4, .carousel-tall-streamer h5 {
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  text-transform: initial;
  color: #c9c8c9;
  font-size: 15px;
  padding-left: 0.2vh;
}
.carousel-tall-streamer h4 {
  font-weight: bold;
  text-transform: uppercase;
}
.carousel-tall-streamer a, .carousel-tall-streamer a h4, .carousel-tall-streamer a h5, .carousel-tall-streamer a p {
  transition: all 0.3s ease;
}
.carousel-tall-streamer a:hover, .carousel-tall-streamer a:hover h4, .carousel-tall-streamer a:hover h5, .carousel-tall-streamer a:hover p, .carousel-tall-streamer a:hover img {
  color: #FFF !important;
  border-color: #FFF;
}
.carousel-tall-streamer .live {
  color: #FFF;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #623FA0;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 5px;
  font-family: "Einstein Futura PT Cond", impact, charcoal, sans-serif;
  font-size: 19px;
  position: absolute;
  top: 10px;
  left: 25px;
}
.carousel-tall-streamer .live .fa {
  background: #623FA0;
  font-size: 16px;
  padding: 5px;
}
.carousel-tall-streamer h3 {
  color: #FFF;
  font-size: 50px;
  line-height: 1.3;
}
.carousel-tall-streamer p {
  color: #c9c8c9;
  margin: 0;
}
.carousel-tall-streamer a, .carousel-tall-streamer a * {
  color: #FFF !important;
}
.carousel-tall-streamer .btn {
  margin-top: 15px;
}
.carousel-tall-streamer .streamer {
  margin: 15px 0;
}
.carousel-tall-streamer .streamer-box:hover img, .carousel-tall-streamer .streamer-box:hover .vod {
  transform: scale(1);
  border-color: #FFF;
}
@media (orientation: portrait) {
  .carousel-tall-streamer h4, .carousel-tall-streamer h5 {
    padding-left: 0.2vw;
  }
  .carousel-tall-streamer .streamer {
    margin-top: 2vw;
  }
  .carousel-tall-streamer .streamer-icon {
    width: 6vw !important;
    height: 6vw;
    margin-right: 1vw;
    margin-top: 1vw;
  }
  .carousel-tall-streamer .streamer-info {
    margin-top: 1vw;
  }
}

@media (min-width: 0) {
  zos-hotload {
    display: block;
  }
  zos-hotload.loading {
    text-align: center;
  }
  zos-hotload.loading i {
    top: calc(50% - 12px);
  }
}
@media (min-width: 768px) {
  zos-hotload .container {
    max-width: 750px;
    width: auto;
  }
}
@media (min-width: 992px) {
  zos-hotload .container {
    max-width: 970px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  zos-hotload .container {
    max-width: 1170px;
    width: auto;
  }
}
@media (min-width: 2400px) {
  zos-hotload .container {
    max-width: 2170px;
    width: auto;
  }
}
@supports not ((mask-image: linear-gradient(black, transparent)) or (-webkit-mask-image: linear-gradient(black, transparent))) {
  .header-image-wrap, .feature-image-wrap {
    height: 100% !important;
  }
  .header-image-wrap .header-image-box, .header-image-wrap .feature-image-box, .feature-image-wrap .header-image-box, .feature-image-wrap .feature-image-box {
    height: 100% !important;
    background-size: cover !important;
  }
  .header-image-wrap .header-image-box video, .header-image-wrap .feature-image-box video, .feature-image-wrap .header-image-box video, .feature-image-wrap .feature-image-box video {
    display: none !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header-image-wrap, .feature-image-wrap {
    height: 100% !important;
  }
  .header-image-wrap .header-image-box, .header-image-wrap .feature-image-box, .feature-image-wrap .header-image-box, .feature-image-wrap .feature-image-box {
    height: 100% !important;
    background-size: cover !important;
  }
  .header-image-wrap .header-image-box video, .header-image-wrap .feature-image-box video, .feature-image-wrap .header-image-box video, .feature-image-wrap .feature-image-box video {
    display: none !important;
  }

  .grid-item .bullets {
    width: 186px !important;
    margin-left: 10px !important;
  }
}

/*# sourceMappingURL=eso.css.map */
