/*-- Loading --*/

.d-progress {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    max-width: 240px;
    max-width: 25vmin;
    max-height: 200px;
    max-height: 20vmin;
    z-index:500;
    display:none;

}

.d-progress table{
      width: 100%;
      font-size: 15px;
      font-size: 1.5vmin;
      color: #a7ce38;
}
.d-progress table tr td:nth-child(2){
  text-align:right;
}


.d-progress.progress-animated .logo{
	transform: scale(1);
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.d-progress.progress-animated .loading, .d-progress.progress-animated .info{
	opacity:1;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	transition-delay: .5s;
}


.d-progress .logo{
		position:relative;
		top:0px;
		left:0px;
		right:0px;
		margin:auto;
		width:140px;
		width:14vmin;
		height:140px;
		height:14vmin;
		z-index:1;
		margin-bottom:20px;
		margin-bottom:2vmin;

	transform: scale(5);
	background:transparent;

}
.d-progress .logo img{
		position:absolute;
		top:0px;
		bottom:0px;
		right:0px;
		left:0px;
		margin:auto;
		max-width:100%;
		max-height:100%;
}


.d-progress .title {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-size: 4vmin;
    font-weight: bold;
    color:#ffffff;

}

.d-progress .info {
    position: relative;
    text-align: right;
    font-size: 15px;
    font-size: 1.5vmin;
    color:#a6dc00;
    opacity:0;
}

.d-progress .loading{
	position:relative;
	opacity:0;
}

.d-progress .progress {
	background-color: #2a2b2f;
	height: 10px;
	height: 1vmin;
	position: relative;
	width: 100%;
	border : 3px solid #2b2b2f;
	border : 0.3vmin solid #2b2b2f;
	left:0px;
	right:0px;
	margin:auto;
	border-radius:20px;
	border-radius:2vmin;
	overflow:hidden;
    margin-top:20px;
    margin-top:2vmin;
    margin-bottom:20px;
    margin-bottom:2vmin;
    -webkit-box-shadow: 0px 0px 18px 8px #a6dc00;
    -moz-box-shadow: 0px 0px 18px 8px #a6dc00;
    box-shadow: 0px 0px 18px 8px #a6dc00;
    animation: ani_progress 1s infinite;



}
.d-progress .progress-bar {

	background: #a6dc00;
	background-size: 100% 8px;
	background-size: 100% .8vmin;
	height: 100%;
	width: 0;
	position: relative;
		  -webkit-transition: all 1s ease-in-out;
		  -moz-transition: all 1s ease-in-out;
		  -o-transition: all 1s ease-in-out;
		  transition: all 1s ease-in-out;


}


	@keyframes ani_progress {
	    0%   {
		    -webkit-box-shadow: 0px 0px 0px 0px #a6dc00;
		    -moz-box-shadow: 0px 0px 0px 0px #a6dc00;
		    box-shadow: 0px 0px 0px 0px #a6dc00;
	    }
	    50%{
		    -webkit-box-shadow: 0px 0px 18px 4px #a6dc00;
		    -webkit-box-shadow: 0px 0px 1.8vmin .4vmin #a6dc00;
		    -moz-box-shadow: 0px 0px 18px 4px #a6dc00;
		    -moz-box-shadow: 0px 0px 1.8vmin .4vmin #a6dc00;
		    box-shadow: 0px 0px 18px 4 #a6dc00;
		    box-shadow: 0px 0px 1.8vmin .4vmin #a6dc00;
	    }
	    100% {
		    -webkit-box-shadow: 0px 0px 0px 0px #a6dc00;
		    -moz-box-shadow: 0px 0px 0px 0px #a6dc00;
		    box-shadow: 0px 0px 0px 0px #a6dc00;
	    }
	}
