:root {
  --container_width: 1280px;
  --container_padding: 30px;
}
@media (max-width: 767px) {
  :root {
    --container_padding: 20px;
  }
}

.allergens-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.allergens-list .allergen:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  top: 26px;
  background: #fff;
  border: 0.5px solid #c01a2c;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  width: 190px;
  text-align: left;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #c01a2c;
  padding: 10px;
  z-index: 22;
}

.allergen {
  background: #c01a2c;
  border-radius: 3.5px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: center;
  color: #fff !important;
  font-weight: bold;
  min-width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.allergens-list-section .allergen-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 15px;
}
.allergens-list-section .allergen-block:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #c01a2c;
}

/*# sourceMappingURL=sct-product_allergens-frontend.css.map */
