/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal.modal-big .modal-content 
{
  width: 800px;
}

/* Modal Content/Box */
.modal-content 
{
  background: #253255;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin: 15% auto;
  padding: 20px 35px;
  min-height:250px;
  width: 520px;
  max-width:99%;
  color:#fff;
  font-size:14px;
  display:block;
}

.modal-content.error
{
  background: linear-gradient(153.41deg, #FF4D4D 14.7%, #FF7C7C 89.7%);
}

.modal-content.success
{
  background: #6FCF97;
}

.modal-content strong
{
  display:block;
  font-size: 30px;
  line-height: 37px;
  font-weight: bold;
  text-align: center;
  margin-top:15px;
  margin-bottom:30px;
}

.modal-content p
{
  padding:0px 50px;
}

/* The Close Button */
.close {
  color: #fff;
  position: absolute;
  right:20px;
  top:20px;
  font-size: 42px;
  font-weight:400;
  opacity:1;
  line-height: 0.5;
  text-shadow: none;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}