/* TFC - Muestras de color en la miniatura. Tarea #1739. */
.tfc-swatches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 8px 0 2px;
    min-height: 1rem;
}

.tfc-swatch {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 2px;
    border: 1px solid rgba(161, 161, 161, .55);
    background-size: cover;
    background-position: center;
    outline: 0;
    cursor: pointer;
    transition: transform .12s ease-in-out;
}

.tfc-swatch:hover,
.tfc-swatch:focus {
    transform: scale(1.15);
}

.tfc-swatch.tfc-swatch-active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #383838;
}

/* Colores claros sobre fondo blanco: sin un borde algo mas marcado no se ven. */
.tfc-swatch[style*="#fff"],
.tfc-swatch[style*="#FFF"],
.tfc-swatch[style*="white"] {
    border-color: rgba(120, 120, 120, .75);
}

.tfc-swatch-more {
    font-size: .75rem;
    line-height: 1rem;
    color: #777;
    text-decoration: none;
}

.tfc-swatch-more:hover {
    color: #383838;
    text-decoration: underline;
}

.products-grid .product-miniature-layout-2 .tfc-swatch,
.products-grid .product-miniature-layout-3 .tfc-swatch {
    width: .8rem;
    height: .8rem;
}
