/*Main Menue Bar*/
@media (min-width: 1200px) {
  .container {
    width: 1230px;
  }
}

.footer-menu-link {
	background: transparent !important;
}

.user-menu-link {
	background: transparent !important;
	color: white;
	padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.hr-menu-link {
	background: transparent !important;
	color: white;
	padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.user-menu-list {
	float:right;
}

.hr-menu-list {
	float:right;
}

.press-feed h2 {
	font-size:16px;
}

/*QIK SERV LINK*/
.qs-icon {
	position: absolute;
    right: 5%;
    top: 13%;
    width: 100px;
    height: 85px;
    bottom: 0px;
    margin: 0px;
	background-image: url(../images/qs-button.png); 
	z-index: 99;
	
}

.qs-icon {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {  
  10% { opacity: 0; }
}

.qs-icon {
	backface-visibility: visible !important;
	animation: flip 2s ease infinite;
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
} 
