/* Image Slider */
.imageSlider {
    position: relative;
    margin-top: 15px;
    box-shadow: 0px 0px 10px rgba(109, 109, 109, 0.61);
}

.imageSlider > .btn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    background-color: black;
    border-radius: 50%;
    text-align: center;
    opacity: 40%;
    cursor: pointer;
}

/* Image slider side button */
.imageSlider > .btn:hover {
    opacity: 70%;
}

.imageSlider > .btn > i {
    font-size: 30px;
    line-height: 45px;
    color: rgb(255, 255, 255);
}

.imageSlider > .leftBtn {
    left: 20px;
}

.imageSlider > .rightBtn {
    right: 20px;
}

/* Image slider bottom lists */
.imageSlider > .bottomLists {
    height: 15px;
    bottom: 20px;
    position: absolute;
    width: 100%;
    text-align: center;
}

.imageSlider > .bottomLists > .listCircle {
    display: inline-block;
    height: 15px;
    width: 15px;
    background-color: rgba(0, 0, 0, 0.349);
    border-radius: 50%;
    margin: 0px 3px;
}

.imageSlider > .bottomLists > .listCircle:hover {
    background-color: rgb(99, 99, 99);
    cursor: pointer;
}

.imageSlider > .bottomLists > .now, .imageSlider > .bottomLists > .now:hover {
    background-color: #1E8228;
}