#micList{
    position: absolute;
    display: none;
    top: 390px;
    width: 400px;
    overflow-x: clip;
    padding: 10px 5px;
    background: snow;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

#camList{
    position: absolute;
    top: 460px;
    display: none;
    width: 270px;
    overflow-x: clip;
    padding: 10px 5px;
    background: snow;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}


.remote{
    display: none;
}


.full {
    font-size: 24px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.roomMessage {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: burlywood;
    justify-content: center;
}


/* liveEvents */

.liveEvents-header {
    background: #f6f6f6;
    height: 60px;
    padding: 12px 0;
}

.liveEvents-header .logo {
    height: 30px;
}

.liveEvents-section {
    height: calc(100vh - 60px);
    background: #f6f6f6;
    padding: 15px 0;
}

.liveEvents-section .video-box {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    height: 100%;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}

.liveEvents-section .local {
    width: 100% !important;
    height: calc(100% - 60px);
    background-color: #384552;
    position: relative;
}

.liveEvents-section .comment-box {
    background: #fff;
    border-radius: 6px;
    height: 100%;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}

.liveEvents-section .comment-top {
    padding: 15px;
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}
.liveEvents-section .comment-body {
    padding: 15px;
    height: calc(100% - 85px - 55px);
    overflow: hidden;
    overflow-y: auto;
}
.liveEvents-section .comment-bottom {
    padding: 15px;
}


.liveEvents-section .comment-box .input-box .form-control {
    background: transparent;
    border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 6px;
    height: 55px;
    padding-right: 38px;
    color: #000;
    box-shadow: none;
    outline: none;
}

.liveEvents-section .comment-box .input-box {
    position: relative;
}

.liveEvents-section .comment-box .input-box .btn-send {
    color: #fff;
    position: absolute;
    top: 16px;
    right: 12px;
    padding: 0;
    color: rgb(0 0 0 / 60%);
    box-shadow: none;
    outline: none;
}

.liveEvents-section .comment-box .input-box .btn-send:hover {
    color: #1aa0e1;
}

.liveEvents-section .comment-box .msg-box {
    background: #303030;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 12px;
}
.liveEvents-section .comment-box .msg-box:last-child {
    margin-bottom: 0;
}

.liveEvents-section .comment-box .msg-box .img1 {
    width: 40px;
    min-width: 40px;
    height: 40px;
    object-fit: cover;
}

.liveEvents-section .comment-box .msg-box p {
    line-height: 1.2;
    font-size: .9375em;
}

.liveEvents-section .comment-box .msg-box h5 {
    font-size: 1.125em;
}

.liveEvents-section .controlSection {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0px 5px;
    margin-top: 5px;
    background: #111111;
    color: #fff;
    padding: 12px 15px;
    justify-content: center;
    align-content: center;
    box-shadow: 1px 1px 2px #2621218c;
    border-radius: 4px;
    font-size: 1.25em;
}

.liveEvents-section .controlSection i{
    cursor: pointer;
}












/* scrollbar */
.scrollbar{
    overflow: auto;
}
.scrollbar::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #434343;
}

.scrollbar::-webkit-scrollbar
{
    width: 4px;
    height: 4px;
    background-color: #434343;
}

.scrollbar::-webkit-scrollbar-thumb
{
    width: 4px;
    height: 4px;
    background-color: #a5a5a5;
}



/*Responsive.css*/

@media (min-width: 768px) {
    .liveEvents-header .back-button {
        position: absolute;
        right: 10px;
        top: 0px;
    }
}
    
@media (max-width: 991px) {
    .liveEvents-section{
        height: auto;
    }
    .liveEvents-section .local {
        height: 70vh;
    }
    
    .liveEvents-section .comment-body {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .liveEvents-header {
        height: auto;
        text-align: right;
    }
    
    .liveEvents-header .back-button {
        margin-top: 20px;
    }
}
