
/*Inlogformulier aanpassingen */

#inlogformulier input[type="text"],
#inlogformulier input[type="password"] {
  display: block;
  box-sizing: border-box;
  margin-bottom: 0px;
  padding: 4px;
  width: 220px;
  height: 32px;
  border: none;
  border-bottom: 1px solid #AAA;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  transition: 0.2s ease;
}

#inlogformulier input[type="text"]:focus,
#inlogformulier input[type="password"]:focus {
  border-bottom: 2px solid ##67bd51;
  color: ##67bd51;
  transition: 0.2s ease;
}

#inlogformulier input[type="submit"] {
  margin-bottom: 15px;
  width: 120px;
  height: 32px;
  background: #67bd51;
  border: none;
  border-radius: 2px;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.1s ease;
  cursor: pointer;
}

#inlogformulier input[type="submit"]:hover,
#inlogformulier input[type="submit"]:focus {
  opacity: 0.8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: 0.1s ease;
}

#inlogformulier input[type="submit"]:active {
  opacity: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: 0.1s ease;
}

#inlogformulier *:focus {
  outline: none;
}


/* Header overlay met gradient */
.home-bg {
    position: relative;
}

.home-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.40),
        rgba(0,0,0,0.15)
    );
    z-index: 1;
}

.home-bg > * {
    position: relative;
    z-index: 2;
}



/*Paginacontent zelfde achtergrondkleur als rest van de pagina*/

.PageContentUnder .col-md-4 {
    background-color: #fcfafa;
}


/*Marge button Invoice*/

form[action="/umbraco/Surface/WebshopSurfaceV2/DownloadInvoice"] button[type="submit"].btn.btn-secondary {
    margin-bottom: 50px;
}



/*Responsive stijl 2*/

.homePage IMG {
    max-width: 75%;
}


/*Paarse streep in foto en onderaan op homepage groen*/
.homePage .homehrLine, .BorderlineHome {
    border-color: #67bd51;
}

/*Navigatie-items dropdown goed weergeven*/
.dropdown-item p, .nav-link p {
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .home-center-center h1 {
    font-size: 25px;
    }
    .home-center-center IMG {
        width: 75%;
    }
}

/*Achtergrond navigatie wit*/
@media (max-width: 992px) {
.navbar-collapse {
 background-color: white;   
}
}

.PageContentUnder IMG {
    height: auto;
}

.contactaddress {
    padding-left: 25px !important;
    padding-right: 25px !important;
}