﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*--------------------------------------------*/
/*------------------- Main -------------------*/
/*--------------------------------------------*/

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(204,206,204);
    overflow: hidden;
}

.mainWrapper {
    max-width: 1280px;
    padding: 30px 40px 30px 40px;
    width: 100%;
}

@media only screen and (max-width: 640px) {
    .mainWrapper {
        padding: 30px 20px 30px 20px;
        max-width: 1040px;
    }
}

/*Text*/

p, a, span, input, label, textarea, li {
    font-family: opensans;
    color: rgb(60,72,58);
    font-size: 16px;
}

h1, h2 {
    font-family: maiandra;
    font-weight: normal;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

li {
    list-style-position: inside;
}

/*article*/

article {
    max-width: 1000px;
    width: 100%;
    float: left;
}

    article h1 {
        margin-bottom: 20px;
        color: rgb(60,72,58);
    }

    article h2 {
        margin-bottom: 20px;
        color: rgb(60,72,58);
    }

    article p {
        padding-bottom: 20px;
        width: 100%;
        max-width: 1000px;
        color: rgb(60,72,58);
    }

    article img {
        width: 100%;
        max-width: 450px;
        float: right;
        border-radius: 4px;
        margin: 0px 0px 20px 20px;
    }

main article:last-child p:last-child {
    padding-bottom: 0;
}

main article p:last-child {
    padding-bottom: 30px;
}

article *.noMargin {
    margin: 0;
}

@media only screen and (max-width: 768px) {
    article img {
        max-width: initial;
    }
}

/*Logo*/

.logo.quote h1 {
    font-size: 50px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(180,180,180);
}

/*Icons*/

.icon {
    font-family: icons;
    font-size: 20px;
    vertical-align: top;
    padding: 0px 10px 0px 10px;
}

/*Align*/

.left * {
    float: left;
}

.right * {
    float: right;
}

/*button*/

.button {
    display: inline-block;
    border-radius: 4px;
    padding: 7px 15px 7px 15px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .button.dark {
        background-color: rgb(60,72,58);
        border: 1px solid rgb(60,72,58);
        color: rgb(191,191,191);
    }

        .button.dark label {
            color: rgb(191,191,191);
        }

    .button.light {
        background-color: rgb(204,206,204);
        border: 1px solid rgb(204,206,204);
        color: rgb(60,72,58);
    }

        .button.light.border {
            border: 1px solid rgb(60,72,58);
        }

    .button.dark.border {
        border: 1px solid rgb(204,206,204);
    }

    .button.dark:hover {
        background-color: rgb(73,80,70);
        cursor: pointer;
    }

    .button.light:hover {
        background-color: rgb(188,190,187);
        cursor: pointer;
    }

    .button.icon {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 31px;
        padding: 0;
    }

    .button .chevron {
        width: 22px;
    }

        .button .chevron span {
            height: 2px;
            width: 13px;
        }

    .button.dark .chevron span {
        background-color: rgb(204,206,204);
    }

    .button.small {
        padding: 3px 10px 4px 10px;
    }

        .button.small .icon {
            font-size: 16px;
            line-height: 22px;
        }

    .button.dark .icon {
        color: rgb(204,206,204);
    }

    .button .icon {
        float: left;
        padding-left: 0;
    }

    .button * {
        cursor: pointer;
    }

@media only screen and (max-width: 768px) {
    .button .textSpan {
        display: none;
    }

    .button .icon {
        padding: 0;
    }
}

/*special*/

.hidden {
    display: none;
}

/*--------------------------------------------*/
/*------------------- Nav --------------------*/
/*--------------------------------------------*/

.navWrapper {
    width: 100vw;
    z-index: 1000;
    position: fixed;
}

.mainNav, .subNav {
    display: flex;
    align-items: center;
    padding: 0px 40px 0px 40px;
}

.mainNav {
    width: 100%;
    height: 80px;
    background-color: rgb(60,72,58);
    color: rgb(191,191,191);
}

    .mainNav a, .mainNav h1, .mainNav span {
        color: rgb(191,191,191);
    }

    .mainNav .left {
        width: 300px;
    }

    .mainNav .right {
        width: calc(100% - 300px);
    }

    .mainNav .logo {
        line-height: 50px;
    }

        .mainNav .logo .icon {
            font-size: 50px;
            padding: 0px 20px 0px 0px;
            vertical-align: bottom
        }

    .mainNav .avatar {
        height: 35px;
        width: 35px;
        border: 1px solid rgb(240,206,204);
        border-radius: 50%;
        margin-left: 10px;
        background-size: cover;
        background-position: 50%;
    }

    .mainNav .right .section {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 40px;
        border-left: 1px solid rgb(180,180,180);
        padding-left: 10px;
        margin-left: 10px;
    }

        .mainNav .right .section:last-of-type {
            border-left: none;
        }

    .mainNav .right a {
        padding: 0px 10px 0px 10px;
    }

        .mainNav .right a:hover {
            text-decoration: underline;
        }

        .mainNav .right a .icon {
            padding: 0px 0px 0px 20px;
        }

    .mainNav .right .button {
        background-color: rgba(0,0,0,0.0);
        border: 1px solid rgb(60,72,58);
        padding: 5px 10px 5px 10px;
    }

    .mainNav .right a.button:hover {
        text-decoration: none;
    }

    .mainNav .button:hover {
        border: 1px solid rgb(240,206,204)
    }

    .mainNav .right .hamburgerButton {
        display: none;
    }

.subNav {
    width: 100%;
    height: 50px;
    background-color: rgb(124,132,122);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.31);
}

    .subNav a {
        display: block;
        float: left;
        height: 50px;
        line-height: 50px;
        margin-right: 30px;
        color: rgb(204,206,204);
    }

        .subNav a.active {
            border-bottom: 2px solid rgb(204,206,204);
        }

        .subNav a:hover {
            color: rgb(191,191,191);
        }

    .subNav .dropdown {
        position: relative;
        display: inline-block;
    }

    .subNav .dropdownContent {
        position: absolute;
        top: 49px;
        left: -20px;
        display: none;
        background-color: rgb(60,72,58);
        border-radius: 0px 0px 4px 4px;
        box-shadow: 0px 3px 6px rgba(0,0,0,0.3);
        padding: 0px 20px 0px 20px;
    }

        .subNav .dropdownContent a {
            margin-right: 0;
            min-width: 160px;
        }

            .subNav .dropdownContent a.active {
                border-bottom: 1px solid rgb(180,180,180);
            }

    .subNav .dropdown:hover .dropdownContent {
        display: block;
    }

    .subNav .dropdown .chevron {
        display: none;
    }

@media only screen and (max-width: 1150px) {
    .mainNav .section:last-of-type {
        display: none;
    }

    .navWrapper .mainNav .section {
        border-left: none;
    }
}

@media only screen and (max-width: 768px) {
    .navWrapper .mainNav .section {
        display: none;
    }

    .mainNav {
        position: relative;
        z-index: 999;
    }

        .mainNav .left {
            width: calc(100% - 50px);
        }

            .mainNav .left h2.logo {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        .mainNav .right {
            width: 50px;
        }

            .mainNav .right .hamburgerButton {
                display: block;
            }

    .mainNav {
        border-bottom: 1px solid rgb(180,180,180);
        box-shadow: 0px 3px 6px rgba(0,0,0,0.31);
    }

    .subNav {
        display: block;
        position: absolute;
        height: initial;
        padding: 0px;
        border-top: 0;
        border-bottom: 1px solid rgb(180,180,180);
        top: -450px;
        z-index: 998;
        transition: top 0.3s;
        background-image: url(../img/logo.svg);
        background-repeat: no-repeat;
        background-position: 50vw 50%;
        background-size: auto 100%;
    }

        .subNav.active {
            top: 80px;
        }

        .subNav a {
            height: 60px;
            line-height: 60px;
            width: 100%;
            margin-right: 0;
            padding: 0px 40px 0px 40px;
            background-color: rgba(124,132,122,0.95);
        }

            .subNav a.active {
                border-bottom: none;
                background-color: rgba(142,148,140,0.95);
            }

        .subNav .dropdown {
            display: block;
            float: left;
            width: 100%;
        }

            .subNav .dropdown:hover .dropdownContent {
                display: block;
            }

            .subNav .dropdown.active .dropdownContent {
                max-height: 200px;
            }

            .subNav .dropdown.active:hover .dropdownContent {
                display: block;
            }

            .subNav .dropdown a {
                width: calc(100% - 108px);
            }

        .subNav .dropdownContent {
            position: relative;
            display: block;
            float: left;
            max-height: 0;
            overflow: hidden;
            width: 100%;
            left: 0;
            top: 0;
            box-shadow: inset 0px 0px 3px rgba(0,0,0,0.3);
            padding: 0;
            background: none;
            transition: max-height 0.4s;
        }

        .subNav .dropdown .dropdownContent a {
            width: 100%;
            position: relative;
            padding-left: 60px;
            background-color: rgba(60,72,58,00.95);
        }

            .subNav .dropdown .dropdownContent a.active {
                border-bottom: none;
                background-color: rgba(142,148,140,0.95);
            }

        .subNav .dropdown .chevron {
            width: 108px;
            height: 60px;
            display: block;
            float: left;
            padding: 0px 40px 0px 40px;
            background-color: rgba(124,132,122,0.95);
        }

            .subNav .dropdown .chevron span {
                background-color: rgb(204,206,204);
            }

                .subNav .dropdown .chevron span:first-child {
                    left: 40px;
                }

                .subNav .dropdown .chevron span:last-child {
                    right: 40px;
                }
}

@media only screen and (max-width: 640px) {
    .mainNav {
        height: 60px;
        padding: 0px 20px 0px 20px;
    }

        .mainNav .left .logo {
            font-size: 27px;
        }

            .mainNav .left .logo .icon {
                font-size: 40px;
                padding: 0px 15px 0px 0px;
            }

    .subNav.active {
        top: 60px;
    }

    .subNav a {
        padding: 0px 20px 0px 20px;
    }

    .subNav .dropdown a {
        width: calc(100% - 68px);
    }

    .subNav .dropdown .dropdownContent a {
        padding: 0px 20px 0px 40px;
    }

    .subNav .dropdown .chevron {
        width: 68px;
        padding: 0px 20px 0px 20px;
    }

        .subNav .dropdown .chevron span:first-child {
            left: 20px;
        }

        .subNav .dropdown .chevron span:last-child {
            right: 20px;
        }
}

/*--------------------------------------------*/
/*------------------- Home -------------------*/
/*--------------------------------------------*/

/*homeSpan*/

.homeSpan {
    position: relative;
    width: 100%;
    height: 898px;
    padding-top: 130px;
    background-size: cover;
    background-position: 50%;
    border-bottom: 10px solid rgb(60,72,58);
}

    .homeSpan .homeBanner {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 170px;
        width: 100%;
        background-color: rgba(124,132,122,0.8);
        color: rgb(191,191,191);
    }

        .homeSpan .homeBanner p {
            color: rgb(191,191,191);
        }

        .homeSpan .homeBanner .icon {
            font-size: 110px;
            color: rgb(191,191,191);
            padding-right: 30px;
        }

        .homeSpan .homeBanner .logo.quote {
            margin-right: 60px;
        }

        .homeSpan .homeBanner .button.dark:first-of-type {
            margin-right: 40px;
        }

@media only screen and (max-width: 1150px) {
    .homeSpan {
        height: 698px;
    }

        .homeSpan .homeBanner {
            height: initial;
            padding: 40px 0px 0px 0px;
        }

        .homeSpan .homeActions {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px 0px 20px 0px;
            margin-top: 40px;
            background-color: rgba(124,132,122,0.8);
            border-top: 1px solid rgb(180,180,180);
        }
}

@media only screen and (max-width: 768px) {
    .homeSpan {
        height: 598px;
    }

        .homeSpan .homeBanner {
            padding: 20px 0px 0px 0px;
        }

        .homeSpan .homeActions {
            margin-top: 20px;
        }

        .homeSpan .homeBanner .icon {
            font-size: 75px;
        }

        .homeSpan .homeBanner h1 {
            font-size: 40px;
        }
}

@media only screen and (max-width: 640px) {
    .homeSpan {
        height: 100vh;
        max-height: 575px;
        min-height: 498px;
    }

        .homeSpan .homeBanner p {
            display: none;
        }

        .homeSpan .homeBanner .icon {
            font-size: 50px;
        }

        .homeSpan .homeBanner .logo.quote {
            margin-right: 0;
        }

        .homeSpan .logo.quote h1 {
            font-size: 35px;
            padding-bottom: 0;
            margin-bottom: 0;
            border-bottom: 0;
        }

        .homeSpan .homeActions {
            padding: 15px;
            flex-direction: column;
        }

            .homeSpan .homeActions .button {
                display: block;
                width: 100%;
                max-width: 320px;
                text-align: center;
            }

        .homeSpan .homeBanner .homeActions .button:first-of-type {
            margin: 0px 0px 20px 0px
        }
}

@media only screen and (max-width: 425px) {
    .homeSpan .homeBanner .logo h1 {
        font-size: 27px;
    }

    .homeSpan .homeBanner .icon {
        font-size: 40px;
    }
}


/*Home Article*/
.homeArticleWrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 0px 30px 0px;
}

    .homeArticleWrapper article {
        padding-right: 40px;
        width: 70%;
        float: left;
    }

        .homeArticleWrapper article h1 {
            margin-bottom: 30px;
        }

    .homeArticleWrapper .right {
        width: 30%;
        background-image: url('../img/home/profile.jpeg');
        background-size: cover;
        background-position: 50%;
        float: right;
        border-radius: 4px;
    }

@media only screen and (max-width: 768px) {
    .homeArticleWrapper .right {
        width: 100%;
        height: 250px;
    }

    .homeArticleWrapper article {
        padding-right: 0px;
        width: 100%;
    }
}

/*--------------------------------------------*/
/*------------------ Content -----------------*/
/*--------------------------------------------*/


/*span Image*/

.spanImage {
    width: 100%;
    max-width: 1000px;
    height: 350px;
    background-size: cover;
    border-radius: 4px;
    margin-bottom: 30px;
    float: left;
}

/*Slider*/

.wideSlider {
    position: relative;
    width: 100%;
    height: 410px;
    border-bottom: 10px solid rgb(180,180,180);
    overflow: hidden;
}

    .wideSlider .slide {
        display: flex;
        justify-content: center;
        position: absolute;
        top: 0;
        bottom: 0;
        left: -100%;
        right: 0;
        width: 100%;
        height: 400px;
        background-size: cover;
        background-position: 50%;
        overflow: hidden;
        transition: left 1s;
    }

        .wideSlider .slide.active {
            left: 0;
        }

        .wideSlider .slide.previous {
            left: 100%;
        }

        .wideSlider .slide .wrapper {
            height: 100%;
            width: 100vw;
            max-width: 1280px;
            padding: 40px 40px 0px 40px;
        }

        .wideSlider .slide .description {
            width: 100%;
            max-width: 600px;
            background-color: rgba(60,72,58,0.84);
            border-radius: 4px;
            border: 1px solid rgb(204,206,204);
            padding: 20px 25px 20px 25px;
        }

            .wideSlider .slide .description article h1, .wideSlider .slide .description article p {
                color: rgb(204,206,204);
            }

            .wideSlider .slide .description article p {
                display: -webkit-box;
                height: 88px;
                overflow: hidden;
                padding-bottom: 0;
                margin-bottom: 20px;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                text-overflow: ellipsis;
            }

    .wideSlider .dots {
        position: absolute;
        display: flex;
        justify-content: center;
        bottom: 0;
        width: 100%;
        padding-bottom: 30px;
    }

        .wideSlider .dots a {
            display: block;
            height: 20px;
            width: 20px;
            background-color: rgb(204,206,204);
            border: 2px solid rgb(204,206,204);
            border-radius: 50%;
            box-shadow: 0 0 6px rgb(60,72,58);
            margin-right: 20px;
        }

            .wideSlider .dots a:last-of-type {
                margin-right: 0;
            }

            .wideSlider .dots a.active {
                background-color: rgb(60,72,58);
            }

@media only screen and (max-width: 640px) {
    .wideSlider .slide .wrapper {
        padding: 40px 20px 0px 20px;
    }
}

/*Wide Span*/

.wideSpan {
    position: relative;
    width: 100%;
    height: 410px;
    border-bottom: 10px solid rgb(180,180,180);
    overflow: hidden;
    background-size: cover;
    background-position: 50%;
}

    .wideSpan .wrapper {
        height: 100%;
        width: 100vw;
        max-width: 1280px;
        padding: 40px 40px 0px 40px;
        margin: 0 auto;
    }

    .wideSpan .description {
        width: 100%;
        max-width: 600px;
        background-color: rgba(60,72,58,0.84);
        border-radius: 4px;
        border: 1px solid rgb(204,206,204);
        padding: 20px 25px 20px 25px;
        float: right;
    }

        .wideSpan .description article h1, .wideSpan .description article p {
            color: rgb(204,206,204);
        }

        .wideSpan .description article p {
            display: -webkit-box;
            height: 88px;
            overflow: hidden;
            padding-bottom: 0;
            margin-bottom: 20px;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
        }

@media only screen and (max-width: 640px) {
    .wideSpan .wrapper {
        padding: 40px 20px 0px 20px;
    }
}

/*Link Set*/

.imgLinkSet {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 20px;
    padding: 0px 40px 0px 40px;
    float: left;
}

.imgLink {
    position: relative;
    width: calc(33.333333% - 40px);
    height: 440px;
    background-size: cover;
    background-position: 50%;
    float: left;
    border-radius: 10px;
    margin: 20px;
}

    .imgLink .caption {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(60,72,58,0.8);
        padding: 30px 50px 30px 50px;
        border-top: 5px solid rgb(122,134,124);
        border-radius: 0px 0px 10px 10px;
    }


    .imgLink h1 {
        color: rgb(204,206,204);
        margin-right: auto;
    }

    .imgLink .button {
        float: right;
    }

@media only screen and (max-width: 1150px) {
    .imgLinkSet {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0px 20px 0px 20px;
        margin-bottom: 0;
    }

    .imgLink {
        width: calc(50% - 40px);
    }

        .imgLink .caption {
            border-radius: 0px 0px 10px 10px;
            padding: 20px 25px 20px 25px;
        }
}

@media only screen and (max-width: 900px) {
    .imgLinkSet {
        margin-top: -10px;
        margin-bottom: -10px;
    }

    .imgLink {
        width: 100%;
    }
}

@media only screen and (max-width: 640px) {
    .imgLinkSet {
        padding: 0px;
    }
}

/*Dog List*/

.dogList {
    width: 100%;
    max-width: 1000px;
    float: left;
}

    .dogList .dog {
        background-color: rgb(180,180,180);
        border-radius: 10px;
        width: calc(50% - 30px);
        float: left;
        margin-bottom: 40px;
    }

        .dogList .dog:nth-child(odd) {
            margin-right: 30px;
        }

        .dogList .dog:last-child {
            margin-bottom: 10px;
        }

.dog .picture {
    width: 100%;
    height: 240px;
    line-height: 200px;
    text-align: center;
    float: left;
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
    color: rgba(0,0,0,0.0);
    background-size: cover;
    /*background-position: 50%;*/
}

    .dog .picture.noImage {
        background-color: rgb(124,132,122);
    }

.dog .description {
    float: left;
    padding: 20px;
    width: 100%;
}

    .dog .description article {
        float: left;
        width: initial;
    }

        .dog .description article p:last-child {
            padding-bottom: 0;
        }

    .dog .description .button {
        float: right;
    }

@media only screen and (max-width: 768px) {
    .dogList .dog {
        width: 100%;
    }

    .picture {
        width: 100%;
        margin: 0;
    }

    .dogList .dog:nth-child(odd) {
        margin-right: 0px;
    }
}

/*review*/

.reviewList {
    float: left;
    width: 100%;
}

.review {
    margin-bottom: 40px;
}

.reviewList .review:last-of-type {
    margin-bottom: 0;
}

.reviewTitle {
    padding-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .reviewTitle .icon {
        display: inline-block;
        width: 140px;
        padding-left: 0;
        color: rgb(28,128,235);
        padding-right: 20px;
    }

.review .nameDate {
    padding-bottom: 15px;
}

    .review .nameDate span:first-child {
        border-right: 1px solid rgb(60,72,58);
        padding-right: 10px;
        margin-right: 10px;
    }

.review .reviewBody {
    position: relative;
    max-height: 150px;
    overflow: hidden;
    padding-bottom: 0;
    transition: all 0.4s;
}

    .review .reviewBody.active {
        max-height: 300px;
        padding-bottom: 40px;
        overflow: auto;
    }

    .review .reviewBody article img {
        max-height: 180px;
        width: initial;
        object-fit: contain;
    }

/*Table*/

.tableWrapper {
    border-top: 4px solid rgb(188,190,187);
    border-bottom: 4px solid rgb(188,190,187);
    border-radius: 4px;
    overflow-x: auto;
    max-width: 1000px;
    margin-top: 40px;
    width: 100%;
    float: left;
}

table {
    width: 100%;
    max-width: 1000px;
    border-collapse: collapse;
}

    table thead td {
        background-color: rgb(188,190,187);
        padding-top: 6px;
    }

    table tr {
        border-bottom: 1px solid rgb(188,190,187);
    }

    table td {
        padding: 10px;
        font-family: opensans;
        font-size: 16px;
        min-width: 220px;
    }

        table td:first-child {
            padding-left: 20px;
        }

        table td:last-child {
            padding-right: 20px;
        }

    table tr td:first-of-type {
        min-width: 150px;
    }

    table td .icon {
        font-size: 16px;
        vertical-align: initial;
        cursor: pointer;
        padding-left: 0;
        padding-right: 20px;
    }

    table tfoot tr {
        border-bottom: none;
    }

    table tfoot td {
        background-color: rgb(188,190,187);
        padding: 6px 10px 6px 0px;
    }

/*pageIndex*/

.pageIndex .button {
    height: 30px;
    width: 30px;
    padding: 0;
    line-height: 29px;
    margin: 2px 10px -2px 0px;
}

    .pageIndex .button .chevron {
        margin: 4px 0px 0px 3px;
    }

/*pageSize*/

.pageSize form {
    width: initial;
    float: right;
}

    .pageSize form input {
        width: 60px;
        float: right;
    }

    .pageSize form label {
        max-width: calc(100% - 60px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        float: left;
        padding: 0px 20px 0px 0px;
        line-height: 30px;
    }

/*popup*/

.popup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2000;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

    .popup.active {
        opacity: 1;
        pointer-events: all;
    }

.window::-webkit-scrollbar {
    display: none;
}

.window {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 786px;
    max-width: 1000px;
    overflow-y: auto;
    background-color: rgb(204,206,204);
    border-radius: 10px;
}

    .window .windowContent {
        margin-top: -47px;
        padding: 40px;
        width: 100%;
    }


    .window .picture {
        height: 100%;
        width: 100%;
        border-radius: 10px 10px 0px 0px;
        border: none;
        margin-top: -47px;
    }

    .window article {
        padding: 20px 20px 20px 20px;
    }

    .window .close {
        width: 47px;
        height: 47px;
        position: sticky;
        top: 0;
        padding: 10px;
        background-color: rgb(204,206,204);
        border-radius: 0px 10px 0px 10px;
        margin-left: auto;
        border-bottom: 1px solid rgb(180,180,180);
        border-left: 1px solid rgb(180,180,180);
    }

.close:hover {
    background-color: rgb(180,180,180);
    border-color: rgb(204,206,204);
}

@media only screen and (max-width: 768px) {
    .window {
        flex-direction: column;
    }
}

@media only screen and (max-width: 640px) {
    .popup {
        padding: 20px;
    }

    .window .windowContent {
        padding: 30px 20px 20px 20px;
    }
}

/*Contact*/

.contactWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    grid-gap: 30px
}

    .contactWrapper article {
        grid-column: 1 / 4;
        max-width: initial;
    }

        .contactWrapper article p {
            max-width: initial;
            padding: 0;
        }

        .contactWrapper article p:last-child {
            padding: 0;
        }

        .contactWrapper article p .spacer {
            display: inline-block;
            height: 4px;
            width: 60px;
            background-color: rgb(124,132,122);
            margin-top: 30px;
            border-radius: 2px
        }

    .contactWrapper p {
        text-align: center;
    }

        .contactWrapper p .icon {
            width: 70px;
            display: inline-block;
            padding: 20px;
            background-color: rgb(124,132,122);
            border-radius: 50%;
            font-size: 30px;
            margin-bottom: 20px;
        }

@media only screen and (max-width: 640px) {
    .contactWrapper {
        grid-template-columns: repeat(2, 1fr);
    }

        .contactWrapper article {
            grid-column: 1 / 3;
        }
}

@media only screen and (max-width: 480px) {
    .contactWrapper {
        grid-template-columns: repeat(1, 1fr);
    }

        .contactWrapper article {
            grid-column: 1 / 2;
        }
}


/*--------------------------------------------*/
/*-------------- Default Pages ---------------*/
/*--------------------------------------------*/

/*Page Title*/

.pageTitle {
    position: relative;
    height: 500px;
    width: 100%;
    padding-top: 130px;
    background-size: cover;
    background-position: 50%;
    border-bottom: 10px solid rgb(60,72,58);
}

    .pageTitle .pageTitleBanner {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(122,132,124,0.8);
    }

        .pageTitle .pageTitleBanner .wrapper {
            width: 100%;
            max-width: 1280px;
            padding: 30px 40px 30px 40px;
            margin: 0 auto;
        }

    .pageTitle h1 {
        font-size: 50px;
        color: rgb(204,206,204);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pageTitle .icon {
        font-size: 65px;
        color: rgb(204,206,204);
    }

@media only screen and (max-width: 640px) {
    .pageTitle {
        height: 300px;
    }

        .pageTitle .pageTitleBanner .wrapper {
            padding: 20px;
        }

        .pageTitle h1 {
            font-size: 35px;
        }

        .pageTitle .icon {
            font-size: 50px;
        }
}

/*page Sub Nav*/

.pageSubNav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: rgb(124,132,122);
}

    .pageSubNav .wrapper {
        width: 100%;
        max-width: 1280px;
        padding: 0px 40px 0px 40px;
        margin: auto;
    }

    .pageSubNav a {
        color: rgb(204,206,204);
        border-right: 1px solid rgb(180,180,180);
        padding-right: 15px;
        margin-right: 15px;
    }

        .pageSubNav a:hover {
            text-decoration: underline;
        }

        .pageSubNav a:last-of-type {
            border-right: none;
            padding-right: 0px;
            margin-right: 0px;
        }

/*no content*/

.noContent {
    width: 100%;
    padding: 20px;
    text-align: center;
    background-color: rgb(122,132,124);
    border-radius: 4px;
}

    .noContent p, .noContent .icon {
        color: rgb(204,206,204);
    }

/*--------------------------------------------*/
/*------------------ Nieuws  -----------------*/
/*--------------------------------------------*/

.newsItem {
    width: 100%;
    float: left;
}

    .newsItem .newsDate {
        min-width: 90px;
        background-color: rgb(240,206,204);
        border-radius: 4px;
        float: left;
        padding: 10px;
        text-align: center;
        font-family: opensans;
        margin: 0px 20px 20px 0px;
    }

        .newsItem .newsDate span:first-child {
            font-size: 30px;
        }



/*--------------------------------------------*/
/*------------------ Input  ------------------*/
/*--------------------------------------------*/

/*form*/

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(60,72,58);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(60,72,58);
}

input[type="text"], textarea, input[type="email"], input[type="password"], input[type="number"] {
    border: 1px solid rgb(60,72,58);
    border-radius: 4px;
    padding: 3px 10px 4px 10px;
    color: rgb(60,72,58);
    background-color: rgb(204,206,204);
    max-width: 250px;
    outline: none;
}

    input[type="text"]:focus, textarea:focus, input[type="email"]:focus, input[type="password"]:focus {
        background-color: rgb(190,190,190);
    }

textarea {
    max-width: initial;
    min-height: 180px;
    resize: none;
}

form label {
    display: block;
    width: 100%;
    padding-bottom: 15px;
}

    form label.button {
        width: initial;
    }

form .formSection {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(60,72,58);
}

form .inputGroup {
    float: left;
    width: 50%;
    padding: 0px 40px 20px 0px;
}

    form .inputGroup:last-of-type {
        padding-right: 0;
    }

    form .inputGroup.wide {
        width: 100%;
        padding-right: 0;
        max-width: initial;
        clear: both;
    }

    form .inputGroup.small {
        max-width: 290px;
    }

form .formSection .inputGroup.small:last-of-type {
    max-width: 250px;
}

form .inputGroup textarea, form .inputGroup input[type="text"], form .inputGroup input[type="email"], form .inputGroup input[type="password"] {
    width: 100%;
}

form h2 {
    width: 100%;
    margin-bottom: 30px;
    color: rgb(60,72,58);
}

form .submit .button {
    margin-right: 15px;
    width: initial;
}

    form .submit .button:last-child {
        margin-right: 0px;
    }

.formStatus {
    width: 100%;
    border-radius: 4px;
    background-color: rgb(28,128,235);
    animation: formstatus 4s;
    color: rgb(16,83,164);
    font-family: opensans;
    font-weight: bold;
    font-size: 0px;
    margin-bottom: 0px;
}

@keyframes formstatus {
    0% {
        padding: 0;
        font-size: 0;
        margin-bottom: 0px
    }

    20% {
        padding: 15px;
        font-size: 16px;
        margin-bottom: 30px;
    }

    80% {
        padding: 15px;
        font-size: 16px;
        margin-bottom: 30px;
    }

    100% {
        padding: 0;
        font-size: 0;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 768px) {
    form .inputGroup {
        width: 100%;
        padding-right: 0;
    }

    form .submit {
        width: 100%;
    }

        form .submit .button {
            width: 50%;
            margin-right: 0;
            float: left;
        }

            form .submit .button:first-of-type {
                border-radius: 4px 0px 0px 4px;
            }

            form .submit .button:last-of-type {
                border-radius: 0px 4px 4px 0px;
            }

        form .submit.single .button {
            width: 100%;
            border-radius: 4px;
        }
}

@media only screen and (max-width: 640px) {
    form input[type="text"], form input[type="email"] {
        max-width: initial;
    }
}

.secondaryEmail {
    display: none;
}

/*Hidden Toggle*/
.hideToggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
}

    .hideToggle.hidden {
        display: none;
    }

    .hideToggle:after {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        background-color: rgb(112,112,112);
        max-width: 1000px;
    }

    .hideToggle:before {
        position: absolute;
        content: '';
        top: -50px;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(to top, rgba(204,206,204,1.0), rgba(204,206,204,0.0));
    }

    .hideToggle .button {
        position: relative;
        z-index: 2;
        border: 1px solid rgb(112,112,112);
    }

/*Select*/

.select {
    position: relative;
}

    .select .selectTitle {
        position: relative;
        z-index: 2;
    }

    .select .button {
        height: 31px;
        width: 31px;
        border-radius: 0px 4px 4px 0px;
    }

    .select label {
        display: inline-block;
        border: 1px solid rgb(60,72,58);
        border-radius: 4px;
        padding: 3px 10px 4px 10px;
        color: rgb(60,72,58);
        background-color: rgb(204,206,204);
        border-radius: 4px 0px 0px 4px;
        max-width: calc(100% - 31px);
        width: 150px;
        cursor: pointer;
    }

    .select .selectContent {
        position: absolute;
        top: 27px;
        left: 0;
        right: 0;
        border-radius: 0px 0px 4px 4px;
        background-color: rgb(180,180,180);
        border: 1px solid rgb(60,72,58);
        padding-top: 0px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.2s;
    }

        .select .selectContent label {
            display: block;
            width: 100%;
            padding: 3px 10px 4px 10px;
            border: none;
            background: none;
            border-radius: 0px;
            max-width: initial;
            min-width: initial;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .select.active .selectContent {
        max-height: 120px;
        padding-top: 4px;
    }


/*toolbar*/

.toolbar {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 50px;
    margin-bottom: 30px;
    background-color: rgb(124,132,122);
}

    .toolbar.wide {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .toolbar.top {
        margin-top: -30px;
    }

    .toolbar .wrapper {
        width: 100%;
        max-width: 1280px;
        padding: 0px 40px 0px 40px;
        margin: auto;
    }

    .toolbar .left {
        margin-right: auto;
        max-width: 50%;
    }

    .toolbar .right {
        margin-left: auto;
        max-width: 50%;
    }

@media only screen and (max-width: 640px) {
    .toolbar .wrapper {
        padding: 0px 20px 0px 20px;
    }
}

/*hamburgerbutton*/

.hamburgerButton {
    position: relative;
    height: 28px;
    width: 35px;
    cursor: pointer;
}

    .hamburgerButton span {
        display: block;
        position: absolute;
        background-color: rgb(204,206,204);
        width: 35px;
        height: 3px;
        border-radius: 4px;
        transition: all 0.3s;
    }

        .hamburgerButton span:first-child {
            top: 0;
        }

        .hamburgerButton span:nth-child(2), .hamburgerButton span:nth-child(3) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburgerButton span:last-child {
            bottom: 0;
        }

    .hamburgerButton.clicked span:first-child, .hamburgerButton.clicked span:last-child {
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
    }

    .hamburgerButton.clicked span:nth-child(2) {
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburgerButton.clicked span:nth-child(3) {
        transform: translateY(-50%) rotate(-45deg);
    }

/*cross*/

.cross {
    position: relative;
    height: 27px;
    width: 27px;
    cursor: pointer;
}

    .cross span {
        top: 50%;
        left: 50%;
        display: block;
        position: absolute;
        background-color: rgb(204,206,204);
        width: 35px;
        height: 3px;
        border-radius: 4px;
        transition: all 0.3s;
        background-color: rgb(60,72,58);
    }

        .cross span:first-child {
            transform: translateY(-50%) translateX(-50%) rotate(45deg);
        }

        .cross span:last-child {
            transform: translateY(-50%) translateX(-50%) rotate(-45deg);
        }

/*chevron*/

.chevron {
    position: relative;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

    .chevron span {
        top: 50%;
        display: block;
        position: absolute;
        background-color: rgb(204,206,204);
        width: 17px;
        height: 3px;
        border-radius: 4px;
        transition: all 0.2s;
        background-color: rgb(60,72,58);
        cursor: pointer;
    }

        .chevron span:first-child {
            transform: translateY(-50%) rotate(45deg);
            left: 0;
        }

        .chevron span:last-child {
            transform: translateY(-50%) rotate(-45deg);
            right: 0;
        }

    .chevron.clicked span:first-child {
        transform: translateY(-50%) rotate(-45deg);
    }

    .chevron.clicked span:last-child {
        transform: translateY(-50%) rotate(45deg);
    }

    .chevron.left {
        transform: rotate(90deg);
    }

    .chevron.right {
        transform: rotate(-90deg);
    }

    .chevron.up {
        transform: rotate(180deg);
    }

/*star input*/

.starInput .star {
    padding: 0;
    transition: color 0.2s;
    cursor: pointer;
}

.star.hover {
    color: rgb(28,128,235);
}

.star.clicked {
    color: rgb(28,128,235);
}

/*File input*/

.fileInput .filename {
    width: initial;
    float: left;
    line-height: 38px;
    padding-bottom: 0;
    padding-left: 20px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .fileInput .filename.active {
        max-width: calc(100% - 195px);
    }

.fileInput .button {
    float: left;
}

/*login*/

.loginWrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    background-image: url('../img/login/background.jpg');
    background-size: cover;
    background-position: 50%;
}

.loginForm {
    height: 100%;
    width: 100%;
    max-width: 400px;
    background-color: rgb(255,255,255);
    float: left;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 10px solid rgb(60,72,58);
}

    .loginForm input {
        max-width: initial;
    }

@media only screen and (max-width: 640px) {
    .loginForm {
        max-width: initial;
    }
}

/*--------------------------------------------*/
/*------------------- Footer -----------------*/
/*--------------------------------------------*/

footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: rgb(60,72,58);
    padding: 40px 0px 40px 0px;
}

.footerWrapper {
    width: 100%;
    max-width: 1280px;
    padding: 0px 40px 0px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
}

.footerSection h2 {
    color: rgb(204,206,204);
    border-bottom: 1px solid rgb(240,206,204);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.footerSection p, .footerSection .icon {
    color: rgb(204,206,204);
}

.footerSection .sitemap a {
    display: block;
    color: rgb(204,206,204);
    font-weight: bold;
    margin-bottom: 3px;
}

    .footerSection .sitemap a:hover {
        text-decoration: underline;
    }

.footerSection .sitemap .sub {
    padding-left: 20px;
    font-weight: normal;
}

.footerSection .icon {
    padding: 0px 15px 0px 0px;
}

@media only screen and (max-width: 900px) {
    .footerWrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }
}

@media only screen and (max-width: 640px) {
    .footerWrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        padding: 0px 20px 0px 20px;
    }
}

/*fonts*/

@font-face {
    font-family: maiandra;
    src: url('../fonts/maiandra.woff');
}

@font-face {
    font-family: opensans;
    src: url('../fonts/opensans.woff');
}


@font-face {
    font-family: icons;
    src: url('../fonts/icons.woff');
}
