.colors-body{
    display: flex;
    flex-direction: row;
    gap: .5rem;
    /*flex-wrap: wrap;*/
}
.info__item-field{
    min-width: 7rem;
}
.product-color{
    width: 3.4rem;
    height: 3.4rem;
    padding: 6px;
}
.product-color.active{
    padding: 2px;
    border: 2px solid #999;
}
.multicolors{
    display:flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid gray;
}
.multicolors span{
    height: 100%
}

.sizes-body{
    display: flex;
    flex-direction: row;
    gap: .5rem;
    /*flex-wrap: wrap;*/
}
.product-size{
   color: black;
    font-size: 1.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    text-decoration: unset;
    padding: 1rem;
    background-color: #D0D5DD;
}
.product-size span{
    width: 100%;
    height: 100%;
}

.product-size.active{
    color: white;
    background-color: #060b91;
}

.out_of_stock, .c_out_of_stock {
    position: relative; /* needed for ::before positioning */
    overflow: hidden;   /* optional: hides overflow outside the block */
}

.out_of_stock::before {
    content: "/";
    position: absolute;
    display: block;
    top: 34%;
    left: 33%;
    font-size: 2.2em;
    transform: rotate(20deg);
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 10;
}

.c_out_of_stock::before {
    content: "/";
    position: absolute;
    display: block;
    top: 35%;
    left: 35%;
    font-size: 3.3rem;
    transform: rotate(20deg);
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 540px) {
    .product-color{
        width: 2rem;
        height: 2rem;
        padding: 2px;
    }
    .product-size{
        padding: 0.5rem;
        font-size: 1rem;
    }
    .sizes-body{
        flex-wrap: wrap;
    }
    .colors-body{
        flex-wrap: wrap;
    }

    .out_of_stock::before {
        content: "/";
        position: absolute;
        display: block;
        top: 34%;
        left: 33%;
        font-size: 1.2em;
        transform: rotate(20deg);
        color: rgba(0, 0, 0, 0.5);
        pointer-events: none;
        z-index: 10;
    }
}