
@keyframes fade-item-out {
    from {
        display: block;
        opacity: 1;
    }
    to {
        display: none;
        opacity: 0;
    }
}

@keyframes pachi_pachi {
    from {
        background-color: rgba(255, 255, 0, 0.01);
    }
    to {
        background-color: rgba(255, 255, 0, 0.2);
    }
}

#copiedToast {
    position: fixed;
    width: 100%;
    height: 3em;
    top: 6em;
    text-align: center;
    background-color: #90e8b8;
    animation: fade-item-out 1200ms ease-in 0s 1 normal forwards running;
}

#copiedToast > div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    height: 100%;
}

.copy-space.select {
    position: relative;
    cursor: pointer;
}

.copy-space.select:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    display: block;
    content: '';
    animation: pachi_pachi 1000ms ease 0s infinite;
}

.copy-space.select:after {
    position: absolute;
    top: 0;
    left: -1.2em;
    z-index: 2;
    display: block;
    color: #666;
    font-family: FontAwesome;
    content: '\f0ea';
}

.copy-space.select:hover {
    animation: none;
    background-color: #fffdbf !important;
}
