.styler-empty,
.styler-terms + select:not(.styler-select),
.styler-term.styler-disabled.after {
    display: none !important;
}
.styler-term.styler-disabled {
    opacity: .4;
    cursor: default;
}
.styler-terms {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.styler-variations {
    margin-bottom: 20px;
}
.variations .styler-variations-items + .styler-variations-items {
    margin-top: 10px;
}
.styler-terms .styler-term + .styler-term {
    margin-left: 5px;
}
.styler-term {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.styler-type-color .styler-term,
.styler-product .styler-term {
    height: auto;
    width: auto;
    min-height: 18px;
    min-width: 18px;
    border-radius: 100%;
    border-color:  1px solid var(--styler-gray);
    background-color: var(--styler-gray);
}
.styler-term.styler-selected:before {
    content: '✓';
    min-height: 18px;
    min-width: 18px;
    border-radius: 100%;
    background-color: var(--styler-success);
    color: #fff;
    text-align: center;
    font-size: 10px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.styler-terms.hide-icon .styler-term.styler-selected:before {
    content: none;
}

.styler-type-image .styler-term {
    height: 42px;
    width: 42px;
}

.styler-type-image .styler-term img {
    width: 100%;
    height: 100%;
    display: block;
}
.styler-type-color .styler-term {
    font-size: 0;
}
.styler-type-button .styler-term {
    font-size: 12px;
    min-width: 30px;
    border: 1px solid var(--styler-gray);
    border-radius: 0;
}

.reset_variations.styler-btn-reset {
    background: var(--styler-black);
    color: #fff;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 25px;
    margin-left: 10px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.5px;
    border-radius: 4px;
}
.styler-product .reset_variations.styler-btn-reset {
    margin-left: 0;
    margin-top: 10px;
}

.styler-product.row .styler-variations {
    position: relative;
}
.styler-product.row .reset_variations.styler-btn-reset {
    margin-top: 0px;
}
.styler-product.row .styler-reset-variations {
    position: absolute;
    top: 0;
    right: 0;
}
.styler-product.row .styler-variations-items .label {
    margin-right: 10px;
}
.show-hints .styler-terms .term-hint {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    bottom: 100%;
    background: var(--styler-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
}
.show-hints .styler-terms .styler-term:hover .term-hint {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    transition-delay: .1s;
    bottom: calc(100% + 10px);
}
.show-hints .styler-terms .term-hint:before {
    content: '';
    border: 5px solid transparent;
    border-top-color: var(--styler-black);
    position: absolute;
    bottom: -10px;
}
.styler-terms.outline-1 .styler-term {
    padding: 3px;
    background: transparent;
    border: 1px solid var(--styler-black);
}
.styler-terms.styler-type-color.outline-1 .styler-term > span {
    min-height: 100%;
    min-width: 100%;
}
