#frame {
    position: absolute;
    width: 200px;
    height: 300px;
    border: solid black 1px;
    overflow: hidden;
    }

.card {
    position: absolute;
    border: solid red 1px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#lista ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#lista li {
    display: block;
    padding: 5px;
    border: solid orange 1px;
}

#lista li:hover {
    background-color: #F4F4F4;
    cursor: pointer;
}

.card {
    transition: -webkit-transform 1s ease;
    background: white;
    -webkit-transform: translateX(100%);
}

.card.visible {
    -webkit-transform: translateX(0);
}
