
.carousel {
  border-radius: 3px;
    width: 508px;
    height: 178px;
    overflow: hidden;
    position: relative;
}
.carousel:hover .controls {
  opacity: 1;
}
.carousel .controls {
  opacity: 0;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  justify-content: space-between;
  width: 100%;
  z-index: 99999;
  transition: all ease 0.5s;
}
.carousel .controls .control {
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.5;
  transition: ease 0.3s;
  cursor: pointer;
}
.carousel .controls .control:hover {
  opacity: 1;
}
.carousel .slides {
  position: absolute;
  top: 50%;
  height: 100%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  transition: 1s ease-in-out all;
}
.carousel .slides .slide {
  min-width: 100%;
  height: auto;
}

span.alerta {
	background: #0ebfa4;
	float: right;
    border-radius: 3px;
    min-width: 10px;
    text-align: center;
    color: #fff!important;
    font-weight: bold;
    font-size: 10px!important;
    padding: 0px 10px 0px 10px;
    border: 1px solid rgba(0, 0, 0, .5)
}
span.alerta.red { background: #e10145; }
span.alerta.blue { background: #017ae1; }
span.alerta.green { background: #67b600; }

