div.blend-desc-outer {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 15px;
}

div.blend-desc-panel {
  font-family: helvetica;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding: 5px;
}

img.blend-desc-img {
  width: 100%;
  padding: 0px;
}

div.blend-desc-name {
  font-size: 20px;
  text-align: center;
  background-color: white;
  color: black;
  padding: 15px;
}

div.blend-desc-desc {
  padding: 10px;
  font-size: 14px;
  background-color: white;
  color: black;
}


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

table.mnm_child_products {
	display: none !important;
}

button.mnm_reset {
    display: none !important;
}

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

div.selected-blend-c {
  width: 100%;
  height: 100px;
  background-color: blue;
}

div.product-thumbnails {
  display: none !important;
}

span.onsale {
  display: none !important;
}

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


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

.hidden-u {
    display: none !important;
}

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.10);

  /* “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; }
}
