html, body, textarea {
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #242323;
    font-family: 'roboto', sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24
}

* {
    outline: none;
}

    /* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
    /** {
  scrollbar-width: thin;
  scrollbar-color: #CCCCCC #DFE9EB;
}*/

    /* Chrome, Edge and Safari */
    *::-webkit-scrollbar {
        height: 10px;
        width: 10px;
    }

    *::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #DFE9EB;
    }

        *::-webkit-scrollbar-track:hover {
            background-color: #B8C0C2;
        }

        *::-webkit-scrollbar-track:active {
            background-color: #B8C0C2;
        }

    *::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: #CCCCCC;
    }

        *::-webkit-scrollbar-thumb:hover {
            background-color: #242323;
        }

        *::-webkit-scrollbar-thumb:active {
            background-color: #242323;
        }

div[video-grid] {
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

video {
    padding: 0;
    margin: 0;
    border-radius: 20px;
    object-fit: cover;
    border: 7px solid #242323;
    box-sizing: border-box;
}

.box-video {
    padding: 0;
    margin: 0;
    border-radius: 20px;
}

.meu-video {
    transform: rotateY(180deg);
    padding: 0;
    margin: 0;
}

.full-screen {
    position: fixed;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    background-color: #242323;
    z-index: 99999;
}

#div-controls {
    position: fixed;
    bottom: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#controls {
    background: #000000ff;
    width: auto;
    padding: 8px 16px;
    border-radius: 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
    gap: 16px;
    transition: 0.3s;
}

.btn-controls {
    background-color: #70707065;
    border: none;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

/*.btn-controls:hover {
        background-color: #282828;
        border: none;
        border-radius: 20px;
        width: 40px;
        height: 40px;
        color: #fff;
        cursor: pointer;
    }*/

.hide {
    display: none;
}

.label-nome {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 14px;
    z-index: 999;
    background-color: #00000095;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
    color: #fff;
}

.btn-entrar {
    width: 200px;
    border-radius: 8px;
}

    .btn-entrar:hover {
        width: 200px;
        border-radius: 8px;
        background-color: #70707025;
    }

#txt-nome {
    background-color: #70707065;
    border: none;
    border-radius: 20px;
    width: 200px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    border-radius: 8px;
}

    #txt-nome::placeholder {
        color: #acacac;
    }

.controls-entrar {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.gravando {
    animation: gravando 1s infinite;
}

@keyframes gravando {
    0%, 40% {
        color: #fff;
    }

    50%, 100% {
        color: red;
    }
}

.chat-body {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column-reverse;
    z-index: 9999;
    padding: 0px 0;
    box-sizing: border-box;
    transition: 0.1s linear all;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.show-chat {
    right: 0px;
    transition: 0.1s linear all;
}

#chat-area {
    height: 100%;
    overflow-y: auto;
    color: #000;
    padding: 16px;
    box-sizing: border-box;
    background-color: #fff;
}

.textarea-msn {
    background-color: #F1F3F4;
    width: 100%;
    border: none;
    resize: none;
    height: auto;
    field-sizing: content;
    color: #4a4a4a;
}

#txt-mensagem {
    background-color: #F1F3F4;
    width: 100%;
    border: none;
    resize: none;
    min-height: 40px;
    max-height: 80px;
    field-sizing: content;
    color: #000;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
}

#btn-enviar-msn {
    background-color: #70707065;
    border: none;
    width: 40px;
    height: 40px;
    color: #000;
    font-weight: 600;
    border-radius: 50%;
    cursor: pointer;
}

.div-mensagem {
    background-color: #F1F3F4;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #3e3e3e;
}

.msn-acao {
    display: flex;
    padding: 16px;
    background-color: #F1F3F4;
    box-sizing: border-box;
    padding: 8px;
    gap: 8px;
    justify-content: space-between;
    align-items: end;
}

.icon-enviar {
    color: #808080;
    cursor: pointer;
}

.header-msn {
    background-color: #fff;
    padding: 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F1F3F4;
}



.badge-chat {
    width: 10px;
    height: 10px;
    background-color: red;
    position: absolute;
    border-radius: 50%;
    top: 12px;
    margin-left: 24px;
    display: block;
}

.hide-badge-chat {
    display: none;
}

#maos {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    box-sizing: border-box;
    border-radius: 8px;
    transition: 0.3s linear all;
}

.levantaramMao {
    padding: 8px 10px;
    margin: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background-color: #bdc73f;
    border-radius: 8px;
    transition: 1s linear all;
}

.pointer {
    cursor: pointer;
}

@media (max-width: 500px) {
    #maos {
        position: fixed;
        bottom: 60px;
        left: 8px;
        z-index: 999998;
        box-sizing: border-box;
        border-radius: 8px;
    }

    .chat-body {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: transparent;
        display: flex;
        flex-direction: column-reverse;
        z-index: 999999;
        padding: 0px 0;
        box-sizing: border-box;
        animation: 3s linear;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        transition: 0.2s linear all;
    }

    .show-chat {
        right: 0px;
        transition: 0.2s linear all;
    }
}
