.clone_js_button{
    width:50px;
    height:50px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px rgba(61, 43, 43, 0.4);
    transition: all .5s ease;
}
.clone_js_button:hover{
    cursor: pointer;
    box-shadow: 0px 0px 15px #000;
}
.clone_js_button_items{
    width:50px;
    height:50px;
    border-radius: 50%;
    transition: all .3s ease;
}
.clone_js_button_popup{
    padding:4px 12px;
    border-radius: 6px;
    /* box-shadow: 0px 0px 5px rgba(61, 43, 43, 0.4); */
    transition: all .2s ease;
    font-family: Geneva, Arial, Helvetica, sans-serif;
    border:1px solid #eee;
    background-color:#fff;
    position:relative;
    font-size: 16px !important;
}
.clone_js_button_popup:before {
	content: ""; 
	position: absolute;  
	left: -5px;
	top: 32%;
    width:8px;
    height: 8px;
    background-color:#fff;
    border-left:1px solid #eee;
    border-bottom:1px solid #eee;
    /* box-shadow: -4px 0px 4px rgba(61, 43, 43, 0.4); */
    transform:rotate(45deg);
}