/* styles.css */


.carousel-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    margin: 0;
    background-color: #fff; /*#f0f0f0*/
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    /*height: 400px;*/
    border: 0px solid #ccc; /* 1px solid #ccc; */
}

.carousel-item {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    background-color: #fff;
    border-right: 0px solid #ccc; /* 1px solid #ccc; */
    padding:5px;
    box-sizing: border-box;
}

@media (max-width: 950px) {
	.carousel-item{
    flex: 0 0 25%;
	}	
}	

@media (max-width: 699px) {
	.carousel-item{
    flex: 0 0 33.3%;
	}	
}	

@media (max-width: 576px) {
	.carousel-item{
	  flex: 0 0 50%;
	}	
}

.carousel-item:last-child {
    border-right: none;
}

.carousel-button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    
    border-radius: 100%;
    width: 44px;
    height: 44px;
    /* backdrop-filter: blur(4px); */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}



#prev {
    left: 0px; 
}

#next {
    right: 0px;
}
