body > .modal {
  display: none;
}

.blocker {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  overflow: auto;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}
.blocker:before{
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}

.modal {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 200;
  box-sizing: border-box;
  width: 100%;
  max-width: 643px;
  background: var(--colorBlack);
  border-radius: 40px;
}

.modal a.close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  text-indent: -9999px;
}

.modal a.close-modal:before {
	content:'';
	width: 20px;
	height: 20px;
  background: url(../img/close-modal.png) no-repeat;
  background-size: 100% 100%;
	display: block;
}

.modal a.close-modal:hover {
  
}


/* RESPONSIVE CSS */

@media only screen and (max-width : 800px) {
  
  
}


