body{
    background-color: #d8dde5;
    padding: 0;
    margin: 0;
    font-family: "Work Sans", sans-serif;
}
::-webkit-scrollbar {
    width: 11px;
}
::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-radius: 0px;
    padding: 1px;
}
::-webkit-scrollbar-thumb {
    background: #D5D5E3;
    width: 4px;
    margin: 1px;
}
*{
    box-sizing: border-box;
}

.content{
    min-width: 1366px;
    max-width: 1440px;
    width: 100%;
    margin: 19px auto;
    display: flex;
    height: calc(100% - 38px);
    background-color: #f0f2f5;
}


#contactsList{
    height: calc(100% - 108px);
    overflow-y: auto;
    flex-direction: column;
    display: flex;
    margin-left: 58px;
}
#sideMenu{
    width: 30%;
    height: 100%;
    background-color: #FFFFFF;
}

#chatWindow{
    width: 70%;
    height: 100%;
    background-color: #f0f2f5;
    border-left: 1px solid #e9edef;
}
.header{
    height: 59px;
    width: 100%;
    text-align: center;
    display: flex;
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    list-style: none;
    


}




/*.header__userPicture{
    width: 40px;
    height: 40px;
    background-color: gray;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__userPicture img{
    width: 100%;
}
.header__btnBlock{
    display: flex;
    align-items: center;
    width: 240px;
}

.header__btnBlock .header__btnBlock__btn:first-child{
    margin-left: 0px;
}



.header__btnBlock__btn{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}
---------------------- INUTILIZADO PARA USAR BARRA LATERAL E CAMINHO DA QUERYSELECTOR MUDADO  

*/

.search{
    height: 49px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    /*border-bottom: 1px solid #e9edef;
    border-top: 1px solid #e9edef;*/

}

.search_block{
    display: flex;
    align-items: center;
    width: calc(88% - 38px);
    background-color: #f0f2f5;
    height: 35px;
    border-radius: 8px;
    margin-left: 65px;
}

.search_block > div{
    width: 65px;
    background-color: transparent;
    padding-left: 12px;
}

.search_block > input{
    height: 35px;
    outline: none;
    border: none;
    font-family: inherit;
    background-color: transparent;
    height: 20px;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #667781;
    padding-right: 32px;
    width: calc(100% - 65px);
}

.search_block > input::placeholder{
    font-size: 14px;
    line-height: 20px;
    color: #667781;
    padding-right: 32px;
}

ul, ul li{
    list-style: none;
    padding: 0px;
    margin: 0px;
    
}

.contacts__contact{
    height: 72px;
    display: flex;
    transition: ease all 0.15s;
    align-items: center;
    cursor: pointer;
}

.contacts__contact > div:first-child{
    width: 77px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts__contact .userPicture{
    width: 49px;
    height: 49px;
    border-radius: 50%;
    overflow: hidden;
}

.contacts__contact .userPicture img, .contacts__contact .userPicture svg{
    height: 100%;
    width: 100%;
    fill: unset;
    object-fit: cover;
    object-position: center;
}

.contacts__contact > div:last-child{
    padding-right: 15px;
    border-bottom: 1px solid #e9edef;
    height: 72px;
    width: calc(100% - 77px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user__info{
    display: flex;
    align-items: center;
    justify-content: left;
    height: 22px;
}

.username{
    width: calc(100% - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: normal;
    line-height: 21px;
    color: #111b21;
}

.labelBox{
    margin-left: 8px;
}

.usertime{
    color: #667781;
    width: 100px;
    text-align: right;
    font-size: 12px;
    overflow: hidden;
    line-height: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.user__lastMsg{
    display: flex;
    width: 100%;
    align-items: center;
    height: 20px;
}
.user__lastMsg__msg{
    height: 20px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: inline;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-align: left;
    color: #667781;
}
.user__lastMsg__status{
    min-width: 18px;
    height: 20px;
    display: flex;
    align-items: center;
    margin-right: 2px;
}
.contacts__contact.contacts__contact--selected, .contacts__contact:hover{
    background: #f0f2f5;
    color: #3b4a54;
}
.contacts__contact.contacts__contact--selected .user__lastMsg__msg, .contacts__contact:hover .user__lastMsg__msg{
    color: #3b4a54;
}
.chatPlaceholder.chatPlaceholder--hide{
    display: none;
}
.chatPlaceholder{
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.chatPlaceholder img{
    height: fit-content;
}
#contactChatWindow{
    display: none;
    height: 100%;
    width: 100%;
    background-image: url(img/chat__bg.png);  
}
#contactChatWindow.chat--show{
    display: flex;
    flex-direction: column;
}
.chat__header{
    background-color: #f0f2f5;
    min-height: 59px;
    width: 100%;
    display: flex;
    padding: 0 16px;
    align-items: center;
    border-left: 1px solid #d1d7db;
}
.chat__header__userPicture{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}
.chat__header__userPicture img{
    height: 100%;
    width: 100%;
}
.chat__header__userName span{
    color: #111b21;
    font-size: 16px;
    font-size: 16px;
    font-weight: normal;
    line-height: 21px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.chat__content{
    height: 100%;
    background-color: transparent;
    width: 100%;
    overflow-y: auto;
    max-height: 822px;
    vertical-align: bottom;
}
.chat__content__block{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 8px 0;
    background-color: transparent;
}
.messageRow{
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 63px;
    padding-left: 63px;
    margin-bottom: 2px;
}
.messageColumn{
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}
.messageRow[type="me"]{
    justify-content: flex-end;
}
.messageRow[type="they"]{
    justify-content: flex-start;
}
#contactChatWindow.group .messageRow[type="they"] .msgBaloom{
    background-color: #ffffff;
    padding-right: 8px;
}
#contactChatWindow .messageRow[type="they"] .msgBaloom{
    background-color: #ffffff;
    padding-right: 42px;
}
.messageRow[type="me"] .msgBaloom{
    background-color: #d9fdd3;
    padding-right: 60px;
}

.messageRow[type="me"] .msgBaloom > span{
    display: inline-block;
    position: relative;
    max-width: 500px;
    word-wrap: break-word;
    white-space: pre-wrap;
    max-height: auto; /*automatico para que não exista limitações no tamanho do balãozinho no envio de mensagens*/
    overflow-y: hidden;
    text-overflow: ellipsis;
}

.messageRow[type="they"] .corner{
    position: absolute;
    top: -5px;
    left: -5px;
    transform: rotate(-90deg);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 
    border-right:10px solid #ffffff;
}

.messageRow[type="me"] .corner{
    position: absolute;
    top: -5px;
    right: -5px;
    transform: rotate(45deg);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 
    border-right:10px solid #d9fdd3;
}

.msgBaloom{
    box-shadow: 0 1px 0.5px #81c2ed21;
    border-radius: 7.5px;
    position: relative;
    min-height: 33px;
    padding-top: 6px;
    padding-bottom: 8px;
    padding-left: 9px;
    font-size: 14.2px;
    line-height: 19px;
}
.msgInfo {
    position: absolute;
    display: flex;
    align-items: center;
    right: 3px;
    bottom: 1px;
    height: 15px;
}
.msgBaloom.poll .msgInfo{
    position: relative;
    width: 100%;
    justify-content: flex-end;
}
.msgInfo .timestamp{
    font-size: .6875rem;
    margin-right: 3px;
}

.chat__footer{
    min-height: 64px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    background-color: #f0f2f5;
    padding: 10px 16px;
    border-left: 1px solid #e9edef;
}

#inputTextBoxTextarea{
    outline: none;
    border: none;
    width: 100%;
    min-height: 22px;
    height: 22px;
    padding: 0px;
    color: #3b4a54;
    font-size: .9375rem;
    width: 100%;
    background-color: transparent;
    font-weight: normal;
    line-height: 20px;
    border-radius: 8px;
    resize: none;
    font-family: inherit;
    max-height: 11.76em;
}


.plusOpt, .sendMsg{
    height: 40px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.greySVG{
    filter: brightness(0) saturate(100%) invert(43%) sepia(4%) saturate(1585%) hue-rotate(159deg) brightness(87%) contrast(92%);
}
.inputTextBox{
    display: flex;
    align-items: center;
    padding: 0 12px;
    min-height: 44px;
    background-color: #FFFFFF;
    width: calc(100% - 120px);
    border-radius: 8px;
    margin: 0 8px;
}
.inputTextBox__text{
    max-height: 11.76em;
    user-select: text;
    display: flex;
    overflow-y: auto;
    /* padding: 5.5px 0px; */
    align-items: center;
    width: 100%;
    outline: none;
    margin-left: 10px;
    min-height: 44px;
    position: relative;
}
/* .inputTextBox__text.placeholder--show::after{
    content: "Digite uma mensagem";
    color: #667781;
    font-size: .9375rem;
    font-family: inherit;
    height: 22px;
    position: absolute;
    top: 11px;
    z-index: 1;
    cursor: text;
    left: 0px;
} */
.inputTextBox__text p{
    color: #3b4a54;
    font-size: .9375rem;
    width: 100%;
    background-color: transparent;
    font-family: inherit;
    min-height: 22px;
    padding: 0px;
    margin: 0px;
}
#wppSendMessageBtn{
    cursor: pointer;
}
.fakeFileSelect{
    width: 853px;
    z-index: 200;
    height: 643px;
    position: fixed;
    top: calc(50% - 321.5px);
    left: calc(50% - 426.5px);
    display: none;
    background-image: url(img/selectSheet.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.fileTypeBlock{
    display: flex;
    height: 121px;
    background: #191919;
    margin-top: 125px;
    margin-left: 174px;
    padding-left: 10px;
    align-items: center;
    width: 490px;
}
#imgFileType{
    margin-left: 25px;
    margin-top: 3px;
}

.fileType{
    cursor: pointer;
}

#audioFileType{
    margin-right: 40px;
    margin-top: 3px;
}

#popup {
    position: fixed;
    top: calc(50% - 87.5px);
    left: calc(50% - 250px);
    background: #fff;
    width: 500px;
    height: 175px;
    z-index: -1;
    box-shadow: 0 17px 50px 0 #0b141a30, 0 12px 15px 0 #0b141a3d;
    visibility: hidden;
    border-radius: 3px;
    padding: 22px 24px;
}
#popup h2{
    font-weight: 400;
    margin: 0px 0px 70px;
    font-size: 1.25rem;
    line-height: 1.25;
}
#popup {
    transform: scale(0);
    transition: all .3s ease-in-out;
}
#popup.show {
    transform: scale(1);
    visibility: visible;
    z-index: 200;
    opacity: 1;
}
#popup .flexEnd{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
}
#popup svg{
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
}
.overlayWpp{
    display: none;
    background-color: #ffffffd9;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    height: 100%;
    z-index: 100;
}
.contacts__contact.group .user__lastMsg__msg svg {
    margin: 0 3px;
}
.contacts__contact.group .user__lastMsg__msg {
    display: flex;
    align-items: center;
}
a.memberMention {
    color: #009de2;
    text-decoration: none;
    margin-right: 3px;
}
.overlayWpp.overlayWpp--show{
    display: block;
}
#cancelBtn{
    height: 38px;
    color: white;
    font-weight: 500;
    font-size: .875rem;
    padding: 0 24px;
    background-color: #008069;
    display: flex;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    border: none;
}
.msgContentBox, .msgContent{
    display: flex;
    align-items: center;
}

.msgBaloom.img, .msgBaloom.doc{
    display: flex;
    flex-direction: column;
    max-width: 336px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
    padding-right: 3px;
}

.wowtomate-box p.numContacts {
    margin-left: 3px;
    margin-top: 2px;
    font-size: 12px;
}

.wowtomate-box .dropbtn p.numContacts {
    margin-left: 3px;
    margin-top: 2px;
    font-size: 12px;
}

#pollTitleInput::placeholder{
    font-weight: 700;
}

.msgBaloom.img .msgContentBox > span, .msgBaloom.doc .msgContentBox > span{
    min-height: 31px;
    padding: 7px 6px 5px 4px;
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}

.msgBaloom.img .msgContent{
    margin-bottom: 0px;
}

.msgBaloom.doc .msgContent{
    height: 101px;
    overflow: hidden;
    width: 100%;
    align-items: flex-start;
}

.msgBaloom.img .msgContentBox{
    flex-direction: column;
    width: 330px;
    position: relative;
}

.msgBaloom.doc .msgContentBox{
    flex-direction: column;
    width: 100%;
    position: relative;
}

.msgBaloom.img .msgContentBox img{
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.msgBaloom.doc .msgContentBox img{
    border-radius: 6px;
}

.pictureBox{
    position: relative;
    height: 55px;
    width: 55px;
}

.pictureBox svg{
    position: absolute;
    right: 0px;
    top: 30px;
}

.messageRow[type="they"] .msgBaloom.audio .msgInfo{
    right: unset;
    left: 65px;
    bottom: 6px;
    width: 195px;
}

.messageRow[type="they"] .msgBaloom.audio{
    padding: 6px !important;
}

.messageRow[type="they"] .msgBaloom.audio .msgContent{
    margin-bottom: 4px;
    padding-bottom: 4px;
}

.messageRow[type="they"] .msgBaloom.audio .pictureBox svg{
    right: unset;
    left: 0px;
}

.messageRow[type="they"] .msgBaloom.audio .pictureBox{
    margin-left: 19px;
}

.msgContentBox .picture{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msgContentBox .picture img{
    width: 100%;
}

.msgContent .playMsg{
    margin: 0 12px 0 11px;
}

.messageRow[type="me"] .msgBaloom.audio {
    padding-right: 20px;
}

.messageRow[type="me"] .msgBaloom.img, .messageRow[type="me"] .msgBaloom.doc  {
    padding-right: 3px;
}

.msgBaloom.audio .msgInfo .msgInfo__flex{
    display: flex;
    align-items: center;
}

.msgBaloom.audio .msgInfo .msgInfo__flex:first-child{
    font-size: 11px;
    line-height: 15px;
    color: #8696a0;
}

.msgBaloom.audio .msgInfo {
    justify-content: space-between;
    width: 210px;
}

.docInfoBox{
    background-color: #d1f4cc;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    display: flex;
    flex-direction: row;
    width: 100%;
    border-top: 1px solid #000000;
    padding: 13px 19px;
}

.docTypeLogo{
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADMAAAA8CAMAAAD8KXLNAAAAvVBMVEUAAAD3d3fxRkbyRkbyRkb3fn74g4PyRUX3lZXzRUXyRUX/RkbyQED3fn7zRUX2iYn/Rkb4lpb0cHDvQEDzRETzRkbzQEDzQkLzOzv////939/yODj2enr4kJD0UVHzPT38xMT92tr5lZX1ZGT+6+v4g4P1bW35m5v7yMj91dX3fn76sLD1XFz6qan//f36trb+5OT0VVX6rKz7vb3yNDT4iIj/9vb0TEz5o6PtTEzlRUXsYWHiNzfyRETsSEiKDgROAAAAFHRSTlMAH+Z5+80n+JHu0AWTv6w6CX3V/BbNCjoAAAHfSURBVHgB7daDsisxGMDxHNtftLZqu+//WDebOu1p08H1f7D8zRoIoferx4djXb4htYvXy7vrI32NXi4U8v6KjzcbFTcKer48bQplS3dYwyhbwhpGRTpGRZpGoNvzjUT6RkU6RkX6RiJNM7dUhE/2NYkVhDU2lCgIa6DxxNr0eathBPoab5re6xjJ1pkaRu2XmP8GiIzKCSrHAW9NiKhiwKnKsFkukRMOZaWCVnWZA7uGxEaZn6UDApBGYjz3ekDFZtrGoig1FRPwZXnoQoXL6p0qwSTjy9pdxdicG41K1ue8g6kwRiWLOPcHQDzO84aoE7N9M2SMWX1eD11hal0zNMQ8tzQ2c0UU75saBXB9zhMmTJthsyc2J7cTuIRSQQ5sxzRZK9oYN4x4VGXCDMtz14IDxiusntiM0SILQ6oG71umMLKcHTCL+rEL+qZe5iWUwta+hUwYz7btoCAHTCdJEgcTgKUxY84NfPwc1AihABhLM+x2N+c6oICXqWa5RJo8bTQ59x04YgJhYMvIMnnvfGtivxmsTdr0RbmNCca0ZjR7FCtGNnCcAd6aEIELyhLFABXb35qg62k59v9d9d/8MnN5fa75QFeXZ5qvN4SezzTPCKEn8et/p9vD49UT+gEdNgrQ89qG8QAAAABJRU5ErkJggg==);
    width: 26px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
}

.docInfo{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    margin: 0 10px;
}

.docInfo p{
    display: inline-block;
    color: #8696a0;
    line-height: 15px;
    font-size: .6875rem;
    padding: 3px 0px;
    margin: 0px;
}
.messageColumn[type="system"]{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.msgsDate {
    box-sizing: border-box;
    display: inline-block;
    flex: none;
    max-width: 100% !important;
    padding: 5px 12px 6px 12px;
    font-size: 12.5px;
    line-height: 21px;
    color: #54656f;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255,255,255, .4);
    background-color: #fffffff2;
    border-radius: 7.5px;
    box-shadow: 0 1px .5px rgba(11,20,26, .13);
}
.membPic {
    width: 28px;
    height: 28px;
    overflow: hidden;
    border-radius: 50%;
    left: -35px;
    position: absolute;
}
.membPic img {
    width: 100%;
}
.membName{
    display: flex;
    align-items: center; 
}

.membName span{
    font-size: 12.8px;
    line-height: 22px;
    font-weight: 500;
}

.membName p{
    margin: 0px 0px 0px 4px;
    color: #667781;
    font-size: 11px;
    font-weight: normal;
    white-space: nowrap;
    letter-spacing: 0.8;
}

.messageRow[type="me"] .msgBaloom.poll{
    padding: 6px 8px 0px;
    width: 336px;
}

.pollHeader{
    min-height: 28px;
    padding: 4px;
    width: 100%;
}
.pollHeader span{
    word-wrap: break-word;
    white-space: pre-wrap;
    font-size: 1rem;
    font-weight: 600;
    color: #111b21;
}
.surveyUnderHeader {
    display: flex;
    align-items: center;
    height: 24px;
    padding: 4px;
}
.surveyUnderHeader p {
    margin: 0px 0px 0px 5px;
    font-size: .75rem;
    line-height: 16px;
}
.pollCheckBox{
    width: 18px;
    margin-right: 10px;
    margin-left: 1px;
    height: 100%;
    display: flex;
    align-self: flex-start;
    padding-top: 4px;
}
.pollCheckBox .pollCheckBoxIcon{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translateZ(0);
}
.pollCheckBoxIcon > div{
    border-width: 2px;
    border-radius: 50%;
    height: 100%;
    border-color: #8696a0;
    background-color: transparent;
    border-style: solid;
    transition-duration: .14s, .14s;
    transition-property: background-color, border-color;
    position: relative;
    cursor: pointer;
}
.pollQuestBlock{
    padding: 4px;
}
.pollQuestInfoBlock{
    width: 100%;
    height: 100%;
    display: block;
    word-break: break-word;
}
.pollQuestInfoBlock .flexBox{
    display: flex;
    align-items: center;
    min-height: 20px;
}
.pollQuestInfoBlock label{
    width: 100%;
    overflow-y: hidden;
    cursor: pointer;
    line-height: 19px;
    font-size: .8875rem;
    color: #111b21;
    font-weight: 400;
}
.votesBox{
    min-width: 50px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.numVotes{
    color: #111b21;
    font-size: .75rem;
    margin-left: 5px;
}
.voteBar{
    width: 100%;
    height: 8px;
    overflow: hidden;
    margin-top: 4px;
    border-radius: 4px;
    background-color: #0b141a1a;
}
.voteBarProgress{
    height: 100%;
    transition-property: width, background-color;
    background-color: #00a884;
    width: 0%;
    border-radius: 4px;
    transition-duration: .3s;
}
.showAllVotesBtn{
    padding: 4px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #009de2;
    font-size: .875rem;
    white-space: nowrap;
    line-height: 20px;
}

.pollQuest{
    display: flex;
    align-items: center;
    padding: 12px 0px;
    height: 56px;
    width: 100%;
}
.whoVotedBox{
    display: flex;
    align-items: center;
    height: 20px;
}
.whoVoted {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    width: 18px;
    border: 1px solid #d9fdd3;
}
.whoVotedBox > .whoVoted:first-child{
    z-index: 2;
}
.whoVotedBox > .whoVoted:last-child{
    margin-left: -5px;
}
.whoVoted img{
    width: 100%;
}
.viewAllVotesBox{
    border-top: 1px solid #111b210f;
    width: 100%;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.pollQuest.voted .pollCheckBoxIcon > div{
    border-color: #00a884;
    position: relative;
    background-color:#00a884;
}
.pollQuest.voted .pollCheckBoxIcon > div::after{
    content: "";
    height: 8px;
    left: 4px;
    width: 4px;
    border-bottom-color: #d9fdd3;
    border-top-color: #d9fdd3;
    border-right-color: #d9fdd3;
    border-left-color: #d9fdd3;
    border-left: none;
    border-top: none;
    opacity: 1;
    transform: rotate(45deg);
    position: absolute;
    animation-duration: .16s;
    animation-timing-function: ease-out;
    animation-name: voting;
    top: 0.5;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}
@media screen and (min-width: 1301px) {
    .msgBaloom {
        max-width: 65%;
    }
}

@media not all and (display-mode: standalone) {
    @media screen and (min-width: 1700px) {
        .content {
            max-width: 1700px;
        }
    }
}

@media screen and (min-width: 1441px) {
    body::after {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 127px;
        content: "";
        background-color: #00a884;
    }
}

@media(max-width: 1440px){
    .content{
        margin: 0 auto;
        height: 100vh;
    }
}

@keyframes voting {
    0% {
        top: 9px;
        left: 6px;
        width: 0;
        height: 0;
    }
    100% {
        top: 1px;
        left: 4px;
        width: 4px;
        height: 8px;
    }
}


.title-conversas{
    margin-right: 37px;
    margin-left: 21px;
    font-family:  "SF Pro Text", "SF Pro Icons", system, -apple-system, system-ui, BlinkMacSystemFont, 
    "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande", "Ubuntu", "Cantarell", 
    "Fira Sans", sans-serif;
}

.sideb{
    background-color: #e9edef;
    width: 65px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    border-right: 1px solid lightgray;
   
    
}


.icon-list{
    display: flex;
    justify-content: flex-start;
    
}


.d-icon{
    width: 65px;
    height: 65px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    
}


.vert{
    margin-top: 15px;
   
   

}

.hor-icon{
    color: #54656f;
    width: 24px;
    height: 24px;
    display: flex;
    
    
    
}

.vert-icon{
    width: 24px;
    height: 24px;
    margin: 12px;
    color: #54656f;
}


.separate{
    height: 63%;
   
}




.pf-icon{
    border-radius: 50%;
    width: 35px;
    height: 35px;
}


.d-icon:hover{
    cursor: pointer;
      
}


.div-crm{
   
    margin: 12px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin-left: 15px;

}

.iconbot{
    bottom: 70px;
    position: absolute; 
    display: flex;
    justify-content: center;
}

.pfBot{
    bottom: 2px;
    position: absolute;
}
@media screen and (min-width: 1444px) {
    .separate{
        height: 73%;
    }
    .iconbot{
        bottom: 110px;
        position: absolute; 
        display: flex;
        justify-content: center;
    }
    
    .pfBot{
        bottom: 45px;
        position: absolute;
    }
}