/* Layout only: the popup takes its colors from .container_mask / .alert_popup / .action,
   all defined in theme.css. */

#cookie_consent_container{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    /* above dialg.css (5000) so nothing can be answered before the consent is given */
    z-index: 5100;
}

#cookie_consent{
    position: relative;
    width: 85%;
    max-width: 420px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    padding: 15px 5px 5px 5px;
    box-sizing: border-box;
    border-radius: 15px;
}

.cookie_consent_title{
    font-weight: bold;
    padding-bottom: 10px;
}

.cookie_consent_message{
    padding: 0 15px 10px 15px;
    text-align: left;
}
