.countdown .count {
       
        background: linear-gradient(to bottom, #a0b2c9 0%, #56677a 100%);      
        padding: 10px;
        width: 60px;
        height: 60px;
        border-radius: 5px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .countdown .count.changed {
            transition: all 0.2s ease-in-out;
            transform: rotateX(-90deg);
        }

        /* transform: scaleY(0); */

        .countdown .count.changed .count__text {
                transform: scaleY(0);
                transition: all 0.2s ease-in-out;
            }

        /* &:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            background: #a1b3ca;
            height: 1px;
            z-index: 1;
        } */

        .countdown .count .count__text {
            font-size: 30px;
            color: white;            
            position: relative;
            z-index: 2;
        }

        .countdown .text {
        text-transform: uppercase;
        color: #8395ab;
        font-size: 11px;
        letter-spacing: 0.6px;
        margin-top: 5px;
        font-weight: bold;
    }

        .countdown .separator {
        align-self: flex-start;
        font-size: 30px;
        line-height: 60px;
        color: #8395ab;
    }

/*# sourceMappingURL=frontend-blocks-gutenberg-adwerba-countdown-frontend.css.map*/