html,
body {
    color: var(--text-color-dark);
    scroll-behavior: smooth;
}

html {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
    background: var(--bg-color);
}

.no-scroll {
    overflow: hidden;
}

.content-wrapper--gray-bg {
    background: var(--bg-color-alternate);
    padding: 2rem 1.25rem 0;
}

.content-wrapper--full-height {
    min-height: calc(100vh - 5rem);
    /* screen height minus top nav */
    display: flex;
}

.content-wrapper--center {
    justify-content: center;
}

.content a {
    color: var(--text-color-dark);
}

.content img {
    max-width: 100%;
    height: auto;
}

.hide {
    display: none;
}

button:focus {
    outline: none;
}

.content-wrapper .field__casinologo {
    width: 100%;
    object-fit: contain;
    height: 64px;
    margin-top: 0;
    margin-bottom: 0;
}

/* Den her kommer tilbage og bider mig i røven(, men jeg har leget med den Nicolai...) */

@media (max-width: 740px) {
    iframe {
        max-width: 100%;
        height: calc((100vw - 6rem) * 0.5625);
    }
}

@media (min-width: 768px) {

    .home .content-wrapper {
        margin-top: 0;
    }
}

@media (min-width: 1040px) {
    .seo__content-wrapper:last-of-type {
        padding-bottom: 3rem;
    }

    .content-wrapper {
        padding: 2rem calc((100vw - (1040px - 2.5rem))*0.5) 3rem;
        margin-top: 0;
    }

    .content-wrapper.seo__content-wrapper {
        padding-top: 3rem;
    }
}