.streamerInfo {
    padding: 30px 0;
    padding-top: 50px;
    background-color: var(--main-bg-contrast1-color);
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    color: white;
    padding-bottom: 20px;
    margin-bottom: 100px;
}

.streamerInfo h1 {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
}

.streamerInfo .svgWave {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: auto;
    transform: translateY(100%);
}

.streamerInfo .svgWave path {
    fill: var(--main-bg-contrast1-color) !important;
}

.streamerInfo .svgWave2 {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: auto;
    transform: translateY(100%);
    /*z-index: -1;*/
}

.streamerInfo .svgWave2 path {
    fill: var(--main-bg-contrast2-color) !important;
}

.streamerInfo .centerCointainer {
    display: flex;
    justify-content: space-between;
}



.streamerInfo .socials {
    display: flex;
    justify-content: flex-start;
    height: 33px;
}

.streamerInfo .socials a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.streamerInfo .socials a i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 33px;
}

.streamerInfo .socials a img {
    opacity: 0.5;
    height: 33px;
    display: inline-block;
}



.streamerInfo .profileImageWrapper {
    height: 190px;
    width: 190px;
    position: relative;
    flex-shrink: 0;
}

.streamerInfo .profileImageWrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.streamerInfo .profileImageWrapper.live img {
    animation-duration: 1.1s;
    animation-name: liveProfileImmage;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.46,.03,.52,.96);
    animation-delay: 100ms;
}

.streamerInfo .profileImageWrapper.live .redBorder {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid rgb(247, 44, 44);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.streamerInfo .profileImageWrapper.live .animatedBorder {
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid rgb(247, 44, 44);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    animation-duration: 1.1s;
    animation-name: redLiveCircle;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.46,.03,.52,.96);
}

.streamerInfo .profileImageWrapper .liveLabel {
    display: none;
}

.streamerInfo .profileImageWrapper.live .liveLabel {
    background-color: rgb(247, 44, 44);
    padding: 6px 13px;
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0 0 0 3px var(--main-bg-contrast1-color);
    border-radius: 3px;
    z-index: 10;
    display: block;
    font-weight: 500;
    color: white;
}



@keyframes liveProfileImmage {
    0% {
        transform: scale(1);
    }

    47% {
        transform: scale(0.97);
    }

    95% {
        transform: scale(1);
    }
}

@keyframes redLiveCircle {
    from {
        width: calc(100% + 16px);
        height: calc(100% + 16px);
        border: 4px solid rgb(247, 44, 44);
    }

    to {
        width: calc(100% + 48px);
        height: calc(100% + 48px);
        border: 0px solid rgb(247, 44, 44);
    }
}


@media (max-width: 700px) {
    .streamerInfo {
        padding-bottom: 30px;
        padding-top: 20px;
        margin-bottom: 60px;
    }

    .streamerInfo h1 {
        text-align: center;
        font-size: 32px;
    }

    .streamerInfo .socials {
        justify-content: center;
    }

    .streamerInfo .centerCointainer {
        position: relative;
    }

    .streamerInfo .leftPart h1 {
        margin-top: 10px;
        margin-bottom: 30px;
        padding-left: 110px;
        font-size: 23px;
        font-weight: 600;
        text-align: left;
        height: 50px;
    }

    .streamerInfo .profileImageWrapper {
        top: 0;
        left: 25px;
        position: absolute;
        height: 75px;
        width: 75px;
    }

    .streamerInfo .profileImageWrapper.live .liveLabel {
        font-size: 11px;
        font-weight: 600;
        padding: 3px 8px;
        bottom: -12%;
    }

    .streamerInfo .profileImageWrapper.live .animatedBorder {
        display: none;
    }

    @keyframes redLiveCircle {
        from {}
        to {}
    }
}




/* StreamerInfo card */
.desktopStreamerInfo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.25);
    padding: 5px 13px;
    border-radius: 8px;

    display: flex;
    align-items: center;
}

.desktopStreamerInfo img,
.mobileStreamerInfo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 40px;
}

.desktopStreamerInfo span,
.mobileStreamerInfo span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
}

.mobileStreamerInfo {
    position: fixed;
    top: 70px;
    width: 100vw;
    padding: 7px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-bg-contrast-trans1-color);
    z-index: 60;

    display: none;
}

.desktopStreamerInfo,
.mobileStreamerInfo {
    opacity: 1;
    transition: 300ms;
}

@media (max-width: 1000px) {
    .desktopStreamerInfo {
        display: none;
    }

    .mobileStreamerInfo {
        display: flex;
    }
}

.desktopStreamerInfo.hide, .mobileStreamerInfo.hide {
    opacity: 0;
}