 
 .flexed {
    display: flex;
}

.container-car {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
	/* max-width: 25rem; */
	
}

.carousel {
    overflow: hidden;
    position: relative;
}

.carousel__track {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-left: -1rem;
}

.item-container {
    flex: 0 0 auto;
    margin-left: 1rem;
}

.carousel__slide {
    color: white;
    font-size: 2rem;
    text-transform: capitalize;
	background-repeat: no-repeat;
	background-size: cover;
	background-position:center !important;
    width: 60vw;
    height: 30vh;
	/* width: 20rem;
    height: 20rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

/* Navigation Dots */
.carousel__dots {
    display: flex;
    justify-content: center;
    margin-top: 1.1rem;
	padding-right:1em;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #5B170E;
}

button.no-style{
	box-shadow: none;
	border:0px solid black;
	background-color: transparent;
	padding: 10px;
}
#prev svg{
transform: rotate(180deg) !important;
}
.car-nav{
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
	padding-right:30px;
}
.car-nav #prev{
	display:none !important;
}
.car-pill{
	position:absolute;
	top:.5em;
	left:.5em;
}
.car-pill p{
	background-color:#ECE7DA;
	border-radius:50px;
	color:#5B170E;
	padding: 5px 16px;
}
.carousel-products{
	margin-top:4em ;
	margin-bottom 3em;
}
@media (min-width:550px){
	.carousel__slide {
    width: 68vw;
    height: 80vh;
	}
	.car-pill{
	top:1.5em;
	left:1.5em;
}
}
