/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}
.groupBtnSlider{
	margin-top: 5px;
}

/* Next & previous buttons */
.prev, .slide-next {
      cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white !important;
    font-size: 39px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next / prev button" */
.slide-next {
  right: -3%;
  border-radius: 3px 0 0 3px;
}

.prev{
  left: -3%;
  border-radius: 3px 0 0 3px;
}

.arrow-prev, .arrow-next{
    width: 35px;
    height: 35px;
    border: solid #eee;
    border-width: 0 3px 3px 0;
    display: inline-block;
}

.arrow-prev{
    transform: rotate(135deg);
}

.arrow-next{
    transform: rotate(315deg);
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .slide-next:hover {
  background-color: rgba(0,0,0,0.8);
}



/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #000;
    border: 1px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #FFFF;
}

.hide{
	display: none !important;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 4s;
  animation-name: fade;
  animation-duration: 4s;
}

.estilos-boton-rosa {
    /* background: linear-gradient(to right, #54127F, #E60881); */
    background: #E60881;
    border: 0;
    color: #fff;
    border-radius: 3px;
    font-family: 'Roboto Bold';
    font-size: 14px;
    line-height: 13px;
    /* width: 112px; */
    width: auto;
    padding: 0 30px;
    height: 33.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 13px;
}

@-webkit-keyframes fade {
  from {opacity: .2} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .2} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .slide-next,.text {font-size: 11px}
}

@media all and (max-width: 768px) and (orientation: portrait) {
    .dot {
        width: 10px;
        height: 10px;
    }
    .arrow-prev, .arrow-next {
        width: 20px;
        height: 20px;
    }
     .slide-next{
        right: -1%;
    }
    .prev{
        left: -1%;
     }
}
@media screen and (min-width: 744px) {
    .estilos-boton-rosa {
        font-size: 16px;
        height: 40.6px;
    }
}
@media all and (min-width: 1280px){
    .slide-next{
        right: -4%;
    }
    .prev{
        left: -4%;
     }
}

@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .slide-next{
        right: 0;
    }
    .prev{
        left: 0;
     }

}