﻿/*--------------------------------------------------------------
# Timer
--------------------------------------------------------------*/
.camp-timer {
    color: var(--text-light);
    background: #FF6224;
    height: 41px;
    display: flex;
    font-weight: 700;
    line-height: normal;
}

.fixed-camp-timer {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.camp-timer .camp-expired-text {
    margin-left: 8px;
}

.camp-timer .camp-timer-text {
    margin-left: 6px;
}

.camp-timer.warning {
    border: 5px solid yellow;
}

    .camp-timer.warning.alerting {
        border: 5px solid red;
        animation: blinker 1s linear infinite;
    }

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
