#custom-slider {
    position: relative;
    width: 100%;
    height: auto;
	max-height: 400px;
	overflow: hidden;
	display: inline-block;
}

#custom-slider .slide {
    width: 100%;
    display: none;
}
#custom-slider .slide img {
	display: block;
	width: 100%;
	height: auto;
}

#custom-slider .dbc-caret {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: white;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.dbc-left-caret {
    left: 0;
}
.dbc-left-caret {
    right: 0;
}

.slider-bullets {
    text-align: center;
    padding-top: 10px;
}

.slider-bullets .bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    margin: 0 5px;
    cursor: pointer;
}

.slider-bullets .bullet.active {
    background-color: #fff;
}