/*copy-text.css*/
button.copy-text{
white-space: nowrap;
position: relative;
display: inline-block;
width: 8.0rem;
height: 2.4rem;
margin: 0 0.6rem;
line-height: 1.2rem;
background-color: rgba(255,255,255,0.4);
border-radius: 0.4rem;
font-size: 1.1rem;
font-weight: 900;
color: rgba(0,0,0,0.8);
z-index: 999;
}
button.copy-text::before{
    content: '\f0c5';
    font-family: 'Font Awesome 7 Free';
    font-size: 1.6rem;
    margin: 0 0.3rem 0 0;
}
button.copy-text:hover{
  opacity: 0.8;
}
