.map-container {
    position: relative;
}
.mapsvg-tooltip {
    font-size: 0.8rem;
    /* padding: 1.25em 1.25em 0.75em; */
    width: 20em;
    border-radius: 1em !important;
    -webkit-box-shadow: 0 0 3em -1em #000;
            box-shadow: 0 0 3em -1em #000;
}
.mapsvg-tooltip h3{
    font-size: 1.1em;
    margin-top: 0em;
    margin-bottom: 0.3em;
}
.mapsvg-tooltip p{
    margin-bottom: 0.5em;
    line-height: 1.4;
}
.mapsvg-tooltip::before {
    content: '';
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #fff;

}

#mapsvg{
    position: relative;
    background: #fefefe !important;
    border: none !important;
    margin: 3em 0 0;
}
.map-container::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: -8%;
    top: -5%;
    width: auto;
    height: 110%;
    padding-left: 13%;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    background: url(../img/map-side-1.png);
}
.map-container::after {
    content: '';
    position: absolute;
    z-index: 1;
    right: -4%;
    top: -5%;
    width: auto;
    height: 110%;
    padding-left: 13%;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    background: url(../img/map-side-2.png);
}
@media only screen and (max-width : 767px) {
    #mapsvg {
        margin: 2em -3em 1em;
    }
    .map-container::before {
        display: none;
        left: -5%;
    }
    .map-container::after {
        right: -2%;
        display: none;
    }
    .mapsvg-tooltip {
        display: none !important;
    }
}

#modal-window img{
    width: 100%;
    height: auto;
}
#modal-container {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
    font-size: 1rem;
}
#modal-container #modal-window{
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 2em rgba(60, 60, 60, 0.15);
            box-shadow: 0 0 2em rgba(60, 60, 60, 0.15);
    width: 20em;
    height: auto;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    -webkit-transition: 0.4s ease opacity;
    -o-transition: 0.4s ease opacity;
    transition: 0.4s ease opacity;
}
#modal-container.open #modal-window{
    opacity: 1;
    pointer-events: all;
}
#modal-container #modal-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: -100;
    -webkit-transition: 0.4s ease opacity;
    -o-transition: 0.4s ease opacity;
    transition: 0.4s ease opacity;
}
#modal-container.open #modal-overlay{
    opacity: 1;
    z-index: 999;
    pointer-events: all;
}

#modal-container .close-modal,
#lightbox-container .close-lightbox {
	background: rgba(0, 0, 0, 0.6);
    color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.7rem;
	width: 1.7rem;
    position: absolute;
    font-size: 0.9em;
    right: 0;
	z-index: 10000;
}

#modal-container #modal-content{
    /* padding: 1em; */
}
#modal-container h3,
#modal-container p{
    color: #333;
}

#modal-container .modal-image{
	margin-bottom: 10px;
	padding: 0;
	width: 100%;
	height: 100%;
}

#modal-container .modal-image-container{
	position: relative;
}

#modal-container .modal-image-container .lightbox-open {
	align-items: center;
	background: rgba(0, 0, 0, 0.6);
	bottom: 0;
	color: white;
	cursor: pointer;
	display: flex;
	font-size: 1.2rem;
	height: 3rem;
	justify-content: center;
	position: absolute;
	right: 0;
	width: 3rem;
}

#modal-container .modal-image-container .lightbox-open,
.lightbox-image-container .lightbox-prev,
.lightbox-image-container .lightbox-next,
.close-lightbox {
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.mapsvg-btn-zoom {
    font-size: 1rem;
    width: 2em;
    height: 2em;
    background-color: #111;
}
.mapsvg-btn-zoom.in:before, .mapsvg-btn-zoom.out:before {
    top: 1em !important;
    left: 0.5em !important;
    height: 2px !important;
    width: 1em !important;
}
.mapsvg-btn-zoom.in:after {
    top: 0.5em !important;
    left: 0.9em !important;
    height: 1em !important;
    width: 2px !important;
}

#lightbox-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#lightbox-container.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-window {
	display: flex;
	align-items: center;
	justify-content: center;
    position: absolute;
    top: 10%;
	right: 10%;
	bottom: 10%;
    left: 10%;
}

.lightbox-window .lightbox-image-container .lightbox-image {
	padding: 0;
	width: 100%;
}

.lightbox-image-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.lightbox-image-container .lightbox-prev,
.lightbox-image-container .lightbox-next {
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	color: white;
	display: flex;
	height: 3rem;
	width: 3rem;
	align-items: center;
	justify-content: center;
	opacity: 0.5;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
	visibility: hidden;
}

.lightbox-image-container .lightbox-prev:hover,
.lightbox-image-container .lightbox-next:hover {
	opacity: 1;
}

.lightbox-image-container .lightbox-prev {
	padding-right: 0.2rem;
	left: 0;
}

.lightbox-image-container .lightbox-next {
	padding-left: 0.2rem;
	right: 0;
}

.close-lightbox {
	background: rgba(0, 0, 0, 0.6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.7rem;
	width: 1.7rem;
    position: absolute;
    font-size: 0.9em;
    right: 0;
	top: 0;
	z-index: 10000;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
}

.lightbox-image {
    width: 100%;
}