@charset "UTF-8";
/* CSS Document */
/* The Modal (background) */




.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 2.1875rem;
  border: 0.125rem solid #fff;
  border-radius: 1.25rem/3.125rem;
  background-clip: padding-box;
  text-align: center;
}


.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 50ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 4.375rem auto;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.3125rem;
  width: 40%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 1.25rem;
  right: 1.875rem;
  transition: all 200ms;
  font-size: 0.75rem;
  font-family: 'Open Sans', 'sans-serif';
  font-weight:300;
  text-decoration: none;
  color: #168be3;
}
.popup .close:hover {
  text-decoation: underline;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 43.75rem){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

.modal_content {
    margin-top: 0.625rem;
    margin-right: 0.625rem;
    font-family: 'Open Sans', 'sans-serif';
	font-weight:300;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
