/*************************************************************************************
* css/slides.css                                                                     *
**************************************************************************************
* Software Name: Tienda Virtual                                                      *
* Software URL: https://www.mvcloud.ar/tienda-virtual                                *
* Software Support: tiendavirtual@mvcloud.ar                                         *
* Software Version: 1                                                                *
* Software Release: 2023                                                             *
* Author Name: MvCloud                                                               *
* Author URL: https://www.mvcloud.ar                                                 *
* Author Support: soporte@mvcloud.ar                                                 *
**************************************************************************************
*                   Copyright 2022 - Todos los derechos reservados                   *
*************************************************************************************/

.mySlides {
    display: none;
}

.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
    display: table;
}
  
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 48%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
  
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
  
.text {
    padding: 20px 0;
    position: absolute;
    color: #fff;
    bottom: 4px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.text h2 {
    font-size: 24px;
    font-family: 'Open Sans', Arial;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.text p {
    font-size: 15px;
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    margin: 8px 0 0 0;
    padding: 0;
}
  
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
    background-color: #717171;
}
  
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

.fade img {
    width: 100%;
    height: 340px;
}
  
@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
  
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
  
@media only screen and (max-width: 300px) {
    .prev, .next, .text {font-size: 11px}
}