/*
 __            __  __                        __  __                        __
|  |          |  ||  |                      |  ||  |                      |  |
 |  |        |  |  |  |        ____        |  |  |  |        ____        |  |
  |  |      |  |    |  |      |    |      |  |    |  |      |    |      |  |
   |  |    |  |      |  |    |  ||  |    |  |      |  |    |  ||  |    |  |
    |  |  |  |        |  |  |  |  |  |  |  |        |  |  |  |  |  |  |  |
     |  ||  |          |  ||  |    |  ||  |          |  ||  |    |  ||  |
      |____|            |____|      |____|            |____|      |____|
	  
Copyright (C) 2019 Vanparijs Wim Websites www.vanparijswimwebsites.com
*/

/*
 * Color scheme: http://paletton.com/
 */

/******************
 *                *
 * Basic elements *
 *                *
 ******************/
html {
    color: #000;
    font-size: 100%;
    font-family: ubuntu, sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    line-height: 150%;
    overflow-x: hidden;
    text-align: justify;
    min-height: 100%;
}

html#single-screen, #single-screen body {
    height: 100%;
    position: relative;
    overflow: hidden;
}

body {
    padding: 0;
    margin: 0;
	position: absolute;
	min-height: 100%;
	min-width: 100%;
	max-width: 100vw;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

h1, h2, h3 {
    font-family: ubuntu, sans-serif;
    line-height: 110%;
}

h1 {
    font-size: 1.9em;
    font-weight: 700;
    border-left: solid 0.2em #90D68D;
    padding: 0.75em 0.8em;
    margin: 0;
    margin-bottom: 0.25em;
}

h1.no-border{
    border-left: none;
    padding: 0.5em 0;
}

h1.with-image {
    position: relative;
    padding-left: 0.5em;
    margin-left: 2.5em;
}

h1.with-image::before {
    content: '';
    display: block;
    width: 2.1em;
    height: 2.1em;
    position: absolute;
    top: 0.07em;
    left: -2.85em;
    background-repeat: no-repeat;
    background-size: 2.1em;
}

h1.with-image.tool::before {
    background-image: url(/static/icons/tool.png);
}

h1.with-image.ticket::before {
    background-image: url(/static/icons/ticket.png);
    transform: rotate(-60deg);
    top: 0.15em;
    left: -2.5em;
    width: 1.85em;
    height: 1.85em;
    background-size: 1.85em;
}

p {
    margin-left: 2em;
    text-align: justify;
    font-family: ubuntu, sans-serif;
}

p.with-image {
    margin-left: 6.4em;
}

section p:nth-child(2) {
    margin-top: 0;
}

.emphasize {
    display: inline-block;
}

a {
    text-decoration: underline;
    cursor: pointer;
    color: #999;
}

a:hover, a:active, a:focus {
    text-decoration: none;
}

a.working {
    cursor: wait !important;
    animation: pulse 750ms infinite;
}

a img {
	border: none;
}

img { /*Responsive images*/
    max-width: 100%;
    height: auto;
}



/***********
 *         *
 * GENERAL *
 *         *
 ***********/

.max-width {
    max-width: 70em;
    margin: 1em auto;
    z-index: 10;
}

.page-center .outer-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.page-center .inner-wrapper {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}



/***************
 *             *
 * Bg & Header *
 *             *
 ***************/

.bg {
    position: absolute;
}

#bg1 {
    transform: scale(1.75);
    top: -25%;
    right: -15%;
}

#bg2 {
    transform: scale(1.5);
    left: -10%;
    bottom: -15%;
}

header {
    position: relative;
    z-index: 25;
    margin-top: 0 !important;
    padding: 0;
    text-align: center;
}

header #mobile-header {
    display: none;
}

#desktop-logo {
    padding-top: 1em;
    padding-bottom: 0.5em;
}

#desktop-logo #logo {
    max-height: 3em;
    width: auto;
}

header #current-page {
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
}



/**************
 *            *
 * Navigation *
 *            *
 **************/

nav {
    position: fixed;
    top: 0;
    background-color: #90D68D;
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    z-index: 100;

    transition:  opacity 250ms linear, visibility 0ms linear 250ms;
}

html.nav-open nav {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;

    transition-delay: 0ms;
}

nav a {
    display: inline-block;
    position: relative;
    padding: 0.6em;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    font-size: 1.5em;
}

nav a.active {
    color: #fff;
}

nav a.active::before {
    display: block;
    content: '';
    position: absolute;
    z-index: -1;

    top: 0.2em;
    left: 0;
    width: 75%;
    height: 62.5%;
    padding: 0.2em 0.75em;

    background-image: url(/static/images/active_black.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

nav footer {
    background-image: none;
    background-color: #000;
    position: fixed;
    bottom: 0;
    padding: 0.5em;

    text-align: right;
}

nav footer a {
    position: initial;
    margin: 0;
    padding: 0.5em;
}

nav footer a:last-child {
    margin-right: 3em;
}

nav footer a img {
    max-width: 1.25em;
}

#open-nav {
    position: fixed;
    top: 2em;
    right: 2.7em;
    cursor: pointer;
    background-color: #90D68D;
    z-index: 100;
    padding: 0.5em 0.25em 0.25em 0.25em;
}

#open-nav img {
    max-width: 1.5em;
}

#open-nav img.close {
    display: none;
}

html.nav-open #open-nav {
    background-color: #fff;

    /*Fix difference in close icon*/
    padding: 0.25em;
}

html.nav-open #open-nav img.open {
    display: none;
}

html.nav-open #open-nav img.close {
    display: block;
}

#jump-icons {
    position: fixed;
    top: 5em;
    right: 2.85em;
    z-index: 75;
}

#jump-icons a {
    text-decoration: none;
}

#jump-icons img {
    display: inline-block;
    max-width: 1.75em;
    margin-bottom: 0.25em;
}



/****************
 *              *
 * Page Content *
 *              *
 ****************/

html:not(#single-screen) #content {
    position: relative;
	overflow: hidden;    
	min-height: calc(100vh - 3em);
}

section {
    position: relative;
    z-index: 10;
    margin-left: 5em;
    margin-right: 7em;
}

#page-content {
    position: relative;
    overflow: hidden;
}

#single-screen #page-content{
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%; 
    height: 100%; 
}

.pure-button.black {
    background-color: #000;
    color: #90D68D;
    font-weight: bold;
    border-radius: 0;
    padding: 0.4em 0.5em;
}

.visible-0 {
    background-color: #444;
    color: #fff;
}



/********
 *      *
 * Form *
 *      *
 ********/

form#contact {
    text-align: right;
    margin-top: 5em;
}

.input-wrapper {
    margin: 1em 0;
    max-width: 30em;
    text-align: right;
}

.textarea-wrapper {
    max-width: 50em;
}

label {
    display: inline-block;
    margin-right: 1em;
    margin-top: 0.25em;
}

.textarea-wrapper label {
    margin-right: 37em;
}

label.error {
    display: block;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    text-align: right;
    padding-right: 0.5em;
}

input, textarea {
    width: 15em;
    border: solid 1px #000;
    box-shadow: none;
    padding: 0.25em;
    vertical-align: top;
}

select {
    width: 15.5em;
    padding: 0.25em;
    border: solid 1px #000;
}

form.inline-required .required-wrapper {
    position: relative;
}

form.inline-required .required-wrapper input[type="text"], 
form.inline-required .required-wrapper input[type="number"], 
form.inline-required .required-wrapper input[type="date"], 
form.inline-required .required-wrapper input[type="email"], 
form.inline-required .required-wrapper input[type="url"], 
form.inline-required .required-wrapper input[type="password"] {
    width: 13.7em;
    padding-right: 1.5em;
    position: relative;
}

form.inline-required .required-wrapper::after {
    display: block;
    position: absolute;
    content: '\f2f3';
    top: 0.2em;
    right: 0.2em;
    width: 1.5em;
    height: 1.5em;
    color: #999;

    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
}

input[type="checkbox"] {
    width: 1em;
    margin-right: 14em;
    margin-top: 0.6em;
}

input.error, textarea.error {
    display: unset;
    padding: 0.25em;
    margin: 0;
    background-image: none;
    font-weight: normal;
    font-size: 100%;
    border-width: 1px;
    border-radius: 0;
}

textarea.error {
    background-position-y: 5px;
}

.button {
    display: inline-block;
    background-color: #000;
    color: #90D68D;
    padding: 1em;
    font-weight: bold;
    text-decoration: none;
    width: auto;
}

.align-with-inputs {
    margin-left: 15em; 
}



/**********
 *        *
 * Footer *
 *        *
 **********/

footer {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #000;
    color: #fff;
}

#single-screen footer {
    position: fixed;
    bottom: 0;
}

footer a {
    color: #fff;
}

footer .wrapper {
    text-align: center;
    padding: 1em;
}

#cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1em;
    z-index: 75;
}

#cookies h3 {
    color: #fff;
    text-align: center;
    line-height: 100%;
}

#cookies p {
    text-align: center;
}

#cookies a:not(.pure-button) {
    color: #FFF;
}

#cookies a.pure-button {
    border: solid 1px #90D68D;
}

.grecaptcha-badge {
    display: none;
}



/*****************
 *               *
 * Media Queries *
 *               *
 *****************/

@media screen and (max-width: 62em) {
    
    .max-width{
        margin: 1em;
    }
    
}



/*********
 *       *
 * Fonts *
 *       *
 *********/

