/*Logo in het midden hoger en paginahoogte aanpassen*/
@media (min-width: 992px) {
.navbar-collapse {
margin-top: 77px !important;
}
}

ul.nav li:nth-child(5) {
position: absolute;
top: 0;
margin-top: 20px;
}

@media (min-width: 992px) {
.shop-item-details {
    margin-top: 150px;
}

body section:nth-of-type(2):not(#deliveries) {
    margin-top: 100px;
}
}
.nav {
    padding-top: 45px;
}

@media (max-width: 991px) {
    .nav-link img {
        display: none;
    }
}

.nav-link img {
    margin-left: -29px;
}

/*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 #496031;
  color: #496031;
  transition: 0.2s ease;
}

#inlogformulier input[type="submit"] {
  margin-bottom: 15px;
  width: 120px;
  height: 32px;
  background: #496031;
  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;
}

/*tekstbalk slider */
.home-bg-footer {
background-color: #D57553 !important;
}

#shopping-cart, .shop-item-details, .cardgrid-header {
    margin-top: 149px;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    display: block;
    width: 100%;
    height: auto;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Donkerder effect */
    z-index: 1;
    pointer-events: none;
}

.carousel-caption {
    position: absolute; /* zorg dat hij bovenop ligt */
    z-index: 2;
    top: 20%;
    left: 0;
    width: 100%;
    color: white; /* contrast */
    text-align: left;
}

.contactaddress span, .contactaddress span a, .contactaddress span i {
    color: #a08430 !important
}