/* Contenedor general */
#slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* height: 100%; */
  max-width: 100%;
  margin: 0 auto;
  /*padding: 0 10px;*/
  font-family: arial, sans-serif;
  font-size: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  
  border-left: 1px solid #863131;
  border-right: 1px solid #863131;
}
/* Contenedor slider */
#slider { 
  /*position: relative;*/
  width: 100%;
  /*padding-bottom: 50%;*/ /* Aspect ratio */
  overflow: hidden;
  /*border:10px solid #333;*/
  /*border-radius: 5%/10%;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#slider > a {
  position:absolute;
  top:0;
  left:0;
  width: 100%;
  min-height: 100%;
}
/* Ajuste de las imágenes */
#slider img {
  width: 100%;
  /*min-height: 100%;*/
  height: 100%;
  position: absolute;
  margin:0;
  padding:0; 
  border:0;
}
/* Texto que acompaña a cada imagen */
#slider p {
  position: absolute;
  bottom: 5%;
  left: 0;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 80%;
  height: 18px;
  margin:0;
  padding: 5px 0;
  border-radius: 0 20px 20px 0;
  color: #eee;
  background: #333;
  font-size: 18px;
  line-height: 18px;
  text-align:center;
}
/* Flechas de navegación */
/* Flechas de navegación */
a.mas, a.menos {
opacity: 0.5;
position: absolute;
top: 31%;
left: 0px;
z-index: 10;
width: 71px;
height: 150px;
text-align: center;
line-height: 30px;
font-size: 30px;
color: white;
background: #333;
text-decoration: none;
transition: .5s margin ease;
}
a.mas {
left: 97%;
width: 80px;
margin-left: 100px;
border-radius: 30px 0px 0px 30px;
}
#slider-wrapper:hover a.mas {
margin-left: -40px;
}
a.menos {
left: -20px;
margin-left: -100px;
border-radius: 0px 30px 30px 0px;
}
#slider-wrapper:hover a.menos {
margin-left: 20px;
}
