*,
:after,
:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.socialive {
    position: relative;
    width: 740px;
    height: 225px;
    overflow: hidden;
}

.socialive-banner {
    width: 740px;
    height: 225px;
    position: relative;
}

.socialive-banner img {
    width: 100%;
}

.socialive-live {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #e6e6e6;
    display: flex;
    border-radius: 0px 12px 12px 0px;
    overflow: hidden;
    gap: 9px;
    align-items: center;
    width: fit-content;
    padding-right: 10px;
}

.live-text {
    background-color: #c1272d;
    color: #fff;
    padding: 8px 12px 8px 10px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.live-text p {
    -webkit-animation: blink 4s ease-in 1s infinite normal forwards;
    -moz-animation: blink 4s ease-in 1s infinite normal forwards;
    -o-animation: blink 4s ease-in 1s infinite normal forwards;
    animation: blink 4s ease-in 1s infinite normal forwards;
    margin: 0;
}

.live-text::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-animation: blink 4s ease-in 1s infinite normal forwards;
    -moz-animation: blink 4s ease-in 1s infinite normal forwards;
    -o-animation: blink 4s ease-in 1s infinite normal forwards;
    animation: blink 4s ease-in 1s infinite normal forwards;
}

.live-platform {
    padding: 4px 0;
    border-radius: 12px;
}

.platform-youtube {
    display: flex;
    gap: 6px;
    align-items: center;
}

.platform-youtube > img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.live-youtube .platform-youtube {
    display: flex;
}

.platform-username {
    display: flex;
    gap: 3px;
    border-right: solid 2px #999999;
    padding-right: 6px;
}

.platform-username p {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

.platform-username img {
    width: 12px;
}

.platform-youtube .platform-username img {
    filter: grayscale(1);
}

.platform-followers {
    font-size: 10px;
    color: #808080;
    font-weight: 500;
}

.live-video {
    position: absolute;
    top: 48px;
    left: 12px;
    bottom: 0;
    width: 250px;
    height: 140px;
    margin: auto;
}

.live-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.info-views {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 4px;
}

.info-views img {
    width: 17px;
    margin: 0 5px 0 3px;
}

.live-button {
    position: absolute;
    width: 168px !important;
    bottom: 59px;
    right: 50px;
    height: auto;
    -webkit-animation: blink 4s ease-in 1s infinite normal forwards;
    -moz-animation: blink 4s ease-in 1s infinite normal forwards;
    -o-animation: blink 4s ease-in 1s infinite normal forwards;
    animation: blink 4s ease-in 1s infinite normal forwards;
}

@-webkit-keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@-moz-keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@-o-keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}
