/*** Layout für WebTools-Cookieconsent ***/

.wt_cookieconsent {
    width: 60%;
    background-color: white;
    border: 1px solid #e9e9e9;
    display: none;
    position: fixed;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    bottom: 0px;
    z-index: 999;
}

.wt_cookieconsent h3 {
    font-size: 30px;
}

.wt_cookieconsent .wt_cc_form {
    display: flex;
}

.wt_cookieconsent .wt_cc_form div {
    flex-grow: 1;
}

.wt_cookieconsent .wt_cc_buttons {
    display: flex;
    margin-top: 10px;
}

.wt_cookieconsent .wt_cc_buttons div {
    flex-grow: 1;
}

.wt_cookieconsent .wt_cc_buttons div:last-child {
    text-align: right;
}

.wt_cookieconsent #wt_cc_detail {
    display: none;
    border-top: 1px solid #a0a0a0;
    margin-top: 20px;
    padding: 10px;
    background-color: #f0f0f0;
}

@media (max-width: 700px) {
    .wt_cookieconsent {
        width: 100%;
        box-shadow: none;
    }

    .wt_cookieconsent #wt_cc_detail {
        max-height: 40%;
        overflow: auto;
    }
}

.wt-cookie-settings td {
    padding-right: 15px;
}

.wt_cookieconsent .wt_cc_form {
    max-width: 250px;
    margin: 0 auto;
}	

/*** Cooieconsent END ***/