* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
html, body {
  height: 100%;
}
.containerpopupcoco {
  display: none;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 600px) {
  .containerpopupcoco {
	  display:inline;
	  position:relative;
	  
	}
}
.interior {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
body {
  font:14px/1.5 sans-serif;
  padding: 2rem;
  background-color: #2980b9;
}
.btn {
  background-color: #fff;
  padding: 1em 3em;
  border-radius: 3px;
  color: #2980b9;
  text-decoration: none;
}
.modal-window {
	position:fixed;
  background-color: rgb(255,255,255,0.2);
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:999;
	opacity:0;
	pointer-events:none;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
}
.modal-window:target {
	opacity:1;
	pointer-events:auto;
}
.modal-window>div {
	width:400px;
	position:relative;
	margin:10% auto;
  padding:2rem;
	background:#fff;
	color:#444;
}
.modal-window header {
	font-weight:bold;
}
.modal-close {
	color:#aaa;
	line-height:50px;
	font-size:80%;
	position:absolute;
	right:0;
	text-align:center;
	top:0;
	width:70px;
	text-decoration:none;
}
.modal-close:hover {
	color:#000;
}
.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}