.shl-livestream-wrapper {
    width: 100%;
}

.shl-livestream-badge {
    display: inline-flex;
    position: absolute;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    border: 2px solid #78D7F2;
    border-radius: 999px;
    background: white;
    text-decoration: none;
    transition: all .25s ease;
    top: -50px;
    z-index: 999;
    left: 2%;
}

.shl-livestream-badge.is-live .shl-live-text {
    color: #FF1F1F;
}

.shl-livestream-badge.is-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.shl-livestream-badge.is-offline {
    color: #006D75;
}

.shl-live-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 48px;
    flex-shrink: 0;
}

.shl-live-text {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
}

@media(max-width: 767px) {

    .shl-livestream-badge {
        width: 100%;
        min-height: 72px;

        padding: 14px 24px;
        gap: 14px;
    }

    .shl-live-text {
        font-size: 18px;
    }

    .shl-live-icon svg {
        width: 22px;
        height: 22px;
    }

}