
.product-bullets {
    border: solid thin lightgrey;
    border-radius: 4px;
    max-height: 300px !important;
    width: 100% !important;
    overflow: auto;
    margin-left: 1px !important;
}

.product-bullets::-webkit-scrollbar {
    width: 10px;
}

.product-bullets::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.product-bullets::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.product-bullets::-webkit-scrollbar-thumb:hover {
    background: var(--color-warning);
}

