

.doted-map{
    position: relative;
    display: inline-block;
}

.doted-map img{
    width:800px;
}

.doted-map .point{
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1;
}

.doted-map .point .signal{
    content: '';
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: point-animation 3s ease-in-out infinite;
    -webkit-animation: point-animation 3s ease-in-out infinite;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    opacity: 0.8;
}


@keyframes point-animation {
    0% {
        opacity: 0.8;
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
}
    100% {
        opacity: 0;
        transform: scale(8);
        -webkit-transform: scale(8);
        -moz-transform: scale(8);
        -ms-transform: scale(8);
        -o-transform: scale(8);
}
}


.doted-map .point-popup{
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    min-width: 200px;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
}

.doted-map .point:hover .point-popup{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.doted-map .point:hover {
    z-index: 10;
}

.doted-map .point-popup h3{
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.doted-map .point-popup .point-description{
    font-size: 14px;
    color: #000;
    margin-top: 10px;   
}

.doted-map .point-popup .point-description p{
    font-size: 14px;
    color: #000;
    margin-top: 10px;   
}


/* Mobile behavior: anchor popup to bottom-left of map and change active point color */
@media (max-width: 1024px){
	/* Disable hover popups on mobile sizes */
	.doted-map .point .point-popup{
		opacity: 0 !important;
		pointer-events: none !important;
		transform: none !important;
		-webkit-transform: none !important;
	}
	.doted-map .point:hover .point-popup{
		opacity: 0 !important;
		pointer-events: none !important;
		transform: none !important;
		-webkit-transform: none !important;
	}

	/* Active point color */
	.doted-map .point.is-active{
        background-color: #000 !important;
        z-index: 10;
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
}

    .doted-map .point.is-active .signal{
		background-color: #000 !important;
	}

	/* Mobile fixed popup inside the map container (bottom-left) */
	.doted-map .mobile-point-popup{
        opacity: 0;
        pointer-events: none;
        background-color: #fff;
        padding: 20px 30px;
        border-radius: 5px;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 200;
        min-width: 200px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        transition: all 0.25s ease-in-out;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
}
	.doted-map .mobile-point-popup.is-visible{
		opacity: 1;
		pointer-events: auto;
	}

	.doted-map .mobile-point-popup h3{
		font-size: 16px;
		font-weight: 600;
		color: #000;
	}
	.doted-map .mobile-point-popup .point-description{
		font-size: 14px;
		color: #000;
		margin-top: 10px;
	}
	.doted-map .mobile-point-popup .point-description p{
		font-size: 14px;
		color: #000;
		margin-top: 10px;
	}
}
