.copied {
    /* border: 4px solid whitesmoke; */
    border: 1px solid whitesmoke;
    box-shadow: 0 0 3px 2px blue;
    background-color: whitesmoke;
    transform: scale(1.1);
    transition: all .2s;
    /* width: 90% !important; */
    text-wrap: wrap;
    position: relative;
    /* /* z-index: 1; */
    margin-left: 3%;
}
.decopied {
    position: static;
    z-index: inherit;
    border: 1px solid whitesmoke;
    box-shadow: none;
    /* background-color: black; */
    transform: scale(1.0);
    transition: all .33s;
}