/* ========================= LOADER >> START ========================= */
.loader-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: rgba(0,0,0,0.5);
}

.loader-wrapper .loader {
	position: absolute;
	margin: -8px 0 0 -8px;
	top: 50%;
	left: 50%;
}

.loader {
	width: 16px;
	height: 16px;
	float: left;
	display: block;
	background: url(../img/loading.png) no-repeat center;
	
	-webkit-animation-name: spin;
	-webkit-animation-duration: 1.00s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;

	-moz-animation-name: spin;
	-moz-animation-duration: 1.00s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;

	-ms-animation-name: spin;
	-ms-animation-duration: 1.00s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;

	-o-animation-name: spin;
	-o-animation-duration: 1.00s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
	
	animation-name: spin;
	animation-duration: 1.00s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@-webkit-keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@-moz-keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@-ms-keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@-o-keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}
@keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}



/* ========================= LOADER >> END ========================= */



/* ========================= NOTICE >> START ========================= */

.notice-items {
	width: 80%;
	max-width: 400px;
	float: right;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9999;
	overflow: visible;
}

.notice-items .notice-item {
	float: right;
	margin: 10px 0;
	position: relative;
	color: #FFF;
	background: #333;
	background: rgba(0,0,0,0.75);
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
	-ms-box-shadow: 0 0 10px rgba(0,0,0,0.3);
	-o-box-shadow: 0 0 10px rgba(0,0,0,0.3);
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.notice-items .notice-item .notice-item-inner {
	max-width: 360px;
	padding: 10px 30px 10px 60px;
}

.notice-items .notice-item i,
.notice-items .notice-item p {
	margin: 0;
}

.notice-items .notice-item i {position: absolute; top: 50%; left: 20px; margin-top: -15px; font-size: 26px; line-height: 30px;}

.notice-items .notice-item .notice-item-close {
	width: 16px; 
	height: 16px; 
	position: absolute; 
	top: 0; 
	right: 0;
	color: #333;	
	font-size: 14px; 
	line-height: 16px; 
	text-align: center;
	
	background: #822d10;
	
	-webkit-border-radius: 0 4px 0 0; 
	-moz-border-radius: 0 4px 0 0; 
	-ms-border-radius: 0 4px 0 0;
	-o-border-radius: 0 4px 0 0; 
	border-radius: 0 4px 0 0; 
}

/* Notification Types */
.notice-items .notice-item.notice 	{color: rgba(82, 165, 215, 1);} 
.notice-items .notice-item.success 	{color: rgba(138, 186, 86, 1);}
.notice-items .notice-item.error 	{color: rgba(209, 86, 86, 1);}

.notice-items .notice-item.notice .notice-item-close 	{background: rgba(82, 165, 215, 1);}
.notice-items .notice-item.success .notice-item-close 	{background: rgba(138, 186, 86, 1);}
.notice-items .notice-item.error .notice-item-close 	{background: rgba(209, 86, 86, 1);}

/* ========================= NOTICE >> END ========================= */



/* ========================= SCROLLBAR (for Webkit Browsers) >> START ========================= 
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
	background-color: #111;
}


::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    height: 30px;
    display: block;
    background-color: #111;
}



::-webkit-scrollbar-track-piece {
    background-color: #3b3b3b;
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
    background-color: #111;
    -webkit-border-radius: 6px;
}


::-webkit-scrollbar-thumb:vertical {
    height: 50px;
    background-color: #333;
    -webkit-border-radius: 6px;
}*/
/* ========================= SCROLLBAR (for Webkit Browsers) >> END ========================= */



/* ========================= BAR CHART >> START ========================= */

.bar-chart {
	width: 100%;
	margin: 20px 0;
	float: left;
	position: relative;	
}

.bar-chart li {
	width: 0;
	height: 40px;
	padding: 0 10px 0 0;
	display: block;
	text-align: right;
	overflow: hidden;
	position: relative;
	color: #EEE; 
	font-size: 12px; 
	line-height: 40px; 
	font-style: italic;
	border-bottom: 1px solid #222;
	
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	-ms-border-radius: 0 4px 4px 0;
	-o-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
	
	-webkit-transition: all .1s linear;
	-moz-transition: all .1s linear;
	-ms-transition: all .1s linear;
	-o-transition: all .1s linear;
	transition: all .1s linear;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	
}

.bar-chart li:first-child {
	-webkit-border-radius: 4px 4px 4px 0;
	-moz-border-radius: 4px 4px 4px 0;
	-ms-border-radius: 4px 4px 4px 0;
	-o-border-radius: 4px 4px 4px 0;
	border-radius: 4px 4px 4px 0;
}

.bar-chart li:last-child {
	-webkit-border-radius: 0 4px 4px 4px;
	-moz-border-radius: 0 4px 4px 4px;
	-ms-border-radius: 0 4px 4px 4px;
	-o-border-radius: 0 4px 4px 4px;
	border-radius: 0 4px 4px 4px;
}

.bar-chart .bar[data-value^="1"] {background: rgba(138, 186, 86, 0.1);}
.bar-chart .bar[data-value^="2"] {background: rgba(138, 186, 86, 0.2);}
.bar-chart .bar[data-value^="3"] {background: rgba(138, 186, 86, 0.3);}
.bar-chart .bar[data-value^="4"] {background: rgba(138, 186, 86, 0.4);}
.bar-chart .bar[data-value^="5"] {background: rgba(138, 186, 86, 0.5);}
.bar-chart .bar[data-value^="6"] {background: rgba(138, 186, 86, 0.6);}
.bar-chart .bar[data-value^="7"] {background: rgba(138, 186, 86, 0.7);}
.bar-chart .bar[data-value^="8"] {background: rgba(138, 186, 86, 0.8);}
.bar-chart .bar[data-value^="9"] {background: rgba(138, 186, 86, 0.9);}
.bar-chart .bar[data-value^="10"] {background: rgba(138, 186, 86, 1.0);}

.bar-chart .bar[data-value^="1"]:hover {background: rgba(138, 186, 86, 0.2);}
.bar-chart .bar[data-value^="2"]:hover {background: rgba(138, 186, 86, 0.3);}
.bar-chart .bar[data-value^="3"]:hover {background: rgba(138, 186, 86, 0.4);}
.bar-chart .bar[data-value^="4"]:hover {background: rgba(138, 186, 86, 0.5);}
.bar-chart .bar[data-value^="5"]:hover {background: rgba(138, 186, 86, 0.6);}
.bar-chart .bar[data-value^="6"]:hover {background: rgba(138, 186, 86, 0.7);}
.bar-chart .bar[data-value^="7"]:hover {background: rgba(138, 186, 86, 0.8);}
.bar-chart .bar[data-value^="8"]:hover {background: rgba(138, 186, 86, 0.9);}
.bar-chart .bar[data-value^="9"]:hover {background: rgba(138, 186, 86, 1.0);}
.bar-chart .bar[data-value^="10"]:hover {background: rgba(148, 196, 96, 1.0);}

/* ========================= BAR CHART >> END ========================= */



/* ========================= INTRO LAYER >> START ========================= */

.intro.layer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	
	background: #000;
	background: rgba(0,0,0,1);
}

.intro.layer div {
	width: 0;
	height: 5px;
	position: absolute;
	top: 0;
	
	background: #822d10;
}
/* ========================= INTRO LAYER >> END ========================= */
