* {
    box-sizing: border-box;
}

body {
    font-family: "Calibri", "Roboto", sans-serif;
}

.chat_window {
    position: fixed;
    z-index: 111;
    width: calc(100% - 30px);
    max-width: 700px;
    height: 70vh;
    border-radius: 10px;
    background-color: #fff;
    right: 15px;
    bottom: 80px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
    background-color: #f8f8f8;
    overflow: hidden;
    display: none;
}

.enc_window {
    position: fixed;
    z-index: 111;
    max-width: calc(100vw - 100px);
    border-radius: 10px;
    background-color: #fff;
    left: 70px;
    bottom: 65px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
    background-color: #f8f8f8;
    overflow: hidden;
    display: none;
}

.enc_gesicht {
    font-size: 36px;
    margin-left: 5px;
    margin-right: 5px;
    color: #ababab;
    cursor: pointer;
}

@media (max-width: 1550px) {
    .chat_window {
        bottom: 70px;
    }
}

.top_menu {
    background-color: #fff;
    width: 100%;
    padding: 10px 0 10px;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
}

.top_menu .buttons {
    margin-top: 3px;
    margin-left: calc(100% - 40px);
    position: absolute;
}

.top_menu .buttons .button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}


.top_menu .title {
    text-align: center;
    color: #021440;
    font-size: 20px;
}

.messages {
    position: relative;
    list-style: none;
    padding: 20px 10px 0 10px;
    margin: 0;
    height: calc(70vh - 107px);
    overflow-y: scroll;
}

.messages .message {
    clear: both;
    overflow: hidden;
    margin-bottom: 5px;
    transition: all 0.5s linear;
    opacity: 0;
}

.messages .message.left .avatar {
    float: left;
}

.messages .message.left .avatar img {
    border-radius: 20px;
    width: 40px;
}

.messages .message.left .text_wrapper {
    background-color: #021440;
    margin-left: 10px;
}

.messages .message.left .text {
    color: #ffffff;;
}

.messages .message.left .text a {
    text-decoration: underline;
    color: #ffffff;
}

.messages .message.left .text input, select {
    margin-top: 3px;
    width: 100%
}

.messages .message.left .text button {
    margin-top: 3px;
    width: 100%;
    border: 0;
    padding: 1px 32px;
    color: #021440;
    transition: 0.4s;
    border-radius: 3px;
    border: 2px solid #021440;
    background: #fff;
}

.messages .message.right .avatar {
    background-color:#f1f1f8;
    float: right;
}

.messages .message.right .avatar img{
    content: url('https://tecnologiadenario.com.co/40px-User.png');
    border-radius: 20px;
}

.messages .message.right .text_wrapper {
    background-color: #b1b2b3;
    margin-right: 10px;
    float: right;
}

.messages .message.right .text {
    color: #000000;
}

.messages .message.appeared {
    opacity: 1;
}

.messages .message .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
}

.messages .message .text_wrapper {
    display: inline-block;
    padding: 10px;
    border-radius: 6px;
    max-width: calc(100% - 65px);
    min-width: 100px;
    position: relative;
}

.messages .message .text_wrapper::after,
.messages .message .text_wrapper:before {
    top: 7px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.messages .message .text_wrapper::after {
    border-width: 13px;
    margin-top: 0px;
}

.messages .message .text_wrapper::before {
    border-width: 15px;
    margin-top: -2px;
}

.messages .message .text_wrapper .text {
    font-size: 16px;
    font-weight: 100;
}

.bottom_wrapper {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 5px 20px;
    position: absolute;
    bottom: 0;
}

.bottom_wrapper .message_input_wrapper {
    display: inline-block;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #bcbdc0;
    width: calc(100% - 120px);
    position: relative;
    padding: 0 20px;
}

.bottom_wrapper .message_input_wrapper .message_input {
    border: none;
    height: 100%;
    box-sizing: border-box;
    width: calc(100% - 40px);
    position: absolute;
    outline-width: 0;
    color: gray;
}

.bottom_wrapper .send_message {
    width: 110px;
    height: 40px;
    display: inline-block;
    border-radius: 6px;
    background-color: #021440;
    border: 2px solid #021440;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s linear;
    text-align: center;
    float: right;
}

.bottom_wrapper .send_message:hover {
    color: #021440;
    background-color: #fff;
}

.bottom_wrapper .send_message .text {
    font-size: 18px;
    font-weight: 300;
    display: inline-block;
    line-height: 35px;
}

.message_template {
    display: none;
}

.pointerr {
    cursor: pointer;
}
.disabledButtonSend {
    pointer-events: none;
    opacity: 0.4;
}
.xxxxx{
    color: #004A81;
    color: #007BC4;
    color: #021440;
    color: #021440;
    color: #002D4F;
}