.alerts-div{
	position: fixed;
	height: 100vh;
	width: 100vw;
	z-index: 99999999999999999999999999;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.alert-container{
	margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
	border-radius: 25px;
	padding: 25px;
	width: 80%;
	max-width: 500px;
}

.alert-container-big{
	margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
	border-radius: 25px;
	padding: 25px;
	width: 80%;
	max-width: 1000px;
}

.blue
{
  background-color: #0d2b3f;
  color: #fcd2d2;
}

.orange
{
  background-color: #dd4719;
  color: #f2e9dd;
}

.white
{
	background-color: #f2e9dd;
	color: black;
}

.popup-button
{
	margin-bottom: 25px;
	height: 110px;
	font-size: 24px;
	width: 100%;
}

.close-button
{
	position: absolute;
	right: 10px;
	top: 10px;
	border-radius: 25px;
}

