/*
.preloader{
	position: fixed;
	top: 0; 
	left: 0; 	
	width: 100%;
	height: 100%;
	transition: 1s; 
	z-index: 1000000000000;

}
.preloader::before{
	content: '';
	position: absolute;
	left: 0;
	width: 50%;
	height: 100%;
	background: #111111;
	transition: 1s; 
}

.preloader::after{
	content: '';
	position: absolute;
	right: 0;
	width: 50%;
	height: 100%;
	background: #111111;
	transition: 1s; 

}
.preloader.complete::before{
	left: -50%;
}
.preloader.complete:after{
	right: -50%;
}
.loader{
	width: 100%; 
	height: auto; 
	overflow: hidden;
	position: absolute;
	z-index: 10000;

}
.loader img{
	width: 150px;
}
.preloader.complete{
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	padding-top: 10em;
}

.preloader {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 10000000;
	background: #111111;
}
#bitcoin{
	width:200px;
	margin:0 auto;
	display:block;
	text-align:center;
	color:#888888;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.path {
  stroke-dasharray: 2110;
  stroke-dashoffset: 2110;
  stroke-width:2;
  stroke-linecap:round;
  animation: dash 6s linear infinite;
  fill-opacity:0;
  stroke:orange;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 2110;
    opacity:0;
    stroke:orange;
  }
  15%{
    opacity:1;
    stroke:orange;
  }
  70%{
    opacity:1;
    stroke:orange;
  }
  100%{
    stroke-dashoffset:0;
    opacity:0;
    stroke:yellow;
  }
}

.show-back-to-top {
    display: block;
    right: 20px;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    height: 45px;
    width: 45px;
    line-height: 44px;
    font-size: 16px;
    opacity: 1;
    z-index: 1111;
    display: none;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    background: #2d2d2d;
    color: #999;
}
.loading_it {
    overflow: hidden;
    height: 100%;
}
*/