:root {
    --color-primary: #00395E;
    --color-primary-alt: #00395E;
    --color-primary-alt-light: #7793a7;
    --color-sec: #C39737;
    --color-sec-light: #d1bd91;
    --color-bg: #f9f9f9;
    --color-bg-light: #e9e9e9;
    --color-text: #23242b;
    --color-text-sec: #C39737;
    --color-text-trd: #00395E;
    --color-text-fth: #00395E;
    --color-footer: #e0e0e0;
    --color-warning: #EBC474;
    --color-warning-border: #916000;
    --color-danger: #d893a3;
    --color-danger-border: #b30021;
    --hh-blue: #00395E;
    --hh-gold: #C39737;

    --button-primary: #00395E;
    --button-secundary: #C39737;
    --button-disabled: #888;
    --button-disabled-outline: #555;

    --lettertype: 'Noto Sans', Poppins, Inter, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.darkmode {
    --color-primary: #23242b;
    --color-primary-alt: #C39737;
    --color-primary-alt-light: #d1bd91;
    --color-sec: #C39737;
    --color-sec-light: #d1bd91;
    --color-bg: #00395E;
    --color-bg-light: #466b85;
    --color-text: #fff;
    --color-text-sec: #C39737;
    --color-text-trd: #fff;
    --color-text-fth: #C39737;
    --button-primary: #C39737;
    --button-secundary: #f9f9f9;
    --color-footer: #244a63;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    &:focus,
    &:hover {
        outline: none !important;
    }
}

body {
    overflow: auto;
    font-family: var(--lettertype);
    background-color: var(--color-bg);
    color: var(--color-text);
}



/*    ---- HEADER ----    */
header {
    height: 50px;
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    fill: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 990;

    .headerRow {
        width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        .headerCat {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .headerItem {
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0 10px;
            padding-top: 6px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 6px solid var(--color-primary);
            color: #f9f9f9;
            fill: #f9f9f9;
            transition: 150ms background-color;

            &:hover,
            &:focus {
                border-bottom: 6px solid var(--color-sec);
                color: var(--color-sec);
                fill: var(--color-sec);
                transition: 150ms ease;
            }
        }

        img {
            height: 40px;

            &:hover,
            &:focus {
                cursor: pointer;
            }
        }

        #logo-header {
            margin-right: 10px;
        }

        .mobileOnly {
            display: none;
        }
    }

    .accessibility-button {
        height: 26px;
        width: 26px;
        margin: 0 10px;
        background-color: var(--color-primary);
        color: #f9f9f9;
        fill: #f9f9f9;
        border: none;

        >svg {
            color: #f9f9f9;
            fill: #f9f9f9;
        }

        &:hover,
        &:focus {
            fill: var(--color-sec);
            cursor: pointer;
        }
    }

    .mobileMenu {
        position: absolute;
        flex-direction: column;
        top: 50px;
        right: 0px;
        width: 200px;
        z-index: 900;
        border: 1px solid black;
        background-color: var(--color-primary);

        .headerItem {
            width: 200px;
            background-color: var(--color-primary);
            color: #f9f9f9;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            padding: 10px 20px;
        }

        .accessibility-button {
            margin: 10px 10px;

            &:first-child {
                margin-left: 20px;
            }
        }
    }

    @media screen and (max-width: 700px) {
        .headerRow {
            .mobileOnly {
                display: flex;
            }

            .mobileDropdown {
                display: none !important;
            }
        }
    }
}



/*    ---- PAGES ----    */
.pageBody {
    max-width: min(1400px, 90vw);
    min-height: calc(100vh - 230px);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-self: center;

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

        img:last-child {
            display: none;
        }
    }

    h1 {
        margin-top: 30px;
        margin-bottom: 20px;
        color: var(--color-text-sec);
        text-align: center;
        font-size: xxx-large;
    }

    h2 {
        color: var(--color-text-trd);
        font-style: italic;
        text-align: center;
        font-size: larger;
    }

    h3 {
        color: var(--color-text-fth);
        font-size: x-large;
    }

    a {
        color: var(--color-text-trd);
        text-decoration: none;

        &:hover,
        &:focus {
            color: var(--color-sec);
            text-decoration: underline;
            cursor: pointer;
        }
    }

    .highlight {
        color: var(--color-text-fth);
    }

    .row,
    .forcedRow {
        display: flex;
        flex-direction: row;
    }

    &.home {
        .pageImage {
            margin-top: 30px;
        }

        h1 {
            margin-top: 10px;
            margin-bottom: unset;
        }

        h2 {
            margin-bottom: 30px;
        }

        >div {
            margin-bottom: 20px;
        }

        #miriam-portrait {
            height: 180px;
            padding-left: 30px;
        }
    }

    &.contact {
        justify-self: left;

        .pageBodyContainer {
            width: calc(100vw - 350px);
            margin-top: 30px;
            padding: 0 100px;

            .rowImg {
                >img {
                    height: 300px;
                }
            }

            .content {
                margin: 0 40px;
            }

            .clm {
                margin-bottom: 20px;
            }
        }

        .sidepanelContainer {
            position: absolute;
            right: 0;
            width: 350px;
            min-height: calc(100vh - 230px);
            display: flex;
            flex-direction: column;
            justify-content: center;

            .sidepanel {
                width: 350px;
                border: 2px solid black;
                border-radius: 15px 0 0 15px;


                .sidepanelBody {
                    padding: 10px;

                    .groupClm {
                        border-bottom: 1px solid black;
                        padding: 6px 0;

                        &:last-child {
                            border-bottom: none;
                        }
                    }

                    .clm {
                        display: flex;
                        flex-direction: column;
                        padding: 4px 0;
                    }

                    .row {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                    }
                }

                h4 {
                    background-color: var(--color-primary);
                    border-radius: 12px 0 0 0;
                    text-align: center;
                    font-size: larger;
                    padding: 2px 0;
                    color: white;
                }

                h5 {
                    color: var(--color-primary);
                    font-size: large;
                }

                h6 {
                    font-size: medium;
                }

                .socialsImg {
                    width: 30px;
                    padding: 0;
                    margin: 6px 0;
                    margin-right: 6px;
                }
            }
        }
    }

    &.docs {
        div {
            margin-bottom: 20px;
        }
    }

    &.maintainance {
        text-align: center;

        .pageImage>img {
            height: 300px;
        }
    }
}

.darkmode {
    .pageImage {
        img:first-child {
            display: none;
        }

        img:last-child {
            display: inline;
        }
    }
}

/*
.pageBody {
    max-width: min(1400px, 90vw);
    display: flex;
    flex-direction: column;
    justify-self: center;

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

    .pageImage img:last-child {
        display: none;
    }

    .phoneOnly {
        display: none;

        @media screen and (max-width: 800px) {
            display: unset;
        }
    }

    .btn {
        margin-top: 10px;
        padding: 0.85em 2em;
        border: 2px solid black;
        border-radius: 4px;
        font-weight: 600;
        color: white;
        background-color: var(--button-primary);
        transition: 150ms ease;

        &:hover,
        &:focus {
            background-color: var(--button-secundary);
            color: var(--color-bg);
            cursor: pointer;
        }
    }

    form .field-row.incorrect,
    form .radioGroup.incorrect>label {
        >svg:first-child {
            background-color: var(--color-danger-border) !important;
            border-color: var(--color-danger-border) !important;
        }

        input {
            background-color: var(--color-danger) !important;
            border-color: var(--color-danger-border) !important;
        }

        select {
            background-color: var(--color-danger) !important;
            border-color: var(--color-danger-border) !important;
        }

    }

    &.page {
        color: var(--color-text);

        h1 {
            margin-top: 30px;
            margin-bottom: 20px;
            color: var(--color-text-sec);
            text-align: center;
            font-size: xxx-large;
        }

        h2 {
            margin-top: 30px;
            margin-bottom: 8px;
            color: var(--color-text-fth);
        }

        h3 {
            color: var(--color-text-fth);
            font-size: x-large;
        }

        .highlight {
            color: var(--color-text-fth);
        }

        .paragraph {
            padding: 10px 0
        }

        ul>li::marker {
            font-size: unset;
        }

        .centered {
            align-self: center;
            text-align: center;
        }

        #tijdslot1,
        #tijdslot2,
        #tijdslot3,
        #tijdslot4 {
            &.resVol {
                color: rgb(109, 35, 35);
            }

            &.resBijnaVol {
                color: #ffc34a;
            }
        }

        .tijdslotError {
            margin-left: 60px;
            padding: 4px;

            &.resVol {
                color: var(--color-danger-border);
            }

            &.resBijnaVol {
                color: var(--color-warning-border);
            }
        }
    }

    &.home {

        .homeClmChapter,
        .homeRowChapter {
            margin-top: 2rem;

            h2 {
                color: var(--color-sec);
                margin-bottom: 0.7rem;
            }

            p,
            ul {
                color: var(--color-text);
                margin-bottom: 0.5rem;
            }

            .listTitle {
                margin-bottom: 0;
            }
        }

        .homeRowChapter {
            display: flex;
            flex-direction: row;
            justify-content: space-between;

            .leftClm {
                padding-right: 3rem;
            }

            img {
                height: 200px;
            }
        }

        #home h1 {
            color: var(--color-sec);
            text-align: center;
            font-size: xxx-large;
        }

        #home .subtitle {
            color: var(--color-text-trd);
            font-style: italic;
            text-align: center;
            font-size: larger;
        }

        #home .spacer {
            margin-top: 3rem;
        }
    }

    &.contact {
        padding: 2rem 3rem;
        color: var(--color-text);

        h1 {
            color: var(--color-sec);
        }

        h2 {
            color: var(--color-sec);
        }

        h3 {
            color: var(--color-sec);
        }

        h4 {
            color: var(--color-text-fth);
            font-size: 1.4rem;
        }

        h6 {
            color: var(--color-text-fth);
            font-size: 1.05rem
        }

        img {
            width: 270px;
        }

        .chapterBox {
            margin-bottom: 10px;
        }

        .rowPicturebox {
            margin-right: 1rem;
        }

        .chapterTitle {
            margin: 10px 0;
        }

        .parTitle {
            margin-top: 10px;
        }

        >.row {
            display: flex;
            justify-content: space-between;
        }

        .sideBar>.groupClm {
            margin-top: 30px;

            >.groupClm {
                margin-top: 10px;
            }

            >.groupClm:first-child {
                margin-top: 0;
            }
        }
    }

    &.maintainance {
        text-align: center;

        h1 {
            font-size: 40px;
            margin-top: 30px;
            color: var(--hh-gold);
        }

        p {
            font-size: 18px;
            margin-top: 40px;
            max-width: 900px;
            color: var(--color-text);
        }

        .pageImage>img {
            height: 300px;
        }
    }

    &.login {
        padding: 40px;
        display: flex;
        align-items: center;

        .pageImage>img {
            height: 100px;
        }

        h1 {
            margin-top: 40px;
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--color-sec);
        }

        form {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: min(1000px, 90vw);
            padding: 25px;
            background-color: var(--color-bg);

            .field-group {
                width: min(400px, 100%);
                padding: 10px 0;

                .field-label {
                    padding: 3px 0;
                    font-size: 18px;
                    font-weight: bold;
                    color: var(--color-text)
                }

                .field-row {
                    display: flex;
                    flex-direction: row;
                    justify-content: left;
                    align-items: center;
                    width: 100%;
                    position: relative;
                }

                .field-icon {
                    box-sizing: border-box;
                    height: 50px;
                    width: 50px;
                    padding: 12px;
                    border-radius: 10px 0 0 10px;
                    fill: white;
                    background-color: var(--color-primary-alt);
                }

                .input-field {
                    box-sizing: border-box;
                    min-width: 200px;
                    width: min(360px, 100%);
                    height: 50px;
                    padding-left: 0.85em;
                    font-family: inherit;
                    font-size: 15px;
                    border-radius: 0 10px 10px 0;
                    border-color: #d3d3d3;
                    border-style: solid;
                    border-left: 0;
                    border-width: 2px;
                    background-color: #d3d3d3;
                    transition: 150ms ease;

                    &:autofill {
                        -webkit-box-shadow: 0 0 0 50px #d3d3d3 inset !important;

                        &:hover,
                        &:focus {
                            -webkit-box-shadow: 0 0 0 50px var(--color-primary-alt-light) inset !important;
                        }

                    }

                    &:hover,
                    &:focus {
                        border-color: var(--color-primary-alt) !important;
                        background-color: var(--color-primary-alt-light) !important;
                    }
                }
            }
        }

        .btn-row {
            margin: 20px 0;

            >button {
                margin: 0 20px;
            }
        }

        .action-row {
            position: relative;
            width: 500px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            /*
            .seperator {
                position: absolute;
                left: 50%;
            }*/
/*
        }

        .error-label {
            color: var(--color-danger-border);
            font-style: italic;
            margin-right: 20px;
            font-weight: 500;
        }

        .success-label {
            color: rgb(0, 197, 0);
            font-style: italic;
            margin-right: 20px;
            font-weight: 500;
        }

        ul.prList {
            >li.incorrect {
                &::marker {
                    content: "✘ ";
                    color: var(--color-danger-border);
                    font-size: 1.2em;
                }
            }

            >li.correct {
                &::marker {
                    content: "✔ ";
                    color: rgb(0, 197, 0);
                    font-size: 1.2em;
                }
            }
        }

        div.passwordToggle {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: 10px;

            svg {
                width: 23px;
                fill: var(--color-text);

                &:hover,
                &:focus {
                    fill: var(--color-sec);
                }
            }

            input {
                display: none;
            }
        }



    }

    .validate {
        .row {
            padding: 5px;
            align-items: center;
        }

        .field-icon {
            box-sizing: border-box;
            margin-right: 10px;
            height: 50px;
            width: 50px;
            padding: 12px;
            border-radius: 10px;
            fill: white;
            background-color: var(--color-primary-alt);
        }

        .success {
            color: rgb(0, 180, 0);
            margin-bottom: 20px;
        }
    }

    &.nieuws {
        color: var(--color-text);

        h1 {
            margin-top: 30px;
            margin-bottom: 20px;
            color: var(--color-text-sec);
            text-align: center;
            font-size: xxx-large;
        }

        .item-container {

            max-height: 200px;
            width: min(1300px, 85vw);
            border: 3px solid var(--hh-gold);
            border-radius: 25px 0 25px 0;
            background-color: var(--color-bg-light);

            .item-titleRow {
                display: flex;
                flex-direction: row;
                justify-content: space-between;

                >:first-child {
                    width: fit-content;
                    padding: 3px 15px 5px 15px;
                    border-radius: 17px 0 17px 0;
                    color: white;
                    background-color: var(--hh-gold);

                    @media screen and (max-width: 800px) {
                        font-size: medium;
                        border-radius: 17px 0 0 0;
                    }
                }

                >:last-child {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: flex-end;
                    width: fit-content;
                    padding: 3px 15px 5px 10px;
                    border-radius: 0 0 0 17px;
                    color: white;
                    background-color: var(--hh-gold);

                    >svg {
                        box-sizing: border-box;
                        margin-right: 5px;
                        height: 28px;
                        fill: white;
                    }

                    >p {
                        font-weight: 700;
                    }

                    @media screen and (max-width: 800px) {
                        font-size: medium;
                        border-radius: 0;
                        padding-right: 0;
                    }
                }
            }

            .item-row {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
                margin: 10px;
                max-height: 130px;
                overflow: auto;

                >img {
                    max-height: 130px;
                    margin-right: 20px;
                }

                @media screen and (max-width: 800px) {
                    font-size: smaller;
                    padding: 0;
                    flex-direction: column;
                    overflow: auto;
                }
            }

            &:hover,
            &:focus {
                background-color: var(--color-sec-light);
            }
        }

        .spacer {
            margin: 50px 0;
        }
    }

    #ldImage {
        width: min(450px, 90vw);
        padding: 0 30px;
    }

    #ldImage2 {
        width: 90vw;
        padding: 30px;
    }

    .footnote {
        font-style: italic;
        color: var(--button-disabled-outline);
        font-size: small;
    }
}

.darkmode .pageBody {
    .pageImage img:first-child {
        display: none;
    }

    .pageImage img:last-child {
        display: inline;
    }

    .error-label {
        color: var(--color-danger);
    }

    .success-label {
        color: rgb(0, 197, 0);
    }
}

.pageBody a,
footer a {
    color: var(--color-text-trd);
    text-decoration: none;

    &:hover,
    &:focus {
        color: var(--color-sec);
        text-decoration: underline;
        cursor: pointer;
    }
}

.row {
    display: flex;
    flex-direction: row;

    @media screen and (max-width: 800px) {
        flex-direction: column;
    }
}

.forcedRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 0;
}

.groupRow {
    display: flex;
    flex-direction: row;
}

.groupClm {
    display: flex;
    flex-direction: column;
}

.contact.pageBody {
    max-width: 90vw;
    width: 1700px;
}

*/


/*    ---- FOOTER ----    */

footer {
    &.desktopFooter {
        width: 100%;
        background-color: var(--color-footer);
        color: var(--color-text);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 20px;

        .footerRow {
            width: 100%;
            height: 160px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;

            .footerCat {
                height: 100%;
            }

            .footerCat:nth-child(1),
            .footerCat:nth-child(3) {
                max-width: 23vw;
            }

            .footerCat:nth-child(2) {
                max-width: 48vw;
                justify-content: space-between;
            }

            .row {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

            .clm {
                display: flex;
                flex-direction: column;
                align-items: baseline;
                justify-content: space-between;
                height: 100%;
            }

            .navClm {
                display: flex;
                flex-direction: column;
                justify-content: unset;
                padding: 0 10px;

                >* {
                    padding: 2px 0;
                }

                a {
                    color: var(--color-text-trd);
                    text-decoration: none;

                    &:hover,
                    &:focus {
                        color: var(--color-sec);
                        text-decoration: underline;
                        cursor: pointer;
                    }
                }

                img {
                    margin-right: 7px;
                }
            }
        }

        #footerLogo {
            >img {
                width: 160px;
            }

            img:last-child {
                display: none;
            }
        }

        .footerImg {
            height: 70px;
            margin: 0 20px;
        }

        .socialLink {
            width: 30px;
            padding: 0;
            margin: 8px 0;

            &:hover {
                cursor: pointer;

            }
        }

        .slogan {
            font-style: italic;
            text-align: center;
        }

        .footnote {
            font-size: small;
            font-style: italic;
            text-align: center;
        }
    }

    &.mobileFooter {
        display: none !important;
        width: 100%;
        background-color: var(--color-footer);
        color: var(--color-text);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 20px;

        .footerClm {
            width: 90vw;
            display: flex;
            flex-direction: column;

            .footerCat {
                height: 100%;
                margin-bottom: 20px;
            }

            .row {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 100%;
            }

            .clm {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                >b {
                    margin-bottom: 10px;
                }
            }

            .navClm {
                height: 180px;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: baseline;
                text-align: left;
                padding: 0 10px;

                >* {
                    padding: 4px 0;
                }

                >.clm {
                    height: 100%;
                }

                >.row {
                    justify-content: right;
                }

                a {
                    color: var(--color-text-trd);
                    text-decoration: none;

                    &:hover,
                    &:focus {
                        color: var(--color-sec);
                        text-decoration: underline;
                        cursor: pointer;
                    }
                }

                img {
                    margin-right: 7px;
                }
            }
        }

        #footerLogo {
            >img {
                width: 24vw;
            }

            img:last-child {
                display: none;
            }
        }

        .footerImg {
            width: 25vw;
            margin: 0 20px;
        }

        .socialLink {
            width: 35px;
            padding: 0;
            margin: 8px 0;

            &:hover {
                cursor: pointer;

            }
        }

        .slogan {
            font-style: italic;
            text-align: center;
            padding-left: 10px;
        }

        .footnote {
            font-size: small;
            font-style: italic;
            text-align: center;
        }
    }
}



.darkmode footer #footerLogo {
    img:first-child {
        display: none;
    }

    img:last-child {
        display: inline;
    }
}




/*    ---- GLOBAL STYLES / OVERRIDES----    */

li {
    list-style-position: inside;
}

ul>li::marker {
    content: "✦ ";
    color: var(--color-sec);
}

ol {
    li {
        padding: 3px 0;
    }

    li::marker {
        color: var(--color-sec);
        font-weight: 600;
    }
}

ol.sublist,
ul.sublist {
    margin-left: 40px;
}

section.warningBox,
section.dangerBox {
    border: 3px solid;
    border-radius: 7px;
    padding: 7px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    color: black;
    font-weight: 600;
    text-align: center;

    h1 {
        margin: 0 !important;
        padding: 0 !important;
        font-size: larger !important;
        text-transform: unset !important;
    }
}

section.warningBox {
    border-color: var(--color-warning-border) !important;
    background-color: var(--color-warning) !important;
    color: var(--color-warning-border) !important;

    h1 {
        color: var(--color-warning-border) !important;
    }
}

section.dangerBox {
    border-color: var(--color-danger-border) !important;
    background-color: var(--color-danger) !important;
    color: var(--color-danger-border) !important;

    h1 {
        color: var(--color-danger-border) !important;
    }
}


/*    ---- MOBILE DEVICES ----    */

@media screen and (max-width: 800px) {
    .pageBody {
        max-width: unset;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-self: center;

        h1 {
            font-size: 36px;
        }

        h2 {
            font-size: medium;
        }

        h3 {
            font-size: larger;
        }

        p,
        li,
        b,
        i {
            font-size: small;
        }

        .row {
            display: flex;
            flex-direction: column;
        }

        &.home {
            h1 {
                font-size: 30px;
            }

            h2 {
                margin-bottom: 15px;
            }

            .pageImage {
                margin-top: 30px;

                >img {
                    width: 50vw;
                }
            }

            #miriam-portrait {
                height: auto;
                width: 60vw;
                padding-left: unset;
                align-self: center;
                margin-top: 10px;
            }
        }

        &.maintainance {
            h1 {
                font-size: x-large
            }

            .pageImage>img {
                height: 180px;
            }
        }
    }

    .biggerText {

        p,
        li,
        b,
        i {
            font-size: medium;
        }
    }


    .pageBody {
        &.contact {
            width: 100vw;
            display: flex;
            flex-direction: column;


            .pageBodyContainer {
                width: unset;
                padding: 0 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;

                .row {
                    flex-direction: column-reverse;
                    margin-bottom: 50px;

                    .content {
                        margin-bottom: 15px;
                    }
                }

                .rowImg {
                    >img {
                        max-width: 80vw;
                        height: auto;
                    }
                }
            }

            .sidepanelContainer {
                position: unset;

                .sidepanel {
                    border-radius: unset;

                    h4 {
                        border-radius: unset;
                    }
                }
            }
        }

    }

    /* FOOTER */
    footer {

        &.desktopFooter {
            display: none !important;
        }

        &.mobileFooter {
            display: flex !important;
        }
    }

    .hideOnMobile {
        display: none;
    }
}