/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.attr-type-label {
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    margin-bottom: unset;
}

.attr-type {
    display: flex;
    flex-wrap: wrap;
    column-gap: .75rem;
    row-gap: .75rem;
    margin-bottom: 1rem;
}
.attr-option {
    position: relative;
    cursor: pointer;
    transition: linear .1s;
}

.attr-type--color_swatch > .attr-option {
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 50%;
    outline: 1px solid var( --bs-border-color-translucent );
    border: 0px solid var( --bs-border-color-translucent );
    outline-offset: 0;
    background-origin: border-box;
}
.attr-type--color_swatch > .attr-option:not(.disabled, .force-disabled):hover {
    opacity: .8;
}
.attr-type--color_swatch > .attr-option.selected {
    outline-offset: .25rem;
    outline-width: 2px;
    border-width: .4rem;
}

.attr-type--button > .attr-option {
    padding: 0rem 1rem;
    font-size: 0.9rem;
    border: 0;
    border-radius: 10px;
    background: var(--wp--preset--color--light-gray);
    color: var(--wp--preset--color--black);
    text-decoration: unset;
}
.attr-type--button > .attr-option.selected {
    background: var(--bs-primary);
}

.attr-option.disabled,
.attr-option.force-disabled {
    cursor: not-allowed;
    opacity: .3;
    position: relative;
    overflow: hidden;
}
.attr-option.force-disabled {
    display: none;
}
.attr-option.disabled:after,
.attr-option.force-disabled:after {
    content: "";
    background: red;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 2px;
    z-index: 2;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.reset_variations {
    display: block;
    clear: both;
}