#ama-convo-widget {
    position: fixed;
    bottom: 70vh;
    right: -20px;
    animation-name: ama-convo-widget_enter;
    animation-duration: 1.5s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
    color: rgb(255, 255, 255);
}

#ama-convo-widget img {
    animation-name: ama-convo-widget_rotate;
    animation-duration: 1.5s;
    /* transform: rotate(20deg); */
    transform: rotate(0deg);
}

.ama-cw-msg-box {
    background: #e9e9e9;
    color: #130606;
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    animation-name: ama-convo-widget_msg-appear;
    animation-duration: 2s;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
}

.ama-success {
    background: #8a9900;
    color: #f5f5f5;
}

.ama-error {
    background: #990500;
    color: #f5f5f5;
}

.ama-infos {
    background: #002999;
    color: #f5f5f5;
}

.ama-warning {
    background: #f7bd1e;
    color: #2c1d09;
}

.ama-cw-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 -4px;
    margin-top: 8px;
    font-weight: 600;
}

.ama-cw-button {
    cursor: pointer;
    padding: 4px;
    margin-right: 12px;
    display: block;
    text-decoration: none;
}

.ama-cw-button-yes {
    color: #FF1B96;
    font-weight: 700;
}

@keyframes ama-convo-widget_enter {
    from {
        right: -200px;
    }
    to {
        right: -20px;
    }
}

@keyframes ama-convo-widget_rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        /* transform: rotate(20deg); */
        transform: rotate(0deg);
    }
}

@keyframes ama-convo-widget_msg-appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}