/* base.css */

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.js .sidemenu, .js #page-container {
	opacity: 0;
}

.sidemenu {
	position: fixed;
	right: 20px;
	top: 50%;
	z-index: 1000;
	
	width: 100px;
	margin: 0;
	padding: 0;
	
	list-style-type: none;
}
.sidemenu li {
	height: 30px;
	text-align: right;
	
	position: relative;
}
.sidemenu li a {
	font-family: "HelveticaNeue", "Neue Helvetica", "Helvetica Neue", "Neue Helvetica W02", sans-serif;
    font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
	
	display: block;
	width: 30px;
	height: 30px;
	
	position: absolute;
	right: 0;
}
.sidemenu li a em {
	background: transparent;
	border: 1px solid;

	display: block;
	width: 10px;
	height: 10px;
	margin: 0 auto;
	
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
}
.sidemenu li a span {
	line-height: 30px;
	
	display: none;
	
	position: absolute;
	right: 30px;
	margin: 0 10px 0 0;

	border: 1px solid;

	padding: 0 17px;
    white-space: nowrap;

}
.sidemenu li a:hover span {	
	display: block;
}

.sidemenu li.active em {
	background: #fff900;
}

.black .sidemenu li a {
	color: #fff900;
}
.black .sidemenu li a:hover em {
	background: #fff900;
}
.black .sidemenu li a em {
	border-color: #fff900;
}
.yellow .sidemenu li a {
	color: #000;
}
.yellow .sidemenu li a:hover em {
	background: #000;
}
.yellow .sidemenu li.active em {
	background: #000;
}
.yellow .sidemenu li a em {
	border-color: #000;
}
.white .sidemenu li a {
	color: #000;
}
.white .sidemenu li a:hover em {
	background: #000;
}
.white .sidemenu li.active em {
	background: #000;
}
.white .sidemenu li a em {
	border-color: #000;
}

.header-bar {
	display: none;
}

.menu {
	background: #000;
	
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3000;
	
	-webkit-transition: top 0.2s ease-out;
	   -moz-transition: top 0.2s ease-out;
	     -o-transition: top 0.2s ease-out;
	        transition: top 0.2s ease-out;

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	     -o-transform: translateZ(0);
	        transform: translateZ(0);
}
.menu.hidden {
	top: -100%;
	
	-webkit-transform: rotate(0deg) scale(1) translateZ(0);
	   -moz-transform: rotate(0deg) scale(1) translateZ(0);
	    -ms-transform: rotate(0deg) scale(1) translateZ(0);
	     -o-transform: rotate(0deg) scale(1) translateZ(0);
	        transform: rotate(0deg) scale(1) translateZ(0);
}

.menu .items {
	background: #000;
	
	width: 100%;
	height: auto;
	
	position: relative;
}
.menu .items:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.menu .item {
	float: left;
	
	min-width: 200px;
	width: 16.66666666667%;
	height: 200px;
	
	position: relative;
	text-decoration: none;
	
	cursor: pointer;
}
.menu .item-double {
	min-width: 400px;
	width: 33.33333333334%;
}
.menu .item.yellow {
	background: #fff900;
	color: #000;
}
.menu .item.white {
	background: #fff;
	color: #000;
}
.menu .item.black {
	background: #000;
	color: #fff900;
}

.menu .item .menu-break-text {
	padding: 15%;
	/*padding: 15% 50% 15% 15%;*/
}
.menu .item h2 {
	font-size: 70px;
	font-size: 7.0rem;
	font-style: italic;
	
	margin: 0 0 22px 0;
	position: relative;
}
.menu .item h2:after {
	background: #000;
	content: '';
	
	display: block;
	width: 91px;
	height: 1px;
	margin: 0 auto;
	
	position: absolute;
	bottom: -18px;
	left: 0;
}
.menu .item h3 {
	font-size: 24px;
	font-size: 2.4rem;
	font-style: italic;
	
	margin: 0 0 23px 0;
}
.menu .item h5 {
	font-size: 12px;
	font-size: 1.2rem;
	text-transform: uppercase;
	line-height: 1.2;
	
	margin: 0;
}


.menu .item img {
	display: block;
	width: 100%;
	
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	
	-webkit-transition: opacity 0.2s ease-out;
	   -moz-transition: opacity 0.2s ease-out;
	     -o-transition: opacity 0.2s ease-out;
	        transition: opacity 0.2s ease-out;

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	     -o-transform: translateZ(0);
	        transform: translateZ(0);
}
.menu .item .hover {
	opacity: 0;
}
.menu .item .item-more {
	margin-top: -15px;
	
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	
	text-align: center;
	
	opacity: 0;
}

.menu .item .item-more .item-more-button {
	border: 1px solid #FFF900;
	color: #FFF900;
	display: inline-block;
	font-family: "HelveticaNeue", "Neue Helvetica", "Helvetica Neue", "Neue Helvetica W02";
	font-size: 12px;
	height: 28px;
	line-height: 28px;
	margin: 0 0 5px;
	padding: 0 17px;
	text-decoration: none;
	text-transform: uppercase;
}
.menu .item .item-more.yellow .item-more-button {
	border: 1px solid #FFF900;
    color: #FFF900;
}
.menu .item .item-more.black .item-more-button {
	border: 1px solid #000;
    color: #000;
}
.menu .item .item-more .item-more-button.item-more-button-big {
	height: auto;
	line-height: 1.4;
	padding-bottom: 3px;
}
.menu .item .item-more .item-more-button.item-more-button-big .big {
	font-style: italic;
	font-size: 24px;
	font-size: 2.4rem;
}


.menu .item:hover .hover,
.menu .item:hover .item-more {
	opacity: 1;
	
	-webkit-transform: rotate(0deg) scale(1) translateZ(0);
	   -moz-transform: rotate(0deg) scale(1) translateZ(0);
	    -ms-transform: rotate(0deg) scale(1) translateZ(0);
	     -o-transform: rotate(0deg) scale(1) translateZ(0);
	        transform: rotate(0deg) scale(1) translateZ(0);
}

.menu .item.yellow.break-template,
.menu .item.yellow.exit-template {
	-webkit-transition: background-color 200ms, color 200ms;
	-moz-transition: background-color 200ms, color 200ms;
	-ms-transition: background-color 200ms, color 200ms;
	-o-transition: background-color 200ms, color 200ms;
	transition: background-color 200ms, color 200ms;
}
.menu .item.yellow.break-template:hover,
.menu .item.yellow.exit-template:hover {
	background-color: black;
	color: #fffa00;

}
.menu .item.yellow.break-template:hover h2:after {
	background: #fffa00;
	-webkit-transition: background-color 200ms;
	-moz-transition: background-color 200ms;
	-ms-transition: background-color 200ms;
	-o-transition: background-color 200ms;
	transition: background-color 200ms;
}

.menu .menu-close {
	background: #000;
	
	color: #fff900;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 40px;
	
	display: inline-block;
	width: 100px;
	height: 40px;
	padding: 0 20px;
	margin: 0 auto;
	
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3000;
	white-space: nowrap;
}

@media screen and (min-width: 250px) {
	.menu {
		display: none;
	}
	.menu .item {
		width: 100%;
	}
	.menu .item-double {
		width: 100%;
	}
}
@media screen and (min-width: 500px) {
	.menu .item {
		width: 50%;
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
	.menu .item-double {
		width: 100%;
	}
}
@media screen and (min-width: 750px) {
	.menu {
		display: block;
	}

	.menu .item {
		width: 33.33333333334%;
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
	.menu .item-double {
		width: 66.66666666667%;
		width: -webkit-calc(100% / 1.5);
		width: calc(100% / 1.5);
	}
}
@media screen and (min-width: 1000px) {
	.menu .item {
		width: 25%;
		width: -webkit-calc(100% / 4);
		width: calc(100% / 4);
	}
	.menu .item-double {
		width: 50%;
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}
}
@media screen and (min-width: 1250px) {
	.menu .item {
		width: 20%;
		width: -webkit-calc(100% / 5);
		width: calc(100% / 5);
	}
	.menu .item-double {
		width: 40%;
		width: -webkit-calc(100% / 2.5);
		width: calc(100% / 2.5);
	}
}
@media screen and (min-width: 1500px) {
	.menu .item {
		width: 16.66666666667%;
		width: -webkit-calc(100% / 6);
		width: calc(100% / 6);
	}
	.menu .item-double {
		width: 33.33333333334%;
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}





/* logo */
.navigation {
	background-image: url('../images/logo.yellow.png');
	background-attachment: fixed;
	background-position: 70px 70px;
	background-repeat: no-repeat;

	display: block;

	position: absolute;
	width: 200px;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2000;
}
.page.video .navigation,
.page-yellow .navigation,
.page-white .navigation {
	background-image: url('../images/logo.black.png');
}
.page.home .navigation {
	background-image: url('../images/logo.yellow.png');
}
.navigation .logo {
	display: block;
	
	position: absolute;
	top: 65px;
	left: 65px;
	width: 65px;
	height: 30px;
	
	text-indent: -22222px;
	overflow: hidden;
}

.navigation .tools {
	opacity: 0;
	display: none;
	
	position: fixed;
	top: 140px;
	left: 70px;
	width: 130px;
	
	-webkit-transition: opacity 0.2s;
	   -moz-transition: opacity 0.2s;
	     -o-transition: opacity 0.2s;
	        transition: opacity 0.2s;

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	     -o-transform: translateZ(0);
	        transform: translateZ(0);
}

.active .navigation .tools {
	opacity: 1;
	display: block;
	
	-webkit-transform: rotate(0deg) scale(1) translateZ(0);
	   -moz-transform: rotate(0deg) scale(1) translateZ(0);
	    -ms-transform: rotate(0deg) scale(1) translateZ(0);
	     -o-transform: rotate(0deg) scale(1) translateZ(0);
	        transform: rotate(0deg) scale(1) translateZ(0);
}

.navigation .tools h2 {
	border-top: 1px solid #fff900;
	
	font-family: "HelveticaNeue", "Neue Helvetica", "Helvetica Neue", "Neue Helvetica W02";
	font-size: 24px;
	font-style: italic;
	text-transform: uppercase;
	
	padding-top: 5px;
}
.navigation .tools p {
	width: 230px;

	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.page-yellow .navigation .tools,
.page-white .navigation .tools {
	color: #000;
}
.page-yellow .navigation .tools h2,
.page-white .navigation .tools h2 {
	border-color: #000;
}
.navigation .tools .button {
	margin: 0 0 5px 0;
	white-space: nowrap;
}
.button {
	border: 1px solid #fff900;
	
	color: #fff900;
	font-family: "HelveticaNeue", "Neue Helvetica", "Helvetica Neue", "Neue Helvetica W02";
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 28px;
	
	display: inline-block;
	height: 28px;
	padding: 0 17px;
}
.page-yellow .button,
.page-white .button {
	color: #000;
	border-color: #000;
}
.button:hover {
	border-color: transparent;
	text-decoration: none;
}



/* page sections */
.page {
	position: relative;
	overflow: hidden;
	height: 100%;
}


.page-yellow {
	background: #fff900;
	color: #000;
}
.page-white {
	background: #fff;
	color: #000;
}

.page-black {
	background: #000;
	color: #fff900;
}
.page-black a {
	color: #FFF900;
}

.page-detail {
	display: none;

	background: #000;
    height: 100%;
    left: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
	
	-webkit-transition: all 0.2s;
	   -moz-transition: all 0.2s;
	     -o-transition: all 0.2s;
	        transition: all 0.2s;

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	     -o-transform: translateZ(0);
	        transform: translateZ(0);
}
.page-detail.visible {
	display: block;
}
.page-detail-content {
	position: relative;
	z-index: 2100;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
	width: 100%;
}

.detail-close {
	background: black url('../images/close.png') center center no-repeat;
	
	width: 55px;
	height: 55px;
	
	position: fixed;
	top: 50px;
	right: 50px;
	
	text-indent: -22222px;
	overflow: hidden;
	z-index: 5000;
	
	cursor: pointer;
}



.color {
	color: #000;
}
#page-container {
	display: block;
	width: 100%;
	height: 100%;
}
#page-container.screen-up .page-black {
	cursor: url(../images/cursor/arrow-up-yellow.png), url(../images/cursor/arrow-up-yellow.cur), default;
	/*cursor: url('../images/arrow-up-yellow.png') 18 0, default;*/
}
#page-container.screen-down .page-black {
	cursor: url(../images/cursor/arrow-down-yellow.png), url(../images/cursor/arrow-down-yellow.cur), default;
	/*cursor: url('../images/arrow-down-yellow.png') 18 20, default;*/
}

#page-container.screen-down .page-white,
#page-container.screen-down .page-yellow {
	cursor: url(../images/cursor/arrow-down-black.png), url(../images/cursor/arrow-down-black.cur), default;
}
#page-container.screen-up .page-white,
#page-container.screen-up .page-yellow {
	cursor: url(../images/cursor/arrow-up-black.png), url(../images/cursor/arrow-up-black.cur), default;
}
#page-container.disabled {
	overflow: hidden;
}

.page-detail.multi.screen-left img { cursor: url(../images/cursor/arrow-left-yellow.png), url(../images/cursor/arrow-left-yellow.cur), default;}
.page-detail.multi.screen-right img { cursor: url(../images/cursor/arrow-right-yellow.png), url(../images/cursor/arrow-right-yellow.cur), default;}
.page-detail.multi.screen-left { cursor: url(../images/cursor/arrow-left-yellow.png), url(../images/cursor/arrow-left-yellow.cur), default;}
.page-detail.multi.screen-right { cursor: url(../images/cursor/arrow-right-yellow.png), url(../images/cursor/arrow-right-yellow.cur), default;}



.page-content {
	display: table;
	width: 100%;
	height: 100%;

	position: relative;
	z-index: 100;
}
.page-content-text {
	text-align: center;

	display: table-cell;
	width: 100%;
	height: 100%;

	vertical-align: middle;
}
.page-content-text h1 {
	overflow: hidden;
}
.page-content-text .marquee h1 {
	white-space: nowrap;
}


.page-content-text h4 {
	text-align: center;
}

/* image section */
.page .background {
	background: transparent;

	width: 100%;
	height: 100%;
	overflow: hidden;

	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.page .background-video {
	background: #000;
}
.page .background-map {
	background: #000;
}
.page .background img {
	display: block;
	width: 100%;
	position: relative;
}
/* page sections */
.page .page-content-text h2 {
	font-size: 70px;
	font-size: 7.0rem;
	font-style: italic;
	
	margin: 0 0 36px 0;
	position: relative;
}
.page .page-content-text h2:after,
.page .page-content-text .h2-tag:after {
	background: #fff900;
	content: '';
	
	display: block;
	width: 91px;
	height: 1px;
	margin: 0 auto;
	
	position: absolute;
	bottom: -18px;
	right: 0;
	left: 0;
}
.page .page-content-text .h2-tag:after {
	bottom: 30px;
}
.page .page-content-text .h2-tag h2:after {
	display: none;
}
.page.page-white .page-content-text h2:after,
.page.page-yellow .page-content-text h2:after {
	background: #000;
}
.page .page-content-text h3 {
	font-size: 24px;
	font-size: 2.4rem;
	font-style: italic;
	
	margin: 0 0 23px 0;
}
.page .page-content-text p {
	font-size: 18px;
	font-size: 1.8rem;
	text-transform: uppercase;
	line-height: 1.2;
	
	margin: 0 0 12px;
}

/* ticker */
.tickeroverlay-right {
    display: block;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}
.tickercontainer {
    /*height: 155px;*/
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.tickercontainer .mask {
    overflow: hidden;
    position: relative;
    top: 8px;
}
.invert .tickercontainer {
    color: #000000;
}
ul.newsticker {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    transition: all 0s linear 0s;
}
ul.newsticker li {
    float: left;
    margin: 0;
}
ul.newsticker li h1 {
    margin: 0;
}
.ticker {
    float: left;
	list-style-type: none;
}
.ticker li {
    float: left;
    margin: 0;
}



/* page video */
.video video {
	width: 100%;
	height: 100%;
	
	position: relative;
	z-index: 1;
}

.clients .page-content-text h2 {
	font-size: 70px;
	font-size: 7rem;
	padding: 0 20px;
}
.page-white.clients .page-content-text h2,
.page-yellow.clients .page-content-text h2 {
	color: #000;
}
.clients .page-content-text h2:after {
	display: none;
}
.clients .page-content-text h2 span {
	font-style: italic;
}
.clients .page-content-text h2 a {
	border: 1px solid transparent;
	text-decoration: none;
}
.clients .background-clients img {
	display: none;
	bottom: 0;
	position: absolute;
}

@media screen and (min-width: 1024px){
	.clients .page-content-text h2 {
		font-size: 40px;
		font-size: 4.0rem;
		padding: 0 20px;
	}
}
@media screen and (min-width: 1850px){
	.clients .page-content-text h2,
	.clients .page-content-text h2 {
		font-size: 70px;
		font-size: 7.0rem;
		padding: 0 20px;
	}
}




/* map */
#contactMap {
	display: block;
	width: 100%;
	height: 100%;
}
#contactMap + div + .section-wrapper {-moz-box-shadow: inset 0 0 185px 85px #000; -webkit-box-shadow: inset 0 0 185px 85px #000; box-shadow: inset 0 0 185px 85px #000; }
#overlayText {position: absolute; z-index:5; top: 50%; left: 50%; margin-top: -190px; max-width:320px; margin-left: -38px; text-align: left;}
#overlayText h5 {margin: 0; border: 1px solid #FFF900; border-bottom: none; padding: 20px 25px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; line-height: 1.4;}
#overlayText > div { background: url(../images/google_overlay.png) bottom left no-repeat; padding-bottom: 15px;}
.notVisible { display: none;}

ul.inline { display:inline; list-style:none; padding:0; margin:0; }
ul.inline li { display:inline; list-style:none; padding:0; margin:0; }

.map .page-content-text h2 {
	font-size: 70px;
	font-size: 7.0rem;
	margin: 100px 0 0 0;
	border: none;
}

a.menuButton,
a.locationButton {padding: 1px 12px 1px 12px; text-decoration: none; cursor:pointer;}
a.locationButton {cursor:pointer;}
.page-black a.menuButton,
.page-black a.locationButton {
	color: #fff900; cursor: pointer;
}
.page-white a.menuButton,
.page-yellow a.menuButton,
.page-white a.locationButton,
.page-yellow a.locationButton {
	color: #000; cursor:pointer;
}
.page-black a.menuButton:hover,
.page-black a.menuButton.active,
.page-black a.locationButton.active {
	border: 1px solid #fff900;
}
.page-white a.menuButton:hover,
.page-yellow a.menuButton:hover,
.page-white a.menuButton.active,
.page-yellow a.menuButton.active,
.page-white a.locationButton.active,
.page-yellow a.locationButton.active {
	border: 1px solid #000;
}





/* page section exit */
.exit {
	background: #fffa00;
}
.exit .page-content-text h2 {
	font-size: 70px;
	font-size: 7.0rem;
	font-style: normal;
	letter-spacing: 2px;
	
	margin: 0 0 38px 0;
	position: relative;
}
.exit .page-content-text h2:after {
	display: none;
}
.exit .page-content-text p {
	letter-spacing: 2px;
	margin: 0 0 43px 0;
}
.exit .page-content-text .social a {
	display: inline-block;
	margin: 0 10px 0 0;

	-webkit-transition: all 125ms ease-out;
	-moz-transition: all 125ms ease-out;
	-ms-transition: all 125ms ease-out;
	-o-transition: all 125ms ease-out;
	transition: all 125ms linear;
}

.exit .page-content-text .social a:hover {
	opacity: .5;
}

/* Social Icons */
.social-icons {
	position: absolute;
	bottom: 70px;
	left: 70px;
	z-index: 3000;
}
.social-icons a {
	opacity: .65;

	font-size: 24px;
	text-decoration: none;

	-webkit-transition: all 125ms ease-out;
	   -moz-transition: all 125ms ease-out;
	    -ms-transition: all 125ms ease-out;
	     -o-transition: all 125ms ease-out;
	        transition: all 125ms linear;
}
.social-icons a:hover {
	opacity: 1;
}

.page-white .social-icons a,
.page-yellow .social-icons a {
	color: #000;
	text-shadow: 0 0 1px #fff;
}
.page-black .social-icons a {
	color: #fff;
	text-shadow: 0 0 1px #000;
}

.widget-2 {
	cursor: default;
}

.widget-2 .background {
	position: fixed;
	left: 0;
	top: 0;

	background-size: cover;
	background-position: center top;
}
.widget--floats {
	margin-top: 100vh;
	background-size: 100% auto;
	background-repeat: repeat-y;
}
.widget--floats img {
	position: relative;
	top: 0;
	display: block;
	opacity: 1;
	width: 100%;
	height: auto;

	-webkit-transition: all .5s ease-out;
	   -moz-transition: all .5s ease-out;
	    -ms-transition: all .5s ease-out;
	     -o-transition: all .5s ease-out;
	        transition: all .5s ease-out;
}
.widget--floats img.invisible {
	opacity: 0;
}
.widget--floats .image-0 {

}

.widget-1, .widget-1 * {
	cursor: url(../images/cursor/arrow-cross-yellow.png), url(../images/cursor/arrow-cross-yellow.cur), default;
}

/* ==========================================================================
   Preloader
   ========================================================================== */

#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should have another color then white */
	z-index:9999; /* makes sure it stays on top */
}

#status {
	width:200px;
	height:200px;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	background-image:url(../images/status.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}

/* ==========================================================================
   Browse Happy
   ========================================================================== */

.browsehappy {
	margin: 0;
	padding: 5px 10px;

	color: #000;
	background: #FFF900;
}
.browsehappy a {
	text-decoration: underline;
}

/* ==========================================================================
   NProgress
   ========================================================================== */

/* Make clicks pass-through */
#nprogress {
	pointer-events: none;
}

#nprogress .bar {
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;

	width: 100%;
	height: 3px;

	background: yellow;
}

@-webkit-keyframes nprogress-spinner {
	0%   { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
