
/*******************************************************************************************
* CSS what have problems with the YUI-Tool you can add in this file
*******************************************************************************************/

.s3w-navi-top .s3w-navi-counter {
    transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.navigation-fixed .s3w-navi-top .s3w-navi-counter {
    animation: pulse-counter 5s infinite;
}

@keyframes pulse-counter {
    0% {
        transform: scale(0.86);
        box-shadow: 0 0 0 0 rgba(38, 112, 165, 0.7);
    }
    26% {
        transform: scale(1);
        box-shadow: 0 0 1px 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.s3w-text-blink {
    animation-name: blink;
    animation-timing-function: unset;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes blink {
    0%, 25% {
        opacity: 0;
    }
    50.01%, 100% {
        opacity: 1;
    }
}