﻿.lds-ripple {
    display: inline-block;
    position: absolute;
    width: 64px;
    height: 64px;
    z-index: 11;
    margin: 0px auto;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #53b3ea;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}


#rtc-loader {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    opacity: 0.1;
    z-index: 10;
}


.rtc-video-container {
    min-height: 200px;
    height: 80%;
    width: 75%;
    max-width: 1390px;
}

.rtc-video-container-new {
    width: 100vw;
    height: 94vh;
}

#rtc-video-wrapper video {
    pointer-events: none;
}

#rtc-video-wrapper #remote  video 
{
    width: 100%;
    height: 100%;


}



#rtc-video-wrapper #local  video {
    width: 150px;
    position: absolute;
    right: 0px;
    bottom: 15px;
    margin-right: 10px;
    border: 2px solid #ff6a00;
   
}

#rtc-audio-container .media-controls {
    display: none !important;
}

#rtc-audio-container  #local {
    display: none !important;
}


@media (min-width: 320px) and (max-width: 479px) {

    #rtc-video-wrapper #local  video {
        width: 75px;
        position: absolute;
        right: 0px;
        bottom: 15px;
        margin-right: 10px;
        border: 2px solid #ff6a00;
    }
    #rtc-audio-container .media-controls {
        display: none !important;
    }

    .rtc-video-container-new {
        width: 100vw;
        height: 100vh;
    }

}

