﻿:root {
    --whatsapp-green: rgb(27,135,85);
    --whatsapp-gray: rgb(243,243,243);
    --whatsapp-medium-gray: rgb(229,229,229);
    --whatsapp-dark-gray: rgb(114,114,114);
    --whatsapp-blue: rgb(47,147,252);
    --whatsapp-gray2: rgb(250,246,244);
    --whatsapp-green-gray: rgb(241,237,235);
    --whatsapp-message-green: rgb(217,253,211);
    --whatsapp-message-border: rgb(120,140,117);
    --conversation-header-border: rgb(240,242,245);
    --image-display-bg: rgb(233,237,239);
    --no-preview-bg: rgb(240,242,245);
    --no-preview-font: rgb(174,186,196);
}

.font-whatsapp-green {
    color: var(--whatsapp-green);

}

.font-whatsapp-blue{
    color:var(--whatsapp-blue);
}


.chanel-struct{
    height:87vh;
}
.chanel-container {
    height: 89vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
}

.whatsapp-icon-header {
    background: var(--whatsapp-green);
    color: white;
    height: 5vh;
    width: 5vh;
    border-radius: 50% !important;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    border: 4px solid;
    border-color: var(--whatsapp-gray);
}
.chanel-header {
    height: 8vh;
    background-color: white; /*var(--whatsapp-gray);*/
    border-bottom: 1px solid rgb(180 185 183); /*1px solid var(--whatsapp-green);*/
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}


    .chanel-header .title {
        width: 20%;
        margin: 6px;
        height: 6vh;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
        padding: 3px;
        font-size: large;
        font-weight: bold;
    }
    


.chanel-body {
    height: 81vh;
    background-color: var(--whatsapp-gray);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.chanel-footer {
    height: 10vh;
    background-color: var(--whatsapp-gray);
    width: 100%
}

.chanel-felt-panel {
    width: 400px;
    background-color: var(--whatsapp-gray);
    height: 100%;
    border-right: 1px solid var(--whatsapp-medium-gray);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.chat-list {
    background-color: white;
    width: 97%;
    height: 79vh;
    margin: 1vh 0 1vh;
    border-left: 1px solid var(--whatsapp-medium-gray);
    border-top: 1px solid var(--whatsapp-medium-gray);
    border-bottom: 1px solid var(--whatsapp-medium-gray);
    border-radius: 20px 0 0 10px !important;
    padding: 3px;
    overflow-y:scroll;
    scrollbar-width: thin;
    scrollbar-color: #72757a #f0f0f0;
    font-size: 12px;

}


    /* Chrome, Edge, and Safari */
    .chat-list::-webkit-scrollbar {
        width: 10px;
    }

    .chat-list::-webkit-scrollbar-track {
        background: #f0f0f0;
    }

    .chat-list ::-webkit-scrollbar-thumb {
        background-color: #72757a;
        border-radius: 41px;
        border: 3px solid #ffffff;
    }


.chat-item {
    height: 6.5vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 20px 0 20px !important;
}

.chat-item:hover{
    background-color: var(--whatsapp-medium-gray);
}

    .chat-item .user-icon-container{
        width:20%;
    }

    .chat-item .user-icon {
        border-radius: 50% !important;
        height: 6vh;
        width: 6vh;
        border: 1px solid var(--whatsapp-medium-gray);
        margin: 4px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }


        .chat-item .user-icon img {
            border-radius: 50% !important;
            height: 6vh;
            width: 6vh;
            border: 1px solid var(--whatsapp-medium-gray);
            /*margin: 4px;*/
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
        }

        .chat-item .chat-data {
            display: flex;
            flex-direction: column;
            width: 80%;
            padding: 5px;
        }

    .chat-item .user-name-time {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
        .chat-item .user-name-time .user-name {
            font-weight: bold;
            width: 200px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

        .chat-item .user-name-time .time {
            font-size: x-small;
        }

        .chat-item .chat-status {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .chat-item .chat-status .last-message {
            display: flex;
        }
            .chat-item .chat-status .last-message .icons {
                margin-right: 2px;
            }
            .chat-item .chat-status .last-message .last {
            }

            .chat-item .chat-status .last-message .message-text {
                white-space: nowrap;
                text-overflow: ellipsis;
                width: 200px;
                overflow: hidden;
                font-size: 12px;
            }
        .chat-item .chat-status .unread {
            background-color: var(--whatsapp-green);
            width: 20px;
            height: 20px;
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
            align-items: center;
            border-radius: 50% !important;
            color: white;
            font-weight: bold;
            font-size: 11px;
        }

.hide{
    display:none !important;
}

.chanel-center-panel {
    width: 60%;
    background-color: var(--whatsapp-gray);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.chanel-right-panel {
    width: 20%;
    background-color: var(--whatsapp-gray);
    height: 100%;
    border-left: 1px solid var(--whatsapp-medium-gray);
    /*display: flex;*/
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: flex-start;
}

.right-panel-data-container {
    display: flex;
    flex-direction: column;
    /*height: 60vh;*/
    padding: 16px;
    background-color: white;
    width: 91%;
    margin-left: 18px;
    margin-bottom: 5px;
    border-radius: 10px !important;
    border-left: 1px solid var(--whatsapp-medium-gray);
    border-top: 1px solid var(--whatsapp-medium-gray);
    border-bottom: 1px solid var(--whatsapp-medium-gray);
}
.right-panel-data-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    padding: 3px;
    border: 1px solid;
    border-radius: 10px !important;
    border-color: var(--whatsapp-dark-gray);
    color: var(--whatsapp-dark-gray);
    height: 7vh;
    background-color: #FFF;
    margin-top: 2px;
    justify-content: center
}
.right-panel-data-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 7px;
}
.chat-messages-container {
    background-color: white;
    height: 79vh;
    width: 98%;
}

.chat-messages-container .messages{
    height:70vh;
    background-color: var(--whatsapp-gray2);
    font-size: 12px;
}

    .chat-messages-container .messages-footer {
        height: 4vh;
        border-top: 1px solid var(--whatsapp-medium-gray);
        height: 4vh;
        border-top: 1px solid var(--whatsapp-medium-gray);
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .messsage-conatiner{
        width:91%;
    }
    .message-buttons{
        border: 0;
        border-radius: 8px !important;
    }
    .message-input{
        border:0;
        resize: none;
    }



.bubble-container {
    width: 100%;
    margin-bottom: 10px;
}

.send {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.recieved {
    display: flex;
    justify-content: flex-start;

}
.bubble {
    --r: 0.5em; /* the radius */
    --t: 1em; /* the size of the tail */

    max-width: 600px;
    min-width: 194px;
    padding: 3px;
    border-inline: var(--t) solid #0000;
    border-radius: calc(var(--r) + var(--t))/var(--r) !important;
    mask: radial-gradient(100% 100% at var(--_p) 0,#0000 99%,#000 102%) var(--_p) 100%/var(--t) var(--t) no-repeat, linear-gradient(#000 0 0) padding-box;
    color: #000;
    margin-bottom: 0.5em;
    display: flex;
    flex-direction: column;
}
.messages {
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow-y:scroll;

}


/* Chrome, Edge, and Safari */
    .messages::-webkit-scrollbar {
        width: 10px;
    }

    .messages::-webkit-scrollbar-track {
        background: #f0f0f0;
    }
    .messages::-webkit-scrollbar-thumb {
        background-color: #72757a;
        border-radius: 41px;
        border: 3px solid #ffffff;
    }


.messages .left {
    --_p: 0;
    border-bottom-left-radius: 0 0 !important;
    place-self: start;
    background: #fff; /*linear-gradient(135deg,#FE6D00,#1384C5) border-box;*/
}

.messages .right {
    --_p: 100%;
    background: var(--whatsapp-message-green); /*linear-gradient(135deg,#FE6D00,#1384C5) border-box;*/
    border-bottom-right-radius: 0 0 !important;
    place-self: end;
}

.sticker {
    background: none !important; 
}

.message-footer {
    display: flex;
    justify-content: flex-end;
    font-size: 9px;
    color: #676767;
    margin-top: -6px;
}
.icon-send{
    margin-right:-8px;
}

.message-status {
    color: var(--whatsapp-medium-gray);
    font-size:7px;
}

.message-status .active {
    color: var(--whatsapp-blue);
}

.message-body{
    white-space:pre-line;
    margin: 2px;
    margin-right: 60px;
}

.normal-ws{
    white-space: normal !important;
}

.message-body-image{

}

.message-body-icon-only {
    text-align: center;
    font-size: 60px;
}

.message-image {
    max-width: 300px;
    position: relative;
    top: 11px;
    border-radius: 5px 5px 0 0 !important;
}
.message-footer-image {
    display: flex;
    justify-content: flex-end;
    font-size: 10px;
    position: relative;
    bottom: 13px;
    background: linear-gradient(0deg, rgba(138,136,136,0.8687850140056023) 0%, rgba(138,136,136,1) 0%, rgba(255,255,255,0) 100%);
    color: #fff;
    height: 3em;
    align-items: flex-end;
    flex-wrap: nowrap;
    border-radius: 0 0 5px 5px !important;
}

.quoted-message {
    border: 1px solid var(--whatsapp-medium-gray);
    border-radius: 5px !important;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.06);

}
.quoted-message-media {
    border: 1px solid var(--whatsapp-medium-gray);
    border-radius: 5px !important;
    background-color: rgba(0, 0, 0, 0.06);
    display: flex;
    min-width: 185px;
    height: 4em;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 2px;
}

.media-thumb-container {
    margin-left: 10px;
    position: relative;
    top: 0px;
    /* height: 16em; */
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: baseline;
    align-content: flex-end;
    max-width: 4em;
    border-radius: 5px !important;
}


.quoted-message-media-thumb {
    max-width: 4em;
    border-radius: 5px !important;
}

.quoted-message-media-origin {
    display: flex;
    flex-direction: column;
    align-content: space-around;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:5px;
}

.quoted-from-yoourself {
    border-left: 3px solid var(--whatsapp-blue);
}
.quoted-from-user {
    border-left: 3px solid var(--whatsapp-green);
}

.quoted-username {
    font-weight: bold;
    color: var(--whatsapp-green);
    opacity: 0.7;
}

.you {
    font-weight: bold;
    color: var(--whatsapp-blue);
    opacity: 0.7;
}
.quoted-message-text {
    color: var(--whatsapp-dark-gray);
    height: 2em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
}

.audio-message-send {
    width: 360px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
.audio-user-icon {
    width: 4em;
    background-color: white;
    height: 4em;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    border: 0.5px solid var(--whatsapp-medium-gray);
}

.audio-message{
    width:80%;
}

.audio-send::-webkit-media-controls-panel {
    background-color: var(--whatsapp-message-green);
}

.audio-recieved::-webkit-media-controls-panel {
    background-color: white;
}

.mensagem-encaminhada{
    color: var(--whatsapp-dark-gray);
    font-size:10px;
    font-style:italic;
}

.mensagem-documento {
    color: var(--whatsapp-dark-gray);
    font-size: 10px;
    font-style: italic;
}

.message-actions{
    display:none;
    z-index:9999;
}

.btn-group > .dropdown-menu:after`{
    display:none !important;
}
.dropdownmenu-from-me{
    left: -125px !important;
}

.message-body-image:hover + .message-actions {
    display: block;
    color: red;
}
.sticker-img{
    max-width:165px;
}
.sticker-time {
    width: 59px;
    display: flex;
    background-color: var(--whatsapp-message-green);
    justify-content: center;
    border-radius: 10px !important;
}



.revoked {
    min-width: 220px;
    border-radius: 20px !important;
    margin-bottom:0.5em;
}

.revoked-body {
    display: flex;
    justify-content: space-between;
    padding: 4px;
}
.revoked-text{
    color:var(--whatsapp-dark-gray);
    font-style:italic;

}

.message-time-revoked {
    font-size: 10px;
    color: #676767;
    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
}

.body-documento {
    width: 300px;
    display: flex;
    justify-content: space-between;
}
.document-label{
    max-width: 244px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-icon{
    height: 4em;
    width: 4em;
    border-radius: 50% !important;
    border:1px solid var(--whatsapp-dark-gray);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;

}
.download-link {
    color: var(--whatsapp-dark-gray) !important;
}
.date-separator {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.date-label {
    background: white;
    height: 2em;
    display: flex;
    width: 100px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    border-radius: 20px !important;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(82,73,82,1);
    -moz-box-shadow: 0px 1px 2px 0px rgba(82,73,82,1);
    box-shadow: 0px 1px 2px 0px rgba(82,73,82,1);
}

.blink_me {
    animation: blinker 500ms linear;
}

@keyframes blinker {
    50% {
        filter: brightness(50%);
        background: #676767;
        border-radius: 20px !important;
    }
}



.user-icon {
    border-radius: 50% !important;
    height: 6vh;
    width: 6vh;
    border: 1px solid var(--whatsapp-medium-gray);
    margin: 4px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.user-icon img {
    border-radius: 50% !important;
    height: 6vh;
    width: 6vh;
    border: 1px solid var(--whatsapp-medium-gray);
    /*margin: 4px;*/
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.vcard-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 302px;
    padding-left: 7px;
}
.contact-name {
    max-width: 240px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    align-content: center;
    margin-left: 5px;
    text-overflow: ellipsis;
    font-weight:bold;
}
.vcard-footer {
    margin-top: 5px;
    border-top: 1px solid var(--whatsapp-medium-gray);
    padding: 7px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.btn-conversar {
    color: var(--whatsapp-blue);
    cursor: pointer;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}
.active-chat-details {
    height: 6vh;
    /*margin-bottom: 4px;*/
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background: white;
    border:1px solid var(--whatsapp-gray);
}

    .active-chat-details.user-icon-container {
        width: 20%;
    }

    .active-chat-details .user-icon {
        border-radius: 50% !important;
        height: 40px;
        width: 40px;
        border: 1px solid var(--whatsapp-medium-gray);
        margin: 4px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

        .active-chat-details .user-icon img {
            border-radius: 50% !important;
            height: 40px;
            width: 40px;
            border: 1px solid var(--whatsapp-medium-gray);
            /*margin: 4px;*/
            display: flex;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
        }

.chat-details-user-name {
    font-weight: bold;
    /*width: 200px;*/
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.media-files-container {
    height: 74vh;
    background: var(--image-display-bg);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
}

    .media-files-container .tool-bar {
        height: 3vh;
        display: flex;
        padding: 5px 5px 5px 15px;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        color: rgb(84,101,111);
    }
        .media-files-container .tool-bar .close-button{
            cursor:pointer;

        }

    .media-files-container .file-stage {
        height: 56vh;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

        .media-files-container .file-stage img{
            max-height:50vh;
        }
        .media-files-container .file-stage video{
            max-height:50vh;
        }
    .media-files-container .legend-container {
        height: 6vh;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
        .media-files-container .legend-container .legend-actions {
            width: 600px;
            display: flex;
            padding: 8px;
            background: white;
            border-radius: 8px !important;
        }
    .media-files-container .display-footer {
        height: 9vh;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-around;
    }
.media-thumb-list {
    display: flex;
    width: 90%;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    height: 70px;
    overflow-y: auto;
    flex-direction: column;
}


/* Chrome, Edge, and Safari */
    .media-thumb-list::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .media-thumb-list::-webkit-scrollbar-track {
        background: #f0f0f0;
    }

    .media-thumb-list::-webkit-scrollbar-thumb {
        background-color: #72757a;
        border-radius: 41px;
        border: 3px solid #ffffff;
    }




.media-thumb {
    margin: 5px;
    display: flex;
    overflow: hidden;
    border: 1px solid var(--whatsapp-dark-gray);
    border-radius: 8px !important;
    cursor: pointer;
}

    .media-thumb .btn-remove-media {
        position: absolute;
        color: white;
        flex-wrap: wrap;
        justify-content: flex-end;
        text-align: right;
        padding-left: 37px;
        width: 50px;
        cursor: pointer;
        background: rgb(108,107,112);
        background: linear-gradient(180deg, rgba(108,107,112,1) 0%, rgba(108,107,112,1) 19%, rgba(255,255,255,0) 100%);
        display: none;
    }



.media-thumb-list .active {
    border: 2px solid var(--whatsapp-green);
}

    .media-thumb img {
        width: 50px;
        height: 50px;
    }

.btn-add-file {
    width: 50px;
    height: 50px;
    margin: 5px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    border: 1px solid var(--whatsapp-dark-gray);
    border-radius: 8px !important;
    cursor: pointer;
    color: var(--whatsapp-dark-gray);
}

.btn-send-container {
    width: 10%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .btn-send-container .btn-send {
        width: 60px;
        height: 60px;
        background: var(--whatsapp-green);
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        border-radius: 50% !important;
        color: white;
        font-size: 20px;
        cursor:pointer;
    }

        .btn-send-container .btn-send .badge {
            position: relative;
            top: -11px;
            left: 25px;
            background-color: white !important;
            color: black !important;
            font-weight: bold;
        }

.no-preview {
    background: var(--no-preview-bg);
    border-radius: 10px !important;
    width: 450px;
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: var(--no-preview-font);  
    font-size: 24px;
}
.no-preview img{
    margin-bottom: 15px;
}

.pdf-doc {
    width: 98%;
    height: 500px;
    background: var(--no-preview-bg);
    border-radius: 10px !important;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: var(--no-preview-font);
    font-size: 24px;
}


    .pdf-frame {
        border: 0;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        width: 98%;
        height: 80%;
    }

#mediaDisplay {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.media-display-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 98%;
    align-items: center;
    height: 560px;
}

.displayed-media img{
    max-height: 560px;
    max-width: 48vw;
}

.change-media button {
    background: none;
}

.chamge-media-icon{
    color: var(--whatsapp-dark-gray);
    font-size: 40px;
    padding: 8px;
}
.chamge-media-icon:hover{
    color: var(--whatsapp-green-gray);
}

.image-list {
    display: flex;
    overflow-y: auto;
}


.media-tools {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-between;
    width: 100%;
    padding-top: 5px;
}
.media-active{
    border: 3px solid #7dcc37;
}

.image-list-thumb {
    width: 50px;
    height: 50px;
    overflow: clip;
    margin: 3px;
    cursor: pointer;
    display: flex;
    overflow-y: auto;
    border-radius:3px !important;
}

/* Chrome, Edge, and Safari */
.image-list::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.image-list::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.image-list::-webkit-scrollbar-thumb {
    background-color: #72757a;
    border-radius: 41px;
    border: 3px solid #ffffff;
}
.tool-bar {
    padding-top: 3px;
    padding-right: 3px;
}

.tool-icon{
    cursor:pointer;
}

#response-container{
    display:none;
    height: 10vh;
    background: var(--no-preview-bg);
}
.response {
    width: 100%;
    height: 10vh;
    display: flex;
    padding: 1vh;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.response-message{
    width:97%;
}
.responsed-message {
    height: 8vh;
    padding-left: 20px;
    border-left: 4px solid;
    border-radius: 5px !important;
    background: rgb(229, 231, 234);
    display: flex;
    align-items: center;
}

    .responsed-message .text {
        display: flex;
        width: 90%;
        height: 8vh;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .responsed-message .media {
        display: flex;
        width: 10%;
        margin: 0 !important;
        background: aqua;
        height: 8vh;
        border-radius: 0px 10px 10px 0px !important;
        flex-wrap: nowrap;
        align-items: center;
    }
    .responsed-message .media  img{
        width:100px;
        min-height: 8vh;
    }
    .responsed-message-fromme{
        color: var(--whatsapp-green);
    }
    .border-fromme{
        border-color:var(--whatsapp-green) !important;
    }
    .border-fromAntr{
        border-color:var(--whatsapp-blue) !important;
    }
    .responsed-message-fromAntr{
        color: var(--whatsapp-blue);
    }


    .text-name {
        font-weight: bold;
    }

    .btn-close-response {
        cursor: pointer
    }

.text-message {
    white-space: nowrap;
    overflow: hidden;
    max-height: 2vh;
    width: 890px;
    text-overflow: ellipsis;
}
.reactions-send {
    width: 100%;
    font-size: small;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: flex-end;
    position: relative;
    top: -22px;
    padding-right: 20px;
}

.reactions-recieved {
    width: 100%;
    font-size: small;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    position: relative;
    top: -22px;
    padding-left: 20px;
}
.reaction {
    /*background-color: #fff;*/
    border-radius: 50% !important;
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.canal-info {
    margin-right: 10px;
   /* color: var(--whatsapp-blue);*/
    font-weight: bold;
    font-size: large;
    width: 70%;
    text-align:center;

}

.btn-tools-whatsapp{
    border-radius: 10px !important;
    margin-bottom: 2px;
    text-align: left;
}

#listaAtendimentosResumo{
    display:none;
}

#listaAgendamentosResumo{
    display:none;
}

#listaOrcamentoResumo{
    display:none;
}

.lista-resumo {
    height: 45vh;
    overflow-y: scroll;
}
.card-agendamento {
    display: flex;
    border: 1px solid #CCC;
    border-radius: 5px !important;
    padding: 5px;
    height: 60px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    cursor:pointer;
    margin-bottom: 5px;
}
    .card-agendamento .icon {
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        color: #06bd54;
    }

    .card-agendamento .dados {
        max-width: 287px;
        font-size: 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: center;
        align-items: flex-start;
    }

    .card-agendamento .dados .texto {
        width: 260px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .card-agendamento .dados .horario {
        font-weight:bold;

    }
        .card-agendamento .dados .container-horario {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-content: center;
            justify-content: space-between;
            align-items: center;
        }
#bateriaWhatsapp{
    display: none;
}
.whatsapp-novo-destinatario-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.whatsapp-novo-destinatario {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    width: 45%;
    background: var(--whatsapp-green);
    color: white;
    font-weight: bold;
    padding: 4px;
    border-radius: 30px !important;

}

#destinatarioSelecionado img {
    border-radius: 50% !important;
    height: 6vh;
    width: 6vh;
    border: 1px solid var(--whatsapp-medium-gray);
    /*margin: 4px;*/
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.user-icon-info {
    border-radius: 50% !important;
    height: 10vh;
    width: 10vh;
    border: 1px solid var(--whatsapp-medium-gray);
    margin: 4px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

    .user-icon-info img {
        border-radius: 50% !important;
        height: 10vh;
        width: 10vh;
        border: 1px solid var(--whatsapp-medium-gray);
        margin: 4px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

.whatsapp-info-head {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.whatsapp-header-button {
    border: 4px solid;
    border-color: var(--whatsapp-gray);
    width: 5vh;
    height: 5vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 6px;
}

.canal-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.chanel-right-panel-footer {
    position: absolute;
    bottom: 0;
    width: 18.5%;
    padding-left: 5px;
}

#ConvenioconvenioOrcamentoWhatsapp, #PlanoplanoOrcamentoWhatsapp, #inputProcedimentoprocedimentoOrcamentoWhatsapp {
    font-size: 12px;
    height: 28px;
}

#btnLookupProcedimentoprocedimentoOrcamentoWhatsapp, #btnAdicionarItemOrcamento, #btnlimparPRocedimentoOrcamento {
    width: 28px;
    height: 28px;
    padding: 2px;
}

.dados-orcamento-whatsapp {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
.card-orcamento{
    height: 42px;
}
    .card-orcamento .dados {
        max-width: 235px;
        width: 84%;
        display:block;
    }
.btn-remover-orcamento {
    width: 22px;
    height: 22px;
    padding: 0px;
}
.texto-orcamento-whatsapp {
    display: block;
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
}
.itens-orcamento-whatsapp {
    max-height: 24vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

#inputProcedimentoprocedimentoOrcamentoWhatsapp + ul {
    font-size: 10px;
}
}




.displayed-media {
    /* Oculta o conteúdo que "vaza" e evita as barras de rolagem nativas */
    overflow: hidden;
    /* Permite que os filhos (a imagem) sejam posicionados em relação a este bloco */
    position: relative;
    /* Defina o tamanho que você quer para o visualizador. Exemplo: */
    width: 100%;
    height: 600px;
    display: flex; /* Para centralizar a imagem inicialmente */
    justify-content: center;
    align-items: center;
    /* Evita que o cursor mude ao arrastar a imagem */
    user-select: none;
}

#zoomableImage {
    /* Garante que a imagem se ajuste ao contêiner inicialmente */
    max-width: 100%;
    max-height: 100%;
    /* Permite transições suaves para o zoom */
    transition: transform 0.1s ease-out;
    /* Define a origem da transformação (zoom) no centro */
    transform-origin: center center;
    /* Inicialmente sem transformação (escala 1 e sem deslocamento) */
    transform: scale(1) translate(0, 0);
    /* O cursor de "mão aberta" é ideal para quando a imagem pode ser arrastada */
    cursor: grab;
}

    /* Quando estiver sendo arrastada, muda o cursor */
    #zoomableImage.dragging {
        cursor: grabbing;
    }