#modalContainer {
	background-color: rgba(0, 0, 0, 0.3);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	transition: all 5s ease-in-out;
}

@keyframes anvil {
	0% {
		transform: scale(5) rotate(0);
		opacity: 0;
		box-shadow: 0 0 0 rgba(241, 241, 241, 0);
	}

	50% {
		transform: scale(1) rotate(-0.2deg);
		opacity: 1;
		box-shadow: 0 0 0 rgba(241, 241, 241, 0.5);
	}

	75% {
		transform: scale(1) rotate(0.2deg);
		opacity: 1;
		box-shadow: 0 0 250px rgba(241, 241, 241, 0.5);
	}

	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
		box-shadow: 0 0 500px rgba(241, 241, 241, 0);
	}
}

#alertBox {
	width: 350px;
	min-height: 100px;
	background-color: #fff;
	background-repeat: no-repeat;
	transition: all 5s ease-in-out;
	-webkit-animation: anvil 1s cubic-bezier(0.38, 0.1, 0.36, 0.9) forwards;
}

#modalContainer>#alertBox {
	position: fixed;
	text-align: center;
	padding: 5px 10px;
	border: 1px solid #202328;
	border-radius: 5px;
	left: 50%;
	top: 50%;
	margin-top: -100px;
	margin-left: -150px;
}

#alertBox p {
	margin: 0px;
	padding: 20px 5px 15px 5px;
	font-size: 16px;
	font-weight: 500;
}

#alertBox #closeBtn {
	background-color: #202328;
	font-weight: 600;
	font-family: inherit;
	text-align: center;
	margin: 10px 0;
	padding: 3px 25px;
	color: #fff;
	border: none;
	transition: background-color 300ms ease-in-out;
}

#alertBox #closeBtn:hover {
	background-color: #ff4438;
	font-weight: 600;
	font-family: inherit;
	color: #fff;
	transition: background-color 300ms ease-in-out;
}

.cdx_popup__link {
  text-align: center;
  font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
  margin-bottom: 45px;
}

a.cdx_popup__link {
  background: linear-gradient(#f86257 0 0)
     50% calc(-3px - 100%) /var(--d, 0%) 200% no-repeat;
  transition: 0.3s, background-size 0.3s 0.3s;
	text-decoration: none;
  font-weight: 500;
  color: #f86257;
	padding: 0 5px;
}

a.cdx_popup__link:hover {
  --d: 100%; 
  background-position: 50% 0%;
  color: #fff;
  transition: 0.3s, background-position 0.3s 0.3s, color 0.3s 0.3s;
}


/*responsive*/

@media (max-width: 768px) {
	#modalContainer>#alertBox {
		margin-left: -185px;
	}
}

@media (max-width: 400px) {
	#modalContainer>#alertBox {
		margin-left: -175px;
	}

	#alertBox p {
		padding: 8px 15px;
		font-size: 14px;
	}
}