
.MultiCarousel {
    /*float: left; */
    overflow: hidden; 
    /*padding: 15px; */
    width: 100%; 
    /*position:relative;*/
}
.MultiCarousel .MultiCarousel-inner { 
    transition: 1s ease all; 
    float: left; 
}
.MultiCarousel .leftLst, .MultiCarousel .rightLst { 
    position: absolute;
    border-radius: 50%;
    top: calc(75% - 15px);
    background: #fff;
    width: 35px;
    height: 35px;
    outline: none;
    color: #57247b;
    font-size: 20px;
    border: none;
    box-shadow: 0 1px 5px 0 #57247b;
}
.MultiCarousel .leftLst { 
    left:0; 
}
.MultiCarousel .rightLst { 
    right:0; 
}  
.MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over { 
    /*pointer-events: none; */
    background:#ddd; 
    cursor: not-allowed;
}

.MultiCarousel .lCustom, .MultiCarousel .rCustom { 
    position: absolute;
    border-radius: 50%;
    top: calc(3.5% - 15px);
    background: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #57247b;
    font-size: 20px;
    border: none;
    box-shadow: 0 1px 5px 0 #57247b;
}
.MultiCarousel .lCustom { 
    left:-10px; 
}
.MultiCarousel .rCustom { 
    right:-10px; 
}  