.wwfImageSlider{
    display: grid;
    background-color: #f8f9fa;
    opacity: 0;
}

.noImage{
    display: none;
}


.wwfImageSlider > .et_pb_is_wwf_imageSlide{
    width: 100%;
    display: flex;
    justify-content: center;
    grid-area: 1 / 1 / 1 / 1;
}

.wwfImageSlider > .et_pb_is_wwf_imageSlide > .et_pb_module_inner{
    width: 100%;
}

.et_pb_is_wwf_imageSlider{
    background-color: transparent;
}

.et_pb_slides, .et_pb_is_wwf_imageSlide, .wwfImageSlider, .et_pb_wwf_slide_image{
    height: 100%;
}

.et_pb_module_inner > .et_pb_is_wwf_imageSlide{
    display: flex;
    flex-direction: column;
}

.wwf-imgWrapper{
    position: relative;
    width: 100%;
}

.wwf-imgBottomWrapper{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #343a4080;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 15px;
}


/*copyright text*/
.wwf-imgBottomWrapper p{
    color: #dee2e6;
    grid-column: 3 / span 1;
    text-align: right;
    align-self: center;
 }
.wwf_slide_copyright{
    line-height: 20px;
    margin: 6px 6px 6px 0;
}

.et_pb_is_wwf_imageSlide .et_pb_wwf_slide_image{
    overflow: hidden;
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.et_pb_is_wwf_imageSlide .et_pb_wwf_slide_image > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}


/*DOTS*/
#wwf_dotWrapper{
    align-self: center;
    grid-column: 2 / span 1;
    width: 100%;
    min-width: 250px;
    display: flex;
    justify-content: center;
}

.wwf_sliderDot{
    border: none;
    background-color: white;
    width: 12px;
    height: 12px;
    margin: 10px 5px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #adb5bd;
    padding: 0px;

}

/*DESCRIPTION*/
.wwf-description-wrapper{
    padding: 25px;
    overflow: hidden;
    overflow-y: auto;
}
.wwf-description{
    margin-top: 0px;
}
.et_pb_is_wwf_slide_title{
    padding: 0;
    margin-bottom: 5px;
}


.buttonOverlay{
    pointer-events: none;
    left: 0;
    position: absolute;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.wwfSliderLeft, .wwfSliderRight{
    cursor: pointer;
    background-color: transparent;
    border: none;
    font-size: 64px;
    transition: all .15s ease-in;
    pointer-events: all;
    color: #fff;
}
.wwfSliderLeft:hover ,.wwfSliderRight:hover{
    color: #dee2e6;
}

.wwfSliderLeft::before{
    position: relative;
    font-family: 'ETmodules' !important;
    content: "4";
}.wwfSliderRight::before{
    position: relative;
    font-family: 'ETmodules' !important;
    content: "5";
}




.wwfSliderLeft{
    transform: translateX(-25px);
    opacity: 0;
}.wwfSliderRight{
    transform: translateX(25px);
     opacity: 0;
}

.wwfImageSlider:hover .wwfSliderLeft{
    transform: translateX(5px);
    opacity: 1;
}.wwfImageSlider:hover .wwfSliderRight{
    transform: translateX(-5px);
     opacity: 1;
}


/*change copyright grid*/
@media(max-width: 900px){
    .wwf-imgBottomWrapper{
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }


    .wwf_slide_copyright{
        margin: 6px 0 0 0;
        text-align: center !important;
    }

    
    .wwfSliderLeft{
        transform: translateX(5px);
        opacity: 1;
        font-size: 52px;
    }
    .wwfSliderRight{
        transform: translateX(-5px);
        opacity: 1;
        font-size: 52px;
    }

}

.et_pb_is_wwf_imageSlider .et_pb_is_wwf_imageSlide .et_pb_wwf_slide_image img {
    position: relative;
    top: 0px !important;
}

/*
/* Works on Firefox */
.wwf-description-wrapper {
    scrollbar-width: auto;
    scrollbar-color: #495057 #e9ecef;
}

/* Works on Chrome, Edge, and Safari */

.wwf-description-wrapper::-webkit-scrollbar {
    width: auto;
}

.wwf-description-wrapper::-webkit-scrollbar-track {
    background: #dee2e6;
}

.wwf-description-wrapper::-webkit-scrollbar-thumb {
    background-color: #495057;
}

