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

body {
  height: 100vh;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: visible;
  opacity: 1;
  z-index: 99999;

  justify-content: center;
  /* align-items: center; */
}
#popup1:target {
  visibility: hidden;
  opacity: 0;
}

.popup {
  margin: 40px auto 0 auto;
  border-radius: 5px;
  max-width: 790px;
  position: relative;
  padding: 0 3rem;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  transition: all 200ms;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
  color: #ccc;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  /*max-height: 30%;*/
  overflow: auto;
  padding: 0;
}

.popup .btn-popup {
	color: #fff;
	font-size: 18px;
	padding: 8px 16px;
	margin: 0 5px;
	background: url("../img/announce/BUTTON.png");
	border: none;
  height: 45px;
  width: 152px;
  margin-bottom: 3px;
}
.popup .market {
	background-color: #2291c3;
}
.popup .check {
	font-size: 14px;
	font-weight: lighter;
	color: #fff;
}
