@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(-30px);
    }
    80% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

body {
    margin: 0px;
}

#cookies-dialog-box {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    background: #eee;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
    color: #444;
    font-size: 14px;
    line-height: 1.4;
    padding: 1em 0em;
    text-align: center;
    animation: 1s ease-out 0s 1 slideInFromLeft;
}

#cookies-dialog-box div {
    font-family: opensans, helvetica, arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.45px;
    color: #333;
    max-width: 800px;
}

.cookies-terms {
    margin: auto;
    width: 100%;
    padding: 16px;
    text-align: justify;
}

.cookies-button {
    padding: 8px 16px;
    border-radius: 3px;
    font-family: opensans, helvetica, arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #fff !important;
    background-color: #0069de;
    border: 0;
    cursor: pointer;
    width: 80px;
    margin: auto;
    text-transform: uppercase;
}

.imbot-chat > .imbot-chat-maximized {
    z-index: 9999999999999 !important;
}

.imbot-chat > .imbot-chat-minimized {
    z-index: 9999999999999 !important;
}