/*--------------------------------------------------------------
# Countdown Timer
--------------------------------------------------------------*/

.countdown-wrapper {
    position: fixed;
    left: 15px;
    top: 85px;
    z-index: 90;
}

.countdown-timer {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e43c5c;
    color: #fff;
    width: 80px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.logout-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #e43c5c;
    width: 80px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid #e43c5c;
    transition: all 0.4s;
    margin-bottom: 5px;
}

.logout-button:hover {
    background: #e43c5c;
    color: #fff;
}