/*---Buttons---*/
.btn-link a {
    text-decoration: none;
}
.btn-link {
    margin: 4px;
    color: white;
    background-color: transparent;
    border: white 1px solid;
}
.btn-link:hover {
    color: black;
    background-color: white;
    border: white 1px solid;
    text-decoration: none;
}
/*Modal*/
.modal .modal-body .spinner-border {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 4rem;
    height: 4rem;
}
.info-hotspot:not(:hover):not(.visible) .info-hotspot-header {
    -webkit-animation: pulse-animation 1s infinite alternate;
    animation: pulse-animation 1s infinite alternate;
}
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #D7000F;
    }
    100% {
        box-shadow: 0 0 0 10px #D7000F;
    }
}
/*.info-hotspot:not(:hover):not(.visible) .info-hotspot-header {*/
/*    -webkit-animation: pulse 0.4s infinite  alternate;*/
/*    animation: pulse 0.4s infinite  alternate;*/
/*}*/
/*@-webkit-keyframes pulse {*/
/*    0% { transform: translateY(0); }*/
/*    100% { transform: translateY(-10px); }*/
/*}*/
/*@keyframes mover {*/
/*    0% { transform: translateY(0); }*/
/*    100% { transform: translateY(-10px); }*/
/*}*/
