/**
 * UCB Elementor Widgets Styles
 *
 * @package UCB\Customizations
 */

/* ==========================================================================
   Marquee Widget
   ========================================================================== */

.ucb-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ucb-marquee__track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

.ucb-marquee__item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ucb-marquee__text {
    display: inline-block;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 54px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.ucb-marquee__link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.ucb-marquee__link:hover {
    opacity: 0.8;
}

.ucb-marquee__separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 20px;
}

.ucb-marquee__separator img {
    display: block;
    height: auto;
}

.ucb-marquee__separator i,
.ucb-marquee__separator svg {
    display: block;
}

/* Pause on hover */
.ucb-marquee[data-pause-on-hover="true"]:hover .ucb-marquee__track {
    animation-play-state: paused;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
    .ucb-marquee__text {
        font-size: 30px;
        line-height: 30px;
    }
}