.button {
	float:right;
  	background: #333;
  	padding: 1em 2em;
  	color: #fff;
  	border: 0;  
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

.button:hover {
  background: #E30A7F;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: auto;

	background-color:rgba(0,153,255,0.2)
}

.modal-content {
	border: 10px solid #FFF;
	background-color: #f4f4f4;
	width: 80%;
	max-width: 850px;
	border-radius: 7px 7px 7px 7px;
	box-shadow: 0 5px 16px 5px rgba(0, 0, 0, 0.5), 0 7px 20px 0px rgba(0, 0, 0, 0.17);
	animation-name: modalopen;
	animation-duration: 0.5s;
	overflow: scroll;
	margin-top: 5%;
	margin-right: auto;
	margin-left: auto;
}

.modal-header h2{
  margin: 0;
}

.modal-header {
  	background-color: #3C3C3C;
	color: #FAFAFA;
  	padding: 5px;
  	border-radius:7px 7px 0px 0px;
}

.modal-body {
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 30px;
}

.modal-footer {
  background: #3C3C3C;
  padding: 10px;
  color: #fff;
  border-radius:0px 0px 7px 7px;
}

.closeBtn {
	margin-right:10px;
  color: #fff;
  float: right;
  font-size: 30px;
}

.closeBtn:hover, .closeBtn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@keyframes modalopen {
  from {opacity: 0} 
  to {opacity: 1}
}

/*-------------Responsive------------*/
@media screen and (max-height:800px){
.modal-content {
	max-height:80%;
	margin-top: 5%;
	margin-right: auto;
	margin-left: auto;
}

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

.button_go {
	width: 35%;
}
} 

@media screen and (max-width:750px ) {
.modal-content {
  width: 90%;
}
.button_go {
	padding: 10px 10px;
}
}