/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* GENERAL */

div.is-layout-constrained > * {
    max-width: 1080px;
}

.justify-content {
    display: flex;
    justify-content: center;
}

input,
textarea {
    padding: 4px 8px;
}

.entry-content p {
    margin-bottom: 24px !important;
}

input[readonly], input[disabled],
textarea[readonly], textarea[disabled] {
    border: none;
    border-bottom: 1px solid #DDD;
}

hr {
    border-color: #27385B;
    background-color: #27385B;
    margin: 20px 0;
}

.wp-element-button,
.wp-block-button__link {
    background-color: #5FC883;
}

/* HEADER & FOOTER */
header {
    color: #FFF;
    background-color: #27385B;
    padding-top: var(--wp--style--root--padding-bottom);
}
header img {
    max-width: 180px;
}
footer {
    color: #FFF;
    background-color: #5FC883;
    padding-bottom: var(--wp--style--root--padding-bottom);
}
.wp-site-blocks {
    padding: 0;
}

/* COOKIE */
.cookie-consent {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0, 0, 0.5);
    z-index: 9999;
}
.cookie-consent >div {
    position: fixed;
    width: 80%;
    max-height: 75vh;
    overflow-y: auto;
    bottom: 0;
    padding: 24px;
    margin: 0 10%;
    background-color: #fff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.cookie-consent table {
    font-size: 0.8rem;
}
@media only screen and (max-width: 991px)  {
    .cookie-consent >div {
        width: 90%;
        margin: 0 5%;
    }
}

/* SDI */

.container.sdi .icon-heading {
    font-size: 60px;
    color: #27385B;
}
.container.sdi .form-group {
    display: flex;
    flex-direction: column;
}
.container.sdi label {
    display: block;
    font-weight: 600;
}
.container.sdi input {
    min-height: 32px;
    font-size: 16px;
}
.container.sdi input[type='checkbox'] {
    display: inline-block;
    min-height: 0;
}
.container.sdi input[type='checkbox'] + label {
    display: inline-block;
}
.container.sdi textarea {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 32px;
    font-size: 16px;
}
/*
.container.sdi .result {
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 15px 0 #999;
}
 */