#copyCustomerPayCode:hover {
    background-color: #e9e9e9;
}

#copyCustomerPayCode {
	background-color: #f3f3f3;
    padding: 2px 10px;
    border-radius: var(--miniature-border-radius-base);
    margin: 10px;
    font-size: 18px;
    cursor: pointer;
}

#copyCustomerPayCode:before {
    content: '\f0c5';
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
    color: grey;
}

#copyCustomerPayCode.copied:before {
    content: '\f00c';
    font-weight: 700;
    cursor: default;
}

#copyCustomerPayCode.copied:after {
    content: 'Customer payment link copied!';
    position: absolute;
    font-size: 0.8em;
    left: 15%;
    bottom: 50%;
    transform: translate(-50%, -50%);
    animation: crox-fade 5s forwards;
    background: #fff;
    padding: 2px 8px;
    pointer-events: none;
    border-radius: 5px;
    box-shadow: 0 0 24px rgba(0,0,0,.08);
}

/* #copyCustomerPayCode{
    white-space: break-spaces !important;
    overflow: hidden !important;
    overflow-wrap: break-word !important;
} */
#copyCustomerPayCode{
    font-size: 16px !important;
}