/*------------------------------------*\
    #Swatches
\*------------------------------------*/
.c-swatches {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  justify-content: flex-start;
  margin: 0 -5px;
  padding: 0;
  list-style: none;
}
.c-swatches__item {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.c-swatches__button {
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  min-width: 70px;
  min-height: 70px;
  margin: 5px;
  padding: 0;
  background: none;
  background-color: transparent;
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: none;
  color: currentColor;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  transition: background-color 0.25s, border 0.25s, box-shadow 0.25s, color 0.25s;
}
.c-swatches__button:hover,
.c-swatches__button:focus,
.c-swatches__button.is-active {
  border: 1px solid #000;
  box-shadow: 0px 0px 5px 1px grey;
  background-color: transparent;
  color: currentColor;
}
.c-swatches:not(.c-swatches--show-text) .c-swatches__button {
  width: 70px;
  height: 70px;
  font: 0/0 a;
}
.c-swatches__tooltip {
  box-sizing: border-box;
  display: block;
  position: absolute;
  z-index: 1;
  top: 100%;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  margin-top: 6px;
  padding: 0.7em 1em;
  white-space: nowrap;
  background: #000000;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out, transform 0.25s ease-out;
}
.c-swatches__tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  width: 0;
  height: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid #000000;
}
.c-swatches__button:hover + .c-swatches__tooltip {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.collection-type-products.tweak-product-item-details-show-variants .product-variants {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
