div.yith-par-message {
  display: none !important;
}

table.mnm_child_products.hidden-t {
  display: none;
}

div.yith-par-message-variation {
  display: none !important;
}

table.variations.hidden-t {
  display: none;
}

div.swatch-title-c {
  font-size: 20px;
  font-family: helvetica;
  font-weight: bold;
  padding-bottom: 10px;
}

div.swatch-set-c {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  row-gap: 10px;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

div.swatch-set-c.hidden-c {
  display: none;
}

div.swatch-container-c.hidden-c {
  display: none;
}

div.swatch-btn-c {
  display: none;
  height: 50px;
  min-width: 160px;
  width: calc((100% - 20px) / 3);
  border: 1px solid #111;
  border-radius: 8px;

  align-items: center;
  justify-content: center;

  text-align: center;
  font-family: helvetica;
  font-size: 15px;

  background: #fff;
  color: #111;

  cursor: pointer;
  user-select: none;

  /* transitions for state changes while visible */
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

/* visible buttons */
div.swatch-btn-c.active {
  display: flex;

  /* subtle 3D base */
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    0 6px 14px rgba(0, 0, 0, 0.1);

  /* “appear” animation */
  animation: swatch-pop-in 180ms ease both;
}

@keyframes swatch-pop-in {
  from {
    opacity: 0;
    transform: translateY(4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

div.swatch-btn-c.active:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.14);
}

div.swatch-btn-c.active:active {
  transform: translateY(0);
}

div.swatch-btn-c.active.selected-swatch {
  background-color: #111;
  color: #fff;
  font-weight: 700;
  border-color: #111;
}

@media (prefers-reduced-motion: reduce) {
  div.swatch-btn-c.active {
    animation: none;
  }
  div.swatch-btn-c {
    transition: none;
  }
}
