/* Traits */
.product_traits {
    display:block !important;
}

/* Phone support */

#phone-support {
  background-image: url('/data/include/cms/bannery/widget-kontakt/Baner_Kontakt_EXT_-_desktop.png_optimized.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 400px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}

.support-text {
  margin: 0;
  padding: 10px;
  font-size: 18px;
}

.phone-number {
  margin-top: 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
}



/* Hover Anim */

.product {
  position: relative;
  overflow: hidden;
}

.product::before,
.product::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.product::before {
  opacity: 1; /* initially visible */
  top: 0;
  right: 0;
  background-color: #81C4FF;
  clip-path: polygon(20px 0, 40px 0, 40px 20px, 37px 17px, 37px 3px, 23px 3px);
}

.product::after {
  bottom: 0;
  right: 0;
  background-color: #E7222E;
  clip-path: polygon(20px 40px, 40px 40px, 40px 20px, 37px 23px, 37px 37px, 23px 37px);
}