div[module='products'] .actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
div[module='products'] #tbodyColor {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
div[module='products'] #tbodyColor .itemColor {
  border: 1px solid var(--color-line);
  padding: 7px;
  border-radius: 5px;
  background: #e4ebeb;
}
div[module='products'] #tbodyColor .itemColor .btnFull {
  background-color: var(--color-white) !important;
}
#listProductsColors {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: 0;
  transition: all ease 0.3s;
  position: absolute;
  bottom: 23px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  border-radius: 5px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
}
#listProductsColors.on {
  transition: all ease 0.2s;
  opacity: 1;
  height: auto;
  bottom: 23px;
  border-color: #d1d2d4;
}
#listProductsColors .selectorListColors {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#listProductsColors .selectorListColors a {
  border: 1px solid #d1d2d4;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  gap: 7px;
}
#listProductsColors .selectorListColors a .icon {
  font-size: 18px;
}
#listProductsColors .selectorListColors a:hover {
  background-color: #d1d2d4;
  color: #ffffff;
}
.numPares {
  display: flex;
  gap: 5px;
  background-color: var(--color-yellow);
  padding: 3px 5px;
  border-radius: 6px;
}
input[name="inputBox"] {
  border: 2px solid !important;
  border-color: var(--color-yellow) !important;
}
