/*Кнопка наверх*/
.buttomtop{
		position:fixed;
		display:none;
		right:2%;
		bottom:4%;
		z-index:5000;
		}
.buttomtop:before{
		font-size:35px;
		cursor:pointer;
		z-index:500000;
		width:40px;
		height:40px;
		text-align:center;
		border-radius:150%;
		color:#FFF;
		background:#8DB401;
		-webkit-transition:all .50s ease-out;
		-moz-transition:all .50s ease-out;
		-ms-transition:all .50s ease-out;
		-o-transition:all .50s ease-out;
		transition:all .50s ease-out;
		}
.buttomtop:hover:before{
		background:#F48221;
		}
		
@media only screen and (max-width:768px){		
.buttomtop{
		right:45%;
		bottom:1%;
		}
}