.journal-area {
    width: 100%;
    padding-bottom: 38px;
    padding-top: 12px;
}

.journal-area .image-placeholder {
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
}

.journal-area__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
}

.journal-area__text__title-section {
    width: 50%;
}

.journal-area__text__body-section {
    width: 50%;
    margin: 0;
    padding-right: 16px;
}

.journal-area__text__title-section__title {
    font: 12px/18px "SackersGothicStd", sans-serif;
    margin: 35px 0 0;
    text-align: left;
}

.journal-area__text__title-section__heading {
    font: 32px/40px "Georgia", sans-serif;
    padding-right: 15%;
    margin: 0;
}

.journal-area__text__body-section__subheading_journal {
    font: 14px/22px "Georgia", sans-serif;
    margin: 0;
    padding-bottom: 10px;
}

@media (max-width: 950px) {
    .journal-area__text__title-section__title {
        font: 12px/16px "SackersGothicStd", sans-serif;
        margin-bottom: 4px;
    }
    .journal-area__text__title-section__heading {
        font: 32px/38px "Georgia", sans-serif;
    }
}

@media (max-width: 600px) {
    .journal-area__text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 16px;
    }

    .journal-area .image-placeholder {
      padding-bottom: 75%;
    }

    .journal-area__text__title-section,
    .journal-area__text__body-section {
        width: 100%;
    }

    .journal-area__text__body-section__subheading_journal {
        padding-bottom: 20px;
    }
}

.advertisement-divider {
    border-bottom: solid 1px #cbcbcb;
    margin: 12px 0;
    text-align: center;
    line-height: 0;
}

.advertisement-divider__text {
    background: white;
    padding: 0 10px;
    color: #838383;
    font-size: 9px;
    font-family: "SackersGothicStd"
}
.content-area {
    width: 100%;
    padding-bottom: 38px;
    padding-top: 12px;
}

.content-area .image-placeholder {
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
}

.content-area__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
}

.content-area__text__title-section {
    width: 50%;
}

.content-area__text__body-section {
    width: 50%;
    margin: 0;
    padding-right: 16px;
}

.content-area__text__title-section__title {
    font: 12px/18px "SackersGothicStd", sans-serif;
    margin: 35px 0 0;
    text-align: left;
}

.content-area__text__title-section__heading {
    font: 32px/40px "Georgia", sans-serif;
    padding-right: 15%;
    margin: 0;
}

.content-area__text__body-section__subheading {
    font: 14px/22px "Georgia", sans-serif;
    margin: 0;
    padding-bottom: 10px;
}

@media (max-width: 950px) {
    .content-area__text__title-section__title {
        font: 12px/16px "SackersGothicStd", sans-serif;
        margin-bottom: 4px;
    }
    .content-area__text__title-section__heading {
        font: 32px/38px "Georgia", sans-serif;
    }
}

@media (max-width: 600px) {
    .content-area__text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 16px;
    }

    .content-area .image-placeholder {
      padding-bottom: 75%;
    }

    .content-area__text__title-section,
    .content-area__text__body-section {
        width: 100%;
    }

    .content-area__text__body-section__subheading {
        padding-top: 20px;
    }
}

.mrp-carousel {
  overflow-y: hidden;
  height: 100%;
}

.mrp-carousel__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  height: calc(100% + 20px); /* Needs to be slightly taller to hide scroll bar on some browsers*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-scroll-snap-destination: 0% 100%;
      scroll-snap-destination: 0% 100%;
  -ms-scroll-snap-points-x: repeat(100%);
      scroll-snap-points-x: repeat(100%);
}

.mrp-carousel__items > div {
  scroll-snap-align: start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%; /* 20% because there are 5 items on desktop */ 
  max-width: 20%;
}

.mrp-carousel__items.mrp-carousel__items--one-by-one > div {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.mrp-carousel-pips {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 12px 0 7px;
}

.mrp-carousel-pips__pip {
  display: block;
  width: 7px;
  border-bottom: 3px solid #cbcbcb;
  border-top: 4px solid #cbcbcb;
  margin: 1px 6px;
  -webkit-transition: 0.4s border;
  transition: 0.4s border;
  cursor: pointer;
  border-radius: 50px;
}

.mrp-carousel-pips__pip:hover {
  border-color: #666;
}

.mrp-carousel-pips__pip--active {
  border-color: #9b9b9b;
}

.mrp-carousel-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mrp-carousel-arrows > div {
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  outline: none;
}

.mrp-carousel-arrows > div:hover {
  opacity: 0.99;
}

.mrp-carousel-arrows__arrow--left > svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 8px;
}

@media (max-width: 600px) {
  .mrp-carousel__items > div {
    max-width: 50%; /* because there are 2 items on mobile */
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.sell {
    margin-top: 12px;
    max-width: 500px;
}

.sell span {
    line-height: 33px;
}

.product {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    text-align: center;
    width: 214px;
    margin: 0 0 40px;
}

.product-link {
    display: block;
}

.image {
    width: 100%;
    max-width: 145px;
}

.image:active {
    filter: brightness(90%);
    -webkit-filter: brightness(90%);
    -moz-filter: brightness(90%);
    -o-filter: brightness(90%);
    -ms-filter: brightness(90%);
}

.designer {
    padding-top: 30px;
    margin-bottom: 4px;
}

.designer span {
    text-transform: uppercase;
    font: 700 13px "Akkurat", sans-serif;
}

.name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.title {
    font: 300 14px "Akkurat", sans-serif;
    padding-bottom: 60px;
}

.subtitle {
    position: absolute;
    bottom: 0;
    font: 400 14px "Akkurat", sans-serif;
    color: #4f4f4f;
}

.city {
    border-right: 1px solid #cbcbcb;
    margin-right: 3px;
    padding-right: 6px;
}

@media (max-width: 950px) {
    /* tablet and below */
    .product {
        width: 153px;
    }
    .slider-slide {
        min-height: 280px;
    }
    .subtitle span,
    .designer,
    .title {
        font-size: 12px;
    }
}

.custom-carousel__title {
  padding: 12px 0;
}

.custom-carousel {
  max-height: 290px;
}

.custom-carousel .designer span {
  font: 14px "Georgia", sans-serif;
  text-transform: uppercase;
  white-space: normal;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}

.custom-carousel .designer {
  text-align: center;
}

.custom-carousel .slider-decorator-1 , .custom-carousel .slider-decorator-0 {
  margin-top: -105px;
}

.custom-carousel .mrp-carousel {
  max-height: 26vw;
}

.custom-carousel .mrp-carousel__items {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.custom-carousel .mrp-carousel__items > div {
  padding: 0 24px;
}

@media (max-width: 600px) {
  .custom-carousel {
    max-height: initial;
  }

  .custom-carousel .mrp-carousel {
    max-height: 54vw;
  }
}

.divider {
    border-bottom: solid 1px #cbcbcb;
    margin: 12px 0;
}

.homepage-title__text {
    margin: 24px 0;
}

@media (max-width: 600px) {
    .homepage-title__text {
        margin: 12px 0;
    }
}

.content-carousel-item {
  font-family: Georgia;
}

.content-carousel-item__title {
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 12px;
  padding-right: 52px;
}

.content-carousel-item__body {
  font-size: 14px;
  line-height: 22px;
  margin: 0 0 54px;
  max-width: 465px;
}

.content-carousel-item__cta {
  font: 14px/18px "Georgia", serif;
  text-decoration: underline;
  position: absolute;
  bottom: 0;
}

.content-carousel-slides {
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
}

@media (max-width: 950px) {
  .content-carousel-slides {
    margin-bottom: 34px;
  }
  
  .content-carousel-item__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .content-carousel-slides {
    margin-bottom: 30px;
  }
  
  .content-carousel-item__body {
    margin-bottom: 48px;
  }
}

.mrp-homepage {
  margin: 0 auto;
  max-width: 1440px;
}

.mrp-homepage__content .divider + .divider {
    display: none;
}

.mrp-homepage__content {
    margin: 0;
    -webkit-transition: margin 0.5s;
    transition: margin 0.5s;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

main.content .mrp-homepage__content {
    margin: 0 32px;
}

.mrp-homepage-cta {
    font: 14px/18px "Georgia", serif;
    text-decoration: underline;
    letter-spacing: 0.2px;
    color: #000;
}

.mrp-homepage-cta:hover {
    color: #333333;
}

.title-typography {
    text-align: center;
    font: 12px/16px "SackersGothicStd", sans-serif;
    text-transform: uppercase;
}

.homepage-title.title-typography {
    font: 10px/14px "SackersGothicStd", sans-serif;
}

.image-placeholder picture {
  width: 100%;
}

.image-placeholder img {
  width: 100%;
  display: block;
}

.most-popular .carousel .slider-frame, .custom-carousel .carousel .slider-frame {
  padding-bottom: 50% !important;
}

@media (max-width:960px) {
  .sf-content .mrp-homepage__content {
      margin: 0 16px;
  }
}

@media (max-width:768px) {
  main.content .mrp-homepage__content {
      margin: 0 16px;
  }
}

@media (max-width:600px) {
  .most-popular .carousel .slider-frame, .custom-carousel .carousel .slider-frame  {
    padding-bottom: 100% !important;
  }
}

.developer__json-response {
  width: 100%;
  height: 100px;
  -webkit-transition: 0.5s height;
  transition: 0.5s height;
  font-family: monospace;
}

.developer__json-response:hover {
  height: 500px;
}

.large-banner__container {
  padding: 12px 0;
}

.large-banner{
  position: relative;
}

.large-banner__background-image{
  width: 100%;
}

.large-banner__overlay-image {
  position: absolute;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 35%;
  top: 25%;
}

.large-banner__overlay-image__image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.large-banner__text {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  text-align: center;
  padding-bottom: 15px;
  left: 10%;
  top: 70%;
}

.large-banner__text__heading {
  font: 14px/16px "SackersGothicStd", sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .large-banner__overlay-image {
    width: 60%;
    left: 20%;
    top: 25%;
  }

  .large-banner__text {
    width: 85%;
    left: 7.5%;
    top: 65%;
  }
}
.marketing-area-duo__title {
  padding: 12px 0;
}

.marketing-area-trio__title {
  padding: 12px 0;
}

.marketing-area-duo__blocks,
.marketing-area-trio__blocks {
  padding: 12px 0 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 600px) {
.marketing-area-duo__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
}

.marketing-area-trio__blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
}
}
.marketing-block-ad.marketing-block {
    border: none;
  
}

@media (max-width: 600px) {
    .marketing-block-ad.marketing-block{
        text-align: center
    }
}
.marketing-block {
  width: 100%;
  position: relative;
  padding: 0 16px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #CBCBCB), color-stop(0%, rgba(255,255,255,0)));
  background-image: linear-gradient(#CBCBCB 25%, rgba(255,255,255,0) 0%);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  background-position: right;
}

.marketing-block:first-child {
  padding-left: 0;
}

.marketing-block:last-child {
  padding-right: 0;
  background-image: none;
}

.marketing-area-trio .marketing-block:first-child {
  margin-right: 16px;
}

.marketing-area-trio .marketing-block:nth-child(2) {
  padding-left: 0;
}

.marketing-block__text__heading {
  font: 12px/16px "SackersGothicStd", serif;
  text-transform: uppercase;
  margin: 22px 20px 30px 0;
}

.marketing-block__text__cta {
  margin: 0;
  position: absolute;
  bottom: 0;
}

@media (max-width: 600px) {
  .marketing-block {
    position: static;
    margin-bottom: 32px;
    background-image: none;
    padding: 0;
  }

  .marketing-area-duo__blocks .marketing-block {
    width: 100%;
  }

  .marketing-area-trio .marketing-block {
    width: 100%;
  }

  .marketing-block__image {
    margin-bottom: 16px;
  }

  .marketing-block__text__heading {
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .marketing-block__text__cta {
    margin: 0;
    position: static;
  }
}

.quicklinks-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-top: 3px solid black;
    padding-bottom: 20px;
}

.quicklinks-area__title {
    padding-top: 32px;
    padding-left: 18px;
    width: 27%;
    text-align: left;
    font: 14px/18px "SackersGothicStd", sans-serif;
    margin-right: 10px;
}

.quicklinks-area__links {
    padding-top: 32px;
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    float: right;
}

.quicklinks-area__links__text {
    font: 14px/18px "Georgia", serif;
    padding-bottom: 24px;
    width: 33%;
}

.quicklinks-area__links__text__cta {
    color: #000;
}

.quicklinks-area__links__text__cta:hover {
    color: #333333;
}

@media (max-width: 950px) {
    .quicklinks-area__title {
        font: 12px/16px "SackersGothicStd", sans-serif;
        width: 30%;
      }
}

@media (max-width: 600px) {
    .quicklinks-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-bottom: 50px;
        padding-left: 38px;
    }

    .quicklinks-area__title {
        width: 100%;
        padding-left: 0;
        padding-bottom: 30px;
    }

    .quicklinks-area__links {
        padding-top: 0;
        width: 100%;
    }

    .quicklinks-area__links__text {
        width: 50%;
    }
}

.service-area__title {
  padding: 12px 0;
}

.service-area__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 12px 0 40px;
}

.service-block__image .image-placeholder {
padding-bottom: 79%;
}

.service-block__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 120px;
}

.service_giftcards .service-block__image{
  background-image:url(/_next/static/images/service_giftcards-246e77216ee52544c7f107df47f09350.png);
}

.service_return .service-block__image{
  background-image:url(/_next/static/images/service_return-7ccef620f50d7433b9e45ce72afc294e.png);
}

.service_delivery .service-block__image{
  background-image:url(/_next/static/images/service_delivery-83ff4c57dc7c5665d29047d3513b8e80.png);
}

@media (max-width: 600px) {
  .service-area__blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
  }

  .service-area__blocks__returns::after {
      border-left: none;
      border-right: none;
  }

}
.service-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.333%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #CBCBCB), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(#CBCBCB 25%, rgba(255, 255, 255, 0) 0%);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  background-position: right center;
}

.service-area__blocks a:last-child {
  background-image: none;
}

.service-block__image-container {
  padding-right: 19px;
}

.service-block .service-block__image-container__image {
  max-width: 140px;
}

.service-block__text {
  font: 14px/18px "Georgia", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 130px;
}

@media (max-width: 950px) {
  .service-block {
    padding: 0px 10px;
  }

  .service-block__image-container {
    padding-right: 10px;
  }

  .service-block__image-container__image {
    width: 90px;
  }
}

@media (max-width: 600px) {

  .service-block {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    background-image: none;
  }

  .service-block__image-container {
    padding-right: 24px;
  }

  .service-block__image-container__image {
    width: 140px;
  }

  .service-block__text {
    width: 144px;
  }
}
.small-banner__container {
  padding: 12px 0;
}

.small-banner {
  position: relative;
}

.small-banner__background-image__image {
  width: 100%;
}

.small-banner__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
}

.small-banner__overlay__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  padding: 2%;
}

.small-banner__overlay__image__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.small-banner__overlay__text {
  width: 50%;
  padding: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.small-banner__overlay__text__heading {
  font: 12px/16px "SackersGothicStd", sans-serif;
  color: white;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .small-banner__overlay {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .small-banner__overlay__image {
    width: 100%;
    padding: 20px 50px 0;
  }
  .small-banner__overlay__text {
    width: 100%;
    text-align: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 30px 0 0 0;
  }
}
.takeover-ad {
  width: 100%;
  padding: 12px 0;
}

.tpromo-area__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 0;
}

.tpromo-area__blocks--carousel {
  display: none;
}

@media (max-width: 600px) {
    .tpromo-area__blocks--carousel {
      display: block;
    }
    
    .tpromo-block__text {
      white-space: normal;
    }

    .tpromo-area__blocks--non-carousel {
      display: none;
    }
}

.tpromo-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 33%;
}

.tpromo-block .image-placeholder {
  padding-bottom: 111%;
  height: 0;
  overflow: hidden;
}

.tpromo-image-link{
    min-width: 116px;
}

.mrp-image.tpromo-block__image {
    width: 116px;
}

.tpromo-block__text {
    height: 100%;
    padding: 0 20px;
}

.tpromo-block-link {
    width: 100%;
    position: relative;
}

.tpromo-block__text__heading {
    font: 12px/16px "SackersGothicStd", sans-serif;
    text-transform: uppercase;
    margin: 0;
    padding: 16px 0 0;
}

.tpromo-block__text__subheading {
    font: 14px/18px "Georgia", serif;
    margin: 0;
    padding: 10px 0;
}

.tpromo-block__text__cta {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 10px 0 16px;
}

@media (max-width: 950px) {

    .tpromo-image-link{
        min-width: 70px;
    }

    .mrp-image.tpromo-block__image {
        width: 70px;
    }

    .tpromo-block__text {
        padding: 0 10px;
    }

    .tpromo-block__text__heading {
        padding-top: 0;
    }
    
    .tpromo-block__text__subheading {
      padding-bottom: 30px;
    }

    .tpromo-block__text__cta {
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .tpromo-block {
        height: 170px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    
    .tpromo-image-link{
        min-width: 150px;
    }

    .mrp-image.tpromo-block__image {
        width: 150px;
    }

    .tpromo-block__text {
        padding: 0 30px 0 20px;
    }
    
    .tpromo-block__text__heading {
        padding-top: 30px;
    }

    .tpromo-block__text__cta {
        padding-bottom: 30px;
    }
}

.video-area__title {
    padding: 12px 0;
}

.video-area__blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 12px 0;
}

@media (max-width: 600px) {
    .video-area__blocks {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 12px 38px 24px;
    }
}

.video-block {
    width: calc(33% - 10px);
}

.video-block__text__heading {
    font: 14px/18px "Georgia", serif;
    margin: 15px 32px 30px 1px;
}

.video-block__image-container {
    position: relative;
}

.video-block__image-container .image-placeholder {
  padding-bottom: 73%;
  height: 0;
  overflow: hidden;
}

.video-block__image-container__button {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

@media (max-width: 600px) {
    .video-block {
        width: 100%;
    }

    .video-block__image-container__button {
        width: 22px;
        height: 22px;
    }
}

.whatsnew-area {
    width: 100%;
    position: relative;
}

.whatsnew-area > div {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.whatsnew-area-container {
    padding: 12px 0;
}

.whatsnew-area-background-colour-placeholder {
    background-color: #f0f0f0;
}

.whatsnew-area__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    background-color: #f0f0f0;
}

.whatsnew-area--loading .whatsnew-area__standard-component {
  opacity: 0
}

.whatsnew-area--loading .whatsnew-area__eip-component {
  opacity: 0;
  position: absolute;
  top:0;
}

.whatsnew-area--standard .whatsnew-area__standard-component {
  opacity: 1;
}

.whatsnew-area--standard .whatsnew-area__eip-component {
  display:none;
  opacity: 0;
}

.whatsnew-area--eip .whatsnew-area__standard-component {
  display:none;
}

.whatsnew-area--eip .whatsnew-area__eip-component {
  opacity: 1;
}

.whatsnew-area__eip-component .whatsnew-area__block { /* EIP */
    background-image: url(/_next/static/images/alfred-14ee492aac569c8d9f5a4b226c692819.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 110px;
}

.whatsnew-area__block .slideshow__parent {
    width: 45%;
}

.whatsnew-area__block__image {
    padding-left: 56px;
    padding-top: 40px;
}

.whatsnew-area__block__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 44%;
    padding: 64px 78px 64px 0;
}

.whatsnew-area__block__text__title {
    margin: 0 0 32px;
    text-transform: uppercase;
    font: 12px/16px "SackersGothicStd", sans-serif;
}

.whatsnew-area__block__text__heading {
    font: 102px/48px "Georgia", serif;
    margin: 0 0 60px;
}

.whatsnew-area__block__text__subheading {
    font: 14px/22px "Georgia", serif;
    margin: 0;
    color: #000;
}

.whatsnew-area__block__text__subheading__cta {
    text-decoration: underline;
}

.whatsnew-area__block__text__subheading__cta:hover {
    color: #333333;
}

@media (max-width: 950px) {
    .whatsnew-area .whatsnew-area__block__text__title {
        margin: 0 0 20px;
    }

    .whatsnew-area__block .slideshow__parent {
        width: 42%;
    }

    .whatsnew-area__block__text__heading {
        font: 72px/48px "Georgia", serif;
        margin: 0 0 32px;
    }

    .whatsnew-area__eip-component .whatsnew-area__block {
        background-size: 78px;
    }

    .whatsnew-area__block__image {
        padding-left: 20px;
        padding-top: 20px;
    }

    .whatsnew-area__block__text {
        padding: 42px 56px 42px 0;
    }
}

@media (max-width: 700px) {
  .whatsnew-area__block__text {
    padding: 36px 56px 36px 0;
  }
  
  .whatsnew-area .whatsnew-area__block__text__title {
    margin: 0 0 8px;
  }
  
  .whatsnew-area__block .slideshow__parent {
      width: 48%;
  }
}

@media (max-width: 600px) {
    .whatsnew-area__block {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    
    .whatsnew-area__eip-component .whatsnew-area__block { /* EIP */
        background-image: none;
    }

    .whatsnew-area__block .slideshow__parent {
        width: 100%;
    }

    .whatsnew-area__block__image {
        width: 100%;
        padding: 2% 4% 0;
    }

    .whatsnew-area__block__text {
        width: 100%;
        text-align: center;
        padding: 32px 20% 8px;
    }

    .whatsnew-area .whatsnew-area__block__text__title {
        margin-bottom: 10px;
        padding: 0;
    }

    .whatsnew-area__block__text__subheading {
        margin-top: 16px;
    }
}

.slideshow__parent {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slideshow__all.slideshow__first {
  position: static;
}

.slideshow__all {
  position: absolute;
  bottom: 0;
  opacity: 0;
  width: 100%;
}

.slideshow__selected {
  opacity: 1;
}

.sale-banner__container {
  padding: 12px 0;
}

.sale-banner{
  position: relative;
}

.sale-banner__background-image{
  width: 100%;
}

.sale-banner__overlay-image {
  position: absolute;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 5%;
  left: 5%;
  right: 5%;
  max-width: 960px;
  max-height: 310px;
}

.sale-banner__text {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  text-align: center;
  left: 5%;
  bottom: 40px;
}

.sale-banner__text__heading {
  font: 16px/20px "SackersGothicStd", sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
  padding-bottom: 16px;
}

@media (max-width: 600px) {
  .sale-banner__overlay-image {
    left: 0;
    right: 0;
    top: 20%;
  }

  .sale-banner__text {
    width: 90%;
    left: 5%;
    bottom: 24px;
  }

  .sale-banner__text__heading {
    color: #FFFFFF;
    text-transform: uppercase;
    padding-bottom: 24px;
  }
}

@media (max-width: 380px) {
  .sale-banner__text__heading {
    padding-bottom: 16px;
  }
}
.article-block-wrapper .image-placeholder {
  padding-bottom: 56.3%;
  height: 0;
  overflow: hidden;
}


/*# sourceMappingURL=styles.27759d99.chunk.css.map*/