/* Import Google font - Poppins 
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.text-live-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #1D1E23;
}
*/
.text-live-text {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
}

.span-text-live{
    position: relative;
    color:   rgba(255, 255, 255, 1);;
}

.span-text-live::before{
    content: "";
    right: -8px;
    top: 50%;
    position: absolute;
    height: 30px;
    width: 2px;
    background:  rgba(255, 255, 255, 1);;
    transform: translateY(-45%);
    animation: blink 0.7s infinite;
}

.span-text-live.stop-blinking::before {
    animation: none;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}