body .area-operatore {
    margin-bottom: 20px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    min-width: 100%;
    padding: 4px 7px;
}

.ext-focus {
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .ext-focus {
        font-size: 12px;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.blinking {
    animation: blink 2s infinite;
}

.area-operatrici span {
    line-height: 1;
}

.red-t {
    color: red;
    font-weight: bold;
    text-transform: uppercase;
}

.area-operatore {
    background: #e6e6e6;
    border: 1px solid #0033a1;
    border-radius: 8px;
    width: 100%;
    padding: 4px 6px;
    margin: 0 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000 !important;
    cursor: pointer;
    line-height: 1;
    max-width: calc(100% - 20px);
}

.dot-pulse,
.dot-pulse::after,
.dot-pulse::before {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #05c00e;
    color: #05c00e
}

.area-operatore span {
    font-weight: 800;
    font-size: 12px
}

.area-operatore img {
    width: 40px
}

.dot-pulse {
    position: relative;
    left: -9999px;
    box-shadow: 9999px 0 0 -5px;
    animation: 1.5s linear .25s infinite dot-pulse
}

.dot-pulse::after,
.dot-pulse::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0
}

.dot-pulse::before {
    box-shadow: 9984px 0 0 -5px;
    animation: 1.5s linear infinite dot-pulse-before
}

.dot-pulse::after {
    box-shadow: 10014px 0 0 -5px;
    animation: 1.5s linear .5s infinite dot-pulse-after
}

@keyframes dot-pulse-before {

    0%,
    100%,
    60% {
        box-shadow: 9984px 0 0 -5px
    }

    30% {
        box-shadow: 9984px 0 0 2px
    }
}

@keyframes dot-pulse {

    0%,
    100%,
    60% {
        box-shadow: 9999px 0 0 -5px
    }

    30% {
        box-shadow: 9999px 0 0 2px
    }
}

@keyframes dot-pulse-after {

    0%,
    100%,
    60% {
        box-shadow: 10014px 0 0 -5px
    }

    30% {
        box-shadow: 10014px 0 0 2px
    }
}

.snippet {
    display: block;
    width: 50px;
    position: relative;
    margin-left: 23px
}

body img.icon-call {
    width: 35px;
    display: block;
    margin-right: 5px
}

.area-flex {
    display: flex;
    align-items: center
}

@media screen and (max-width: 768px) {
    .area-operatore span.red-t {
        font-size: 10px;
    }
}