.copysuccessbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.copysuccess {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    padding: 0.35rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 0.3rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9;
}

.box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.box .svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60px;
    animation: rotates 2s linear infinite;
    -webkit-animation: rotates 2s linear infinite;
    box-sizing: content-box;
    color: #000;
    color: var(--color-icon-primary, #000);
}

@keyframes rotates {
    0% {
        transform: translate(-50%, -50%) rotate(0turn);
    }

    100% {
        transform: translate(-50%, -50%) rotate(1turn);
    }
}