.copy_button {
    display: inline-flex;
    padding: .2rem .2rem;
    margin: 0.3rem;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 0.25rem;
    background-color: transparent  !important;
    color: var(--e-global-color-primary)  !important;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.copy_button:hover {
    background-color: var(--e-global-color-primary)  !important;
    color: white  !important;
}
#clipboard {
    stroke-dasharray: 32.737;
    stroke-dashoffset: 32.737;
    animation: sign .7s ease forwards;
    animation-fill-mode: forwards;
}
#success {
    stroke-dasharray: 14.849;
    stroke-dashoffset: 14.849;
    animation: sign .4s ease forwards;
    animation-fill-mode: forwards;
}
@keyframes sign {
    to {
        stroke-dashoffset: 0%;
    }
}
