:root{
    --green : #b1cb06;
    --blue : #009de1;
    --yellow : #efb416;
}

.tag{
    position: relative;
}

.tag h2{
    position: absolute;
    bottom : 150%;
    left : 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    font-family: 'Ubuntu';
    font-weight: 700;
    color : #021c66;
    background-color: #fff;
    padding: .7rem 1rem;
    margin: 0;
    /*opacity : 0;*/
    white-space : nowrap;
    transition: .3s all ease;
}

.tag:hover h2, .tag:focus h2{
    opacity : 1;
}

.hotspot {
    position: relative;
    background-color: #FFF;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    opacity: 1;
    z-index: 998;
    display: inline-block;
    margin: 0 20px;
}
.hotspot:before, .hotspot:after {
    position: absolute;
}
.hotspot:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    top: 50%;
    left: 50%;
    border: 1px solid #FFF;
    /*transform-origin: 50%;*/
    transform : translate(-50%, -50%);
    transition: all 0.5s;
    -webkit-animation: ringPulse 2s infinite;
    animation: ringPulse 2s infinite;
}
.hotspot:after {
    background-color: #000;
}

#stemi .hotspot{
    background-color: var(--green);
}

#stemi .hotspot:before{
    border: 1px solid var(--green);
}

#main-model #logo{
    position : absolute;
    top : 3rem;
    left: 50%;
    transform: translateX(-50%);
    max-width : 200px;
    z-index: 100;
}

#main-model #logo img{
    max-width : 100%;
}

#menu{
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

#menu ul{
    flex-direction: row;
}

@media screen and (max-width : 992px){
    #main-model #logo{
        top : 1.5rem;
        max-width : 150px;
    }
}

@media screen and (max-width : 575px){
    #main-model #logo{
        top : 1.5rem;
        max-width : 120px;
    }

    #weather-forecast #weather-icon{
        display: none;
    }

    #timer #seconds{
        display: none;
    }
}

@-webkit-keyframes ringPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }
    }
    @keyframes ringPulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }
}