.input_copy_wrapper {
    width: auto;
    padding: 10px;
    margin: 0 auto;
}

.input_copy {
    /*    padding: 15px 25px;
    background: #eee;
    border: 2px solid #aaa;*/
    color: #00ff00;
    font-size: 1.2em;
    font-family: "Lucida Console", "Courier New", monospace;
}

.input_copy .icon {
    display: block;
    max-width: 5px;
    cursor: pointer;
    font-size: 0.5em;
    float: right;
}

.input_copy .icon i {
    max-width: 10px;
    font-size: 2.5em;
    color: #fff;
}

.input_copy .icon i:hover {
    color: var(--main-color);
}

.input_copy .icon p {
    font-size: 1.4em;
    color: #fff;
    font-family: "Lucida Console", "Courier New", monospace;
}

.input_copy .icon img {
    max-width: 25px;
}

.input_copy .txt {
    width: 90%;
    display: inline-block;
    overflow: hidden;
}


/* click animation */

.flashBG {
    animation-name: flash;
    animation-timing-function: ease-out;
    animation-duration: 1s;
}

@keyframes flash {
    0% {
        background: #305db8;
    }

    100% {
        background: transparent;
    }
}

.flashFNT {
    animation-name: flash;
    animation-timing-function: ease-out;
    animation-duration: 0.5s;
}

@keyframes flash {
    0% {
        color: #00ff00;
    }

    100% {
        color: transparent;
    }
}