.lto-previous, .lto-next {
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    z-index: 20;
    top: 40%;
    text-align: center;
    vertical-align: middle;
    color: white;
    cursor: pointer;
}

.lto-next {
    right: 15px;
}

.lto-previous {
    left: 15px;
}

.lto-block.lto-nested.lto-carousel-cell {
    display: inline-block;
    height: fit-content;
    width: fit-content;
    position: absolute;
    -webkit-animation: fadein 2s;
    animation: fadein 2s;
    border-radius: 15px;
}

.lto-carousel-cell.lto-previous-item {
    zoom: 90%;
    left: 0;
    top: 20px;
    pointer-events: none;
    opacity: 0.6;
}

.lto-carousel-cell.lto-center-item {
    -webkit-animation: none;
    animation: none;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

.lto-carousel-cell.lto-next-item {
    zoom: 90%;
    right: 0;
    top: 20px;
    pointer-events: none;
    opacity: 0.6;
}

.lto-block.lto-nested.lto-carousel-cell.lto-not-visible-item {
    display: none;
    pointer-events: none;
}

.lto-carousel {
    max-width: 80%;
    min-width: 30%;
    height: 80vh;
    overflow-y: hidden;
    position: relative;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
