/* Scroll */

.top {
	height: 90%;
	white-space: nowrap;
	position: relative;
	transition: left 1s;
}

.top {
	z-index: 1000;
	cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.top:hover {
    background: rgba(0, 0, 0, 0.9);
}

.top:hover i {
    color: #fff;
    top: 5px;
}

.top__icon {
	font-family: FontAwesome;
	font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
	color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.top__icon:before {
	content: "\f077";
	text-decoration: inherit;
	display: inline-block;
	speak: none;
}

/* Fonts */

@font-face {
	font-family: 'FontAwesome';
	font-style: normal;
	font-weight: normal;
	src: url('../fnt/fontawesome_regular/fontawesome-webfont.eot?v=3.2.1');
	src: url('../fnt/fontawesome_regular/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),
	url('../fnt/fontawesome_regular/fontawesome-webfont.woff?v=3.2.1') format('woff'),
	url('../fnt/fontawesome_regular/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),
	url('../fnt/fontawesome_regular/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg')
}