<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.carousel-container {
    width: 100%;
    position: relative;
    overflow: auto;
    margin-top: 15px;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    max-width: 300px;
    margin: 0 10px;
    text-align: center;
}
.carousel-item a { 
	text-decoration: none;
}
.carousel-item img {
    width: 100%;
    border-radius: 10px;
}
.carousel-item h3 {
    margin-top: 10px;
    font-size: 14px;
    color: #000;
}
.carousel-item p {
    text-align: justify;
    color: #888;
	font-size: 14px;
	&amp;.pages { 
		color: #000;
		font-size: 15px;
	}
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
        
        
/* Mobile Styles */

@media only screen and (max-width: 600px) {

	.carousel { 
		display: block;
	}
	.carousel-item {
		width: 100%;
		max-width: 100%;
		clear: left;
		margin: 0;
		p.pages {
			margin-top: 5px;
			margin-bottom:20px;
		}
	}
	
}

</pre></body></html>