#mtcookie {
    background: rgba(0, 0, 0, .9);
    bottom: 0;
    font-family: sans-serif;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 10000000000;
    padding: 0 12px;
}

#mtcookie.dismissed {
    position: static;
    display: block;
}

#mtcookie .mtcookie-inner {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0px auto;
    max-width: 900px;
    width: 100%;
}

#mtcookie .mtcookie-message {
    max-width: 670px;
    margin: 12px 0;
    line-height: 170%;
    font-size: 12px;
    color: #fff;
    text-align: left;
}

#mtcookie .mtcookie-message a {
    color: #fff;
    text-decoration: underline;
}

#mtcookie .mtcookie-message a:hover {
    text-decoration: none;
}

#mtcookie .mtcookie-message.loading::after {
    background-image: url(/static/mtcookieconsent/img/ajax-loader.gif);
    background-size: contain;
    width: 11px;
    height: 11px;
    display: inline-block;
    position: relative;
    top: 2px;
    left: 5px;
    content: '';
}

#mtcookie form {
    margin: 12px;
    white-space: nowrap;
    flex-grow: 1;
    text-align: right;
}

#mtcookie form button {
    font-weight: bold;
    background-image: none;
    background-color: black;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    padding: 8px 11px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 6px;
    transition: background-color 300ms;
    border: 1px solid black;
    opacity: 0.9;
}

#mtcookie form button:active {
    outline: none;
}

#mtcookie form button:hover {
    background-color: #282828;
    opacity: 1;
}

#mtcookie .mtcookie-more {
    background: #fff;
    border: 1px solid #ccc;
    display: none;
    height: 40em;
    line-height: normal;
    margin: 0 auto 1em;
    max-height: 50vh;
    max-width: 900px;
    overflow: auto;
    padding: 0 10px;
    text-align: left;
    overflow-x: hidden;
}

@media (max-width: 600px) {
    #mtcookie .mtcookie-inner {
        flex-wrap: wrap;
    }
    
    #mtcookie .mtcookie-message {
        width: 100%;
        max-width: 100%;
    }
    
    #mtcookie form {
        text-align: center;
        margin: 0 12px 12px;
    }
}