/**************** CHAT WHATSAPP **************/
div#boton-whatsapp {
    position: fixed;
    bottom: 65px;
    right: 15px;
}

div#boton-whatsapp p {
    margin: 0;
}

div#imagen-usuario {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color);
    border-radius: 50px;
}

div#chat-frame {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

div#heading-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div#heading-section img {
    max-width: 25px;
}

div#nombre-farmacia {
    padding: 0 17px;
}

div#nombre-farmacia p {
    line-height: 20px !important;
    font-size: 16px;
}

p.titulo-chat {
    font-weight: bold;
}

p.subtitulo-whatsapp {
    font-size: 16px;
}

div#heading-section {
    background: white;
    padding: 10px;
}

div#content-section-chat {
    background: brown;
}

p#mensaje-chat {
    color: black;
    background: #dcf8ca;
    max-width: 74%;
    border-radius: 10px;
    padding: 11px;
    margin-left: 5px !important;
    box-shadow: 5px 5px 5px #0000002b;
    font-weight: 500;
    line-height: 20px;
    font-size: 16px;
}

div#content-section-chat {
    background: #ede9e3;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 250px;
    padding: 14px;
    box-shadow: inset 0 0 10px #00000029;
}

div#boton-whatsapp {
    max-width: 300px;
}

div#content-section-chat img {
    max-width: 20px;
    background: var(--color);
    border-radius: 19px;
    padding: 5px;
    box-sizing: content-box;
    box-shadow: 3px 3px 10px #00000070;
}

div#user-input {
    display: flex;
    justify-content: center;
}

div#user-input button#send-button {
    background: #00b397;
    width: 52px;
    height: 52px;
    text-align: center;
    display: flex;
    justify-content: center;
    text-decoration: none;
    border-radius: 35px;
}

div#user-input input {
    border: none;
}

div#user-input {
    padding: 5px;
}

div#close-button {
    font-size: 38px;
    color: grey;
    margin-right: 7px;
}

div#close-button:hover {
    cursor: pointer;
}

div#boton-icono a {
    text-decoration: none;
}

div#boton-icono i {
    background: #48c859;
    padding: 13px;
    border-radius: 50px;
    width: 65px;
    height: 65px;
    border: solid 4px white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.356);
    color: white;
}

div#boton-icono {
    display: flex;
    justify-content: end;
    margin: 11px;
    margin-right: 0;
    font-size: 40px;
}

div#chat-frame {
    box-shadow: 0 0 15px #0000004a;
    border: solid 1px #cecece;
}

div#chat-frame {
    height: 0;
    width: 0;
    opacity: 0;
    transition: all .3s;
}

div#chat-frame.show {
    height: auto;
    width: auto;
    transition: all .3s;
    opacity: 1;
}

div#boton-icono i:hover {
    cursor: pointer;
}

div#boton-icono.hide {
    display: none;
}

div#nombre-farmacia {
    padding-left: 0;
}