.seo-block-footer {
    display: none;
}

.hiddenTxt.open {
    background-color: var(--background);
}
.hiddenTxt .seo-block-footer {
    display: block;
}
.hiddenTxt .uitklap {
    display: none;
    color: var(--primary-text);
    padding: 1em 0 2em 0;
    border-bottom: 1px solid var(--border);
}
.hiddenTxt .seo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 10px;
    margin: 0;
    cursor: pointer;
}
.hiddenTxt .seo-title img {
    -webkit-transition: -webkit-transform 200ms ease;
    transition: -webkit-transform 200ms ease;
    -o-transition: transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease;
}
.hiddenTxt.open .seo-title {
    background-color: var(--hiddenTxt-bg);
}
.hiddenTxt.open .seo-title img {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.hiddenTxt .uitklap > div {
    max-width: 90%;
    margin: 0  auto;
}
.hiddenTxt .uitklap > div:last-child {
    text-align: center;
    color: var(--seo-links);
    font-size: 1.4rem;
}
.uitklap div:last-child a {
    color: inherit;
}
.hiddenTxt .uitklap .flex {
    gap: 10%;
}
.hiddenTxt .uitklap .flex > div {
    flex: 45%;
}
.hiddenTxt .uitklap h2 {
    font-size: 2rem;
}
.hiddenTxt .uitklap p {
    font-size: 1.4rem;
}

@media screen and (max-width: 1080px) {
    .hiddenTxt .uitklap .flex {
        gap: 6%;
    }
    .hiddenTxt .uitklap .flex > div {
        flex: 47%;
    }
}
@media screen and (max-width: 768px) {
    .hiddenTxt .seo-title { 
        padding: 0.8em 0;
    }
    .hiddenTxt .uitklap .flex {
        flex-wrap: wrap;
        gap: 0;
    }
    .hiddenTxt .uitklap .flex > div {
        flex: 100%;
    }
}

@media screen and (max-width: 500px) {
    .hiddenTxt .seo-title { 
        font-size: 1.4rem;
    }
}