@charset "utf-8";
/* CSS Document */
.carrusel {display: none}
/*img {vertical-align: middle;}*/

/* Slideshow container */
.carrusel-container {
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prevCarrusel, .nextCarrusel {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color:var(--third);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
	background-color: var(--primary);
}

/* Position the "next button" to the right */
.nextCarrusel {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevCarrusel:hover, .nextCarrusel:hover {
  background-color: var(--second);
}

/* The dots/bullets/indicators */
.dotCarrusel {
  cursor: pointer;
  height: 7px;
  width: 7px;
  margin: 0 2px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activeDot, .dotCarrusel:hover {
  background-color:var(--primary-dark);
}

/* Fading animation */
.fadeCarrusel {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fadeCarrusel;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeCarrusel {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fadeCarrusel {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .nextCarrusel,.text {font-size: 11px}
}
