/*  carousel list  */
.carousel_container {
    width: 793px;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.carousel_list {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel_list >div {
    width: 793px;
    height: 350px;
    flex-shrink: 0;
    position: relative;
}

.carousel_item img {
    width: 100%;
    height: 100%;
    border-radius: 3px 3px 0 0;
}

.carousel_item span {
    display: block;
    position: absolute;
    left: 25px;
    bottom: 35px;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*  carousel footer  */

.carousel_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 793px;
    height: 50px;
    background-color: white;
    opacity: 0.25;
    box-shadow: 0px -20px 20px white;
}

.carousel_buttons {
    position: absolute;
    right: 20px;
    bottom: 15px;
    display: flex;
    z-index: 50;
}

.carousel_buttons button {
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    border-radius: 8px;
    border-width: 0;
    background-color: rgba(255, 255, 255, .1);
}

.carousel_buttons svg {
    fill: white;
    width: 24px;
    height: 24px;
}


.carousel_indicators {
    position: absolute;
    left: 0;
    bottom: 8px;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.carousel_indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .4);
    margin: 5px;
}

.carousel_indicators span.is_active {
    width: 13px;
    height: 13px;
    background-color: white;
}