.zf-green {
  color: #2BB930;
}

.btn-success {
  background-color: #2BB930;
  background-image: -moz-linear-gradient(top, #31CE36, #2BB930);
  background-image: -ms-linear-gradient(top, #31CE36, #2BB930);
  background-image: -webkit-gradient(linear,
      0 0,
      0 100%,
      from(#31CE36),
      to(#2BB930));
  background-image: -webkit-linear-gradient(top, #31CE36, #2BB930);
  background-image: -o-linear-gradient(top, #31CE36, #2BB930);
  background-image: linear-gradient(top, #31CE36, #2BB930);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31CE36', endColorstr='#2BB930', GradientType=0);
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background-color: #239924;
}

div.container a.navbar-brand>img {
  display: inline;
  /* margin-right: 4px; */
  margin-top: -2px;
}

.cart {
  margin-right: 30px;
  font-size: large;
}

a.no-underline {
  text-decoration: none;
}

a.no-underline:hover {
  text-decoration: none;
}

.btn.keep-color:hover {
  background-color: #239924;
  border-color: #239924;
}

.article-w .item {
  margin-bottom: 100px;
}

.wrap-content {
  height: 120px;
  background: white;
  padding: 14px;
  bottom: -55px;
  left: 15px;
  right: 15px;
  -webkit-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 2px 15px -5px rgba(0, 0, 0, 0.75);
}

.article-w .item img {
  width: 100%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.article-w .item .wrap-content .name {
  color: #363636;

  font-size: 18px;
  text-decoration: none;
  line-height: 22px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.article-w .item .wrap-content .date {
  margin-top: 10px;
  color: #959595;
  font-size: 12px;
}

/* Navbar responsive layout */
.navbar-container {
  padding-left: 3rem;
}

.navbar-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-text {
  font-size: 2.2rem;
  letter-spacing: 2px;
}

/* Desktop layout - Menu left, Brand right */
@media (min-width: 768px) {
  .navbar-wrapper {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .navbar-menu {
    order: 1;
  }

  .navbar-brand-wrapper {
    order: 2;
  }

  .navbar-text {
    display: inline-block;
    margin-right: 1rem;
  }
}

/* Mobile layout - Brand first line, Menu second line */
@media (max-width: 767px) {
  .navbar-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar-brand-wrapper {
    order: 1;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .navbar-menu {
    order: 2;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .navbar-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  .nav-item {
    margin: 0 0.25rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}