div.share-icon{
	height: 48px;
	width: 48px;
	border-radius: 8px;
	border: 1px solid #a7a7a7;
    display: inline-flex;
    cursor: pointer;
    justify-content: center;
    align-content: center;
	margin: 0px 5px;
}
div.share-icon:first-child{
	margin: 0px 5px 0px 0px;
}
div.share-icon:hover{
	border: 1px solid #ce4035;
}
div.share-void{
	height: 5px;
	width: 5px;
}
img.share-icon{
    margin: auto;
}
.copy_message{
    position: fixed;
    z-index: 10000;
    bottom: -50px;
    width: 100%;
    display:none;
    left: 0;
}
.message_visible{
    display: flex;
    justify-content: center;
    animation: upanimation 0.5s ease forwards;
}
@keyframes upanimation {
    from {
        bottom: -50px;
    }
    to {
        bottom: 50px;
    }
}

.message_hidden{
    animation: downanimation 0.5s ease forwards;
}

@keyframes downanimation {
    from {
        bottom: 50px;
    }
    to {
        bottom: -50px;
        display:none!important;
    }
}