.slider-main {
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider {
    position: relative;
    margin: 0 3rem;
    width: 400px;
    overflow: hidden;
    box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.301);
    border-radius: 5px;
}

.box-caroussel .slider  {
    width: 700px;
}

.slider .button-wpp {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.slides {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffff;
}

.box-caroussel .slides  {
    height: 650px;
}

.slide {
    position: relative;
    transition: 0.6s;
}

.slide img {
    width: 366px;
}

.box-caroussel .slide img  {
    width: 600px;
}

.manual-btn {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #0099ff27;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
}

.manual-btn.selected {
    background-color: #0099ff;
}

.load {
    width: 100%;
    height: 4px;
    background: #36b7fa;
    position: relative;
    animation: loading linear infinite;
}


@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


.box-vitrine, .search-results {
    display: flex;
    flex-wrap: wrap;
}

.box-vitrine .slider, .search-results .slider {
    margin: 0.7rem;
    width: 350px;
    height: 100%;
}