﻿.waitTimeWidget {
    margin: 2rem 0;
    font-family: "Inter", sans-serif;
}

.waitTimeWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-evenly;
    margin: 0 2rem;
}

.waitTimeItem {
    display: flex;
    flex-direction: column;
    min-width: 16rem;
    max-width: 22rem;
    padding: .5rem 1rem;
    border-top: 4px solid var(--cc-blue);
    position: relative;
    overflow: hidden;
}

    .waitTimeItem h3 {
        margin: 0 0 0.3rem 0;
        font-size: 1.3rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--cc-blueAccent01);
        padding-bottom: 0.2rem;
        border-bottom: 1px solid #ccc;
        letter-spacing: .05rem;
    }

.waitTimeHours {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.2rem 0.4rem;
    background: rgb(255 255 255 / .5);
    border-radius: 0.25rem;
    text-wrap: wrap;
}

.waitTimeHeader {
    border-bottom: 1px solid #ccc;
    margin: 1rem 0.2rem 0 0;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}


.clockContent {
}

    .clockContent .waitTimeClock {
        position: absolute;
        top: -1rem;
        left: -5rem;
        font-size: 13rem;
        color: rgba(204, 204, 204, 0.4);
        z-index: -1;
    }

    .clockContent ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .clockContent ul li {
            display: flex;
            justify-content: space-between;
            font-size: 0.95rem;
            padding: 0.3rem 0.25rem;
            border-radius: 0.25rem;
        }

    .clockContent .wtQueueName,
    .clockContent .waitTimeQueueName {
        font-weight: bold;
    }

    .clockContent .repMin {
        font-weight: 500;
    }



/* RESPONSIVE */
/* Extra large desktops */
@media (max-width: 1400px) {
}

/* Large desktops */
@media (max-width: 1200px) {
}

/* Small desktops / large tablets */
@media (max-width: 992px) {
}

/* Tablets */
@media (max-width: 768px) {
}

/* Large phones */
@media (max-width: 576px) {
    .waitTimeWidget {
        width: 100%
    }

    .waitTimeWrapper {
        margin: 0;
    }

    .waitTimeItem {
        width: 100%;
        min-width: unset;
        max-width: unset;
    }
}

/* Small phones */
@media (max-width: 480px) {
}
/* Very small devices */
@media (max-width: 360px) {
}
