.countdowns {
    top: 60px;
    margin-bottom: 2rem;

    .countdown {
        margin-top: .5rem;
        background: rgba(0, 0, 0, .4);
        padding: .5rem;
        border-radius: $border-radius;
        width: 300px;
        color: #fff;
        height: 80px;

        @include media-breakpoint-down(md) {
            width: 100%;
        }

        &-title {
            text-align: center;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        &-timer {
            opacity: 0;
            transition: opacity 1ms;
            display: flex;
            gap: .5rem;

            div {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                background: rgba(0, 0, 0, .8);
                padding: .5rem;
                font-size: .8rem;
                border-radius: $border-radius;

                span {
                    font-size: 1.3rem;
                }
            }
        }

        &-message {
            height: 34px;
            display: flex;
            align-items: center;
        }
    }
}