.demon_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  font-family: sans-serif;
  display: none;
  z-index: 9999;
}

.demon_popup.active {
  display: block;
}

.demon_overflow {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.demon_popup_body {
  text-align: center;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  background: #000;
  display: flex;
  justify-content: space-between;
  background-image: url('../images/popup-img.jpg');
  background-size: cover;
  background-position: center;
}

.demon_popup_img {
  width: 55%;
  position: relative;
  padding-top: 30px;
}

.demon_popup_img picture {
  margin: 0;
}

.demon_popup_img .product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.demon_popup_content {
  position: relative;
  padding: 33px 30px 23px 42px;
  width: 45%;
  background: linear-gradient(180deg, #dfedff 0%, #ffdaff 100%);
  backdrop-filter: blur(70px);
  -webkit-backdrop-filter: blur(70px);
}

.demon__title {
  text-transform: uppercase;
  max-width: 391px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  color: #252e5d;
  text-align: left;
  margin-bottom: 20px;
  margin-top: 0;
}

.demon__discount {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  color: #252e5d;
  margin: 0;
}

.demon__timer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.demon__timer span {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 110%;
  text-align: center;
  color: #fff;
  background: #932985;
  width: 34px;
  height: 48px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demon__timer .demon__timer-colon {
  font-family: auto;
  width: auto;
  height: auto;
  background: transparent;
  margin-bottom: 5px;
  color: #fff;
}

.demon_popup_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 325px;
  padding-left: 0;
  margin: 0;
  margin-bottom: 18px;
}

.demon_popup_list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px !important;
  line-height: 120% !important;
  color: #252e5d;
  text-align: left;
}

.demon_popup_list li img {
  width: 60px;
  height: 60px;
  margin: 0;
}

.demon_back {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: #252e5d;
  margin-top: 20px;
  margin-right: 30px;
  cursor: pointer;
  opacity: 0.5;
}

.product-banner {
  width: 162px;
  height: 162px;
  position: absolute;
  top: 20%;
  left: -28%;
  background-image: url("../images/product-banner.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  padding-top: 25px;
}

.product-banner p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin: 0;
}

.product-banner span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin: 0;
}

.product-banner img {
  width: auto;
  margin: 0 auto;
}

.demon_popup_body a:last-of-type {
  font-family: "Inter", sans-serif;
  height: 56px;
  background: #932985;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 350px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 73%;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  transition: opacity 0.3s ease;
  margin-bottom: 20px;
}

.demon_popup_body a:last-of-type:hover {
  opacity: .7;
}

.demon_close {
  z-index: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: none;
  cursor: pointer;
  opacity: 0.2;
}

.demon_close:after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 13px;
  left: -5px;
}

.demon_close:before {
  content: "";
  width: 40px;
  height: 3px;
  background-color: #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 13px;
  left: -5px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.demon_popup.active .demon_popup_body {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1.05);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1.05);
  }
  to {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 768px) {
  .demon_popup_body {
    flex-direction: column;
    max-width: 360px;
    top: 1%;
    background-image: url('../images/popup-img-mob.jpg');
  }

  .demon__discount {
    font-size: 14px;
  }

  .demon__timer span {
    font-size: 21px;
    height: 40px;
    width: 27px;
  }

  .demon_popup_img .product-img {
    display: none;
  }

  .demon_close {
    display: block;
  }

  .demon_popup_content {
    position: relative;
    width: 100%;
    order: 1;
    padding: 0px 20px 32px 20px;
  }

  .demon_popup_content::before {
    left: auto;
    right: 0;
    top: 20%;
    transform: rotate(90deg) translateY(-29px);
  }

  .demon_popup_img {
    width: 100%;
    min-height: 343px;
    margin: 0 auto;
    padding-top: 8px;
    position: relative;
  }

  .product-banner {
    top: auto;
    left: auto;
    right: 2%;
    bottom: -5%;
    width: 144px;
    height: 144px;
  }

  .product-banner img {
    width: 75px;
  }

  .product-banner p {
    font-size: 13px;
  }

  .product-banner span {
    font-size: 10px;
  }

  .demon__title {
    font-size: 22px;
    line-height: 110%;
    margin-bottom: 16px;
  }

  .demon_popup_list {
    gap: 8px;
  }

  .demon_popup_body a:last-of-type {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .demon_back {
    margin-right: 0;
  }
}

@media (max-width: 460px) {
  .demon_popup_img {
    width: 100%;
  }
}
