/* CSS Modal */
.highlights input {
    left: -9999px;
    opacity: 0;
    position: absolute;
    visibility: hidden;
}

.highlights-button {
	display: inline-block;
	padding: 0px 0px 0px 0px;
	cursor: pointer;
}

.highlights-button:hover {
	
}

.highlights label:before, .highlights label{
	background: none;
	border:none;
	height: auto;
	width: auto;
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	display: none;
	-webkit-transition: all 0.5s 0.5s ease-in-out;
	transition: all 0.5s 0.5s ease-in-out;
}
 
.modal-content {
	padding: 0px;
	max-width: 1000px;
	min-width: 320px;
	max-height: 90%;
	overflow: auto;
	position: absolute;
	top: 5%;
	left: 50%;
	z-index: 98;
	opacity: 0;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
 
.modal-content img {
	display: block;
	width: 100%;
	margin: 0px;
}

.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
}
 
.modal-close:after {
	content: "X";
	float: right;
	margin: 5px 5px 0 0;
	width: 30px;
	height: 30px;
	position: relative;
	z-index: 99;
	text-align: center;
	line-height: 30px;
	cursor: pointer;
	background-color: rgba(139,255,125,0.8);
	color: #FFF;
	border-radius: 20px;
	box-shadow: 0 0 3px #000;
}

input[id*="modal_"] {
  position: fixed;
  left: -9999px;
  top: 50%;
  opacity: 0;
}
 
input[id*="modal_"]:checked + div.modal {
  opacity: 1;
  visibility: visible;
  display: block;
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
}
 
input[id*="modal_"]:checked + div.modal .modal-content {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  transition-delay: 0.5s;
}