@font-face {
  font-family: openSans;
  src: url(../resource/fonts/OpenSans-Regular.ttf);
}
@font-face {
font-family: openSans-Bold;
src: url(../resource/fonts/opensans_bold.ttf);
}
@font-face {
font-family: openSans-SemiBold;
src: url(../resource/fonts/opensans_semibold.ttf);
}

.modal{
  font-family: openSans;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    padding-top: 200px; /* Location of the box */
    padding-bottom: 50px; /* Location of the box */
    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 Content */
  .modal-content {
    position: relative;
    background-color: #ffffff; 
    color:black;
    margin: auto;
    padding: 0;
    width: 75%;
    max-width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    min-height: 200px;
    border-radius: 3px;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
.popHeader {
    min-height: 30px;
    font-size: 20px;
    padding-top: 15px;
    padding-left: 10px;
    margin-left: 10px;
    font-weight: 900;
    font-family: openSans-Bold;
}
.popHeading {
    text-align: start;
}
.popContent {
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  min-height: 100px;
  word-wrap: break-word;
  color: rgba(51, 47, 47, 0.918)
}
#popFooter {
    text-align: right;
    min-height:20px;
}
.popBTN {
    min-width: 70px;
    color: rgb(25, 107, 166);;
    font-weight: 400;
    font-size: large;
    border-radius: 10px;
    border:none;
    background: none;
    font-family: openSans-SemiBold;
    margin-bottom: 15px;
    margin-top: 30px;
    outline: none;
}
#closePOP {
  margin-right: 20px;
}