@charset "utf-8";

.producto {
  position: relative;
  overflow: hidden;
  background-color: #0475C1;
  width: 96%;
  margin-left: 2%;
}

/* SLIDER */

.producto .etiqueta {
  padding-top: 70px;
  padding-bottom: 20px;
  white-space: nowrap;
  font-size: 0;
  transition: 0.8s;
  width: 33%;
}

/* SLIDES */

.producto .etiqueta > * {
  font-size: 1rem;
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  background: none 50% no-repeat;
  background-size: cover;
  width: 100%;
}

/* PREV/NEXT, CONTAINERS & ANCHORS */

.producto .prevNext {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  height: 0;
}

.producto .prevNext > div+div {
  visibility: hidden; /* Hide all but first P/N container */
}

.producto .prevNext a {
    background: #18A0FB;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    opacity: 0.7;
    transition: 0.3s;
    transform: translateY(-50%);
    left: 0;
    box-shadow: 2px 2px rgba(163,158,159,1.00);
    margin-left:1%;
    margin-right: 0.8%;
    
}
.producto .prevNext a:hover {
  opacity: 1;
}

.producto .prevNext a:focus {
  opacity: 1;
}
.producto .prevNext a+a {
  left: auto;
  right: 0;
}

/* PREV/NEXT CONTAINERS VISIBILITY */
/* ALL: */
.producto >s:target ~ .prevNext >* {      visibility: hidden;
}
/* ACTIVE: */
#s1:target ~ .prevNext >*:nth-child(1) {
	visibility: visible;
}
#s2:target ~ .prevNext >*:nth-child(2) {
	visibility: visible;
}
#s3:target ~ .prevNext >*:nth-child(3) { visibility: visible;
}
#s4:target ~ .prevNext >*:nth-child(4) { visibility: visible;
}
#s5:target ~ .prevNext >*:nth-child(5) { visibility: visible;
}
#s6:target ~ .prevNext >*:nth-child(6) { visibility: visible;
}
#s7:target ~ .prevNext >*:nth-child(7) { visibility: visible;
}
#s8:target ~ .prevNext >*:nth-child(8) { visibility: visible;
}
#s9:target ~ .prevNext >*:nth-child(9) { visibility: visible;
}
#s10:target ~ .prevNext >*:nth-child(10) { visibility: visible;
}
#s11:target ~ .prevNext >*:nth-child(11) { visibility: visible;
}
#s12:target ~ .prevNext >*:nth-child(12) { visibility: visible;
}

/* SLIDER ANIMATION POSITIONS */

#s1:target ~ .etiqueta {
	transform: translateX(   0%);
}
#s2:target ~ .etiqueta {
	transform: translateX(-100%);
}
#s3:target ~ .etiqueta {
	transform: translateX(-200%);
}
#s4:target ~ .etiqueta {
	transform: translateX(-300%);
}
#s5:target ~ .etiqueta {
	transform: translateX(-400%);
}
#s6:target ~ .etiqueta {
	transform: translateX(-500%);
}
#s7:target ~ .etiqueta {
	transform: translateX(-600%);
}
#s8:target ~ .etiqueta {
	transform: translateX(-700%);
}
#s9:target ~ .etiqueta {
	transform: translateX(-800%);
}
#s10:target ~ .etiqueta {
	transform: translateX(-900%);
}
#s11:target ~ .etiqueta {
	transform: translateX(-1000%);
}
#s12:target ~ .etiqueta {
	transform: translateX(-1100%);
}

/*colores y otros formatos*/
.producto {
  color: #ffffff;  
  text-align: center;
}
.producto .etiqueta .ima {
    margin-top: 10px;
    width: 100%;
}

.producto .etiqueta .ima img {
    width: 80%;
    border-radius: 40px;
    box-shadow: 0px 7px 5px 5px rgba(0,0,0,0.30);
}
.producto a {
  border-radius: 50%;
  margin: 0 3px;
  /*color: rgba(0,0,0,0.8);*/
	color: rgba(26,255,208,0.80);
  text-decoration: none;
}

.btnEtiqueta{
  background-color: #0475C1;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 90px;
  
}
.btnEtiqueta a{
  font-weight: 500;
  font-size: 1.17rem;
  align-items: center;
  text-align: center;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  background: #18A0FB;
  border-radius: 7px;
  padding: 20px;
  width: 20rem;
  }
  
  @media screen and (max-width: 1106px) {

    .producto .etiqueta {
      width: 100%;
  }

}
@media screen and (max-width: 1600px) {
  .producto .prevNext a {
		font-size: 1.5rem;
		width: 26px;
		height: 26px;
		line-height: 26px;
	}
}