.eb-carousel {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.eb-carousel .eb-carousel-slider-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    overflow: hidden;
}

.eb-carousel .eb-carousel-slider-container .eb-carousel-slider {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    visibility: hidden;
    align-content: flex-start;
    align-items: stretch;
    -webkit-transition: transform .5s;
    -moz-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
}

.eb-carousel .eb-carousel-slider-container .eb-carousel-slider.loaded {
    visibility: visible;
}

.eb-carousel .eb-carousel-slider-container .eb-carousel-slider .eb-carousel-slider-item {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.eb-carousel .eb-carousel-indicators {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
}

.eb-carousel .eb-carousel-indicators .eb-carousel-indicators-indicator {
    display: block;
    margin: 5px;
    width: 20px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    border-radius: 10%;
}

.eb-carousel .eb-carousel-indicators .eb-carousel-indicators-indicator.active {
    margin: 7px;
    width: 22px;
    height: 7px;
    background-color: rgba(255, 255, 255, 1) !important;
}

.eb-carousel .eb-carousel-control {
    position: absolute;
    display: flex;
    padding: 0;
    margin: 0 5px;
    border: none;
    height: 35px;
    width: 35px;
    border-radius: 5px;
    cursor: pointer;
    top: calc(50% - 17.5px);
    bottom: 0;
    background-color: white !important;
}


/*============================================================[ carousel options ]*/
.eb-carousel.eb-outward-indicators .eb-carousel-slider-container {
    bottom: 20px;
}

.eb-carousel.eb-outward-controls .eb-carousel-slider-container {
    left: 40px;
    right: 40px;
}

.eb-carousel .eb-carousel-control.circle {
    border-radius: 50%;
}

.eb-carousel .eb-carousel-indicators.black .eb-carousel-indicators-indicator {
    background-color: rgba(0, 0, 0, 0.25) !important;
}

.eb-carousel .eb-carousel-indicators.black .eb-carousel-indicators-indicator.active {
    background-color: rgba(0, 0, 0, 0.75) !important;
}


/*============================================================[ /carousel options ]*/


.eb-carousel .eb-carousel-control.eb-carousel-control-right {
    right: 0;
    left: auto;
}

.eb-carousel .eb-carousel-control.eb-carousel-control-left {
    left: 0;
    right: auto;
}
