<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.setas{
	display: 			flex;
	/* margin: 			20px 0px 20px 0px; */
	width: 				100%;
	justify-content: 	space-between;
	align-items: 		center;
	height: 			90px;
}

.preview,
.next{
	font-size: 			4em;
	cursor: 			pointer;
	transition: 		transform 222ms;
	-webkit-transition: transform 222ms;
	position: 			relative;
	will-change:		transform;
	
	transform-origin: 	50% 50%;
}

.preview:hover,
.next:hover{
	transform: 			scale(1.1);
	-ms-transform: 		scale(1.1);
	-webkit-transform: 	scale(1.1);
}

.preview:active{
	left:					-2px;
}

.next:active{
	right: 					-2px;
}

.texto-apoio{
	font-size: 			18px;
}

.texto-apoio:after{
	content:			 "Use as setas ou o scroll do mouse"
}

.w3-text-theme{
	color: #5f262f!important;
}

.imageLarge{
	width:		auto;
	max-width:	auto;
	
	display: 	inline-block;
}

.scrolling-wrapper {
	position: 			relative;
	overflow-x: hidden;
}

.scroll-father{
	/* overflow:	hidden; */
	width:			100%;
	max-width:		100%;
	margin-bottom:	150px;
}

@media (max-width:601px){ 
	.texto-apoio:after{
		content: 		"Arraste a imagem para os lados"
	}
	
	.texto-apoio{
		font-size: 		16px;
		text-align:	 	center;
	}
	
	.imageLarge{
		max-height:		400px;
	}
	
	.scrolling-wrapper { 
		overflow: 		scroll;
		width:			100%;
		
		-webkit-overflow-scrolling: touch;
	}
	
	.setas{
		display: 			block;
		/* margin: 			20px 0px 20px 0px; */
		width: 				100%;
		height:				auto;
		font-size:			16px;
	}
}

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