﻿/*--------------------------------------------------------------
# Timer
--------------------------------------------------------------*/
.fixed-express-timer-mobile {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.express-timer-mobile {
    color: #FFF;
    background: #FF6224;
    height: 41px;
    display: flex;
    font-weight: 700;
    line-height: normal;
    width: 100%;
}

.express-timer-mobile .express-expired-text-mobile {
    margin-left: 8px;
}

.express-timer-mobile .express-timer-text-mobile {
    margin-left: 6px;
}

.-countdown-timer-mobile {
    height: 41px;
    width: 100%;
    background-color: #FF6224;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 61px;
}

.express-timer-mobile.warning {
    border: 5px solid yellow;
}

    .express-timer-mobile.warning.alerting {
        border: 5px solid red;
        animation: blinker 1s linear infinite;
    }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}