html,
body {
    color: var(--text-color-dark);
    margin: 0;
    scroll-behavior: smooth;
    background: var(--bg-color);
    overflow-x: hidden;
}

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

body {
    overflow-x: hidden;
    width: 100vw;
}

.no-scroll {
    overflow: hidden;
}

.content-wrapper {
    padding: 0 1.25rem 0;
    margin-top: 6rem;
    box-sizing: border-box;
    font-family: var(--main-font);
    position: relative;
}

.content-wrapper--gray-bg {
    background-color: 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;
}


.cta-action__button.review__button.ghost {
    opacity: 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: 540px) {
    .home .content-wrapper {
        margin-top: 5rem;
    }
}

@media (min-width: 768px) {

    .home .content-wrapper,
    .single .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) 0;
        margin-top: 0;
    }

    .content-wrapper:first-of-type {
        margin-top: 0;
    }

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

@media (min-width: 1300px) {
    .home .content-wrapper:first-of-type {
        background-image: var(--top-images);
        background-repeat: no-repeat, no-repeat;
        background-size: 600px 800px;
        background-position: calc(50vw - 1100px) top, calc(50vw + 500px) top;
    }
}