/* tmi@macmac.ch 10.04.2022 */
/* removing 100px limit for product details toggles */
.site-main .product .dropdown .dropdown_content_container {
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}
.site-main .product .dropdown.opened .dropdown_content_container {
  max-height: 1000px;
  transition: all 1s ease-in-out;
}
/* removing top border on not first dropdown */
.site-main .product .dropdown ~ .dropdown .dropdown_toggle{
  border-top: none;
}

.site-main .product .dropdown .dropdown_toggle > a {
  padding-left: 0;
}

/* banner 08.10.2023 */
.custom-banner {
  font-family: DINNextW01-CondensedMed;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20% 7px;
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  color: #886b55;
  background-color: #f8ea00;
  @media (max-width: 767px) {
    padding: 10px 10% 7px;
    font-size: 18px;
    line-height: 18px;
  }
}
