.rotateDown {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: rotateDown;
  animation-name: rotateDown;
}



@-webkit-keyframes rotateDown {
  0% {
  	
	opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg) translateZ(300px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg) translateZ(0px);
  }
}
@keyframes rotateDown {
  0% {
	opacity: 0;
    transform-origin: 50% 100%;
    transform: perspective(800px) rotateX(-180deg) translateZ(300px);
  	
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg) translateZ(0px);
  }
}

#career_form_div
{
	background-color: #ffffff;
	width: 350px;
	display: none;
	padding: 20px;
	padding-top: 30px;
	position: fixed;
	top: 150px;
	left: calc(50% - 175px);
	z-index: 999999;
	box-shadow: 0px 0px 10px #888888;
}
#careerprev
{
	font-size: 12px;
	text-align: left;
	margin-bottom: 5px;
}
.applynow-button
{
	cursor: pointer;
	display: block;
}
.applynow-button span
{
	cursor: pointer;
	display: inline-block;
	background: #1b1b1b;
	color: #ffffff;
	padding: 5px 10px;
	font-size: 12px;
	margin-top: 3px;
}
.applynow-button:hover span, .applynow-button span:hover
{
	background: #b31c27;
}