@charset "utf-8";
/* CSS Document */

.modal{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(60,93,126,0.80);
  height: 100vh;
  width: 100vw;
  z-index: 200;
}

.modal>.modal_main{
  background: #FFFFFF;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.50);
  border-radius: 19px;
  height: auto;
  width: 80%;
  margin: auto;
  margin-left: 60px;
  margin-right: 60px;
  padding: 30px;
  max-width: 450px;
  position: relative;
  overflow: scroll;
  max-height: 90%;
}

.modal>.modal_main>p{   
  font-family: Montserrat;
  font-size: 16px;
  color: #4A4A4A;
  letter-spacing: 0;
  text-align: center;  
}
.modal .close{   
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  background: #3C5D7E;
  color: white;
}
