/*
 * Slider styles
 */

.slider-window {
	width: 100%;
	grid-column: 1/13;
	display: none;
}

.slider-main {
	width: 100%;
	height: 500px;
	position: relative;
	overflow: hidden;
}

.slider-arrow {
	width: 20px;
	height: 50px;
	border: 1px solid var(--grey-one);
	color: var(--grey-one);
	background-color: rgba(80, 80, 80, .15);
	font-weight: bold;
	font-size: 12pt;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.slider-arrow:first-of-type {
	left: 0;
}

.slider-arrow:last-of-type {
	right: 0;
	display: none;
}

.slider-arrow:hover {
	color: #fff;
	background-color: rgba(80, 80, 80, .30);
	cursor: pointer;
}

.slider {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: flex-start;
	transition: left .5s;
}

.slider-image {
	display: block;
	border-radius: 8px;
}

.slider-bullets {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 15px
}

.slider-bullet {
	margin: 0 5px;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	background-color: var(--roxo_claro);
}

.slider-bullet:hover {
	cursor: pointer;
}

.slider-selected-bullet {
	background-color: var(--roxo);
}




 @media (max-width: 600px) {

.slider-window {
	display: block;
}

 }