#newsupate.container {
    margin: 1rem 0;
    background-color: #f3f3f3;
    border: 1px solid #333;
}

.live-wrapper {
    display: flex;
    position: sticky;
    padding: 1rem 1rem 1rem;
}

.live-title {
    padding: 0rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 0.7;
}

.News-slider {
    padding: 0 1em;
}

.theBlock {
    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.item {
    border-bottom: 1px dotted #b6b6b6;
}

.item:last-child {
    border: none;
}

.time {
    padding: 0 1em 0 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.text {
    font-size: 1.2rem;
}

.circle {
    position: absolute;
    top: 15px;
    width: 15px;
    height: 15px;
    background-color: rgb(255, 95, 122);
    border-radius: 50%;
    font-size: 1.3rem;

    &:hover {
        cursor: pointer;
    }

    &::after,
    &::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        background: rgba(233, 23, 5, .6);
        border-radius: 50%;
        z-index: -1;
        animation: grow 1s ease-in-out infinite;
    }

    &::after {
        background: rgba(255, 95, 122, 0.4);

        &::before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 15px;
            height: 15px;
            background: rgb(95, 132, 255);
            border-radius: 50%;
            z-index: -1;
            animation: grow 1s ease-in-out infinite;
        }
    }

    &::before {
        background: rgba(233, 23, 5, .6);
        animation-delay: -0.5s;
    }
}

@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8, 1.8);
        opacity: 0;
    }
}  