#chat-container * :not(i){
    /* font-family: 'Ubuntu', sans-serif; */
}

.app{
    /* font-family: 'Ubuntu', sans-serif; */
}

.fullWindow {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
.fullWindow .chat-messages{
    background: rgba(255,255,255,0.25) !important;
    border: none !important;
}

.fullWindow .chat-header{
    display: none !important;
}

.fullWindow .chat-suggestions{
    background: rgba(255,255,255,0.25) !important;
}

.fullWindow .chat-footer{
    background: rgba(255,255,255,0.25) !important;
    border: none !important;
}

#chat-container .chat-box {
    width: 26em;
    height: 36em;
    position: fixed;
    bottom: 1.5em;
    right: -30em;
    display: flex;
    flex-direction: column;
    z-index: 999999999999999999;
    transition: 1s;
}

#chat-container .chat-box .chat-messages{
    flex: 1;
    background: #F6F6F6;
    padding: 1em;
    overflow-y: auto;
    border: .05em solid #ccc;
}
#chat-container .chat-box .chat-messages .chat-message{
    display: flex;
    margin-bottom: 1em;
    align-items: flex-end;
}
#chat-container .chat-box .chat-messages .chat-message.left{
    justify-content: flex-start;
}
#chat-container .chat-box .chat-messages .chat-message.rigth{
    justify-content: flex-end;
}
#chat-container .chat-box .chat-messages .chat-message .chat-picture{
    width: 4.5em;
    margin-bottom: 1em;
}
#chat-container .chat-picture i{
    font-size: 3em !important;
    color: white;
}
#chat-container .chat-box .chat-messages .chat-message .chat-picture.left{
    margin-right: 0.25em;
    margin-left: -0.75em;
}
#chat-container .chat-box .chat-messages .chat-message .chat-picture.rigth{
    margin-left: 1em;
    background: #e2854c;
    border: 4px solid white;
}
#chat-container .chat-box .chat-messages .chat-message .balloon{
    background: white;
    border-radius: .75em;
    padding: .5em 1em;
    width: 70%;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16);
    border-bottom-left-radius: 0;
}
#chat-container .chat-box .chat-messages .chat-message .balloon.user{
    background: #FF853D !important;
    color: white;
    width: auto;
    max-width: 70%;
    border-bottom-left-radius: 0.75em;
    border-bottom-right-radius: 0;
}
#chat-container .chat-box .chat-messages .chat-message .balloon .date {
    font-size: .75em;
    text-align: right;
}
#chat-container .chat-box .chat-suggestions {
    background: #ddd;
    display: flex;
    overflow-x: auto;
}
#chat-container .chat-box .chat-suggestions .chat-suggestion {
    margin: .5em;
    padding: .5em;
    border-radius: .5em;
    background: white;
    cursor: pointer;
    white-space: nowrap;
}
#chat-container .chat-box .chat-footer{
    display: flex;
    /* background: #335b8c; */
    /* padding: 1em; */
    background: white;
    padding: 0.1em 0.5em;
    margin: 0;
    /* border: 1px solid #ccc; */
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16), 0 3px 12px 0 rgba(0, 0, 0, 0.08);
}
#chat-container .chat-box .chat-footer input{
    flex: 1;
    background: white;
    font-size: 1em;
}
#chat-container input, textarea, select{
    padding: .5em 1em;
    /* border: .05em solid #335b8c; */
    border: none;
    width: 100%;
    border-radius: 2em;
}
#chat-container input:focus, textarea:focus, select:focus, button:focus{
    outline: none;
}
#chat-container .button-rounded{
    border-radius: 100%;
    font-size: 1.5em;
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    margin-left: .5em;
    border: 0;
    cursor: pointer;
}

#chat-container .button-rounded img{
    width: 80%;
}
#chat-container .button-rounded.active{
    background: lime;
    animation-name: mic;
    animation-duration: 3s;
    animation-iteration-count: 2;
}

@keyframes mic {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}

#chat-container .chat-header{
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e2854c;
    border-radius: 10px 10px 0px 0px;
}

#chat-container .chat-header .rigth{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 3.5em;
}

#chat-container .chat-header .title{
    font-size: 1.2em;
    font-weight: 800;
    color: white;
}
#chat-container .chat-header .rigth i{
    cursor: pointer;
    color: white;
    font-size: 1.5em;
}
#chat-container .chat-button{
    width: 7.5em;
    height: 6em;
    cursor: pointer;
    position: fixed;
    bottom: calc(50vh - 2em);
    right: 0;
    border: .05em solid #ccc;
    z-index: 999999999999999999;
    background: #e2854c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 0.5em;
    border-top-left-radius: 0.5em;
    flex-direction: column;
}
#chat-container .chat-button i{
    color: white;
    font-size: 2.75em !important;
    display: flex;
    justify-content: center;
    width: 3em;
    height: 1em;
}
#chat-container .chat-button .textAutomatizado{
    text-align: center;
    font-weight: bold;
    color: white;
    padding: 0.5em;
    width: 100%;
    line-height: 15px;
    font-size: 1em;
}
#chat-container .chat-button:hover{
    background: rgba(226, 133, 76, 0.75);
}
#chat-container .chat-button:hover i{
    font-size: 2.75em !important;
}
#chat-container .writting {
    padding: 1em;
    color: white;
}

#chat-container .dataMessage{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.2em;
}

#chat-container .playControls{
    margin: 0 0.5em;
    width: 2em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chat-container .playControls img{
    width: 80%;
}

#chat-container i{
    font-size: 1.2em !important;
    color: #e2854c
}

#chat-container .infoModal{
    width: 15em;
    background: #F6F6F6;
    position: fixed;
    bottom: 55vh;
    border-radius: 10px;
    right: 1.25em;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
}

#chat-container .infoModal img{
    position: absolute;
    top: -1.3em;
    left: 0.5em;
    width: 3em;
    max-height: 3em;
}

#chat-container .pico{
    position: fixed;
    bottom: 53vh;
    right: 4em;
    width: 0;
    height: 0;
    border-right: 10px solid #F6F6F6;
    border-top: 10px solid #F6F6F6;
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

#chat-container .cross{
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    width: 1em;
    height: 1em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-weight: bold;
    color: #e2854c;
}

#chat-container .textInfo{
    margin: 1em;
    color: #e2854c;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}

#chat-container a {
    background-color: #f8f9fa;
    text-decoration: none;
    display: block;
    padding: 4px 9px;
    font-size: 12px;
    margin: 10px 3px;
    border: 1px solid #3e3e3e1f;
    border-radius: 4px;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    color: rgb(128, 128, 128);
    text-align: center;
}

#chat-container ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
#chat-container ::-webkit-scrollbar-track {
    background: #bbb;
}

.fullWindow ::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
#chat-container ::-webkit-scrollbar-thumb {
    background: #e2854c;
}

#chat-container .seeMoreDiv{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#chat-container .seeMoreButton{
    margin: 0.5em 0em;
    padding: 0.5em 1em;
    text-align: center;
    background: #ccc;
    border-radius: 0.5em;
    cursor: pointer;
}

#chat-container .seeMoreButton:hover{
    background: black;
    color: white;
}

#chat-container iframe{
    width: 100%;
}

#chat-container .chat-box .chat-messages .chat-message .balloon img{
    width: 100%;
    max-width: 30em;
}

#chat-container .chat-box .chat-messages .chat-message .balloon .text{
    text-align: justify;
    padding: 0.2em 0;
    word-break: break-word;
    font-size: 1em;
}

#chat-container .chat-box .chat-messages .chat-message .balloon .text img{
    border-radius: 1em;
    box-shadow: 0 0 1em #ccc;
}

#chat-container .crossHeader{
    color: white;
    font-size: 1.5em !important;
}