
.slider {
    display: flex;
    /* transition: transform 0.5s ease;*/
}

.slide {
    flex: 0 0 100%;
}

.prev,
.next {
    position: absolute !important;
    top: 60%;
    transform: translateY(-50%);
    background-color: #333 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border: none !important;
    cursor: pointer !important;
}

@media (max-width: 767px) {
    .prev, .next {
        cursor: pointer !important;
        position: absolute !important;
        top: 66% !important;
        width: auto !important;
        padding: 10px !important;
        margin-top: -22px !important;
        font-weight: bold !important;
        font-size: 18px !important;
        transition: 0.6s ease !important;
        border-radius: 0 3px 3px 0 !important;
        user-select: none !important;
        color: #fff !important;
        background-color: rgb(40 42 116 / 24%) !important;
    }
}
/* Slideshow container */
.slideshow-container {
    /* max-width: 1000px;*/
    position: relative;
    margin: auto;
    overflow: hidden !important;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/*.active {
        background-color: #717171;
    }*/

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
    opacity: 1 !important;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.prev, .next {
    cursor: pointer !important;
    position: absolute !important;
    top: 50%;
    width: auto !important;
    padding: 16px !important;
    margin-top: -22px !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 18px !important;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0 !important;
    user-select: none !important;
    color: #fff;
    background-color: rgb(40 42 116 / 24%) !important;
}

.prev {
    left: 0 !important;
}

.next {
    right: 0 !important;
    border-radius: 3px 0 0 3px !important;
}

    /* On hover, add a background color */
    .prev:hover, .next:hover {
        background-color: rgb(40 42 116 / 24%) !important;
        color: #27a028 !important;
    }


