.alert-wrapper-chatbot .alert-container {display: none;}
.alert-wrapper-chatbot.show-alert .alert-container {
	display: block;
    z-index: 1001;
    max-width: 320px;
    width: 100%;
    height: 160px;
    background: #e6d9ea;
    padding: 25px 25px 12px 0;
    position: relative;
    left: 0;
    bottom: 0;
    border: 1px solid rgba(0,0,0,0.06);
    -webkit-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
    -webkit-box-shadow: 0 4px 20px 0 hsla(0,0%,7%,.2);
    box-shadow: 0 4px 20px 0 hsla(0,0%,7%,.2);
    animation: 3s fadeIn;
    animation-fill-mode: forwards;  
    visibility: hidden;
}
.alert-wrapper-chatbot .alert-container .alert-info {
    display: inline-block;
    position: relative;
    background-color: rgb(82, 196, 205);
    color: White;
    margin-bottom: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px 14px;
    line-height: 20px;
    max-width: calc(100% - 10px);
}
.alert-wrapper-chatbot .alert-container .alert-controls button {
    border: 1px solid rgb(58, 58, 60);
    background-color: White;
    color: rgb(58, 58, 60);
    padding: 12px 25px;    
    border-radius: 20px;
    margin-left: 14px;
    font-weight: 500;
}
@media (min-width: 640px) {
    .alert-wrapper-chatbot.show-alert .alert-container {
        position: absolute;
        bottom: 20px;
        left: 20px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
    }
}
.alert-wrapper-chatbot .alert-container .close {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    color: white;
    cursor: pointer;
    justify-content:center;
    align-items:center;

}
.alert-wrapper-chatbot .alert-container .close:hover { opacity: 0.8; }
/* Animations to contol fadeins */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}