.keep-changes.hid {
    display: none;
}
.keep-changes {
    display: flex;
    position: fixed;
    right: 5px;
    top: 43%;
    z-index: 10;
    background: #56cc5b;
    padding: 12px 18px;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.keep-changes > * {
    margin: 0;
}
.keep-changes > i {
    margin-left: 23px;
    font-size: 52px;
}
.keep-changes-arrow {
    animation-name: keepChangesArrow;
    animation-duration: 0.85s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.keep-changes.remove {
    animation: removeKeepChanges 1s forwards;
}
@keyframes keepChangesArrow {
    from {
        transform: translateY(-10px);
    }
    to {
        transform: translateY(10px);
    }
}

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