/* FLIP CLOCK STYLES */
.flip-clock {
    display: inline-flex;
    gap: 1.04cqw;
    justify-content: center;
}

.flip-unit {
    position: relative;
    width: 10.4cqw;
    height: 19.5cqh;
    font-size: 13cqw;
    font-weight: bold;
    line-height: 19.5cqh;
    text-align: center;
    perspective: 78cqw;
}

.flip-card {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: transform 1.8s; /* Reverted to 0.8s */
    //transform-style: preserve-3d;
    //transform-origin: center 50%;
}

.flip-card.flipped {
    //transform: rotateX(-180deg);
}

.flip-card__face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 1.56cqw;
    background: #1a1a1a;
    overflow: hidden;
}

.flip-card__face--front {
    transform: rotateX(0deg);
}

.flip-card__face--back {
    transform: rotateX(180deg);
    background: #1a1a1a;
}

.flip-card__upper, .flip-card__lower {
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    overflow: hidden;
}

.flip-card__upper {
    line-height: 19.5cqh;
    border-bottom: 0.13cqh solid #000;
    border-top-left-radius: 1.56cqw;
    border-top-right-radius: 1.56cqw;
    background: #1a1a1a;
}

.flip-card__face--front .flip-card__lower {
    bottom: 0;
    line-height: 0;
    border-bottom-left-radius: 1.56cqw;
    border-bottom-right-radius: 1.56cqw;
    background: #1a1a1a;
}

.flip-card__lower {
    bottom: 0;
    line-height: 0;
    border-bottom-left-radius: 1.56cqw;
    border-bottom-right-radius: 1.56cqw;
}

.flip-clock-divider {
    font-size: 13cqw;
    line-height: 19.5cqh;
    color: #fff;
}
