@import url("https://fonts.googleapis.com/css?family=Mirza&amp;subset=latin-ext");
.santa-hat-holder {
  position: absolute;
  padding: 0.2rem;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.santa-hat-holder .fa-hat-santa::before {
  content: "\f7a7";
}
.santa-hat-holder .fa-hat-santa::after {
  opacity: 1;
}

header .secondHeader .discount {
  color: #f9be4b;
}

header.invert.transparent .primary a.logo svg {
  fill: #f8b229;
  /*.letter-i1, .letter-r, .letter-s2, .letter-n {
    fill: $logo-christmas-gold;
    transition: all 0.3s ease-in-out;
  }
  .letter-m, .letter-e,.letter-i2 {
    fill: $logo-christmas-gold;
    transition: all 0.3s ease-in-out;
  }*/
}

/*header.invert a.logo svg { 
  .letter-i1, .letter-r, .letter-s2, .letter-n {
    fill: rgb(var(--rgb-primary));
    transition: all 0.3s ease-in-out;
  }
  .letter-m, .letter-e,.letter-i2 {
    fill: rgb(var(--rgb-primary));
    transition: all 0.3s ease-in-out;
  }
}*/
header .primary .logo {
  position: relative;
}
header .primary .logo .santa-hat-holder {
  right: 24px;
  top: -10px;
  width: 12px;
  height: 15px;
  transform: rotateZ(15deg);
}
header .primary .logo .santa-hat-holder .fa-hat-santa {
  font-size: 1.3rem;
  color: #fff;
}
header .primary .logo .santa-hat-holder .fa-hat-santa::before {
  color: #ca262b;
}
header .primary .logo .santa-hat-holder .fa-hat-santa::after {
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.55));
}

header .primary .icons button, header .primary .icons a.christmas {
  position: relative;
}
header .primary .icons button .santa-hat-holder, header .primary .icons a.christmas .santa-hat-holder {
  right: 12px;
  top: -10px;
  width: 12px;
  height: 15px;
  transform: rotateZ(-15deg);
}
header .primary .icons button .santa-hat-holder .fa-hat-santa, header .primary .icons a.christmas .santa-hat-holder .fa-hat-santa {
  font-size: 0.95rem;
  transform: scaleX(-1);
  color: #c13a3d;
}
header .primary .icons button .santa-hat-holder .fa-hat-santa::before, header .primary .icons a.christmas .santa-hat-holder .fa-hat-santa::before {
  color: #2b794d;
}

.home .christmas-discount {
  min-height: calc(100vh - var(--header-height-tertiary) * 3);
  isolation: isolate;
}
@media only screen and (max-width: 600px) {
  .home .christmas-discount {
    min-height: 100vh;
  }
}
.home .christmas-discount p.heading {
  color: rgb(var(--rgb-primary)/100%);
  text-transform: uppercase;
  word-spacing: 0.65rem;
  font-weight: 800;
}
.home .christmas-discount .bg {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/banner/mega-laser-cheese-cropped.jpg");
  background-size: cover;
  background-position: right bottom;
  z-index: -1;
  filter: saturate(1.2);
}

/*
::selection {
  background-color: $logo-christmas-green;
}*/
.christmas-card.banner {
  min-height: calc(100vh - var(--header-height-tertiary) * 3);
  position: relative;
  background-image: url("/images/home/christmas/candles-logo-christmas.jpg");
  background-size: cover;
  background-position: right bottom;
  filter: saturate(1.2);
  margin-bottom: 3rem;
}
.christmas-card.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0));
}

.christmas-card.banner.no-mob {
  top: -7.2rem;
}

.card {
  perspective: 1500px;
  position: absolute;
  left: calc(20% - 175px);
  top: calc(56% - 250px);
  transition-property: transform;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: initial;
  transform: rotate(-10deg) translate(0, 0);
  -webkit-animation: cardIn 1s alternate cubic-bezier(0.87, -0.41, 0.19, 1.44);
  animation: cardIn 1s alternate cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
.card p {
  color: white;
  font-weight: 600;
  font-family: "Mirza", Verdana, Arial, serif;
  font-size: 2.2rem;
  line-height: 1.2em;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .card p {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .card p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .card {
    left: calc(50% - 115px);
    top: calc(50% - 164.5px);
  }
}
@media (max-width: 479px) {
  .card {
    left: calc(50% - 75px);
    top: calc(50% - 107px);
  }
}
.card:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
}

.card.is-opened {
  transform: rotate(0deg) translate(275px, 0);
}

@media (max-width: 767px) {
  .card.is-opened {
    transform: rotate(0deg) translate(115px, 0);
  }
}
@media (max-width: 479px) {
  .card.is-opened {
    transform: rotate(0deg) translate(75px, 0);
  }
}
.card.is-opened .cart-page-front {
  transform: rotateY(-180deg);
}

@-webkit-keyframes cardIn {
  0% {
    opacity: 0;
    transform: rotate(-10deg) translate(0, -100%);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(-10deg) translate(0, 0);
  }
}
@keyframes cardIn {
  0% {
    opacity: 0;
    transform: rotate(-10deg) translate(0, -100%);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(-10deg) translate(0, 0);
  }
}
.card,
.card-page {
  width: 350px;
  height: 500px;
}

@media (max-width: 767px) {
  .card,
  .card-page {
    width: 230px;
    height: 329px;
  }
}
@media (max-width: 479px) {
  .card,
  .card-page {
    width: 150px;
    height: 214px;
  }
}
.card-page {
  transition: transform 1s ease-in-out;
  cursor: pointer;
  position: absolute;
  outline: 1px solid transparent;
}

.cart-page-front {
  transform-origin: 0 50% 0;
  transform-style: preserve-3d;
  transform: rotateY(-20deg);
  z-index: 2;
}

.cart-page-outside,
.cart-page-inside {
  position: absolute;
  -webkit-backface-visibility: hidden;
}

.cart-page-outside {
  border: 10px solid #fff;
  background-color: #d0e1d7;
  background-image: url("/images/home/christmas/christmas-card-inside.png");
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .cart-page-outside {
    border: 5px solid #fbfbfb;
  }
}
.cart-page-inside,
.cart-page-bottom {
  background-color: #146b3a;
  background-image: url("/images/home/christmas/christmas-card-inside.png");
  border: 20px solid #eee;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: flex;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-page-inside,
  .cart-page-bottom {
    border: 10px solid #d4d1d0;
  }
}
.cart-page-inside {
  transform: rotateY(-180deg);
  border-right: none !important;
  background-position: 0px 80px;
}

@media (max-width: 767px) {
  .cart-page-inside {
    background-position: 0px 30px;
  }
}
@media (max-width: 479px) {
  .cart-page-inside {
    background-position: 0px 30px;
  }
}
.cart-page-bottom {
  z-index: 1;
  border-left: none !important;
  background-position: -22px 80px;
}

@media (max-width: 767px) {
  .cart-page-bottom {
    background-position: 85px 30px;
  }
}
@media (max-width: 479px) {
  .cart-page-bottom {
    background-position: 0px 30px;
  }
}
.merry-christmas {
  transform: rotate(-20deg);
}

.merry-christmas svg {
  width: 350px;
  height: auto;
}

@media (max-width: 767px) {
  .merry-christmas svg {
    width: 200px;
  }
}
@media (max-width: 479px) {
  .merry-christmas svg {
    width: 150px;
  }
}
.cart-page-inside .merry-christmas {
  transform: rotate(0deg);
  width: 220px;
  height: 200px;
}
.cart-page-inside .merry-christmas svg {
  width: 220px;
  height: auto;
}

.click-icon {
  position: absolute;
  left: 21%;
  transform: translate(-50%, 0);
  bottom: 23%;
  -webkit-animation: iconAnimation 1s infinite alternate ease-in-out;
  animation: iconAnimation 1s infinite alternate ease-in-out;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
  pointer-events: none;
}

.click-icon svg {
  width: 76px;
  height: 76px;
}

@media (max-width: 767px) {
  .click-icon svg {
    width: 72px;
    height: 72px;
  }
}
@media (max-width: 479px) {
  .click-icon svg {
    width: 48px;
    height: 48px;
  }
}
.click-icon.is-hidden {
  opacity: 0;
}

@-webkit-keyframes iconAnimation {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 15px);
  }
}
@keyframes iconAnimation {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 15px);
  }
}
.christmas-card.mob-only div {
  padding: 1rem;
}
.christmas-card.mob-only div p {
  color: #bb2528;
  font-weight: 700;
  font-size: 1.4rem;
}

/*# sourceMappingURL=styles-christmas.css.map */
