.copy-btn{
    display: none;
    align-items: center;
    column-gap: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    color: #111111;
    background: #F6F6F6;
    border-radius: 0px 6px 0px 0px;
    padding: 10px 15px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.show-copy .copy-btn{
    display: flex;
}
.copy-btn-img{
    display: flex;
}
.popup-result-copy{
    position: fixed;
    right: 20px;
    top: 120px;
    background: #F6F6F6;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 20%);
    padding: 20px 30px 20px 20px;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    font-size: 14px;
    cursor: pointer;
    max-width: 100%;
}
.popup-result-copy.fade-in{
    opacity: 1;
}
.popup-result-copy .close-icon{
    padding: 10px;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    background-image: url(https://weblabsmd.github.io/cdn/codex/img/close-modal.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
}
@media(max-width: 767px){
    .popup-result-copy{
        width: 100%;
        top: 75px;
        right: 0;
    }
}