.back_up{
    height: 70px;
    width: 70px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
}

.btn_up{
	height: 70px;
	width: 70px;
	background: rgba(49, 49, 49,1);
	cursor: pointer;
	z-index: 100;
    display: none;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: opacity 350ms;
    -webkit-transition: opacity 350ms;
    position: absolute;
    top: 3px;
    left: 3px;
}

.btn_up .btnCenter{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    height: 70%;
    margin: 15% 0;
}

.btn_up .btnCenter img{
	height: 100%;
}

.btn_up_fond{
    background: #fc5230c5;
    width: 76px;
    height: 76px;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: absolute;
    top: 0;
    right: -3x;
    display: none;
}

@media (max-width: 550px){

    .back_up{
        right: 5px;
        bottom: 5px;
    }
    
    .btn_up{
        height: 40px;
        width: 40px;
        right: 15px;
        bottom: 15px;
        background: rgba(17,17,17,1);
        top: 2px;
        left: unset;
    }

    .btn_up_fond{
        height: 44px;
        width: 44px;
        right: 13px;
        bottom: 17px;
    }

}