table {
    width: 100%;
}

table tr td {
    padding: 3px;
    font-weight: bold;
}


/* .startstopbtncontainer {
    margin-top: 20px;
    text-align: center;
} */

.startstopbtn {
    margin: auto;
    height: 60px;
}

.count {
    text-align: right;
    font-weight: bold;
}

.timer,
.counter {
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    background: transparent;
}

.counter {
    font-size: 1.2em;
}

.track {
    width: 100%;
    position: fixed;
    bottom: 60px;
    left: 0px;
    z-index: 99;
}

.bdg {
    width: 70px;
}

.lbl {
    width: 120px;
}

.tml {
    display: inline-block;
    width: 60%;
}

.runtime {
    background-color: #00000066;
    padding-top: 30px;
}

.runtime1 {
    background-color: #00000066;
}

.marquee {
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: relative;
    /* font-size: 30px; */
    /* border: 1px solid #4a4a4a; */
}

.marquee span {
    /* display: inline-block; */
    position: absolute;
    white-space: nowrap;
    width: auto;
    min-width: 100%;
    overflow-x: visible;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: left;
    -moz-transform: translateX(150vw);
    -webkit-transform: translateX(150vw);
    transform: translateX(100vw);
    -moz-animation: scroll-left 45s linear infinite;
    -webkit-animation: scroll-left 45s linear infinite;
    animation: scroll-left 45s linear infinite;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100vw);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100vw);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100vw);
        -webkit-transform: translateX(100vw);
        transform: translateX(100vw);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

#liveutube {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% * 9/16);
    z-index: 99;
}

#msgbackbtn {
    position: fixed;
    top: 100px;
    right: 5px;
    z-index: 100;
}

#zoombtn {
    position: fixed;
    top: 170px;
    right: 5px;
    z-index: 100;
}

#zoombtn1 {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    transform: rotate(-90deg);
    transform-origin: right bottom;
}

@media (max-width: 600px) {
    #liveutube {
        margin: none;
        width: 100vh;
        height: 100vw;
        transform: rotate(-90deg) translateX(-100%);
        transform-origin: top left;
        z-index: 99;
    }
    #msgbackbtn {
        transform: rotate(-90deg);
        transform-origin: center center;
    }
    #zoombtn {
        transform: rotate(-90deg);
        transform-origin: center center;
    }
}