/* Slideshow container */
.slideshow-container {
    position: relative;
    background-color: #ffffff;
    height: 200px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* Hide the images by default */
.mySlides {
    display: none;
    cursor: pointer;
}

.control-container{
    position: relative;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.searched-oferta-container .control-container {
    bottom: 0;
    position: absolute;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: relative;
    width: auto;
    padding: 16px;
    color: #fff;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
}

.prev:hover, .next:hover{
    color: #fff;
}

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

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

.dot.active {
    border: 1px solid #C9D8E9;
    padding: 5px;
}

.dot.active:after{
    width: 6px;
    height: 6px;
    background: #fff;
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 2px;
}

.dots-container {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #C9D8E9;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 11px 6px;
    display: flex;
    align-items: center;
    max-width: 66%;
}

.dots-container span:nth-child(-n+10) {
    display: inline-block;
}

.dots-container span {
    display: none;
}

/* Fading animation */
.fade-slider {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
    background-color: #ffffff;
    height: 200px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

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

@keyframes fade-slider {
    from {opacity: .4}
    to {opacity: 1}
}
