.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-color: rgb(214, 214, 214);
  padding: 18px;
}

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

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

.demon_popup_content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.demon_popup_content-box::after {
  content: '';
  background: url(../images/icon1.png) no-repeat;
  background-size: 100%;
  position: absolute;
  filter: blur(3px);
  top: 16%;
  right: -39px;
  width: 200px;
  height: 116px;
  transform: rotate(-90deg);
}

.demon_popup_content {
  position: relative;
  padding: 33px 30px 23px 42px;
  width: 45%;
  background: linear-gradient(to left, #3171C2 0%, #553C98 100%);
  backdrop-filter: blur(70px);
  -webkit-backdrop-filter: blur(70px);
  border-radius: 20px;
}

.demon_popup_content::after {
  content: '';
  background: url(../images/icon1.png) no-repeat;
  background-size: 100%;
  position: absolute;
  filter: blur(3px);
  top: 50%;
  right: -115px;
  width: 144px;
  height: 144px;
  transform: rotate(37deg);
}

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

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

.demon_popup_body--box-img {
  width: 100%;
}

.demon_popup_body--box-img img {
  width: 83%;
}

.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 !important;
  font-weight: 700;
  font-size: 26px !important;
  line-height: 110% !important;
  text-align: center;
  color: #4B4B4B;
  background: #F3C136;
  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: #F3C136;
}

.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 !important;
  font-weight: 700;
  font-size: 16px !important;
  line-height: 120% !important;
  color: #fff;
  text-align: left;
  margin-bottom: 0 !important;
}

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

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

.demon_popup_body a:last-of-type {
  font-family: "Inter", sans-serif !important;
  height: 56px;
  background: #F3C136;
  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 !important;
  line-height: 73% !important;
  text-align: center;
  color: #000;
  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%;
  }

  .demon__discount {
    font-size: 14px !important;
  }

  .demon__timer span {
    font-size: 21px !important;
    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: 19px 15px;
    box-sizing: border-box;
  }

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

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

  .demon__title {
    text-align: center;
    font-size: 22px !important;
    line-height: 110% !important;
    margin-bottom: 16px;
  }

  .demon_popup_content::after {
    display: none;
  }

  .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%;
  }
}