@media screen and (max-width: 768px) {
  body.single-product #egg {
    bottom: 77px; } }

.bg_overlay {
  z-index: 2001; }

#egg {
  width: 150px;
  height: 150px;
  background: url("../img/Egg0.gif") no-repeat center center;
  background-size: cover;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  left: 10px;
  animation: CombinedAnimation 3s infinite;
  transform-origin: bottom;
  z-index: 15; }
  #egg.open {
    background: url("../img/Egg-1.gif") no-repeat center center;
    background-size: cover;
    animation: none; }
  #egg.opened {
    background: url("../img/Eggbroken.gif") no-repeat center center;
    background-size: cover;
    animation: none; }
  #egg::after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url("../img/Egg-1.gif"); }
  @media screen and (max-width: 1440px) {
    #egg {
      width: 120px;
      height: 120px; } }
  @media screen and (max-width: 768px) {
    #egg {
      bottom: 8px;
      width: 100px;
      height: 100px; } }

.voucher-popup {
  background: url("../img/banner.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  position: fixed;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 2002;
  background-color: #FFF;
  border-radius: 10px;
  opacity: 0;
  animation: floatIn 0.5s ease-out forwards;
  max-width: 980px;
  width: 80%;
  aspect-ratio: 16/9; }
  .voucher-popup::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 85%;
    background-color: #FFEEE6;
    z-index: 1; }
  @media screen and (max-width: 1440px) {
    .voucher-popup {
      max-width: 780px;
      width: 80%; } }
  @media screen and (max-width: 1280px) {
    .voucher-popup {
      width: 90%; } }
  @media screen and (max-width: 768px) {
    .voucher-popup {
      flex-direction: column;
      width: 50%;
      background: url("../img/bannermobile.webp") no-repeat center center;
      aspect-ratio: 9/16; } }
  @media screen and (max-width: 675px) {
    .voucher-popup {
      width: 60%; } }
  @media screen and (max-width: 550px) {
    .voucher-popup {
      width: 70%; } }
  @media screen and (max-width: 468px) {
    .voucher-popup {
      width: 80%; } }
  @media screen and (max-width: 425px) {
    .voucher-popup {
      width: 90%; } }
  .voucher-popup button {
    border-radius: 5px;
    color: #AD073D;
    width: 40%;
    margin: 10px 0;
    cursor: pointer;
    border: #AD073D 1px solid;
    background-color: #FFF;
    font-weight: 500;
    font-size: 14px;
    line-height: 1; }
    @media screen and (max-width: 768px) {
      .voucher-popup button {
        font-size: 14px;
        margin: 0; } }
    @media screen and (min-width: 992px) {
      .voucher-popup button:hover {
        color: #fff;
        background-color: #AD073D; } }
  .voucher-popup img.popup-banner {
    max-height: 240px;
    width: auto;
    margin: auto;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    margin-right: 0;
    z-index: 2; }
    @media screen and (max-width: 768px) {
      .voucher-popup img.popup-banner {
        margin: 0 auto; } }
  .voucher-popup .voucher-container {
    padding: 20px;
    margin: auto;
    width: 53%;
    z-index: 2; }
    @media screen and (max-width: 768px) {
      .voucher-popup .voucher-container {
        width: 100%;
        padding-top: 0;
        padding-bottom: 10%;
        margin-top: 0; } }
    .voucher-popup .voucher-container h4 {
      text-transform: none;
      color: #AD073D;
      font-weight: 600;
      margin-bottom: 30px;
      font-size: 20px; }
    .voucher-popup .voucher-container .close-icon {
      position: absolute;
      background: no-repeat;
      right: 0;
      top: 0;
      width: auto;
      border: none;
      padding: 14px 20px; }
      .voucher-popup .voucher-container .close-icon:hover {
        background: none;
        color: #AD073D; }
    .voucher-popup .voucher-container .coupon--infor span {
      padding-right: 20px; }
    .voucher-popup .voucher-container .voucher-value {
      padding: 10px;
      border: dashed 2px #fff;
      border-radius: 20px;
      margin: 10px 0; }
    .voucher-popup .voucher-container .popup-coupon--item {
      position: relative; }
      .voucher-popup .voucher-container .popup-coupon--item .copy-voucher {
        position: absolute;
        width: auto;
        background: none;
        border: none;
        color: gray;
        right: 0;
        padding: 0 6px;
        z-index: 1;
        margin: 10px 0; }
        .voucher-popup .voucher-container .popup-coupon--item .copy-voucher:hover {
          color: gray; }
      .voucher-popup .voucher-container .popup-coupon--item .popup-coupon--infor-coupon {
        pointer-events: none; }
      .voucher-popup .voucher-container .popup-coupon--item .copied-message {
        color: #ad073d;
        text-align: left;
        border-radius: 6px;
        padding: 5px 10px;
        position: absolute;
        z-index: 1;
        font-weight: 500;
        right: 0px;
        top: -25px; }
    .voucher-popup .voucher-container .voucher-bottom {
      display: flex;
      justify-content: center;
      gap: 20px; }

@keyframes floatIn {
  0% {
    transform: translate(-100%, 100%) scale(0);
    opacity: 0;
    bottom: 0;
    left: 0;
    top: auto; }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    top: 50%;
    left: 50%;
    bottom: auto; } }
/* Shake Animation */
@keyframes Shake {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(15deg); }
  50% {
    transform: rotate(0deg); }
  75% {
    transform: rotate(15deg); }
  100% {
    transform: rotate(0deg); } }
@keyframes pauseShake {
  50% {
    transform: rotate(0deg); }
  50.01% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(0deg); } }
@keyframes CombinedAnimation {
  0% {
    transform: rotate(0deg); }
  3.125% {
    transform: rotate(5deg); }
  9.375% {
    transform: rotate(-5deg); }
  15.625% {
    transform: rotate(5deg); }
  18.75% {
    transform: rotate(-5deg); }
  25% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(0deg); }
  75% {
    transform: rotate(0deg); }
  87.5% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(0deg); } }
/* emma  */
.btn-loading {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
  background: #AD073D; }

.voucher-popup button.btn-loading {
  background: #AD073D; }

.btn-loading:after {
  animation: button-loading-spinner 1s ease infinite;
  border: 4px solid transparent;
  border-radius: 50%;
  border-top-color: #fff;
  bottom: 0;
  content: "";
  height: 16px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px; }

.save-voucher.saved {
  background: #f0f0f0;
  color: #888;
  pointer-events: none;
  /* opacity: 0.5; */
  border: solid 1px;
  cursor: no-drop; }
  .save-voucher.savedhover {
    background: #f0f0f0;
    color: #888; }

/* end emma  */

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