@charset "UTF-8";

.bg-hover-primary:hover{
    background-color: #a3c7ed8f !important;
}

/* bell icon */
#bell {
    position: relative;
}
.top-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    padding: 2px 6px;
    border-radius: 50%;
    background: #593600;
    color: white;
    font-size: 10px;
}

.top-badge-animated svg {
    animation-name: ckw;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
@keyframes ckw {
    0% {
        transform: rotate(20deg);
    }
    50% {
        transform: rotate(-20deg);
    }
    100% {
        transform: rotate(20deg);
    }
}
/* end bell icon */

.green_dot {
    height: 20px;
    width: 20px;
    background-color: rgb(0, 255, 0);
    border-radius: 50%;
    display: inline-block;
} /*postazione attiva*/

.red_dot {
    height: 20px;
    width: 20px;
    background-color: rgb(255, 0, 0);
    border-radius: 50%;
    display: inline-block;
} /*postazione inattiva*/

.yellow_dot{
    height: 20px;
    width: 20px;
    background-color: rgb(255, 255, 0);
    border-radius: 50%;
    display: inline-block;
} /*postazione non installata*/

