.rsi-vsl-wrapper {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.25;
        max-height: 87px;

}

.rsi-vsl-title {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 12px;
    opacity: .82;
}

.rsi-vsl-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    max-height: 82px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 4px 2px 0;
    scrollbar-width: thin;
}

.rsi-vsl-list::-webkit-scrollbar {
    width: 6px;
}

.rsi-vsl-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .25);
    border-radius: 999px;
}

.rsi-vsl-list::-webkit-scrollbar-track {
    background: transparent;
}

.rsi-vsl-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 8px;
    border: 1px solid currentColor;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 1.2;
    transition: opacity .15s ease, transform .15s ease;
}

.rsi-vsl-chip--instock:hover,
.rsi-vsl-chip--instock:focus,
.rsi-vsl-chip--onbackorder:hover,
.rsi-vsl-chip--onbackorder:focus {
    opacity: .82;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.rsi-vsl-chip--outofstock {
    opacity: .5;
    text-decoration: line-through !important;
    cursor: not-allowed;
    pointer-events: none;
}

.rsi-vsl-chip--outofstock::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: .45;
}

.rsi-vsl-chip--onbackorder {
    opacity: .85;
}

@media (max-width: 767px) {
    .rsi-vsl-list {
        gap: 4px;
        max-height: 68px;
    }

    .rsi-vsl-chip {
        min-height: 24px;
        padding: 3px 7px;
        font-size: 11px;
    }
}
