.lto-selection {
    position: relative;
    min-width: 30%;
    min-height: 500px;
    max-width: 80%;
    left: 25%;
    background: #fff;
    overflow: hidden;

    .lto-selection-item {
        z-index: 2;
        position: absolute;
        left: 0;
        background: #fff;
        top: 0;
        width: 100%;
        height: 100%;
        user-select: none;
    }

    .lto-animate-right {
        animation: slide-right .3s ease-out;
    }

    .lto-animate-left {
        animation: slide-left .3s ease-out;
    }

    .lto-selection-right {
        right: 0;
        opacity: 0.2;

        &:hover {
            opacity: 0.3;
        }
    }

    .lto-selection-left {
        left: 0;
        opacity: 0.1;

        &:hover {
            opacity: 0.2;
        }
    }

    .lto-selection-right,
    .lto-selection-left {
        position: absolute;
        height: 100%;
        width: 50%;
        background: black;
    }
}

.lto-selection-finished {
    display: none;
}

@keyframes slide-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
        display: none;
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
        display: none;
    }
}
