/*==============================
=            SWATCHES          =
==============================*/

.swatch-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    gap: 10px;
}

.swatch-container .swatch:hover,
.swatch-container .swatch.active  {
    border: 2px solid #585858;
}

/*.swatch-container .swatch.active:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 20px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/

.swatch-container .image-swatch {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.swatch-container .image-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

.swatch-container .color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.swatch-container .swatch-color {
    width: 100%;
    height: 100%;
}

.swatch-container .label-swatch {
    border: 1px solid #dadada;
}

.swatch-container .swatch-color,
.swatch-container .label-swatch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 0 20px;
    height: 30px;
    text-align: center;
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
	position: relative;
}

.swatch-container .swatch-color[in_stock="false"]:before,
.swatch-container .label-swatch[in_stock="false"]:before {
	background-image: url("data:image/svg+xml;utf8,%3Csvg filter='drop-shadow(0px 0px 5px rgb(255 255 255 / .6))' xmlns='http://www.w3.org/2000/svg' width='72px' height='72px' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ff0000' stroke-linecap='round' stroke-width='0.6' d='M5 5L19 19M19 5L5 19'/%3E%3C/svg%3E");
	background-position: 50%;
    background-repeat: no-repeat;
    content: " ";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

.archive_variation_swatches .woocommerce-LoopProduct-link {
    display: block;
}

.archive_variation_swatches .woocommerce-LoopProduct-link .swatch-container {
    margin-bottom: 0;
}