.recently-viewed{
	flex-flow: nowrap;
	overflow-x: scroll;
    overflow-y: hidden;
}

.recently-viewed::-webkit-scrollbar {
    height: 10px;
}

.recently-viewed::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.recently-viewed::-webkit-scrollbar-thumb {
    background: #f1f2f6;
    border-radius: 10px;
    cursor: pointer;
}

.recently-viewed::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--color-foreground),.08);
}