@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap');


:root {
    --mainColor: #FFFFFF;
    --backgroundColor: black;
    --accentColor: #67C9EC;
    --bodyBackgroundColor: #ffffff00;
}

html, body, stream-wrapper {
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--bodyBackgroundColor);
}

.stream-wrapper {
    width: 800px; /* 235px */
    height: 498px; /* 233px */
    font-size: 12px;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    color: var(--mainColor);
    display: block;
    align-items: center;
}

.logo-trula {
    fill: var(--mainColor);
}

.logo-music {
    fill: var(--accentColor);
    stroke: var(--accentColor);
}


.main-stream-block {
    overflow: hidden;
    width: 100%; /* 235px */
    border-radius: 21px;
    background-color: var(--backgroundColor);
    display: block;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: .3s ease-in-out;
}

.main-stream-block.show {
    opacity: 1;
}

.player {
    /* height: 159px;*/ /* 720px */
    height: 0;
    opacity: 0;
    transition: .3s ease-in-out;
    background-color: black;
}

.player.show {
    height: 450px; /* 159 */
    opacity: 1;
    transition: .3s ease-in-out;
}

.main-stream-block > .player {
    height: 0;
}

.main-stream-block.show > .player.show {
    height: 439px;
}

.order-info {
    display: block;
    height: 0;
    transition: .3s ease-in-out;
    display: flex;
    flex-direction: row;
}

.order-info.show {
    height: 48px;
}

.order-info .text-wrapper p {
    font-size: 34px;
    text-align: center;
    margin: 0;
    color: var(--mainColor);
    font-weight: 400;
    display: flex;
    gap: 10px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    margin-left: 10px;
}

.text-wrapper {
    margin: auto;
}

.text-wrapper p {
    font-size: 22px; /* 12px */
    padding: 0 20px 0 0;
    text-align: right;
    margin: 0;
    color: var(--mainColor);
}

.text-wrapper p #currentInitiator{
    font-size: 34px; /* 12px */
    text-align: center;
    font-weight: 500;
    margin: 0;
    color: var(--accentColor);
}

.marquee {
    display: block;
    transform: translateX(0%);
    width: max-content;
    animation: marque 17s linear infinite;
    -webkit-animation: marque 17s linear infinite;
    animation-play-state: running;
    white-space: nowrap;
    line-height: 48px;
}


@keyframes marque {
    0% {
        transform: translateX(0%);
    }
    20% {
        transform: translateX(0%);
    }
    91% {
        transform: translateX(-110%);
        opacity: 1;
    }
    96% {
        transform: translateX(-110%);
        opacity: 0;
    }
    98% {
        transform: translateX(0%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}


.order-event {
    width: 100%; /* 235px */
    height: 167.5px;
    border-radius: 21px;
    background-color: #454545;
    position: relative;
    display: flex;
    align-items: center;
    z-index: -1;
    overflow: hidden;
    transition: top 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1s ease-in-out;
}

.order-event.alone {
    opacity: 0;
    top: -108px;
}

.order-event.under {
    top: -168px;
    opacity: 1;
}

.order-event.alone.show {
    opacity: 1;
}

.order-event.under.show {
    top: 20px;

}

.order-event p {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 60px;
    width: 100%;
    text-align: center;

}

.order-event p span {
    font-weight: 600;
    color: var(--accentColor);
}

.player-wrapper {
    position: relative;
}


.image-wrapper {
    padding: 5px 0px;
    display: block;
    width: 0px;
    opacity: 0;
    transition: .3s;
}

.image-wrapper.show {
    padding: 5px 10px;
    width: 142px;
    opacity: 1;
    background-color: var(--backgroundColor);
    z-index: 1;
}

.image-wrapper img {
    height: 45px;
}

.whater-mark{
    position: absolute;
    bottom: 0;
    left: 0;
    background: #00000088;
    border-top-right-radius: 7px;
    padding: 3px;
    transition: .3s .3s;
    opacity: 0;
}

.whater-mark.show {
    opacity: 1;
    transition: .3 0;
}

.whater-mark img {
    height: 45px;
}