html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	line-height: 1.5;
}

#map {
	height: 100%;
}
#map img.image-op {
	width: 70%;
    /*padding-right: 20px;
        float: left;*/
}

a {
	text-decoration: none;
}
.box {
	text-align: center;
	width: 100%;
}
.button {
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.button:hover {
	background: orange;
}
.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
    padding: 10px 20px;
    transition: all 1s ease-in-out;
    width: 95%;
    height: 100%;
    position: absolute;
}
.popup .content img {
    height: 95%;
    width: 100%;
}

.popup .close {
	position: absolute;
	top: 20px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
.popup .close:hover {
	color: orange;
}
.popup .content {
	height: 100%;
}
.iw-subTitle {
    display: none;
}
.details {
    display: none;
}
@media (max-width: 385px){
	div#iw-container {
	    width: 250px;
	}
}
@media (min-width: 386px) and (max-width: 479px){
	div#iw-container {
	    width: 300px;
	}
}

@media (min-width: 480px) and (max-width: 599px){
	div#iw-container {
	    width: 350px;
	}
}
@media (min-width: 600px) and (max-width: 767px){
	div#iw-container {
	    width: 400px;
	}
}