.sShow {
    position: relative; 
    user-select: none;
    width: 100%;
}
.sShow .big, .sShow .small {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.sShow .zoom {
    position: absolute;
    text-align: center;
    color: white;
    top: 7px;
    left: 10px;
    padding: 0.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    background-color: rgba(52, 52, 52, 0.5);
    border-radius: 0.3rem;
    cursor: pointer;
    padding: 0.2rem;
}
.sShow .zoom a {
    color: white;
}
.sShow .bigBox, .sShow .smallBox {
    display: flex;
    align-items: start;
    position: relative;
    right: 0;
    transition: right .3s ease-in-out; 
}
.sShow .smallBox {
    justify-content: center; 
}
.sShow picture img {
    width: 100%; 
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.sShow .bigBox picture {
    min-width: 100%;
}
.sShow .smallBox picture {
    cursor: pointer;
    border: 4px solid white;
    border-radius: 7px; 
}
.sShow .rew, .sShow .ff, .bttNav {
    cursor: pointer;
    position: absolute;
    top: 50%;    
    width: auto;
    padding: 16px;
    color: white;
    font-weight: 700;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
    border: 1px solid black;   
}
.sShow .rew {
    left: 5px;
}
.sShow .ff {
    right: 5px;
}
.sShow .rew:hover, .sShow .ff:hover {
    background-color: rgba(0,0,0,0.8);  
}
.sShow .dots {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -150%);
    padding: 2px;
    width: 90%;
    text-align: center;
}
.sShow .dots > span {
    cursor: pointer;
    aspect-ratio: 1 / 1;
    width: 2%;   
    margin: 1px 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.sShow .dots > span.active, .sShow .dots > span:hover {
    background-color: #3d3d3d;
    border: 2px solid white;
    transform: scale(1.3);
}
.sShow .smallBox .border {
    border: 4px solid #00afea;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}
.closeB {
    top: 5%;   
}
.prev {
    left: 10%;
} 
#slider {
    width: 100vw; 
    height: auto; 
    overflow: hidden;
    position: relative;
}
.slide {
    flex: 0 0 100vw; 
    height: auto;
   /*  transition: opacity 0.5s ease-out; */        
}
.imgBig {
    max-width: 100vw; 
    max-height: 100vh; 
    width: auto; 
    height: auto; 
    border: 0;
    display: block; 
    margin: 0 auto;
}
