/* * * * * * * * * * * * */
/* * * * banner  * * * * */
/* * * * * * * * * * * * */
.cookie-consent-banner {
    width: 100%;
    padding: 1rem;
    text-align: center;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    z-index: 10000;
    position: fixed;
    bottom: 0;
    left: 0;

    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.cookie-consent-banner a {
    cursor: pointer;
}

.cookie-consent-banner-content {
    max-width: 650px;
    margin: 0 auto;
}

.cookie-consent-banner-content > h3 {
    margin: 0 0 1rem 0;
    font-size: 16pt;
}

.cookie-consent-banner-content > p {
    margin: 0 0 1rem 0;
    font-size: 12pt;
}

.cookie-consent-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: .75rem;
}

.cookie-consent-banner-setting-button,
.cookie-consent-banner-accept-button {
    display: flex;
    align-self: stretch;
    align-items: center;
    text-decoration: none;
    padding: .75rem 2rem;
}

.cookie-consent-banner-setting-button {
    margin-right: .5rem;
}

.cookie-consent-banner-accept-button {
    margin-left: .5rem;
}

.cookie-consent-banner-reject-button {
    text-decoration: underline;
}

/* * * * * * * * * * * * */
/* * * * dialog  * * * * */
/* * * * * * * * * * * * */

.cookie-consent-dialog {
    margin: 15% auto;
    padding: 20px;
    max-width: 650px;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    border-top: 5px solid;

    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.cookie-consent-dialog a {
    cursor: pointer;
}

.cookie-consent-dialog-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100000;
}

.cookie-consent-dialog-title {
    display: flex;
    justify-content: space-between;
}

.cookie-consent-dialog-title > h3 {
    margin-bottom: 1rem;
    font-size: 16pt;
}

.cookie-consent-dialog-title > a {
    margin-bottom: 1rem;
    line-height: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-consent-dialog-wrapper > p {
    margin-bottom: 1rem;
    font-size: 12pt;
}

.cookie-consent-dialog-consents {
    margin-bottom: 1rem;
}

.cookie-consent-dialog-consent {
    display: flex;
    justify-content: start;
    align-items: center;
}

.cookie-consent-dialog-consent input[type=checkbox] {
    transform: scale(2);
}

p.cookie-consent-dialog-consent-title {
    margin-left: 1.5rem;
    font-weight: bold;
}

p.cookie-consent-dialog-consent-description {
    margin-left: 1.5rem;
}

.cookie-consent-dialog-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cookie-consent-dialog-accept-selected-button,
.cookie-consent-dialog-accept-all-button {
    display: flex;
    align-self: stretch;
    align-items: center;
    text-decoration: none;
    padding: .75rem 2rem;
}

.cookie-consent-dialog-accept-selected-button {
    margin-right: .5rem;
}

.cookie-consent-dialog-accept-all-button {
    margin-left: .5rem;
}
