body,
html {
  margin: 0;
}
.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 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 641px;
  padding: 54px 60px;
  background: #ffffff;
  box-sizing: border-box;
  min-height: 379px;
  border-radius: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.demon_popup_title {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: #161110;
  text-transform: uppercase;
  line-height: 120%;
  margin: 0 0 20px;
	max-width: 327px;
}
.demon_popup_body img {
  width: 100%;
  max-width: 412px;
  height: auto;
  object-fit: contain;

}
/* .demon_popup_body p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;   
  font-size: 16px;
  line-height: 150%;
  margin: 0 0 24px;
  color: #141414;
  text-align: center;
} */
.demon_popup_body p b {
    font-weight: 700;
    background: linear-gradient(90deg, #fb1115 0%, #99070c 100%);
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}
/* .demon_popup_body p:first-of-type {
  padding-top: 58px;
} */
.demon-popup_btn {
  margin: 0 auto;
  height: 70px;
  background: radial-gradient(54.56% 54.56% at 50% 50%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
  color: var(--white-color);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  border-radius: 170px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
	border: none;
}
.demon-popup_btn:hover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
.demon_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: block;
  cursor: pointer;
	opacity: 0.2;
}
.demon_close:after {
  content: "";
  width: 42px;
  height: 4px;
  background-color: #000000;
  transform: rotate(45deg);
  position: absolute;
  top: 13px;
  left: -5px;
}
.demon_close:before {
  content: "";
  width: 42px;
  height: 4px;
  background-color: #000000;
  transform: rotate(-45deg);
  position: absolute;
  top: 13px;
  left: -5px;
}

.demon_count {
	display: flex;
	align-items: center;
	background-color: #006257;
	border-radius: 20px;
	padding: 12px;
	margin-bottom: 16px;
}

.demon_num,
.demon_colon {
		font-weight: 700;
		font-size: 24px;
		line-height: 120%;
		text-transform: uppercase;
		text-align: center;
		color: var(--white-color);
	}

.demon_input {
	height: 70px;
	border: 1px solid #212121;
	border-radius: 10px;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #212121;
	opacity: 0.5;
	width: 100%;
	padding: 0 22px;
	margin-bottom: 21px;
	box-sizing: border-box;
}

.demon_select {
	height: 70px;
	border: 1px solid #212121;
	border-radius: 10px;
	font-weight: 400;
	font-size: 18px;
	line-height: 150%;
	color: #212121;
	opacity: 0.5;
	width: 100%;
	padding: 0 22px;
	margin-bottom: 21px;
}

.demon-prices {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.demon-prices_old {
	font-weight: 400;
	font-size: 32px;
	line-height: 120%;
	text-transform: uppercase;
	text-decoration: line-through;
	text-align: center;
	color: #212121;
}

.demon-prices_new {
	font-weight: 700;
	font-size: 48px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	background: radial-gradient(54.56% 54.56% at 50.00%  50.00%, rgb(242, 37, 29) 0%, rgb(150, 3, 0) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@-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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@media(max-width: 768px) {
    .demon_popup_body {
        min-height: 425px;
        width: 90%;
        padding: 24px 20px;
    }

    .demon_popup_title {
        font-size: 20px;
    }

    .demon-popup_btn {
        width: 100%;
				height: 60px;
				font-size: 16px;
    }
		.demon_close {
			width: 24px;
			height: 24px;
		}
		.demon_close:after {
			width: 30px;
			left: -2px;
			bottom: 0px;
		}
		.demon_close:before {
			width: 30px;
			left: -2px;
			bottom: 0px;
		}

		.demon_count {
			padding: 6px 12px;
		}

		.demon_num {
			width: 22px;
			font-size: 16px;
			padding: 2px 0;
		}

		.demon_colon {
			font-size: 16px;
		}

		.demon_input {
			height: 60px;
		}

		.demon-prices_old {
			font-size: 24px
		}

		.demon-prices_new {
			font-size: 40px;
		}

		.demon_select {
			height: 60px;
		}
}