.categories-slider-container {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    margin: auto;
	border-left: solid 4px #27272ae3;
  	border-right: solid 4px #27272ae3;
}

.categories-slider {
    display: flex;
    gap: 10px;
    transition: transform 0.05s linear;
}

.categories-slider a {
    flex: 0 0 auto;
    padding: 5px 10px;
    background: #8f1919;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    white-space: nowrap;
	font-weight: 600;
}

.categories-slider a:hover {
    background: #27272a;
  	color: white;
}