/*Кнопка наверх*/
.buttomtop{
		position:fixed;
		display:none;
		right:2%;
		bottom:4%;
		z-index:5000;
		}
.buttomtop:before{
		font-size:32px;
		cursor:pointer;
		z-index:500000;
		padding:12px 0 0 0;
		width:60px;
		height:60px;
		text-align:center;
		color:#FFF;
		border-radius:150%;
		background:#5AA345;
		transition:background 0.2s ease-in-out, opacity 0.2s ease-in-out;
		}
.buttomtop:hover:before{
		background:#3e7639;
		color:#FFF;
		}
		
@media only screen and (max-width:768px){		
.buttomtop{
		display:none !important;
		right:43.7%;
		bottom:1%;
		}
}