/*Button loader*/
.iwj-hide{
    display: none;
}
.iwj-button-loader{
	position: relative;
}
.rem-button-loader {
	line-height: 36px;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	cursor: pointer;
	text-align: center;
	vertical-align: top;
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #d64521;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.rem-button-loader > div {
	display: inline-block;
	width: 8px;
	height: 8px;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;  /* Prevent first frame from flickering when animation starts */
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	background: #fff;
}

.rem-button-loader .bounce1 {
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s;
}

.rem-button-loader .bounce2 {
	-webkit-animation-delay: -.16s;
	animation-delay: -.16s;
}

@-webkit-keyframes bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(.0);
		transform: scale(.0);
	}
	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
@keyframes bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(.0);
		transform: scale(.0);
	}
	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
/* End Button loader*/

/*button*/
.iwj-btn{
	display: inline-block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background: #eee;
	color: #333;
	text-transform: uppercase;
	border: none;
	padding: 7px 25px;
	font-weight: 600;
	text-align: center;
	font-size: 13px;
    position: relative;
    z-index: 0;
}
.iwj-btn-shadow{
	display: inline-block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background: #eee;
	color: #333;
	text-transform: uppercase;
	border: none;
	padding: 7px 25px;
	font-weight: 600;
	text-align: center;
	font-size: 13px;
    position: relative;
    z-index: 0;
	box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
}
.iwj-btn:hover, .iwj-btn:focus, .iwj-btn:active {
	color: #333;
	outline: none !important;
	opacity: 0.9;
}
.iwj-btn-shadow:hover, .iwj-btn-shadow:focus, .iwj-btn-shadow:active {
    color: #333;
    outline: none !important;
	opacity: 0.9;
}
.iwj-btn-primary, .iwj-btn-primary:hover, .iwj-btn-primary:focus, .iwj-btn-primary:active{
	color: #fff;
}

.iwj-btn-secondary, .iwj-btn-secondary:hover, .iwj-btn-secondary:focus, .iwj-btn-secondary:active{
	background: #16A085;
	color: #fff;
}
.iwj-btn-danger, .iwj-btn-danger:hover, .iwj-btn-danger:focus, .iwj-btn-danger:active{
	color: #fff;
	background-color: #ff6633;
}

.iwj-btn-large{
    padding: 15px 25px;
    font-size: 130%;
}
.iwj-btn-medium{
    padding: 10px 25px;
    font-size: 130%;
}
.iwj-btn-full{
    width: 100%;
}
.iwj-btn-icon i {
	font-size: 18px;
	font-weight: 500;
	margin-right: 4px;
	position: relative;
	top: 2px;
}
.iwj-btn-full.iwj-btn-icon{
	text-align: left;
	font-size: 100%;
}
.iwj-btn-full.iwj-btn-icon i{
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid rgba(255,255,255, 0.1);
	position: relative;
	top: 0;
}
.iwj-btn:disabled{
	opacity: 0.5;
}
.iwj-btn:disabled:hover{
	opacity: 0.5;
}
.iwj-btn-shadow:disabled{
	opacity: 0.5;
}
.iwj-btn-shadow:disabled:hover{
	opacity: 0.5;
}

/*end button*/

/*divider*/
.iwj-divider{
	text-align: center;
	position: relative;
}
.iwj-divider .line{
	width: 237px;
	height: 1px;
	background: #2980b9;
	display: inline-block;
}
.iwj-divider .circle{
	width: 35px;
	height: 35px;
	line-height: 35px;
	display: inline-block;
	background: #2980b9;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -18px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
/*end divider*/

/*magic line*/
.iwj-magic-line-wrap{
	text-align: center;
}
.iwj-magic-line{
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	display: inline-block;
	padding: 3px;
	position: relative;
	-webkit-box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
	-moz-box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
	box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
}
.iwj-magic-line .magic-line{
	background: #fff;
	position: absolute;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	z-index: 10;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.iwj-magic-line .magic-line.faster{
	-moz-transition: width 0.1s;
	-webkit-transition: width 0.1s;
	-o-transition: width 0.1s;
	transition: width 0.1s;
}
.iwj-magic-line p{
	color: #fff;
	padding: 7px 50px;
	display: inline-block;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	z-index: 200;
	margin: 0;
	cursor: pointer;
/*
	-moz-transition: all 0.25s;
	!* WebKit *!
	-webkit-transition: all 0.25s;
	!* Opera *!
	-o-transition: all 0.25s;
	!* Standard *!
	transition: all 0.25s;*/
}
.iwj-magic-line p.active{
	color: #2980b9;
}
/*end magic line*/
/*form*/
.iwj-form{
	background: #fff;
	padding: 70px;
	max-width: 770px;
	margin: 0 auto;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.iwj-form .pre-text{
	margin-bottom: 40px;
}
.iwj-form .iwj-field{
	border: 1px solid #eeeeee;
	padding: 14px 28px 15px;
	margin-bottom: 30px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.iwj-form .iwj-field label{
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	color: #2980b9;
}
.iwj-form .iwj-field .iwj-input{
	position: relative;
	padding-left: 40px;
}
.iwj-form .iwj-field i{
	color: #2980b9;
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 6px;
}
.iwj-form .iwj-field i{
	color: #2980b9;
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 5px;
}
.iwj-form .iwj-field input{
	border: none;
	width: 100%;
}

.iwj-form-2 h3{
    font-size: 18px;
    font-weight: bold;
    color: #444;
    border-bottom: 1px solid #f6f7f9;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-top: 35px;
    margin-bottom: 20px;
}
.iwj-form-2 h3.no-border{
    border-bottom: none;
	margin-bottom: 10px;
}

.iwj-form-2 h3:first-child{
    margin-top: 0;
}
.iwj-form-2 div.iwjmb-field{
	margin-bottom: 20px;
}
.iwj-form-2 .iwjmb-field label{
	color: #555;
	padding: 0 15px;
	font-weight: bold;
	font-size: 11px;
	text-transform: uppercase;
}
.iwj-form-2 .iwjmb-field .description{
	font-size: 12px;
	color: #999;
	font-style: italic;
	margin-top: 4px;
}
.iwj-form-2 .iwjmb-field input[type="password"],
.iwj-form-2 .iwjmb-field input[type="number"],
.iwj-form-2 .iwjmb-field input[type="text"], .iwj-form-2 .iwjmb-field input[type="email"],
.iwj-form-2 .iwjmb-field input[type="url"], .iwj-form-2 .iwjmb-field select, .iwj-form-2 .iwjmb-field textarea{
	border: 1px solid #eeeeee;
	padding: 6px 15px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	width: 100%;
	color: #555;
	position: relative;
}
.iwj-form-2 .iwjmb-field input[type="password"]::placeholder,
.iwj-form-2 .iwjmb-field input[type="number"]::placeholder,
.iwj-form-2 .iwjmb-field input[type="text"]::placeholder, .iwj-form-2 .iwjmb-field input[type="email"]::placeholder,
.iwj-form-2 .iwjmb-field input[type="url"]::placeholder, .iwj-form-2 .iwjmb-field select, .iwj-form-2 .iwjmb-field textarea::placeholder{
	color: #999;
}
.iwj-form-2 .token-input.ui-autocomplete-input::placeholder{
	color: #999;
	font-size: 13px;
}

.iwj-form-2 .iwjmb-field input[readonly]{
	background: #eee !important;
}
.iwj-form-2 .iwjmb-select-tree .select2-container{
	margin-right: 5px;
}
.iwj-form-2 .iwjmb-sort-clone div.iwjmb-field.iwjmb-textarea-wrapper{
	width: 100%;
}
.iwj-form-2 .iwjmb-sort-clone a.iwjmb-button, .iwj-form-2 .iwjmb-sort-clone a.iwjmb-clone-icon{
	top: 50%;
}
.iwj-form-2 .iwjmb-sort-clone div.iwjmb-field.iwjmb-textarea-wrapper textarea{
	height: 75px;
}
.iwj-form-2 .gallery-area >h3,.iwj-form-2 .video-area >h3 {
	border-bottom: 0;
	padding-bottom: 0;
}
.iwj-form-2 .iwjmb-upload-inside h3{
	font-weight: 600;
	color: #ddd;
	border-bottom: none;
	font-size: 22px;
	font-style: italic;
	margin-top: 10px;
}
.iwj-form-2 .iwjmb-media-view{
	border: none;
	background: #f5f5f5;
	padding: 2px;
}
.iwj-form-2  .iwjmb-upload-inside p{
	text-transform: uppercase;
	font-weight: 600;
	color: #ccc;
}
.iwj-form-2  .iwjmb-upload-inside .iwjmb-browse-button{
	color: #666;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
}
.iwj-form-2  .iwjmb-media-status{
	display: inline-block;
	text-decoration: none;
	font-size: 12px;
	line-height: 26px;
	height: 28px;
	margin: 0 10px;
	font-style: italic;
	color: #aaa;
}
.tokenfield.form-control {
    border: none;
    box-shadow: none;
    padding: 0;
}
.tokenfield.form-control.focus {
    box-shadow: none;
}
.tokenfield.form-control .token {
    color: #ffffff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
    border: none;
    font-size: 12px;
}
.tokenfield.form-control input {
    width: 100% !important;
    margin-bottom: 0;
}
.tokenfield.form-control .token span {
    padding: 0 5px 0 15px;
	height: 28px;
	line-height: 28px;
}
div.tokenfield .token .close{
	margin-right: 10px;
	line-height: 28px;
	font-weight: normal;
}
.tokenfield.form-control .token a {
    color: #ffffff;
    opacity: 1;
}
div.tokenfield .token{
	height: 28px;
}
div.tokenfield .token-input{
	height: 44px;
}
body ul.ui-autocomplete.ui-menu {
    width: 250px !important;
    min-width: auto !important;
    border: 1px #eeeeee solid;
    padding: 0;
    background: #ffffff;
    box-shadow: none;
}
body ul.ui-autocomplete.ui-menu li {
    list-style: none;
    color: #333333;
    padding: 5px 15px;
    border-bottom: 1px #eeeeee solid;
}
body ul.ui-menu li:hover {
    color: #ffffff;
}
body ul.ui-autocomplete.ui-menu li:last-child {
    border-bottom: none;
}
.iwj-form-2 .iwjmb-field select{
    width: auto;
    margin-right: 5px;
}
.iwj-form-2 .iwjmb-field .iwjmb-map-canvas{
    height: 300px;
}
.iwj-form-2 .iwjmb-field .iwjmb-map-goto-address-button{
    background: #2980b9;
    color: #fff;
    border: none;
    padding: 2px 15px;
    margin-top: 5px;
    border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
    height: 28px;
    line-height: 28px;
    display: none;
}
.iwj-form-2 .iwj-button-loader {
    margin-top: 25px;
}
.iwj-form-2 .field-social, .iwj-form-2 .field-name {
    display: table;
    margin: 0 -15px;
}

.iwj-change-password .iwjmb-fields {
    display: table;
    width: 100%;
}
.iwj-delete-account-btn{
	float: right;
	background: #2980b9;
    color: #fff;
}
/*end form*/

/*Login Page*/
.iwj-login-form .lost-password{
	margin-top: 10px;
}
.iwj-login-form .iwj-divider{
	margin-top: 45px;
	margin-bottom: 20px;
}
.iwj-login-form .social-login{
	margin-top: 35px;
}
.iwj-login-form .social-login > div {
    margin-bottom: 30px;
}
.iwj-login-form-popup .iwj-login-form .social-login > div {
    margin-bottom: 15px;
}
.iwj-login-form .register-account{
	margin-top: 20px;
}
.iwj-login-form .social-login .social-login-facebook {
    background: #3B5998;
}
.iwj-login-form .social-login .social-login-google {
    background: #DB4437;
}
.iwj-login-form .social-login .social-login-twitter {
    background: #0084B4;
}
.iwj-login-form .social-login .social-login-linkedin {
    background: #006fa6;
}
/*End login page*/

/*Register Page*/
.iwj-register-form .iwj-magic-line{
	margin-top: 20px;
	margin-bottom: 40px;
	position: relative;
}
.iwj-register-form .login-lostpass{
	margin-top: 20px;
	text-align: center;
}
.iwj-register-form .login-lostpass a{
	margin-right: 5px;
}
/*End Register Page*/

/*Social Register*/
.iwj-social-register .avatar{
	max-width: 90px;
	max-height: 90px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	margin-right: 20px;
	margin-top: 12px;
}
.iwj-social-register .confirm-div h2{
	color: #444;
	margin-top: -12px;
}
.iwj-social-register .social-confirm-newuser{
	font-style: italic;
	margin-bottom: 37px;
}
.iwj-social-register .social-confirm-newuser p{
	margin-bottom: 0;
	line-height: 1;
}
.iwj-social-register .select2-container{
	width: 200px !important;
	margin-top: -7px;
}
.iwj-social-register select{
	width: 200px;
	border: none;
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
}
.iwj-social-register .select2-container--default .select2-selection--single .select2-selection__arrow{
	top: 7px;
	right: 5px;
}
.iwj-social-register .select2-container .select2-selection--single{
	border: none;
}
.iwj-social-register .select2-container--default .select2-selection--single .select2-selection__rendered{
	padding: 0;
}
/*End Social Register*/

/*Reset Pass*/
.iwj-lostpass-form .login-register-account{
	margin-top: 15px;
	text-align: center;
}
.iwj-lostpass-form .login-register-account a{
	margin-right: 5px;
}
/*End Reset Pass*/

/*Dashboard page*/
.iwj-dashboard{
	background: #2f3f46;
}
.iwj-dashboard-main {
    float: right;
	width: calc(100% - 250px);
}
.iwj-dashboard-main-inner {
    padding: 50px;
	background: #eee;
	min-height: 630px;
}
.iwj-main-block {
	background: #fff;
	padding: 50px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}/*
.iwj-dashboard-main.overview, .iwj-dashboard-main.profile, .iwj-dashboard-main.edit-job {
    background: none;
    padding: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}*/
.iwj-block{
	background: #fff;
	padding: 50px;
	margin-bottom: 30px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    border-radius: 5px;
}
.iwj-main .iwj-block:last-child{
	margin-bottom: 0;
}
.iwj-block-inner{
	margin-bottom: 45px;
}
.socials-area.iwj-block-inner{
	margin-bottom: 25px;
}
.iwj-edit-profile-page .iwj-change-password.iwj-block {
    margin-bottom: 0;
}
.iwj-dashboard-sidebar{
	background: #2f3f46;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    border-radius: 5px;
	width: 250px;
	float: left;
}
.iwj-dashboard-sidebar .iwj-btn:hover {
    color: #ffffff;
}
body .iwj-dashboard-menu ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.iwj-dashboard-menu ul li{
	padding: 13px 16px;
	border-bottom: 1px solid #485a63;
    list-style: none;
}
.iwj-dashboard-menu ul li:last-child {
    border: none;
}
.iwj-dashboard-menu ul li a{
	text-transform: uppercase;
    color: #fff;
}
.iwj-dashboard-menu ul li i{
	color: #ccc;
	margin-right: 20px;
}
.iwj-dashboard table > thead > tr > th{
	color: #333;
	text-transform: uppercase;
}

.iwj-dashboard-menu-mobile{
	display: none;
}
.iwj-dashboard-menu-mobile button{
	width: 100%;
	padding: 13px;
	font-size: 14px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	text-transform: uppercase;
	border: none;
	/*background: #2a363b;*/
}
/*.iwj-dashboard-menu-mobile .open > .dropdown-toggle.button, .iwj-dashboard-menu-mobile button:hover, .iwj-dashboard-menu-mobile button:focus{
	background: #222;
}*/
.iwj-dashboard-menu-mobile button .caret{
	margin-left: 10px;
}
.iwj-dashboard-menu-mobile .dropdown ul{
	margin: 0;
	list-style: none;
	width: 100%;
}
.iwj-dashboard-menu-mobile .dropdown ul li > a{
	padding: 7px 20px;
}
.iwj-dashboard-menu-mobile .dropdown ul li i{
	margin-right: 5px;
	width: 17px;
}
body .iwj-notification-menu ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.iwj-dashboard-top{
	float: left;
	width: 100%;
}
.iwj-dashboard-sidebar .user-profile{
	width: 250px;
	padding: 20px 10px;
	border-bottom: 1px solid #485a63;
}
.iwj-dashboard-sidebar .user-profile img{
	width: 60px;
	height: 60px;
	padding: 4px;
	float: left;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background: #434652;
}
.iwj-dashboard-sidebar .user-profile.candidate img {
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.iwj-dashboard-sidebar .user-profile h4{
	color: #ffffff;
	word-break: break-all;
	word-wrap: break-word;
	margin-top: 0;
	padding-left: 10px;
	width: calc(100% - 90px);
	float: left;
}
.iwj-dashboard-sidebar .user-profile h4 span{
	display: block;
	font-size: 13px;
	line-height: 25px;
	font-weight: 600;
	color: #fff;
}
.iwj-dashboard-top .job-count{
	float: left;
	width: calc(100% - 250px);
}
.iwj-dashboard-top .job-count li{
	float: left;
	width: 20%;
	position: relative;
	display: inline-block;
	padding: 25px 0px 23px;
	text-align: center;
	vertical-align: top;
	border-right: 1px solid #e7eef2;
}
.iwj-dashboard-circle{
	width: 60px;
	height: 60px;
	background: #f7f7f7;
	padding: 6px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	margin: 0 auto;
}
.iwj-circle-content{
	background: #fff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
.iwj-circle-content .count{
	display: block;
	font-size: 14px;
	line-height: 9px;
	padding: 9px 5px;
}
/*Overview*/
.iwj-overview .info-top-wrap {
	display: table;
	width: 100%;
	padding: 50px 85px;
	margin-bottom: 30px;
	background: #fff;
}
.iwj-dashboard-main .info-top-wrap, .iwj-dashboard-main .iw-profile-content .candicate-main-content {
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
.iwj-dashboard-main .iwj-employer-detail .employer-detail-info > div.location {
	border: none;
}
.iwj-dashboard-main .iw-profile-content {
	padding: 0;
	background: none;
}

.iwj-overview .sidebar-info{
	width: 15%;
	float: left;
}
.iwj-overview .main-info{
	width: 85%;
	float: left;
}
.iwj-overview .avatar{
	/*position: absolute;*/
	width: 150px;
	height: 150px;
	display: inline-block;
	left: 0;
	top: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
}
.iwj-overview .avatar img{
	width: 100%;
}
.iwj-overview .title{
	font-size: 30px;
	text-transform: uppercase;
	color: #2980b9;
}
.iwj-overview .headline{
	background: #f16e8e;
	color: #fff;
	display: inline-block;
	padding: 0 16px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.iwj-overview .iwj-title {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 15px;
}
.iwj-overview .info-top {
	border-bottom: 1px #f6f7f9 solid;
	padding-bottom: 35px;
}
.iwj-overview .info-bottom {
	padding: 5px 0 0;
	line-height: 30px;
}
.iwj-overview .info-bottom ul {
	padding: 0;
	margin: 20px 0 0;
}
.iwj-overview .info-bottom ul li {
	list-style: none;
	font-weight: 500;
	line-height: 18px;
	padding: 12px 0;
}
.iwj-overview .info-bottom ul li .left {
	float: left;
	min-width: 110px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}
.iwj-overview .info-bottom ul li i {
	font-size: 16px;
	width: 20px;
	font-weight: normal;
	text-align: center;
	margin-right: 10px;
	position: relative;
	top: 2px;
	display: inline-block;
}
.iwj-overview .info-bottom ul li.location i {
	color: #f16e8e;
}
.iwj-overview .info-bottom  ul li.phone i {
	color: #4a98ae;
}
.iwj-overview .info-bottom ul li.website i {
	color: #33aa58;
}
.iwj-overview .info-bottom ul li a {
	color: #333;
}
 /*Overview Employer*/
.iwj-overview .info-top-wrap.info-top-wrap-employer{
	padding: 0;
	background: none;
}
.iwj-overview .info-top-wrap.info-top-wrap-employer h3.info-title,.iwj-overview .employer-detail-container h3.info-title {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	margin: 0 0 25px;
}
.iwj-overview .info-top-wrap.info-top-wrap-employer .main-information {
    margin: 0 -10px;
}
.main-information .employer-contact {
	float: left;
    width: 33.33333333%;
    padding: 0 10px;
    display: table;
    height: 208px;
}
.main-information .employer-contact .content-info {
    background: #ffb033;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}
.main-information .empl-box {
    padding: 25px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    color: #ffffff;
}
.main-information .employer-contact div.avatar{
	float: left;
	width: 130px;
	height: 130px;
}
.main-information .employer-contact .empl-detail-info{
	margin-left: 180px;
}
.main-information .empl-box.jobs-listing{
	background: #2980b9;
}
.main-information .empl-box.jobs-published{
	background: #33aa58;
}
.main-information .empl-box.jobs-expired{
	background: #e84a5f;
}
.main-information .empl-box.jobs-pending{
	background: #ffb033;
}
.iwj-overview h4.iwj-epl-title{
	color: #ffffff;
	font-size: 24px;
	font-weight: bold;
    margin: 0;
}
.main-information .employer-contact .empl-detail-info span{
	color: rgba(255,255,255,0.9);
	font-size: 14px;
    font-style: italic;
    display: block;
    margin-bottom: 5px;
}
.main-information .employer-contact .empl-action-button a{
	color: #ffffff;
	font-size: 12px;
	text-transform: uppercase;
    margin: 10px 8px 0 0;
    display: inline-block;
    border: 1px solid rgba(255,255,255, 0.8);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0 12px;
    height: 32px;
    line-height: 32px;
}
.main-information .employer-contact .empl-action-button a.iwj-edit-profile:hover {
    background: #33aa58;
	border-color: #33aa58;
}
.main-information .empl-info-jobs-listing {
    float: left;
    width: 66.66666667%;
    padding: 0 10px;
}
.main-information .empl-info-jobs-listing .info-wrap {
    margin: 0 -10px;
}
.main-information .empl-info-jobs-listing .empl-info-jobs-item {
    float: left;
    width: 25%;
    padding: 0 10px;
    display: table;
    height: 208px;
    text-align: center;
}
.main-information .empl-info-jobs-item .empl-box {
    display: table-cell;
    vertical-align: middle;
}
.main-information .empl-box .empl-small-detail{
    width: 150px;
    height: 150px;
    margin: auto;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.4);
	padding: 35px 12px;
}
.main-information .empl-box .empl-small-detail h5{
	font-size: 48px;
	color: #ffffff;
	font-weight: bold;
	margin: 0;
	line-height: 48px;
}
.main-information .empl-box .empl-small-detail a{
    color: #ffffff;
	font-size: 15px;
}
.iwj-employerdl-content .employer-recent-applier, .iwj-employerdl-content .employer-avg-daily-viewers{
	-webkit-border-radius: 4px;
	border-radius: 4px;
    overflow: hidden;
	-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
}
.iwj-employerdl-content .employer-avg-daily-viewers{
	padding-bottom: 0;
}
.employer-main-applier .empl-candidate-box{
	text-align: center;
	background: #fff;
	border: 1px solid #e6eaee;
	border-radius: 4px;
	padding: 10px;
	margin-bottom: 10px;
}
.employer-main-applier .avatar-name .avatar-candidate,
.employer-main-applier .avatar-name h5 {
    display: inline-block;
}
.employer-main-applier .avatar-name .avatar-candidate {
    position: relative;
    width: 50px;
}
.employer-main-applier .avatar-candidate img {
	width: auto;
	height: auto;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: -20px;
}
.employer-main-applier .avatar-name h5 {
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}
.employer-main-applier .avatar-name h5 a {
    text-transform: capitalize !important;
}
.employer-main-applier .empl-candidate-box a{
	font-size: 13px;
}
.employer-main-applier .empl-candidate-box h5{
	font-weight: 600;
    font-size: 13px;
}
.employer-main-applier .empl-candidate-box h5 a{
	color: #333333;
	text-transform: capitalize;
}
.employer-main-applier .empl-candidate-box .c-time-apply{
	display: block;
}
.employer-avg-daily-viewers .employer-main-avg-views h4{
	color: #ffffff;
	font-size: 18px;
	margin: 0 0 23px;
}
.iw-profile-content .iwj-employerdl-content .title-block {
    padding: 28px 30px 70px;
    background: #ffffff url("../images/bg_dah_employer_detail.png") no-repeat;
    background-size: cover;
}
.iw-profile-content .iwj-employerdl-content .title-block div.count {
    color: #ffffff;
    font-size: 18px;
}
.iw-profile-content .iwj-employerdl-content .title-block div.count span {
    display: inline-block;
    font-size: 72px;
    font-weight: 800;
    line-height: 72px;
    padding: 0 15px;
}
.iw-profile-content .iwj-employerdl-content .employer-main-applier,
.iw-profile-content .iwj-employerdl-content .employer-main-avg-views {
    margin-top: -50px;
}
.iw-profile-content .iwj-employerdl-content table {
    margin-bottom: 0;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table thead {
	background: rgba(0,0,0,0.1);
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table thead th{
	padding-top: 15px;
	padding-bottom: 15px !important;
	color: #ffffff;
    line-height: 20px;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table th:first-child, .iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x .table tbody tr td:first-child{
	padding-left: 20px !important;
	padding-right: 20px !important;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table th:last-child, .iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x .table tbody tr td:last-child{
	padding-right: 20px !important;
    padding-left: 20px !important;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table > tbody > tr:nth-of-type(odd){
	background-color: #ffffff;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table > tbody > tr:nth-of-type(even){
	background-color: rgba(52, 73, 94, 0.08);
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table > tbody > tr > td {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
    line-height: 20px;
    border: none !important;
    font-weight: 600;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table > tbody > tr > td a {
    color: #777777;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table > tbody > tr > td .view-all a {
    color: #33aa58;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 1px #33aa58 solid;
}
.iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x table > tbody > tr > td:first-child a{
	text-transform: uppercase;
}
/*End Overview*/

/*profile*/
.iwj-edit-profile{
	display: inline-block;
	border: 1px solid #2980b9;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 0 12px;
	height: 32px;
	line-height: 32px;
	margin: 15px 0 0 8px;
	clear: both;
}

.iwj-edit-profile i{
	margin-right: 5px;
}
.iwj-edit-profile:hover{
	background: #2980b9;
	color: #fff;
}

/*End profile*/

/* Edit profile*/
.iwjmb-image_upload-wrapper ul.iwjmb-media-list {
    margin: 10px;
    padding: 0;
}
.iwjmb-image_upload-wrapper ul.iwjmb-media-list .iwjmb-image-item {
    list-style: none;
}
/* End Edit profile*/

/*mmployer profile Form*/
.iwj-select-image-wrap{
	width: 94px;
	height: 94px;
	float: left;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #dedede;
}
.iwj-select-image{
	border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 7px 32px;
	display: inline-block;
	color: #fff;
	background: #2f3f46;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}
.iwj-select-image:hover, .iwj-select-image:focus{
	color: #fff;
}
.iwj-select-image:hover{
	color: #fff
}
.iwj-select-image-button{
	margin-left: 150px;
}
.iwj-select-image-button p{
	color: #363F48;
}
.iwjmb-field.iwjmb-image_single-wrapper{
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
/* end employer profile Form*/

/* Employer Download */


/* End Employer Download */

/*End Dashboard page*/

/*Order History Page*/
.iwj-orders .title h3 {
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 2px #f6f7f9 solid;
    padding-bottom: 5px;
    margin: 0 0 35px;
}
.iwj-dashboard-main .table-title {
    padding: 22px 35px;
    background: #33aa58;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-dashboard-main table {
    border-top: none;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.iwj-dashboard-main table tr th{
	padding-bottom: 20px !important;
}
.iwj-dashboard-main table tr th, .iwj-dashboard-main table tr td {
    border-top: none !important;
    border-bottom: 1px solid #eee !important;
}
.iwj-dashboard-main table tr th {
    font-weight: 600;
}
.iwj-dashboard-main table tr td {
    padding: 20px 8px !important;
}
.iwj-dashboard-main .iwj-save-jobs table tr td {
    padding: 25px 8px 25px !important;
}
.iwj-dashboard-main .iwj-jobs-table table tr td {
    padding: 23px 8px 20px !important;
}
/*End Order History Page*/

/*Add Job Page*/
.iwj-new-job {
    position: relative;
}
.iwj-task-bar.job {
    text-align: center;
    margin-bottom: 40px;
}
.iwj-task-bar.job ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}
.iwj-task-bar.job ul li {
    list-style: none;
    font-weight: 600;
    text-transform: uppercase;
    width: 220px;
    float: left;
    text-align: center;
    position: relative;
}
.iwj-task-bar.job ul li:after {
    content: "";
    position: absolute;
    top: 21px;
    right: 50%;
    width: 100%;
    height: 2px;
    background: #eeeeee;
}
.iwj-task-bar.job ul li:first-child:after {
    display: none;
}
.iwj-task-bar.job ul li span {
    display: block;
    position: relative;
    z-index: 9;
}
.iwj-task-bar.job ul li span.number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #eeeeee;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 auto 12px;
	font-weight: 600;
}
.iwj-task-bar.job ul li.active span.number {
    color: #ffffff;
}
.iwj-new-job .wp-editor-container > .mce-container {
    border: 1px solid #e5e5e5;
}
.iwj-new-job .iwj-submit-btn .iwj-button-loader {
    display: inline-block;
}
.iwj-new-job .iwj-submit-btn .iwj-button-loader button {
    padding: 10px 25px;
}
.iwj-sjob-step-package form > h3 {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 15px;
    margin: 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-sjob-step-package form table {
    margin-bottom: 50px;
    width: 100%;
    border-width: 0 1px 1px 1px;
    border-color: #eeeeee;
    border-style: solid;
}
.iwj-sjob-step-package form table tr:nth-child(odd) {
    background: #f6f7f9;
}
.iwj-sjob-step-package form table tr th {
    padding: 30px 15px !important;
    font-weight: 600;
    color: #333333;
    border: none !important;
}
.iwj-sjob-step-package form table tr td {
    padding: 30px 15px !important;
    font-size: 14px;
    border: none !important;
}
.iwj-sjob-step-package form table tr td h3 {
    padding: 0;
    font-size: 14px;
    margin: 0;
}
.iwj-select-package-form > label {
    margin-bottom: 25px;
}
.iwj-order-payment h3 {
    color: #333333;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.iwj-order-payment .iwj-payments h3 {
    border: none;
}
.iwj-order-payment .iwj-order-price > div .title {
    min-width: 200px;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
	font-weight: 600;
    color: #777;
}
.iwj-order-payment .iwj-order-price > div.total-price .title {
    font-size: 14px;
    color: #333333;
}
.iwj-order-payment .iwj-order-price > div.total-price span + span {
    font-size: 24px;
}
.iwj-select-package-form label input {
    margin-right: 5px;
}
.iwj-select-package-form .iwj-payments {
    margin-bottom: 25px;
}
.iwj-select-package-form .iwj-payments .payment-method img{
    margin-left: 5px;
}
.iwj-new-job .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px;
    line-height: 40px;
}
.iwj-new-job .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 4px;
}
.iwj-thankyou-page .iwj-thankyou-order-details {
    margin: 0;
    padding: 30px;
    border: 1px rgba(0, 0, 0, 0.1) solid;
}
.iwj-thankyou-page .iwj-thankyou-order-details li {
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
    padding: 10px 0;
    list-style: none;
}
.iwj-thankyou-page .iwj-thankyou-order-details li:last-child {
    border-bottom: none;
}
/*End Add Job Page*/

/*Edit Profile*/
.iwj-profile .wp-editor-container > .mce-container {
    border: 1px solid #e5e5e5;
}
.iwj-profile .select2-container--default {
    margin-right: 10px;
}
.iwj-form-2 .select2-container {
	width: 100%;
}
.iwj-form-2 .select2-container--default .select2-selection--single {
    height: 42px;
    line-height: 42px;
    border: 1px solid #eeeeee;
    webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	width: 100%;
}
.iwj-form-2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    padding-right: 35px;
	color: #555;
}
.page-heading {
    color: #777777;
}
.iwj-form-2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 5px;
}
.iwj-form-2 .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 8px;
}
.iwj-form-2 .select2-container .select2-selection--multiple {
    border: 1px solid #eeeeee;
    line-height: 40px;
}
.iwj-form-2 .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #eeeeee;
}
.iwj-form-2 .select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}
.iwj-form-2 .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin-top: 2px;
	position: relative;
	top: 3px;
	left: 6px;
}
.iwj-form-2 .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
    color: #999;
}
.iwj-form-2 .select2-container--default .select2-selection--multiple .select2-selection__choice {
    line-height: 26px;
	margin-top: 7px;
	background-color: #fff;
	border-color: #ddd;
	padding: 0 8px;
}
.iwj-form-2 .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
	margin-right: 6px;
}
/*End Edit Profile*/

/*===== Jobs =====*/
/* Jobs Form */
.iwj-filter-form {
    background: #ffffff;
    padding: 25px 30px 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: relative;
}
.iwj-alert-feed {
    position: absolute;
    top: 26px;
    right: 30px;
    left: auto;
}
.job-alert-btn, .iwj-feed {
    display: inline-block;
	background: #2980b9;
	padding: 3px 25px;
	border-radius: 5px;
	color: #fff;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	outline-style: none;
}
.iwj-alert-feed > a {
    float: left;
}
.rtl .iwj-alert-feed > a {
    float: right;
}
.iwj-alert-feed .iwj-feed {
    margin-left: 10px;
	font-size: 13px;
}
.rtl .iwj-alert-feed .iwj-feed {
	margin-right: 10px;
	margin-left: 0;
}
.iwj-alert-feed .iwj-feed {
    padding: 3px 15px;
}
.job-alert-btn:hover, .job-alert-btn:active, .job-alert-btn:focus,
.iwj-feed:hover, .iwj-feed:active, .iwj-feed:focus {
	color: #fff;
	outline-style: none;
}
.job-alert-btn i{
   	margin-right: 7px;
	font-size: 13px;
}
.jobs-layout-form form {
    display: table;
    width: 100%;
}
.jobs-layout-form form > div {
    float: left;
    font-weight: 500;
    color: #333333;
    margin-right: 10px;
}
.jobs-layout-form form .show-filter-mobile, .jobs-layout-form form .default-sorting,
.jobs-layout-form .select2-container--default .select2-selection--single {
    padding: 0 30px;
    height: 36px;
    line-height: 36px;
    border: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #f6f7f9;
    color: #333333;
    font-weight: 500;
}
.show-filter-mobile {
    display: none;
}
.jobs-layout-form .select2-container, .jobs-layout-form .show-filter-mobile {
    margin-bottom: 10px;
}
.jobs-layout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}
.jobs-layout-form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
	color: #333;
}
.jobs-layout-form .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 1px;
}
.iwj-dashboard-main .iwj-search-form .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 8px;
}
.jobs-layout-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #333333 transparent transparent;
    margin-left: -5px;
    margin-top: 2px;
}
.jobs-layout-form form .layout-switcher ul {
    margin: 0;
    padding: 0;
}
.jobs-layout-form form .layout-switcher ul li {
    list-style: none;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 10px;
}
.jobs-layout-form form .layout-switcher ul li:last-child {
    margin-right: 0;
}
.jobs-layout-form form .layout-switcher ul li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #f6f7f9;
    font-size: 28px;
    color: #333333;
}
.jobs-layout-form form .layout-switcher ul li.active a,
.jobs-layout-form form .layout-switcher ul li.active a:hover {
    color: #ffffff;
}
.jobs-layout-form form .layout-switcher ul li a i:before {
    line-height: inherit;
}
.iwj-form-2.iwj-job-submit-form .select2-container .select2-selection--multiple,
.iwj-form-2.iwj-job-edit-form .select2-container .select2-selection--multiple,
.iwj-form-2.iwj-candidate-form .select2-container .select2-selection--multiple{
	line-height: 20px;
}
.iwj-form-2.iwj-job-submit-form .select2-container .select2-selection--multiple ul.select2-selection__rendered,
.iwj-form-2.iwj-job-edit-form .select2-container .select2-selection--multiple ul.select2-selection__rendered,
.iwj-form-2.iwj-candidate-form .select2-container .select2-selection--multiple ul.select2-selection__rendered{
	line-height: 34px;
}
/* End Jobs Form */

/* Listing */
.fixed {
    position: fixed;
    right: 50%;
    margin-right: -50%;
}
.iwj-listing {
    margin: 30px 0;
}
.iwj-candidates .iwj-listing,
.iwj-employers .iwj-listing {
    margin: 0;
}
.iwj-jobs .sidebar-1.right {
    float: right;
}
.iwj-listing .job-item{
	height: auto !important;
}
.iwj-jobs .job-item{
	 padding: 20px 30px;
	 margin-bottom: 20px;
	 background: #ffffff;
	 -webkit-border-radius: 5px;
	 border-radius: 5px;
    position: relative;
 }
.iwj-jobs-page .iwj-jobs .job-item:hover{
	-webkit-box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
	box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
}
.iwj-listing .job-item:last-child .job-info {
    border: none;
}
/* End listing */

/*Jobs Listing with term*/
/*==Style 2==*/
.iwj-listing.iwj-jobs-listing-term{
	margin-top: 0;
}
.iwj-job-items.style2 .info-company > div{
	display: inline-block;
	margin-right: 13px;
}
.iwj-job-items.style2 .job-info .job-posted-time{
	text-align: right;
	margin-top: 8px;
	color: #b9b9b9;
}
/*==Style 3==*/
.iwj-jobs .iwj-job-items.style3 .job-item {
	margin-bottom: 0;
}
.iwj-jobs .iwj-job-items.style3 .job-item.featured-item {
	background: rgba(241, 110, 142, 0.03);
}
.iwj-job-items.style3 .job-save-left{
	display: inline-block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.iwj-job-items.style3 .job-image{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 35px;
}
.iwj-job-items.style3 .job-info{
	margin-left: 112px;
}
.iwj-job-items.style3 .job-info .info-company .job-type{
	position: static;
	display: inline-block;
	float: left;
    margin-top: 0;
}
.iwj-job-items.style3 .job-info .job-company-time{
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
	margin-top: 8px;
}
.iwj-job-items.style3 .job-info .job-company-time .job-posted-time{
	color: #b9b9b9;
}
.iwj-job-items.style3 .info-company > div{
	display: inline-block;
	margin-right: 4px;
	height: 22px;
	line-height: 20px;
	font-size: 12px;
}
.iwj-job-items.style3 .info-company > div.sallary,.iwj-job-items.style3 .info-company > div.address{
	border: 1px #eeeeee solid;
	border-radius: 30px;
	padding: 0 15px;
}

.iwj-job-items.style3 .job-item.featured-item .job-info .job-type a.type-name , .iwj-job-items.style3 .featured-item .info-company > div.sallary,.iwj-job-items.style3 .featured-item .info-company > div.address{
	border: 1px #e9e9e9 solid;
}
.iwj-job-items.style3 .info-company > div:not(.job-type){
	padding: 0 15px;
	overflow: hidden;
}
.iwj-job-items.style3 .info-company > .skill i{
	color: #b9b9b9;
}
.iwj-listing .w-pag-load-more{
	padding: 22px 0;
}
.iwj-listing .w-pag-load-more button.iwj-showmore, .iwj-listing .w-pag-load-more button.iwj-ide-showmore{
	background: rgba(41, 128, 185, 0.05);
	border-radius: 5px;
	border: 0;
	color: #777777;
	font-size: 14px;
	text-transform: uppercase;
	padding: 10px 0;
	width: 100%;
	font-weight: 600;
}
/*End Listing with term*/

/* Grid */

.iwj-grid {
    position: relative;
    margin: 30px 0 45px;
	float: left;
	width: 100%;
}
.iwj-jobs.iwj-grid .grid-content {
    width: 50%;
    float: left;
}
.iwj-jobs.iwj-grid .grid-content:nth-child(odd) {
	padding: 0 10px 0 0;
}
.iwj-jobs.iwj-grid .grid-content:nth-child(even) {
	padding: 0 0 0 10px;
}

.iwj-grid .job-item {
    padding: 25px 30px 35px;
    position: relative;
	border-bottom: none;
}
.iwj-grid .job-item .job-info{
    margin: 0;
	padding: 0;
}
.iwj-grid .job-item .job-info .job-featured{
    display: none;
}
.iwj-grid .job-item .job-info .job-type {
    position: relative;
}
.iwj-grid .job-item .job-image {
    display: none !important;
}
.iwj-grid .job-item .job-featured {
    font-size: 0;
}
.iwj-grid .job-item:nth-child(odd) {
    clear: both;
}
.iwj-grid .iwj-job-items .job-item:nth-child(2n+0) {
    border-right: none !important;
}
.iwj-grid .iwj-job-items .job-item:nth-child(1),
.iwj-grid .iwj-job-items .job-item:nth-child(2) {
    border-top: none !important;
}
.iwj-grid .job-item .job-title {
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 26px;
}
.iwj-grid .job-item .job-type {
    padding-top: 10px;
}
.iwj-grid .job-item .job-info .job-type span {
    border: 1px solid #f6f7f9;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    height: 30px;
    line-height: 30px;
    margin-right: 5px;
    padding: 0 15px;
}
.iwj-grid .job-item .job-featured {
    position: absolute;
    top: 0;
    right: 0;
    width: 51px;
    height: 51px;
    background: url("../images/featured.png") no-repeat;
    background-size: cover;
}
.w-pagination {
    padding: 25px 30px;
    display: table;
    position: relative;
    width: 100%;
    background: #ffffff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.iwjob-ajax-pagination.pagination-main, .iwjob-ajax-map-pagination.pagination-main{
    float: right;
    padding: 5px 0;
}
.page-nav.pagination-job {
    border: none;
    margin: 0;
    padding: 0;
    display: table;
}
.page-nav.pagination-job li:last-child {
    margin: 0;
}
.w-pagination .job-alert-btn {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    float: left;
    display: inline-block;
    margin-top: 7px;
    margin-bottom: 5px;
}
/* End Grid */

/*===== Jobs Detail =====*/
.contents-main.iw-job-detail{
    position: relative;
}
.contents-main.iw-job-detail .iwj-job-action-btn{
    position: fixed;
    top: auto;
    left: auto;
    right: 2%;
    bottom: 5%;
    z-index: 990;
}

.contents-main.iw-job-detail .iwj-job-action-btn a{
    display: block;
    margin-bottom: 10px;
	text-align: left;
}

.iw-job-detail {
    background: #f6f7f9;
}
.iw-job-detail .job-detail-content {
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iw-job-detail .job-detail-content ul {
    margin: 0;
    padding: 0;
}
.iw-job-detail .job-detail-info ul {
    display: table;
    position: relative;
}
.iw-job-detail .job-detail-info ul:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    background: #ffffff;
}
.iw-job-detail .job-detail-info ul li {
    list-style: none;
    float: left;
    width: 50%;
    border-bottom: 1px #f6f7f9 solid;
    border-right: 1px #f6f7f9 solid;
    padding: 35px 60px;
}
.iw-job-detail .job-detail-info ul li.address {
    color: #f16e8e;
}
.iw-job-detail .job-detail-info ul li.salary {
    color: #4a98ae;
}
.iw-job-detail .job-detail-info ul li.posted {
    color: #33aa58;
}
.iw-job-detail .job-detail-info ul li.category {
    color: #bc965a;
}
.iw-job-detail .job-detail-info ul li.year-exp {
    color: #3ac1f1;
}
.iw-job-detail .job-detail-info ul li i {
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    margin-right: 10px;
    position: relative;
    text-align: center;
    top: 2px;
    width: 20px;
}
.iw-job-detail .job-detail-info ul li .title {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
}
.iw-job-detail .job-detail-info ul li .left {
    float: left;
    min-width: 110px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.iw-job-detail .job-detail-info ul li .content {
    font-weight: 500;
    color: #333333;
    overflow: hidden;
}
.iw-job-detail .job-detail-about {
    padding: 10px 85px 0;
}
.iw-job-detail .job-detail-about .item {
    padding: 55px 0 60px;
    border-bottom: 1px #f6f7f9 solid;
}
.iw-job-detail .job-detail-about .item:last-child {
    border-bottom: none;
    padding-bottom: 40px;
}
.iw-job-detail .job-detail-about .item .title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 40px;
}
.iw-job-detail .job-detail-about .item .content {
    color: #333333;
    line-height: 28px;
    margin: 0 0 0 100px;
}

.iw-job-detail .job-detail-about > div {
    padding: 55px 0 60px;
    border-bottom: 1px #f6f7f9 solid;
}
.iwj-map .job-title-about {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.iw-job-detail .job-detail-desc {
    color: #333333;
    line-height: 28px;
}
.iw-job-detail .job-detail-desc ul,
.iw-job-detail .job-detail-desc ol {
    padding: 0;
}
.iw-job-detail .job-detail-desc blockquote {
    font-size: 14px;
    color: #333333;
}
.job-detail-desc h1, .job-detail-desc .h1,
.job-detail-desc h2, .job-detail-desc .h2,
.job-detail-desc h3, .job-detail-desc .h3,
.job-detail-desc h4, .job-detail-desc .h4,
.job-detail-desc h5, .job-detail-desc .h5,
.job-detail-desc h6, .job-detail-desc .h6 {
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.job-detail-desc h4, .job-detail-desc .h4 {
    font-size: 16px;
}
.job-detail-desc hr {
    margin: 60px 0;
}
.job-detail-desc hr {
    margin: 60px 0;
}
.job-detail-map {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px #eeeeee solid;
}
.iwj-map .infoBox {
    padding: 36px 55px 36px;
    background: #ffffff;
}
.iwj-map .infoBox:after {
    background: #ffffff none repeat scroll 0 0;
    border-color: #e4e4e4;
    border-style: solid;
    border-width: 0 1px 1px 0;
    bottom: -10px;
    content: "";
    height: 20px;
    left: 45px;
    position: absolute;
    transform: rotate(45deg);
    width: 20px;
    z-index: 9;
}
.iwj-map .infoBox > img {
    margin: 0 -25px 0 0 !important;
}
.iwj-map .info {
    overflow: hidden;
    font-size:12px;
}
.iwj-map .info div.address {
    margin-top: -5px;
    color: #6c6c6c;
    line-height: 24px;
}
.iwj-map .info .left {
    font-weight: 600;
    margin-right: 15px;
}
.iwj-map .map-info {
	max-width: 250px;
	line-height: 24px;
	color: #6c6c6c;
	font-size:12px;
	padding: 10px 0 5px 10px;
}
.iw-job-detail .action-button .button > a, .iw-job-detail .action-button .iwj-button-loader > a {
    display: inline-block;
    height: 46px;
    line-height: 46px;
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    min-width: 160px;
    padding: 0 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    outline: none;
    -webkit-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
}
.iw-job-detail .job-expired{
    display: inline-block;
    height: 46px;
    line-height: 46px;
	color: #8a6d3b;
	background-color: #fcf8e3;
	border:1px solid #faebcc;
	padding: 0 15px;
	border-radius: 5px;
	margin-right: 5px;
}
.iw-job-detail .job-applied{
    display: inline-block;
    height: 46px;
    line-height: 46px;
	color: #31708f;
	background-color: #d9edf7;
	border:1px solid #bce8f1;
	padding: 0 15px;
	border-radius: 5px;
	margin-right: 5px;
}
.iw-job-detail .action-button a i {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin-right: 10px;
    position: relative;
    top: 2px;
}
.iw-job-detail .action-button .iwj-button-loader {
    display: inline-block;
    position: relative;
}
.iw-job-detail .action-button .iwj-button-loader .iwj-respon-msg {
    position: absolute;
    left: 0;
    top: 100%;
}
.iw-job-detail .action-button a.apply-job {
    margin-right: 10px;
    margin-bottom: 12px;
    background-color: #16A085;
}
.iw-job-detail .action-button a.apply-job.apply-with-linkedin {
    margin-right: 10px;
    background-color: #0077B5;
}
.iw-job-detail .disable-linkedin a.apply-job.apply-with-linkedin {
    margin-right: 10px;
    background-color: #0077B5;
	display:none;
}
.iw-job-detail .action-button a.apply-job.applied {
    background-color: #aaa !important;
}
.iw-job-detail a.save-job {
    background-color: #F16E8E;
}
.iw-job-detail a.save-job.saved {
	background: #33aa58;
	border-color: #33aa58;
	color: #ffffff;
}
.iw-job-detail .share-job-wrap{
	float: left;
	margin-left: 35px;
	margin-top: 8px;
}
.iw-job-detail .action-button, .iw-job-detail .post-social-share {
    padding: 30px 85px;
    border-top: 1px solid #f6f7f9;
}
.iw-job-detail .post-share-title {
    float: left;
    margin: 7px 20px 0 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}
.iw-job-detail .post-share-buttons-inner {
    overflow: hidden;
}
.iw-job-detail .post-share-buttons-inner a {
    float: left;
    margin: 0 5px;
}
.iw-job-detail .post-share-buttons-inner .iwj-print-job{
	float: right;
}
.iw-job-detail .job-related {
    background: #ffffff;
    line-height: 30px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 75px 50px 20px;
	margin-top: 30px;
}
.iw-job-detail .job-related .title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}
.iw-job-detail .job-related .iwj-jobs:before, .iw-job-detail .job-related .iwj-jobs:after {
    display: none;
}
.iw-job-detail .job-related .iwj-jobs .job-item {
    border-right: none;
}
.iw-job-detail .job-related .iwj-jobs .job-item .job-info {
    height: auto;
}
.iw-job-detail .job-related .iwj-jobs .job-item .job-image {
    margin-left: 0;
}
.iw-job-detail .job-related .iwj-jobs .job-item:last-child {
    border: none;
}
.iwj-job-widget-wrap {
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 0 0;
}
.iwj-job-widget-wrap .info-top {
    text-align: center;
}
.iwj-job-widget-wrap .info-top {
    border-bottom: 1px #f6f7f9 solid;
    padding-bottom: 35px;
}
.iwj-job-widget-wrap .info-top .company-logo {
	max-width: 150px;
	line-height: 95px;
	/*box-shadow: 0 15px 50px rgba(41, 128, 185, .15);*/
	/*-webkit-border-radius: 50%;*/
	/*border-radius: 50%;*/
	overflow: hidden;
	text-align: center;
	margin: 0 auto 45px;
   /* padding: 40px;*/
	border-radius: 5px;
}
.iwj-job-widget-wrap .info-top .company-logo img {
    width: 100%;
}
.iwj-job-widget-wrap .iwj-title {
    font-size: 30px;
    text-transform: uppercase;
    margin: 0 0 15px;
	font-weight: 600;
	display:none;
}
.iw-contact-form-7.contact-map
{
	padding: 20px 30px 0px !important;
}
.iwj-job-widget-wrap .headline {
    color: #ffffff;
    padding: 7px 20px;
    line-height: 20px;
    background: #f16e8e;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}
.iwj-job-widget-wrap .info-bottom {
    padding: 5px 0 0;
    line-height: 30px;
}
.iwj-job-widget-wrap .info-bottom .description {
    padding: 15px 0 0;
    margin-bottom: 20px;
}
.iwj-job-widget-wrap .info-bottom ul {
    padding: 0;
    margin: 20px 0 0;
}
.iwj-job-widget-wrap .info-bottom ul li {
    list-style: none;
    font-weight: 500;
    line-height: 18px;
    padding: 12px 0;
}
.iwj-job-widget-wrap .info-bottom ul li .left {
    float: left;
    min-width: 110px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.iwj-job-widget-wrap .info-bottom ul li .content {
    overflow: hidden;
    color: #333333;
}
.iwj-job-widget-wrap .info-bottom ul li .content a {
    color: #333333;
}
.iwj-job-widget-wrap .info-bottom ul li i {
    font-size: 16px;
    width: 20px;
    font-weight: normal;
    text-align: center;
    margin-right: 10px;
    position: relative;
    top: 2px;
    display: inline-block;
}
.iwj-job-widget-wrap .info-bottom ul li i:before {
    line-height: inherit;
}
.iwj-job-widget-wrap .info-bottom ul li.location i {
    color: #f16e8e;
}
.iwj-job-widget-wrap .info-bottom ul li.phone i {
    color: #4a98ae;
}
.iwj-job-widget-wrap .info-bottom ul li.website i {
    color: #33aa58;
}
.iwj-job-widget-wrap .action-button {
    text-align: center;
}
.iwj-job-widget-wrap .action-button a {
    text-align: center;
}
.iwj-job-widget-wrap .action-button a.save-job {
    margin: 0 0 15px;
}
a.iwj-btn.action-button.follow{
	display: block;
	margin-bottom:20px;
}
a.iwj-btn.action-button.follow.iwj-save-resume,
a.iwj-btn.action-button.follow.iwj-download-cv{
	min-width: 187px;
}
.iwj-job-widget-wrap .action-button a.save-job.saved,
.iwj-button-loader .action-button.saved, .iwj-button-loader .action-button.saved span {
    color: #ffffff !important;
    background: #33aa58 !important;
    border-color: #33aa58 !important;
}
.iwj-job-widget-wrap .company-link a {
    color: #333333;
    font-size: 13px;
    font-style: italic;
    line-height: 18px;
    display: inline-block;
    margin-right: 27px;
}
.iwj-job-widget-wrap .company-link a i {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    margin-right: 10px;
    position: relative;
    top: 4px;
}
.iwj-job-widget-wrap .company-link a span {
    text-decoration: underline;
}
.iwj-single-contact-form .form-title {
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin: 60px 0 28px;
}
.iwj-single-contact-form .form-title:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 45px;
    background: rgba(0, 0, 0, 0.1);
}
.iwj-single-contact-form .iwjmb-input input,
.iwj-single-contact-form .iwjmb-input textarea {
    width: 100%;
    border: 1px solid #F1F1F1;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 5px 26px;
}
.iwj-single-contact-form .iwjmb-input textarea {
    padding: 10px 26px;
}
.iwj-single-contact-form .iwjmb-input input {
    height: 52px;
    line-height: 50px;
}
.iwj-single-contact-form .iwjmb-input input:hover,
.iwj-single-contact-form .iwjmb-input input:focus,
.iwj-single-contact-form .iwjmb-input textarea:hover,
.iwj-single-contact-form .iwjmb-input textarea:focus {
    border: 1px solid #333333;
    color: #333333;
}
.iwj-single-contact-form .iwj-contact-btn {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #16A085;
    -webkit-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    height: 47px;
    line-height: 45px;
    padding: 0 25px;
}
.iwj-single-contact-form .iwj-btn-action {
    margin: 10px 0 0;
}
.iwj-single-contact-form .iwj-contact-btn i {
    font-size: 20px;
    font-weight: 500;
    margin-right: 15px;
    position: relative;
    top: 3px;
}
/*===== End Job Detail =====*/

/*===== Sidebar Job =====*/
.iwj-jobs-page .col-md-3 .widget-area,
.iwj-employers-page .col-md-3 .widget-area,
.iwj-candidates-page .col-md-3 .widget-area,
.iwj-job-taxonomy-page .col-md-3 .widget-area{
    padding: 35px 25px;
    border: none;
}
.widget-area aside {
    margin-bottom: 55px;
}
.widget-area aside:last-child {
    margin-bottom: 0;
}
.widget-area aside.sidebar-jobs-item {
    margin-bottom: 40px;
}
.widget-area .widget:last-child {
    margin-bottom: 0;
}
.widget-area .widget-title{
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    margin: 0 0 32px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.widget-area .widget-title:after {
    content: "";
    position: absolute;
    width: 46px;
    height: 1px;
    background: rgba(0,0,0,0.1);
    left: 0;
    bottom: 0;
}
/* Sidebar Left */
#iwjob-search input, #iwjob-search button {
    box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px #eeeeee solid;
}
#iwjob-search button {
    border-left: none;
}
.sidebar-jobs .sidebar-job-1 ul {
    padding: 0;
    margin: 0;
}
.sidebar-jobs .sidebar-job-1 ul li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px #f6f7f9 solid;
    position: relative;
}
.sidebar-jobs .sidebar-job-1 ul li:first-child {
    padding-top: 0;
}
.sidebar-jobs .sidebar-job-1 ul li label,
.sidebar-jobs .sidebar-job-1 ul li span {
    margin: 0;
    font-weight: 500;
}
.sidebar-jobs .sidebar-job-1 ul li.iwj-input-checkbox label {
    padding-left: 30px;
}
.sidebar-jobs .sidebar-job-1 ul li.iwj-sidebar-input-radio label {
    margin-right: 30px;
}
.sidebar-jobs .sidebar-job-1 ul li:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    opacity: 0;
}
.sidebar-jobs .sidebar-job-1 ul li:hover:after {
    opacity: 1;
}
.sidebar-jobs .sidebar-job-1 ul li a {
    color: #777;
    font-weight: 500;
}
.widget-area ul li .filter-name-item {
    display: inline-block;
    max-width: calc(100% - 30px);
}
.widget-area ul li span.iwj-count {
    display: inline-block;
    float: right;
}
.widget-area ul li.show-more {
    border: none;
}
.widget-area ul li.show-more:before,
.widget-area ul li.show-more:after {
    display: none;
}
a.item-tax-location:after{
	content: "";
	width: 100%;
    height: 100%;
    position: absolute;
    left: 15px;
}
.widget-area ul.sub-cat li:nth-last-child(1):hover:after {
	opacity: 0!important;
}
.widget-area ul.sub-cat {
	margin: 8px 0 0 15px !important;
	/*border-top: 1px solid #f6f7f9 ;*/
	display: none;
}
.widget-area ul.sub-cat.open {
	/*transition: all 0.3s;*/
	display: block;
}
.widget-area ul.sub-cat li:last-child{
	border: none;
	padding-bottom: 2px;
}
.widget-area ul.sub-cat li:first-child{
	padding-top: 8px;
}

.widget-area ul li span.iwj-show-sub-cat {
	cursor: pointer;
	padding:0 5px;
}
.widget-area ul li span.iwj-show-sub-cat.open i:before{
	content: "\f106";
}
.theiaStickySidebar{
	z-index: 99;
}
.tax-tree a {
	display: block;
}

.tax-tree > a.item-tax {
	/*border-bottom: 1px solid #000;*/
    padding: 8px 0;
	border-bottom: 1px solid #f6f7f9;
    display: block;
}

.tax-tree > a.item-tax:after {
	border-bottom: 2px solid #2980b9;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    opacity: 0;
	/*border-bottom: 1px solid #f6f7f9;*/
}
.tax-tree > a.item-tax:hover:after {
    opacity: 1;
}
.sidebar-jobs .sidebar-job-1 ul li.tax-tree {
	border-bottom: none;
    padding: 0;
}
.sidebar-jobs .sidebar-job-1 ul li.tax-tree:hover:after {
	opacity: 0;
}
.sidebar-jobs .sidebar-job-1 ul li.tax-tree:hover a{
	color:#777;
}
a.item-tax:hover{
	color:#2980b9!important;
}
/* End Sidebar Left */

/* - Sidebar Right - */
/* ===== Recent Jobs ===== */

/* Style1 */
.job-item {
    padding: 30px 0 30px 0;
	border-bottom: 1px #f6f7f9 solid;
}
.job-item .job-image {
	border-radius: 5px;
	float: left;
	margin-top: 7px;
	overflow: hidden;
	max-width: 45px;
}
.job-item h3 {
    margin: 0 0 10px;
}
.job-item .job-title a {
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
}
.job-item.featured-item .job-title a {
    color: #009cff;
}
.job-short-description
{
	 white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    height: 29px;
}
.job-short-description p
{
	 white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    height: 29px;
}
.short-description-container{
	display: flex;
}
.short-description-container i{
	
}
.job-item .job-info {
	margin-left: 80px;
	padding-right: 50px;
	position: relative;
}
.job-item .job-info i {
	width: 15px;
	font-size: 13px;
	text-align: center;
	margin-right: 10px;
}
#myDiv p{
	display:none;
}
#myDiv
{
display: inline-flex;	
}
.job-item .job-info .sallary i {
	color: #4a98ae;
}

.job-item .job-info .address i {
    color: #f16e8e;
	font-size: 14px;
}
.job-item .job-info a {
	color: #777;
}
.job-item .job-title a, .job-item .job-title {
	color: #333;
}
.job-item .job-info .job-type a.type-name, .job-item .job-info .job-type span.type-name {
    display: inline-block;
    color: #4a98ae;
    font-weight: 600;
    height: 22px;
    line-height: 20px;
    padding: 0 15px;
    border: 1px #f6f7f9 solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
	font-size: 10px;
    text-transform: uppercase;
}
.job-item .job-info .job-type a.type-name:hover {
    color: #fff !important;
}
/*style 3*/
.iwj-job-items.style3 .job-item{
	border-bottom-color: rgba(0,0,0,0.05);
}
.iwj-job-items.style3 .job-item .job-company-time a{
	font-size: 13px;
	color: #777;
}
.iwj-job-items.style3 .job-item .job-info .job-type a.type-name{
	border-color: #eeeeee;
}
.job-item .job-info .job-type i, .iwj-job-items.style3 .job-save-left i {
    margin: 0;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    width: 20px;
    text-align: center;
    color: #f16e8e;
    border: 1px #f6f7f9 solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	font-size: 9px;
    margin-left: 5px;
}
.job-item .job-info .job-type i:hover, .iwj-job-items.style3 .job-save-left i:hover {
    background: #f16e8e;
	color: #fff;
}
.job-item .job-info .job-type .saved i, .iwj-job-items.style3 .job-save-left .saved i {
	background: #f16e8e;
	color: #fff;
}
.job-item .job-info .job-type {
	position: absolute;
	right: 0;
	top: 0;
}
.job-item .job-info .job-featured {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	padding: 0 15px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background: #f16e8e;
	line-height: 20px;
	margin-right: 10px;
	margin-top: 10px;
}
.job-item .iwj-featured {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    background: url("../img/job-featured.png") no-repeat;
    background-size: cover;
}

.iwj-jobs-carousel {
	position: relative;
	margin: 0 -25px;
}
.iwj-jobs-carousel-inner {
	overflow: hidden;
}
.iwj-items{
	padding: 25px;
}
.iwj-jobs-carousel .iwj-item:hover, .iwj-grid .job-item:hover,
.iwj-grid .iwj-employer-item:hover {
	-webkit-box-shadow: 0px 15px 50px rgba(41, 128, 185, 0.15);
	-moz-box-shadow: 0px 15px 50px rgba(41, 128, 185, 0.15);
	box-shadow: 0px 15px 50px rgba(41, 128, 185, 0.15);
	z-index: 10;
	border-color: transparent;
	position: relative;
}

.iwj-jobs-carousel .iwj-items .iwj-item {
    border: none !important;
    margin-bottom: 30px;
    position: relative;
    z-index: 0;
}
.iwj-jobs-carousel .iwj-items .iwj-item:after {
    position: absolute;
    content: "";
    width: calc(100% - 30px);
    height: 100%;
    top: 0;
    left: 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 25px 0 rgba(41,128,185,0.15);
    box-shadow: 0 5px 25px 0 rgba(41,128,185,0.15);
    z-index: -1;
}
.iwj-jobs-carousel .iwj-items .iwj-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.iwj-jobs-carousel .job-item {
    padding: 20px 20px;
	border-bottom: none;
    position: relative;
}
.iwj-jobs-carousel .owl-theme .owl-controls {
    margin-top: 0;
    margin-bottom: 30px;
}
.iwj-jobs-carousel .owl-theme .owl-controls .owl-page span.owl-numbers {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 3px 7px 0 rgba(41,128,185,0.15);
    box-shadow: 0 3px 7px 0 rgba(41,128,185,0.15);
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 30px;
    margin: 3px;
	opacity: 1;
}
.iwj-jobs-carousel .owl-theme .owl-controls .owl-page.active span.owl-numbers,
.iwj-jobs-carousel .owl-theme .owl-controls .owl-page span.owl-numbers:hover {
    color: #ffffff;
}
.iwj-jobs-carousel.style2 .iwj-items {
    padding-top: 0;
}
.navigation-text-v2.owl-theme .owl-controls {
    margin: 0;
    position: absolute;
    right: 20px;
    top: -80px;
}
.navigation-text-v2.owl-theme .owl-controls .owl-buttons {
    position: relative;
    padding-left: 45px;
}
.navigation-text-v2.owl-theme .owl-controls .owl-buttons:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 12px;
    top: 12px;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
}
.navigation-text-v2.owl-theme .owl-controls .owl-buttons div {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background: #777777;
    padding: 0;
    opacity: 1;
    font-size: 13px;
}
.navigation-text-v2.owl-theme .owl-controls .owl-buttons div:hover {
    background: #16A085;
    color: #ffffff !important;
}
.iwj-jobs-carousel-v3.style3 {
    margin: 0;
}
.iwj-jobs-carousel-v3.style3 .navigation-text-v2.owl-theme .owl-controls,
.iwj-employers-slider.style2 .navigation-text-v2.owl-theme .owl-controls {
    right: -5px;
}
.title-block-carousel {
    color: #333333;
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    text-transform: uppercase;
    padding: 21px 0;
    border-bottom: 1px #EEEEEE solid;
    margin-bottom: 30px;
}
.iwj-jobs-carousel-v3.style3 .iwj-item {
    text-align: center;
    padding: 40px 25px 30px;
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
}
.iwj-jobs-carousel-v3.style3 .iwj-item .job-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 25px;
    margin: 30px 0 15px;
	text-transform: uppercase;
}
.iwj-jobs-carousel-v3.style3 .iwj-item .job-title a {
    color: #333333;
}
.iwj-jobs-carousel-v3.style3 .iwj-item .job-type .type-name {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    line-height: 15px;
    padding: 3px 15px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}
.iwj-jobs-carousel-v3.style3 .iwj-item .job-image{
    text-align: center;
}
.iwj-jobs-carousel-v3.style3 .iwj-item .job-image img{
    max-width: 150px;
	border-radius: 5px;
	width: auto;
}
.iwj-jobs-carousel-v3.style3 .job-info .address {
	color: #2980b9;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 25px;
}
.iwj-jobs-carousel-v3.style3 .address a {
	text-decoration: underline;
}
.iwj-jobs-carousel-v3.style3 .company a {
	color: inherit;
}
.iwj-jobs-carousel-v3.style3 .company {
	display: inline-block;
    padding-right: 15px;
}
.iwj-jobs-carousel-v3.style3 .company i,
.iwj-jobs-carousel-v3.style3 .sallary i {
	margin-right: 10px;
}
.iwj-jobs-carousel-v3.style3 .sallary {
	display: inline-block;
}
.iwj-jobs-carousel-v3.style3 .action-btn {
    display: table;
    margin: 40px auto 0;
}
.iwj-jobs-carousel-v3.style3 .action-btn a,
.iwj-jobs-carousel-v3.style3 .action-btn button.save-job {
	margin: 0 5px 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	color: #fff;
	text-transform: uppercase;
	background: #16A085;
	padding: 15px 34px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
	box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    float: left;
}
.iwj-jobs-carousel-v3.style3 .action-btn a.iwj-save-job,
.iwj-jobs-carousel-v3.style3 .action-btn button.save-job {
	border: none;
    background: #16A085;
	font-size: 20px;
	font-weight: 500;
	line-height: 22px;
	padding: 13px 15px;
}
.iwj-jobs-carousel-v3.style3 .action-btn a.iwj-save-job.saved {
	background: #F16E8E;
}
.iwj-recommend-adv {
    background: #16A085;
    padding: 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-recommend-adv a {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: bold;
    line-height: 15px;
    text-transform: uppercase;
    display: block;
    padding: 25px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px #ffffff dotted;
    text-align: center;
}
.iwj-recommend-adv a:hover {
    text-decoration: none;
}
.iwj-recommend-adv a,
.iwj-recommend-adv a:focus,
.iwj-recommend-adv a:hover {
    outline: none;
}
.iwj-recommend-adv a:focus,
.iwj-recommend-adv a:hover {
    color: #ffffff;
}

/* ===== End Recent Jobs ===== */

/* ===== Recent Resumes ===== */
.iw-recent-resumes {
    position: relative;
    margin-bottom: 90px;
}
.iw-recent-resumes .recent-resume-item {
    width: 20%;
    float: left;
    text-align: center;
    position: relative;
    background: #ffffff;
    border-bottom: none;
    border-top: 1px solid #f6f8f9;
    border-right: 1px solid #f6f8f9;
}
.iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5n+0) {
    border-right: none !important;
}
.iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(1),
.iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(2),
.iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3),
.iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(4),
.iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5) {
    border-top: none;
}
.iw-recent-resumes .recent-resume-item:hover {
	-webkit-box-shadow: 0px 15px 50px rgba(41,128,185,0.15);
	-moz-box-shadow: 0px 15px 50px rgba(41,128,185,0.15);
	box-shadow: 0px 15px 50px rgba(41,128,185,0.15);
    z-index: 10;
}
.iw-recent-resumes .recent-resume-item .resumes-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.iw-recent-resumes .recent-resume-item .resumes-image:after {
    content: "";
    position: absolute;
    bottom: -105%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: #ffffff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}
.iw-recent-resumes .recent-resume-item:hover .resumes-image,
.iw-recent-resumes .recent-resume-item:hover .resumes-image:after {
    opacity: 1;
}
.iw-recent-resumes .recent-resume-item .resumes-image img {
    opacity: 0.2;
}
.iw-recent-resumes .recent-resume-item img {
    width: 100%;
}
.iw-recent-resumes .recent-resume-item .resumes-info {
    padding: 35px 35px 0;
    position: relative;
}
.iw-recent-resumes .recent-resume-item .resumes-info .info-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    padding: 0 35px 35px;
    opacity: 0;
    box-shadow: 0 16px 20px 4px #ebf3f8;
    -webkit-transition: -webkit-transform 0.3s ease 0s, opacity 0.3s ease 0s;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
}
.iw-recent-resumes .recent-resume-item:hover .resumes-info .info-bottom {
    -webkit-transform:translateY(100%);
    transform:translateY(100%);
    opacity: 1;
    z-index: 9;
}
.iw-recent-resumes .recent-resume-item .resumes-avatar {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 26px;
	-webkit-box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
	-moz-box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
	box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
}
.recent-resume-item .name {
    margin: 0;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 26px;
}
.recent-resume-item .name a {
    color: #333333;
}
.recent-resume-item .info-top {
    padding-bottom: 50px;
}
.recent-resume-item .resumes-job {
	font-weight: 500;
	margin-bottom: 0;
	line-height: 1.5;
    font-size: 11px;
}
.iw-recent-resumes .recent-resume-item .social-link ul {
    margin: 0;
    padding: 0 0 10px;
}
.recent-resume-item .social-link li {
    list-style: none;
    display: inline-block;
    margin: 0 5px 6px;
}
.recent-resume-item .social-link li a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 21px;
    border-width: 2px;
    border-style: solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
}
.recent-resume-item .social-link li a.facebook {
    color: #3B5998 !important;
    border-color: #3B5998;
}
.recent-resume-item .social-link li a.twitter {
    color: #0084B4 !important;
    border-color: #0084B4;
}
.recent-resume-item .social-link li a.google-plus {
    color: #DB4437 !important;
    border-color: #DB4437;
}
.recent-resume-item .social-link li a.pinterest {
    color: #BD081C !important;
    border-color: #BD081C;
}
.recent-resume-item .social-link li a.linkedin {
    color: #006fa6 !important;
    border-color: #006fa6;
}
.recent-resume-item .social-link li a.vimeo {
    color: #009fde !important;
    border-color: #009fde;
}
.recent-resume-item .social-link li a.youtube {
    color: #e62117 !important;
    border-color: #e62117;
}
.recent-resume-item .social-link li a.facebook:hover {
    color: #ffffff !important;
    background: #3B5998;
}
.recent-resume-item .social-link li a.twitter:hover {
    color: #ffffff !important;
    background: #0084B4;
}
.recent-resume-item .social-link li a.google-plus:hover {
    color: #ffffff !important;
    background: #DB4437;
}
.recent-resume-item .social-link li a.pinterest:hover {
    color: #ffffff !important;
    background: #BD081C;
}
.recent-resume-item .social-link li a.linkedin:hover {
    color: #ffffff !important;
    background: #006fa6;
}
.recent-resume-item .social-link li a.vimeo:hover {
    color: #ffffff !important;
    background: #009fde;
}
.recent-resume-item .social-link li a.youtube:hover {
    color: #ffffff !important;
    background: #e62117;
}
.iw-recent-resumes .recent-resume-item .desc {
    line-height: 28px;
    margin-bottom: 18px;
}
.iw-recent-resumes .recent-resume-item .view-resume {
    display: inline-block;
    color: #ffffff;
    border-width: 1px;
    border-style: solid;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 20px;
    padding: 0 15px;
}
.iw-recent-resumes .recent-resume-item .view-resume:hover {
    background: #ffffff;
}
/* ===== End Recent Resumes ===== */

/* ===== Categories ===== */
.iwj-categories.style1{
	text-align: center;
}

.iwj-categories.style1 .item-category{
	height: 170px;
	width: 170px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #34495E;
	box-shadow: 0 7px 25px 0 rgba(0,0,0,0.3);
	display: inline-block;
	color: #fff;
	padding-top: 27px;
	margin: 7px 6px 20px 6px;
}

.iwj-categories.style1 .item-category-inner{
	float: left;
	width: 100%;
}
.iwj-categories.style1 .item-category:hover{
	background-color: #2980B9;
}
.iwj-categories.style1 .category-icon{
	font-size: 48px;
}
.iwj-categories.style1 .category-title{
	margin: 0 0 8px;
}
.iwj-categories.style1 .category-title a{
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	color: #fff;
}
.iwj-categories.style1 .total-jobs{
	opacity: 0.5;
}
.iwj-categories.style1 .item-category.all-categories{
	padding: 0;
	position: relative;
	z-index: 0;
}
.iwj-categories.style1 .item-category.all-categories:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-border-radius: 5px;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.15);
	opacity: 0;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
	z-index: -1;
}
.iwj-categories.style1 .item-category.all-categories:hover:after{
	opacity: 1;
}
.iwj-categories.style1 .item-category.all-categories .item-category-inner{
	border: 1px dashed #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-sizing: border-box;
	display: inline-block;
	height: 140px;
	left: 15px;
	margin: 0;
	position: absolute;
	top: 15px;
	width: 140px;
}
.iwj-categories.style1 .item-category.all-categories .item-category-inner .category-title{
	margin: 0;
	height: 140px;
	line-height: 140px;
	text-transform: uppercase;
}

.iwj-categories.style2 .item-category {
	padding: 50px;
	position: relative;
	background-size: cover;
	margin-bottom: 30px;
}
.iwj-categories.style2 .item-category:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-block;
	background: #2980B9;
    opacity: 0.8;
	z-index: 0;
}
.iwj-categories.style2 .item-category:hover:before {
	background: #16A085;
}
.iwj-categories.style2 .category-icon {
	z-index: 2;
	position: relative;
	float: left;
	font-size: 50px;
	color: #fff;
}
.iwj-categories.style2 .category-info {
	z-index: 2;
	position: relative;
	padding-left: 80px;
}
.iwj-categories.style2 .category-title{
	margin: 0 0 4px;
}
.iwj-categories.style2 .category-title a {
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
}
.iwj-categories.style2 .category-info .total-jobs{
	color: #fff;
	opacity: 0.7;
	margin-bottom: 4px;
}
.iwj-categories.style2 .category-info .view-link{
	color: #fff;
	display: inline-block;
	border-bottom: 1px solid #fff;
}
.iwj-categories.style2 .all-categories{
	text-align: center;
	margin-top: 25px;
}

.iwj-categories.style3 .item-category {
    background: #F6F7F9;
    border: 1px solid #EEEEEE;
    padding: 10px 80px 10px 30px;
    position: relative;
    margin-bottom: 10px;
}
.iwj-categories.style3 .item-category a {
    font-weight: 600;
    line-height: 18px;
    color: #333333;
    text-transform: uppercase;
}
.iwj-categories.style3 .item-category span {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    background: #FFFFFF;
    border-left: 1px solid #EEEEEE;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    padding: 10px 5px;
}
.iwj-categories.style3 .all-categories{
	text-align: center;
	margin-top: 25px;
}

.iwj-categories.style4 .item-category {
    background: rgba(246, 247, 249, 0.1);
    padding: 10px 80px 10px 30px;
    position: relative;
    margin-bottom: 10px;
}
.iwj-categories.style4 .item-category:hover {
    background: #16A085;
}
.iwj-categories.style4 .item-category a {
    font-weight: 600;
    line-height: 18px;
    color: #fff;
    text-transform: uppercase;
	white-space: nowrap;
}
.iwj-categories.style4 .item-category span {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    padding: 10px 5px;
    color: #ffffff;
}
.iwj-categories.style4 .all-categories{
	text-align: center;
	margin-top: 25px;
}

.iwj-categories.style5 .item-category {
	padding: 40px 20px 45px;
	text-align: center;
	box-shadow: 0 5px 25px 0 rgba(41,128,185,0.15);
	margin-bottom: 30px;
	position: relative;
}
.iwj-categories.style5 .category-image {
	width: 100%;
	height: 100%;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-size: cover;
}
.iwj-categories.style5 .category-image:before {
	content: "";
	width: 100%;
	height: 100%;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-color: rgba(41, 128, 185, 0.2);
}

.iwj-categories.style5 .category-icon {
	font-size: 64px;
	color: #fff;
	position: relative;
	z-index: 1;
}
.iwj-categories.style5 .category-title{
	position: relative;
	z-index: 1;
	margin: 5px 0 13px;
}
.iwj-categories.style5 .category-title a {
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
.iwj-categories.style5 .total-jobs {
	font-size: 13px;
	color: #fff;
	opacity: 0.7;
	position: relative;
	z-index: 1;
}
.iwj-categories.style5 .item-category:hover .category-image:before{
	background-color: rgba(22, 160, 133, 0.2);
}
.iwj-categories.style5 .all-categories{
	text-align: center;
	margin-top: 25px;
}

.iwj-categories .style6-1 .item-category {
    padding: 50px;
    position: relative;
    background-size: cover;
    margin-bottom: 30px;
}
.iwj-categories .style6-1 .item-category:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: #2980B9;
    opacity: 0.8;
    z-index: 0;
}
.iwj-categories .style6-1 .item-category:hover:before {
    background: #16A085;
}
.iwj-categories .style6-1 .category-icon {
    z-index: 2;
    position: relative;
    float: left;
    font-size: 50px;
    color: #fff;
}
.iwj-categories .style6-1 .category-info {
    z-index: 2;
    position: relative;
    padding-left: 80px;
}
.iwj-categories .style6-1 .category-title{
    margin: 0 0 4px;
}
.iwj-categories .style6-1 .category-title a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
.iwj-categories .style6-1 .category-info .total-jobs{
    color: #fff;
    opacity: 0.7;
    margin-bottom: 4px;
}
.iwj-categories .style6-1 .category-info .view-link{
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid #fff;
}
.iwj-categories .style6-1 .all-categories{
    text-align: center;
    margin-top: 25px;
}
.iwj-categories .style6-2 .item-category {
    border: 1px #ecedec solid;
    padding: 10px 80px 10px 30px;
    position: relative;
    margin-bottom: 10px;
}
.iwj-categories .style6-2 .item-category:hover {
    background: #1c9c7d;
    border-color: #1c9c7d;
}
.iwj-categories .style6-2 .item-category a {
    font-weight: 600;
    line-height: 18px;
    color: #2c2c2c;
    text-transform: uppercase;
    white-space: nowrap;
}
.iwj-categories .style6-2 .item-category:hover a {
    color: #ffffff;
}
.iwj-categories .style6-2 .item-category span {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    border-left: 1px #ecedec solid;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    padding: 10px 5px;
    color: #929292;
}
.iwj-categories .style6-2 .item-category:hover span {
    color: #ffffff;
    border-left: 1px rgba(255, 255, 255, 0.1) solid;
}
.iwj-categories .style6-2 .all-categories{
    text-align: center;
    margin-top: 25px;
}
.iwj-categories.style6 .style6-1 .item-category {
    padding: 50px 40px;
}
.iwj-categories.style7 .item-category {
    padding: 25px 15px 45px;
    border: 1px #eeeeee solid;
    margin-bottom: 30px;
    position: relative;
    z-index: 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.iwj-categories.style7 .item-category:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.iwj-categories.style7 .item-category:hover:after {
    opacity: 1;
}
.iwj-categories.style7 .category-icon {
    width: 100px;
    float: left;
    font-size: 60px;
    position: relative;
    z-index: 2;
    background: url("../images/bg-category.png") no-repeat;
    background-size: cover;
    text-align: center;
    padding: 20px 0;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.iwj-categories.style7 .item-category:hover .category-icon {
    color: #ffffff !important;
    background: url("../images/bg-category-hover.png") no-repeat;
}
.iwj-categories.style7 .category-info {
    padding-left: 115px;
    position: relative;
    z-index: 2;
}
.iwj-categories.style7 .category-info .category-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.iwj-categories.style7 .category-info .category-title a {
    color: #737373;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.iwj-categories.style7 .category-info .total-jobs {
    font-size: 13px;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.iwj-categories.style7 .item-category:hover .category-info .category-title a,
.iwj-categories.style7 .item-category:hover .category-info .total-jobs {
    color: #ffffff !important;
}
.iwj-categories.style7 .all-categories {
    text-align: center;
    margin: 30px 0;
}
.iwj-categories.style7 .all-categories a {
    background: #16a085;
    font-size: 16px;
    font-weight: 700;
    padding: 9px 25px;
}

/* style 8 */
.iwj-categories.style8 .items-category {
    display: table;
    width: 100%;
}
.iwj-categories.style8 .item-category {
    float: left;
    width: 25%;
    text-align: center;
    padding: 60px 15px;
    position: relative;
    z-index: 0;
    border-right: 1px solid #f1f1f1;
    border-top: 1px solid #f1f1f1;
}
.iwj-categories.style8 .all-categories {
    text-align: center;
    margin-top: 70px;
}
.iwj-categories.style8 .item-category:nth-child(1),
.iwj-categories.style8 .item-category:nth-child(2),
.iwj-categories.style8 .item-category:nth-child(3),
.iwj-categories.style8 .item-category:nth-child(4) {
    border-top: medium none;
}
.iwj-categories.style8 .item-category:nth-child(4n) {
    border-right: medium none;
}
.iwj-categories.style8 .item-category:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../images/bg-cat.png") no-repeat;
    background-size: cover;
    opacity: 0;
    z-index: -1;
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}
.iwj-categories.style8 .item-category:hover:after {
    opacity: 1;
}
.iwj-categories.style8 .item-category .category-icon i {
    font-size: 64px;
    font-weight: 500;
    line-height: 70px;
}
.iwj-categories.style8 .item-category .category-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 20px;
}
.iwj-categories.style8 .item-category .category-title a {
    color: #333333;
}
.iwj-categories.style8 .item-category:hover .category-title a,
.iwj-categories.style8 .item-category:hover .category-icon i,
.iwj-categories.style8 .item-category:hover .total-jobs {
    color: #ffffff;
}
.iwj-categories.style8 .item-category .total-jobs {
    opacity: 0.7;
    color: #333333;
    font-size: 13px;
    line-height: 25px;
    margin-top: 6px;
}

/* ===== End Categories ===== */

/* ===== iwj-employers-slider ===== */
.iwj-employers-slider{
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.iwj-employers-slider-inner{
	margin: 0 -15px;
}
.iwj-employers-slider .employer-items {
    padding: 0 15px;
}
.iwj-employers-slider .employer-item {
    padding: 35px 10px 50px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.iwj-employers-slider .employer-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: -1;
}
.iwj-employers-slider .employer-image img {
    max-width: 60px;
    max-height: 60px;
	border-radius: 5px;
}
.iwj-employers-slider .employer-title{
	margin : 15px 0 3px;
}
.iwj-employers-slider .employer-title a{
	font-size: 13px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
}
.iwj-employers-slider .employer-locations{
	margin-bottom: 15px;
}
.iwj-employers-slider .employer-locations a{
	color: #777;
}

.iwj-employers-slider .total-jobs {
	display: inline-block;
	padding: 0 12px;
	box-shadow: 0 3px 7px 0 rgba(41,128,185,0.15);
	-webkit-border-radius: 30px;
	border-radius: 30px;
	font-weight: 500;
	height: 25px;
	line-height: 25px;
	color: #333;
	font-size: 11px;
}
.iwj-employers-slider .total-jobs .number {
    font-weight: 600;
}
.navigation-text-v1.owl-theme .owl-controls {
    margin-top: 10px;
    margin-bottom: 35px;
}
.navigation-text-v1.owl-theme .owl-controls .owl-buttons div {
    background: none;
    font-size: 18px;
	padding: 0 4px;
    opacity: 1;
}
.iwj-employers-slider .total-jobs:hover {
	color: #fff;
	background: #2980B9;
}
.iwj-employers-slider .total-jobs:hover .number {
	color: #fff !important;
}
/* Style2 */
.iwj-employers-slider.style2 .iwj-employers-slider-inner {
    margin: 0;
}
.iwj-employers-slider.style2 .employer-locations {
    margin-bottom: 5px;
}
.iwj-employers-slider .iwj-box-rating .iwj-count-rate i {
    color: #E67E22;
    font-size: 15px;
    margin: 0 2px;
}
.iwj-employers-slider .iwj-box-rating .iwj-text-totals-rate {
    color: #16A085;
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 10px;
}
.iwj-employers-slider.style2 .total-jobs {
    margin-top: 10px;
}

/* ===== End iwj-employers-slider ===== */

/* ===== Verify Email ===== */
.iwj-verify-account.iwj-form {
	margin: 0;
	max-width: none;
	padding: 90px 180px 130px;
	text-align: center;
	color: #333333;
}
.iwj-verify-account.iwj-form .confirmation-icon {
	display: inline-block;
	width: 218px;
	height: 218px;
	font-family: Ionicons;
	font-size: 144px;
	font-weight: 500;
	line-height: 218px;
	color: white;
	background-color: #CC3341;
	border-radius: 50%;
	margin-bottom: 60px;
}

.iwj-verify-account.iwj-form h3.title{
	font-size: 36px;
	line-height: 49px;
	color: #CC3341;
	margin-bottom: 43px;
	margin-top: 0px;
}
.iwj-verify-account.iwj-form .desc{
	font-size: 15px;
	line-height: 30px;
	margin-bottom: 20px;
}
.iwj-verify-account.iwj-form .resend-email{
	font-size: 15px;
	font-style: italic;
	line-height: 30px;
	padding-bottom: 35px;
	border-bottom: 1px solid #F6F7F9;
	margin-bottom: 45px;
}
.iwj-verify-account.iwj-form .resend-email a{
	text-decoration: underline;
}
.iwj-verify-account.iwj-form .resend-email-message{
	display: none;
	color: #5cb85c;
}
.iwj-verify-account .desc-form {
	font-size: 15px;
	line-height: 30px;
	margin-bottom: 15px;
	padding: 0 150px;
}
.iwj-verify-account .iwj-change-email-form {
	display: table;
	width: 100%;
	color: #777777;
}
.iwj-verify-account .iwj-change-email-form .iwj-field {
	text-align: left;
	float: left;
	width: calc(100% - 80px);
}
.iwj-verify-account .iwj-change-email-form .iwj-respon-msg {
	float: left;
	width: 100%;
	margin-top: 0;
	font-size: 14px;
	text-align: left;
}
.iwj-verify-account.iwj-form .iwj-field {
	padding: 10px 28px;
}
.iwj-verify-account.iwj-form .iwj-field label {
	margin: 0;
}
.iwj-verify-account .iwj-button-loader {
	float: right;
	width: 70px;
	height: 80px;
	text-align: center;
	line-height: 80px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	position: relative;
}
.iwj-verify-account .iwj-button-loader button {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	font-size: 20px;
	color: #ffffff;
	padding: 0;
}
/* ===== End Verify Email ===== */


/* ===== Job Sidebar ===== */

/* Widget Candidates */

.iwj-widget-candidates {
    position: relative !important;
}
.iwj-widget-candidates .candidate-item {
    text-align: center;
    position: relative;
    background: #ffffff;
    border: 1px solid #f6f7f9;
}
.iwj-widget-candidates .candidate-item .candidate-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.iwj-widget-candidates .candidate-item .candidate-image:after {
    content: "";
    position: absolute;
    bottom: -155px;
    left: calc(50% - 155px);
    width: 310px;
    height: 210px;
    background: #ffffff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}
.iwj-widget-candidates .candidate-item .candidate-image img {
    opacity: 0.2;
}
.iwj-widget-candidates .candidate-item img {
    width: 100%;
}
.iwj-widget-candidates .candidate-item .candidate-info {
    padding: 35px 20px;
    position: relative;
}
.iwj-widget-candidates .candidate-item .candidate-avatar {
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 26px;
    box-shadow: 0 5px 20px 15px #ebf3f8;
}
.iwj-widget-candidates .candidate-item .name{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
}
.iwj-widget-candidates .candidate-item .candidate-headline {
    color: #333333;
    margin-bottom: 20px;
}
.iwj-widget-candidates .candidate-item .social-link ul {
    margin: 0;
    padding: 0 0 10px;
}
.iwj-widget-candidates .candidate-item .desc {
    line-height: 28px;
    margin-bottom: 18px;
}
.iwj-widget-candidates .candidate-item .view-candidate {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    color: #ffffff;
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    line-height: 20px;
    padding: 1px 15px;
    text-transform: uppercase;
}
.iwj-widget-candidates .candidate-item .info-top {
    padding-bottom: 0;
}
.iwj-widget-candidates .owl-controls {
    position: absolute;
    top: -74px;
    right: 0;
}
.iwj-widget-candidates.owl-theme .owl-controls .owl-buttons div {
    background: none;
    font-size: 18px;
    color: #333333;
    opacity: 1;
    margin: 0;
    padding: 0;
}
.iwj-widget-candidates.owl-theme .owl-controls .owl-buttons div.owl-next {
    margin-left: 25px;
}
/* End Widget Candidates */

/*Social*/
.iwj-social-link li {
	list-style: none;
	display: inline-block;
	margin: 0 5px 6px;
}
.iwj-social-link li a{
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 21px;
	border-width: 2px;
	border-style: solid;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
}
.iwj-social-link li a.facebook {
	color: #3B5998 !important;
	border-color: #3B5998;
}
.iwj-social-link li a.twitter {
	color: #0084B4 !important;
	border-color: #0084B4;
}
.iwj-social-link li a.google-plus {
	color: #DB4437 !important;
	border-color: #DB4437;
}
.iwj-social-link li a.pinterest {
	color: #BD081C !important;
	border-color: #BD081C;
}
.iwj-social-link li a.linkedin {
	color: #006fa6 !important;
	border-color: #006fa6;
}
.iwj-social-link li a.vimeo {
	color: #009fde !important;
	border-color: #009fde;
}
.iwj-social-link li a.youtube {
	color: #e62117 !important;
	border-color: #e62117;
}
.iwj-social-link li a.facebook:hover {
	color: #ffffff !important;
	background: #3B5998;
}
.iwj-social-link li a.twitter:hover {
	color: #ffffff !important;
	background: #0084B4;
}
.iwj-social-link li a.google-plus:hover {
	color: #ffffff !important;
	background: #DB4437;
}
.iwj-social-link li a.pinterest:hover {
	color: #ffffff !important;
	background: #BD081C;
}
.iwj-social-link li a.linkedin:hover {
	color: #ffffff !important;
	background: #006fa6;
}
.iwj-social-link li a.vimeo:hover {
	color: #ffffff !important;
	background: #009fde;
}
.iwj-social-link li a.youtube:hover {
	color: #ffffff !important;
	background: #e62117;
}
/*End Social*/

/* Overall Statistics */
.iwj-overall-statistics {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0,0,0,0.07);
    box-shadow: 0 2px 7px 0 rgba(0,0,0,0.07);
    color: #ffffff;
    text-align: center;
    background-image: url("../img/bg-overall.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.iwj-overall-statistics:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(52, 73, 94, 0.8);
    z-index: -1;
}
.iwj-overall-statistics .overall-statistic-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
}
.iwj-overall-statistics .overall-statistic-item:last-child {
    border-bottom: none;
}
.iwj-overall-statistics .overall-statistic-item .number-total {
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 10px;
}
.iwj-overall-statistics .overall-statistic-item .title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
	color: #16A085;
}
.iwj-overall-statistics .overall-statistic-item .this-week {
    font-size: 11px;
    font-weight: bold;
    line-height: 15px;
}
/* End Overall Statistics */

/* Widget Jobs */
.iwj-widget-jobs .job-item {
    margin-bottom: 0;
	border-bottom: 0;
	padding: 0;
}
.iwj-widget-jobs .job-item .job-image {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    border-radius: 5px;
    height: 46px;
    overflow: hidden;
    float: left;
    margin-right: 20px;
}
.iwj-widget-jobs .job-item .job-image img {
    max-width: 46px;
	max-height: 46px;
}
.iwj-widget-jobs .job-item .job-info {
    overflow: hidden;
    font-weight: 500;
    margin: 0;
    padding: 9px 0 12px 15px;
    border-bottom: 1px solid #F6F7F9;
    position: relative;
}
.iwj-widget-jobs .job-item:first-child .job-info {
    padding-top: 0;
}
.iwj-widget-jobs .job-item .job-info:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    top: 17px;
    left: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #16A085;
}
.iwj-widget-jobs .job-item:first-child .job-info:before {
    top: 8px;
}
.iwj-widget-jobs .job-item .job-info .job-company,
.iwj-widget-jobs .job-item .job-info .job-company a {
    color: #333333;
    font-size: 11px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
    text-transform: uppercase;
}
.iwj-widget-jobs .job-item .job-info .posted {
    color: #777777;
    font-size: 11px;
    font-style: italic;
    line-height: 22px;
    margin-top: 5px;
}
.iwj-widget-jobs .job-item .job-info .posted .job-cat {
    color: #16A085;
    text-transform: capitalize;
    font-style: normal;
}
/* End Job Latest */
.open-filters {
    text-align: left;
}
.open-filters #clear-filter-job, .open-filters #clear-filter-candidate, .open-filters #clear-filter-employer {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 20px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    margin: 20px 0 60px;
}

/* - End Sidebar Right - */

/* Employers Widget */
.iwj-widget-employers .item .image {
    max-width: 60px;
    margin: 0 auto;
	border-radius: 5px;
}
.iwj-widget-employers .item .image img {
	border-radius: 5px;
}
.iwj-widget-employers .employer-title {
    margin: 15px 0 0;
}
.iwj-widget-employers .employer-title a {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.iwj-widget-employers .employer-locations a {
    color: #777777;
    font-size: 13px;
    line-height: 18px;
}
.iwj-widget-employers .total-job {
    display: inline-block;
    padding: 0 15px;
    border: 1px #f6f7f9 solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-weight: 500;
    height: 22px;
    line-height: 18px;
    color: #333;
    font-size: 12px;
    -webkit-box-shadow: 0 3px 7px 0 rgba(41, 128, 185, 0.15);
    box-shadow: 0 3px 7px 0 rgba(41, 128, 185, 0.15);
    margin-top: 24px;
}
.iwj-widget-employers .item .total-job .number {
    font-weight: 600;
}
.iwj-widget-employers .item .total-job:hover {
    color: #fff;
}
.iwj-widget-employers .item .total-job:hover .number {
    color: #fff !important;
}
.iwj-widget-employers .row-items {
    width: 100%;
    margin-top: 10px;

}
.iwj-widget-employers .col-item {
    padding: 0 5px;
}
.iwj-widget-employers .item {
    background: #ffffff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    text-align: center;
    margin: 0 0 20px;
    -webkit-box-shadow: 0 0 6px rgba(41, 128, 185, 0.15);
    box-shadow: 0 0 6px rgba(41, 128, 185, 0.15);
    padding: 30px 10px;
}
.iwj-widget-employers .owl-controls {
    position: absolute;
    top: -57px;
    right: 0;
}
.iwj-widget-employers .owl-theme .owl-controls .owl-buttons div {
    background: none;
    font-size: 18px;
    color: #333333;
    opacity: 1;
    margin: 0;
    padding: 0;
}
.iwj-widget-employers .owl-theme .owl-controls .owl-buttons div.owl-next {
    margin-left: 25px;
}
/* End Employers Widget */

/*===== End Sidebar Job =====*/

/*===== Edit Job =====*/
body .wp-editor-container > .mce-container {
    border: 1px solid #e5e5e5;
}
.iwj-edit-job .iwj-task-bar.job ul li span.number {
    width: 80px;
    height: 60px;
    line-height: 60px;
}
.iwj-edit-job .iwj-task-bar.job ul li:after {
    top: 29px;
}
/*===== End Edit Job =====*/

/*===== Resumes =====*/

/* Resumes Listing */
.iwj-resumes .iwj-resumes-listing {
    background: #ffffff;
}
.iwj-resumes .iwj-resumes-listing .iwj-resume-item {
    padding: 45px 0 0;
}
.iwj-resumes-listing .iwj-resume-item .resume-image {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    float: left;
    margin-right: 45px;
    overflow: hidden;
    width: 45px;
}
.iwj-resumes-listing .iwj-resume-item .resume-info {
    border-bottom: 1px solid #f6f7f9;
    overflow: hidden;
    padding-bottom: 50px;
    padding-right: 190px;
    position: relative;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .resume-name {
    font-weight: 500;
    color: #333333;
    margin: -6px 0 8px;
    text-transform: uppercase;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .info-bottom > span {
    display: inline-block;
    margin-right: 30px;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .info-bottom > span i {
    margin-right: 15px;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .info-bottom .address i {
    color: #f16e8e;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .resume-type {
    position: absolute;
    right: 25px;
    top: 0;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .resume-type span {
    border: 1px solid #f6f7f9;
    height: 30px;
    line-height: 26px;
    padding: 0 20px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 500;
    margin-right: 5px;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .resume-type.freelancer span {
    color: #4a98ae;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .resume-type.contract span {
    color: #3ac1f1;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .resume-type.remote span {
    color: #33aa58;
}
.iwj-resumes-listing .iwj-resume-item .resume-info .resume-type i {
    border: 2px solid #f16e8e;
    font-size: 14px;
    height: 30px;
    line-height: 28px;
    width: 30px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #f16e8e;
    display: inline-block;
    margin: 0;
    text-align: center;
}
/* End Resumes Listing */

/*===== End Resumes =====*/
/*===== Employer =====*/
.iwj-employer-detail {
	padding: 90px 0;
    background: #f6f7f9;
}
.iwj-employer-detail .employer-info-top,
.iwj-gallery-detail,
.iwj-employer-detail .employer-detail-info,
.iwj-employer-detail .iwj-employer-review{
    margin-bottom: 30px;
}
.iwj-employer-detail .employer-info-top {
    display: table;
    width: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: url("../img/bg-company.jpg") no-repeat;
    background-size: cover;
    color: #ffffff;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.iwj-employer-detail .employer-info-top .bg-overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #34495e;
    opacity: 0.9;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-employer-detail .employer-info-top .info-top {
    position: relative;
    z-index: 2;
    padding: 35px 25px 53px;
}
.iwj-employer-detail .employer-info-top .employer-logo {
    width: 150px;
    text-align: center;
    margin: 10px 40px 0;
    float: left;
}
.iwj-employer-detail .employer-info-top .employer-logo img{
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iw-social-all.hover-bg {
    margin: 20px 0 0;
    padding: 0;
}
.iwj-employer-detail .employer-info-top li {
    list-style: none;
}
.iw-social-all.hover-bg li {
    display: inline-block;
    margin-right: 5px;
}
.iw-social-all.hover-bg li a {
    background: rgba(0, 0, 0, 0.2);
    font-size: 11px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    text-align: center;
}
.iw-social-all.hover-bg li a:hover {
    opacity: 1;
    color: #fff;
}
.iw-social-all.hover-bg li a.facebook:hover {
    background: #3B5998;
}
.iw-social-all.hover-bg li a.twitter:hover {
    background: #0084B4;
}
.iw-social-all.hover-bg li a.google_plus:hover {
    background: #DB4437;
}
.iw-social-all.hover-bg li a.pinterest:hover {
    background: #BD081C;
}
.iw-social-all.hover-bg li a.linkedin:hover {
    background: #006fa6;
}
.iw-social-all.hover-bg li a.vimeo:hover {
    background: #009fde;
}
.iw-social-all.hover-bg li a.youtube:hover {
    background: #e62117;
}
.iwj-employer-detail .employer-info-top .conttent-right {
    overflow: hidden;
}
.iwj-gallery-detail .bx-wrapper {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
}
.iwj-gallery-detail .bx-viewport {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    direction: ltr;
}
.iwj-gallery-detail .bx-wrapper img {
    width: 100%;
}
.iwj-gallery-detail iframe {
    border: none;
}
.iwj-gallery-detail .bx-wrapper .bx-controls-direction a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    text-indent: 0;
    font-size: 0;
    color: #ffffff;
}
.iwj-gallery-detail .bx-wrapper .bx-next,
.iwj-gallery-detail .bx-wrapper .bx-prev {
    background-image: none;
}
.iwj-gallery-detail .bx-wrapper .bx-next:after,
.iwj-gallery-detail .bx-wrapper .bx-prev:after {
    position: absolute;
    font-family: "Ionicons";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-size: 20px;
}
.iwj-gallery-detail .bx-wrapper .bx-next:after {
    content: "\f3d3";
}
.iwj-gallery-detail .bx-wrapper .bx-prev:after {
    content: "\f3d2";
}
.videoWrapper{
	overflow: hidden;
	max-height: 370px;
}
.iwj-employer-detail .employer-detail-info,
.iwj-employer-detail .iwj-open-position,
.iwj-employer-detail .iwj-employer-review{
    padding: 0 85px;
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	box-shadow: 0 7px 25px 0 rgba(0,0,0,0.05);
}
.iwj-employer-detail .iwj-open-position {
    padding: 55px 85px;
}
.iwj-employer-detail .iwj-open-position .iwj-jobs {
    margin-top: 50px;
}
.iwj-open-position .iwj-jobs .job-item {
    padding-left: 0;
    padding-right: 0;
}
.iwj-open-position .iwj-jobs .job-item:last-child {
    border: none;
}
.iwj-open-position .job-item h3 {
	margin: -6px 0 10px;
}
.iwj-open-position .job-item .job-title {
	color: #333333;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	display: inline-block;
}
.iwj-open-position .job-item.featured-item .job-title {
	color: #f16e8e;
}
/*.iwj-open-position .job-item .job-image {
	float: left;
	height: 46px;
	line-height: 1;
	margin: 10px 30px 0 0;
	text-align: center;
	width: 46px;
	position: relative;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}*/
.iwj-employer-detail .employer-detail-info > div,.iwj-employer-detail .iwj-employer-review > .iwj-review-container {
    border-bottom: 1px solid #f6f7f9;
    padding: 40px 0 60px;
}
.iwj-employer-detail .employer-detail-info .iwj-employerdl-des > div{
	word-break: break-word;
}
.iwj-employer-detail .employer-detail-info .title h3,.iwj-employer-detail .iwj-employer-review .title h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
}
.iwj-employer-detail .employerdl-longdes {
	margin-bottom: 30px;
}
.iwj-employer-detail h3.iw-title-border{
	color:#2980b9;
	font-size:24px;
	font-weight:700;
	text-align: center;
    text-transform: uppercase;
}
.iwj-employer-detail .conttent-right {
    position: relative;
}
.iwj-employer-detail .title-location {
    padding-right: 180px;
}
.iwj-employer-detail h3.title {
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
    margin: 0;
    color: #ffffff;
}
.iwj-employer-detail .title-location .employer-headline,
.iwj-employer-detail .location a {
    opacity: 0.5;
    color: #FFFFFF;
    font-size: 13px;
    font-style: italic;
    line-height: 18px;
}
.iwj-employer-detail .location .title {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
}
.iwj-employer-detail .follow-button {
    position: absolute;
    top: 35px;
    right: 25px;
}
.iwj-employer-detail .follow-button .follow {
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    color: #ffffff;
    background: none;
	margin-bottom: 0 !important;
}
.iwj-employer-detail .follow-button .follow i {
    font-size: 20px;
    font-weight: 500;
    margin-right: 15px;
    position: relative;
    top: 3px;
}
.iwj-employer-detail .follow-button .follow.followed {
    background: #16A085;
    border: 1px solid #16A085;
    -webkit-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
}
.iwj-employer-detail .employer-info ul {
    margin: 34px 0 0;
    padding: 0;
}
.iwj-employer-detail .employer-info ul li {
    font-size: 13px;
    font-style: italic;
    line-height: 18px;
    margin-bottom: 17px;
}
.iwj-employer-detail .employer-info ul li i {
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    text-align: center;
    margin-right: 10px;
    float: left;
}
.iwj-employer-detail .employer-info ul li span,
.iwj-employer-detail .employer-info ul li a {
    color: #ffffff;
    text-decoration: underline;
}
.iwj-open-position .iwj-jobs .job-item .job-info{
	height: auto;
}
.iwj-jobs .row >div:last-child .job-item {
	border-bottom: none;
}
.iwj-employer-detail .iwj-employer-review .iwj-review-item{
	padding-bottom: 35px;
	border-bottom: 1px solid rgba(0,0,0,0.05);
    display: table;
    width: 100%;
}
.iwj-employer-detail .iwj-employer-review .iwj-review-item:not(:first-child){
	margin-top: 35px;
}
.iwj-employer-detail .iwj-employer-review .iwj-review-item:nth-last-of-type(1){
	border-bottom: 0;
}
.iwj-employer-review .iwj-review-item .review-avatar {
    float: left;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	width: 90px;
	height: 90px;
    overflow: hidden;
    margin-right: 30px;
}
.iwj-employer-review .iwj-review-item .employer-review-details {
	padding-left: 125px;
}
.employer-review-details .er-review-title {
    display: table;
    width: 100%;
    margin-bottom: 10px;
	position: relative;
}
.employer-review-details .er-review-title .er-title-bold,
.employer-review-details .er-review-title .er-rate-box-wrap {
    float: left;
}
.employer-review-details .er-review-title .er-rate-box-wrap {
    padding-top: 2px;
}
.employer-review-details .er-review-title .er-rate-box-wrap > span {
    display: inline-block;
}
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-title .er-title-bold{
	color: #333333;
	font-size: 15px;
	font-weight: 600;
	line-height:30px;
    margin-right: 16px;
}
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-title span.iwj-box-reviewed{
	position: relative;
	margin-left: 12px;
	cursor: pointer;
}
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-title span.iwj-box-reviewed .iwj-reviewed-box-icon{
	background-color: #16A085;
	border-radius: 3px;
	padding: 0 5px;
	color: #ffffff;
}
span.er-rate-content, span.er-rate-count,
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-title span.iwj-box-reviewed {
    display: inline-block;
}
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-title span.er-rate-count >i{
	color: #F5A623;
	font-size: 15px;
	padding: 0 1px;
	speak: none;
}
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-author{
	font-style: italic;
	color: #333333;
	font-size: 13px;
	line-height: 18px;
}
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-des{
	margin: 15px 0 20px;
	font-size: 13px;
	line-height: 26px;
	color: #777777;
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply{
	background: #f5f5f5;
	border-radius: 4px;
	border: 1px solid #e1e8ed;
	padding: 20px;
	display: flex;
	position: relative;
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply .iwj-reply-author-avatar img{
	border-radius: 100px;
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply .iwj-reply-author-content{
	margin-left: 16px;
	width: 100%;
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply h4{
	margin: 0 0 3px; ;
	font-size: 17px;
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply textarea{
	width: 100%;
	border: 1px solid #F1F1F1;
	max-width: 100%;
	padding: 5px 14px;
	border-radius: 3px;
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply textarea:hover,.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply textarea:focus{
	border-color: #333333;
	color: #333333;
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply .iwj-btn-update-reply, form.iwj-reply-rate-form .iwj-rate-btn-reply .iwj-reply-review-btn{
	-webkit-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
	-moz-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
	box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
}
.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply .iwj-reply-review-btn{
	position: absolute;
	right: 7px;
	top: 0;
	cursor: pointer;
}
.iwj-employer-detail .iwj-employer-review .form-review-employer{
	background: #F6F7F9;
	border-radius: 5px;
	border:1px solid #F1F1F1;
	padding: 25px 40px 50px 34px;
}
.iwj-employer-detail .iwj-employer-review .form-review-employer.iwj-job-reviewed{
	display: none !important;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.iwj-employer-review .form-review-employer h4.title{
	font-weight: 600;
	font-size:13px;
	text-transform: uppercase;
	color: #2980B9;
	margin: 0 0 30px;
	line-height: 18px;
	position: relative;
	padding-bottom: 10px;
}
.iwj-employer-review .form-review-employer h4.title::after{
	position: absolute;
	content: '';
	width: 46px;
	height: 1px;
	background: rgba(0,0,0,0.1);
	left: 0;
	bottom: 0;
}
.iwj-employer-review .form-review-employer .re-form-container{
	display: flex;
}
.iwj-employer-review .form-review-employer .re-form-container .rve-avatar > img{
	max-width:90px;
	border-radius: 100px;
}
.iwj-employer-review .form-review-employer .re-form-container .re-post-form-submit{
	padding-left: 35px;
	width: 100%;
}
.form-review-employer .re-form-container .re-post-form-submit span.re-text{
	font-weight:600;
	color: #333333;
	font-size: 11px;
	text-transform: uppercase;
    float: left;
    margin-right: 20px;
    line-height: 30px;
}
.form-review-employer .re-form-container .re-post-form-submit span#iwj-stars{
	margin-left: 20px;
}
.form-review-employer .re-form-container .re-post-form-submit span#iwj-stars >input{
	display: none;
}
.form-review-employer .re-form-container .re-post-form-submit .iwj-rate-stars,
.form-review-employer .re-form-container .re-post-form-submit .iwj-rate-title,
.form-review-employer .re-form-container .re-post-form-submit .iwj-rate-content{
	margin-bottom: 25px;
}
.form-review-employer .re-form-container .re-post-form-submit .iwj-rate-stars{
	display: table;
}
.form-review-employer .re-form-container .re-post-form-submit input,
.form-review-employer .re-form-container .re-post-form-submit textarea,
.iwj-review-item .iwj-reply-rate-form textarea{
	width: 100%;
	border: 1px solid #F1F1F1;
	padding: 5px 14px;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	border-radius: 3px;
}
.form-review-employer .re-form-container .re-post-form-submit input:hover,
.form-review-employer .re-form-container .re-post-form-submit textarea:hover,
.iwj-review-item .iwj-reply-rate-form textarea:hover{
	border-color: #000;
}
.form-review-employer .re-form-container .re-post-form-submit .iwj-review-btn{
	background: #16A085;
	box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    margin-bottom: 10px;
}
.form-review-employer .re-form-container .re-post-form-submit .iwj-cancel-review-btn, .iwj-reply-author-content .iwj-cancel-edit-reply-btn{
	box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
	margin-left: 3px;
}
.iwj-employer-detail .employer-info-top .iwj-box-rating{
	padding: 4px 30px 10px;
	background: rgba(0,0,0,0.1);
	border-radius: 5px;
	margin-top: 9px;
	text-align: center;
}
.iwj-employer-detail .employer-info-top .iwj-box-rating .iwj-count-rate > i{
	font-size: 15px;
	color: #F8E71C;
	padding: 0 1px;
}
.iwj-employer-detail .employer-info-top .iwj-box-rating .iwj-text-totals-rate{
	font-size: 11px;
	display: block;
	line-height: 15px;
}
.iwj-employer-detail .form-review-employer .iwj-rate-for-options{
	margin-bottom: 20px;
}
.iwj-employer-detail .form-review-employer .iwj-rate-for-options .iwj_review_options{
	margin-left: 20px;
	text-transform: capitalize;
}
.iwj-employer-review .form-review-employer .iwj-count-stars{
	cursor: pointer;
	display: inline-block;
	position: relative;
}
.iwj-employer-review .caption{
	display: none !important;
}
.iwj-employer-review .form-review-employer .iwj-count-stars i, #iwj-confirm-edit-review .modal-body .iwj-candidate-rev-e .iwj-count-stars i,.iwj-user-update-review .iwj-count-stars i{
	color: #F5A623;
	font-size: 20px;
}
.iwj-employer-review .iwj-box-each-vote, #iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-box-each-vote, .iwj-user-update-review .iwj-box-each-vote{
	position: absolute;
	background: #fff;
	box-shadow: 0 7px 85px 0 rgba(0,0,0,0.2);
	min-width: 304px;
	padding: 25px 35px 15px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
    top: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 20px);
    transform: translate(-50%, 20px);
	visibility: hidden;
	opacity: 0;
	z-index: 11;
}
.iwj-employer-review .iwj-box-each-vote.iwj-review-voting::before, #iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-box-each-vote.iwj-review-voting::before, .iwj-user-update-review .iwj-box-each-vote.iwj-review-voting::before{
    content:"";
    position: absolute;
    left: 50%;
    top: -5px;
    width: 0;
    height: 0;
    border-left:6px solid transparent;
    border-bottom:6px solid #ffffff;
    border-right:6px solid transparent;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.iwj-box-each-vote .line-tc-star{
	display: inline-block;
}
.iwj-box-each-vote .line-tc-star >i{
	font-size: 20px;
	color: #F5A623;
	padding: 0 1px;
	speak: none;
}
.iwj-employer-review .iwj-box-each-vote.iwj-show-popup-rate, #iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-box-each-vote.iwj-show-popup-rate, .iwj-user-update-review .iwj-box-each-vote.iwj-show-popup-rate{
	visibility: visible;
	opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.iwj-box-each-vote .iwj-line-tc-vote{
	text-transform: capitalize;
	margin-bottom: 10px;
}
.iwj-box-each-vote .iwj-line-tc-vote{
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.iwj-box-each-vote .line-tc-title{
	font-size: 11px;
	color: #333333;
	font-weight:600;
}
.iwj-employer-review .iwj-review-content .iwj-box-each-vote.iwj-review-voted::before{
	content:"";
	position: absolute;
	left: 50%;
	top: -5px;
	width: 0;
	height: 0;
	border-left:6px solid transparent;
	border-bottom:6px solid #ffffff;
	border-right:6px solid transparent;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.iwj-employer-review .iwj-review-content .voted-position-new-l .iwj-box-each-vote.iwj-review-voted {
     left: auto !important;
     right: 0 !important;
     -webkit-transform: translate(0, 20px);
     transform: translate(0, 20px);
 }
.iwj-employer-review .iwj-review-content .voted-position-new-l .iwj-box-each-vote.iwj-review-voted.iwj-show-popup-rate {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.iwj-employer-review .iwj-review-content .voted-position-new-l .iwj-box-each-vote.iwj-review-voted:before {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: auto;
    right: 3px;
}
.iwj-employer-review .iwj-review-content .voted-position-new-r .iwj-box-each-vote.iwj-review-voted {
    left: 0 !important;
    right: auto !important;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
}
.iwj-employer-review .iwj-review-content .voted-position-new-r .iwj-box-each-vote.iwj-review-voted.iwj-show-popup-rate {
    left: 0 !important;
    right: auto !important;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.iwj-employer-review .iwj-review-content .voted-position-new-r .iwj-box-each-vote.iwj-review-voted:before {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: 3px;
}
.iwj-employer-review .iwj-review-content .iwj-box-each-vote.iwj-review-voted .line-tc-star{
	line-height: 32px;
}
.iwj-employer-detail .iwj-employer-review .review-pagination{
	margin: 25px 0 50px;
	text-align: right;
}
.iwj-employer-detail .iwj-employer-review .review-pagination > a,.iwj-employer-detail .iwj-employer-review .review-pagination > span{
	padding: 9px 14px;
	box-shadow: 0 3px 7px 0 rgba(41,128,185,0.5);
	margin: 0 3px;
	border-radius: 5px;
}
.iwj-employer-detail .iwj-employer-review .review-pagination > .current,.iwj-employer-detail .iwj-employer-review .review-pagination > a:hover{
	background: #2980B9;
	color: #ffffff;
}
.iwj-employer-detail .iwj-employer-review .review-pagination > .next,.iwj-employer-detail .iwj-employer-review .review-pagination > .prev{
	padding: 9px 16px;
}
.iwj-employer-review .iwj-review-item .employer-review-details .er-review-title span.iwj-edit-reviewed{
	cursor: pointer;
	position: absolute;
	top:-1px;
	right:-16px;
}

/*Widget Employer Details*/
.iwj-single-widget {
    margin-bottom: 65px;
}
.iwj-single-widget .widget_title {
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    margin: 0 0 35px;
}
.iwj-single-widget .widget_title:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 45px;
    background: rgba(0, 0, 0, 0.1);
}
.iwj-single-widget.iwj-map .infoBox {
    padding: 15px;
}
.iwj-single-widget.iwj-map .infoBox > img {
    margin: 0 -9px 0 0 !important;
}
.iwj-single-widget.iwj-single-contact-form,
.iwj-single-widget.candidate-action-button {
    margin: 0 0 5px;
}
.iwj-widget-information li {
    line-height: 18px;
    margin-bottom: 18px;
	color: #333;
}
.iwj-widget-information li a {
    color: #333;
}
.iwj-widget-information li:last-child {
    margin-bottom: 0;
}
.iwj-widget-information li i {
    width: 21px;
    height: 21px;
    line-height: 21px;
    text-align: center;
    font-size: 13px;
    background-color: #eeeeee;
    margin-right: 10px;
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    float: left;
	color: #777;
}
.iwj-employer-widget-wrap .employer-headline{
	font-size:12px;
	color: #ffffff;
	background: #f16e8e;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 25px;
    display: inline-block;
    padding: 0 20px;
}
.iwj-employer-widget-wrap .employer-logo {
	margin-bottom: 44px;
}
.iwj-employer-widget-wrap .employer-title{
	font-size:30px;
	color: #2980b9;
	margin: 0 0 15px;
	font-weight: 600;
}
.iwj-employer-widget-wrap .employer-desc, .iwj-candicate-widget-wrap .candidate-desc{
	margin-bottom:20px;
	margin-top: -5px;
}
.action-button-group {
	text-align:center;
	clear:both;
	margin-top:40px;
	padding-top: 40px;
	border-top: 1px solid #f6f7f9;
}
.action-button-group .action-button.follow{
	background: #FFFFFF;
	border:2px solid #f16e8e;
	color:#f16e8e;
}
 .action-button-group .action-button.follow.followed {
    background: #33aa58;
    border-color: #33aa58;
    color: #ffffff;
}
.action-button-group .action-button.contact-us{
	background: #2980b9;
	border:2px solid #2980b9;
	color:#ffffff;
}
.action-button-group .action-button span{
	display: inline-block;
	height: 46px;
	letter-spacing: 2px;
	line-height: 46px;
	padding: 0;
	position: relative;
	text-transform: uppercase;
	transition: transform 0.3s ease 0s;
    -webkit-transition: transform 0.3s ease 0s;
}
.action-button-group .action-button:hover span:before{
	visibility: visible;
}
.action-button-group .action-button span:before{
	content: attr(data-hover);
	left: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	transform: translate3d(0px, 0px, 0px);
	visibility: hidden;
}
.action-button-group .action-button{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    margin: 0;
    overflow: hidden;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 10px;
}
.action-button-group .iwj-button-loader{
	display: inline-block;
	margin-left: 5px;
}
.iwj-employer-widget-wrap .employer-info ul{
	padding:0;
	margin:0;
	text-align: left;
	display: block;
}
.iwj-employer-widget-wrap .employer-info ul li{
	list-style: none;
	color: #333333;
	font-size:13px;
	font-weight:500;
}
.iwj-employer-widget-wrap .employer-info ul li .left {
	float: left;
	min-width: 110px;
}
.iwj-employer-widget-wrap .employer-info ul li .right {
	color: #333333;
	overflow: hidden;
}
.iwj-employer-widget-wrap .employer-info ul li .left i {
	margin-right: 10px;
	font-size: 16px;
	width: 20px;
	text-align: center;
}
.iwj-employer-widget-wrap .employer-info ul li.employer-location i {
	color:#f16e8e;
	font-size:20px;
}
.iwj-employer-widget-wrap .employer-info ul li.employer-founded i {
	color:#4a98ae;
}
.iwj-employer-widget-wrap .employer-info ul li.employer-phone i {
	color:#4a98ae;
	font-size: 24px;
}
.iwj-employer-widget-wrap .employer-info ul li.employer-website i {
	color:#33aa58;
}
.iwj-employer-widget-wrap .employer-info ul li{
	display: block;
	clear: both;
	margin-bottom:15px;
}
/*Widget Employer Details*/
/*===== End Employer =====*/

/*===== Resume Detail =====*/
.iwj-resume-detail .resume-detail-content {
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-resume-detail .resume-detail-content .job-requirements {
    position: relative;
}
.iwj-resume-detail .resume-detail-content .job-requirements:after {
    background: #ffffff none repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}
.iwj-resume-detail .resume-detail-content .job-requirements .row {
    margin: 0;
}
.iwj-resume-detail .resume-detail-content .job-requirements .requirement-item {
    height: 140px;
    padding: 35px 40px 15px;
    border-bottom: 1px solid #f6f7f9;
    border-right: 1px solid #f6f7f9;
}
.iwj-resume-detail .resume-detail-content .job-requirements i {
    font-size: 18px;
    display: inline-block;
    float: left;
    margin-right: 27px;
}
.iwj-resume-detail .resume-detail-content .job-requirements .right {
    overflow: hidden;
}
.iwj-resume-detail .resume-detail-content .job-requirements .title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.iwj-resume-detail .resume-detail-content .job-requirements .content {
    font-weight: 500;
    color: #333333;
}
.iwj-resume-detail .resume-detail-content .job-requirements .location i,
.iwj-resume-detail .resume-detail-content .job-requirements .location .title {
    color: #f16e8e;
}
.iwj-resume-detail .resume-detail-content .job-requirements .salary-expected i,
.iwj-resume-detail .resume-detail-content .job-requirements .salary-expected .title {
    color: #4a98ae;
}
.iwj-resume-detail .resume-detail-content .job-requirements .expected-position i,
.iwj-resume-detail .resume-detail-content .job-requirements .expected-position .title {
    color: #33aa58;
}
.iwj-resume-detail .resume-detail-info > div {
    padding: 70px 85px;
    border-bottom: 1px #f6f7f9 solid;
}
.iwj-resume-detail .resume-detail-info .title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 35px;
}
.iwj-resume-detail .resume-detail-info ul {
    margin: 0;
}
.iwj-resume-detail ul.time-line {
    padding: 0 0 0 140px;
    position: relative;
}
.iwj-resume-detail ul.time-line:before {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 7px);
    top: 7px;
    left: 100px;
    background: #f6f7f9;
}
.iwj-resume-detail .resume-detail-info ul li {
    list-style: none;
}
.iwj-resume-detail ul.time-line li {
    position: relative;
    margin-bottom: 45px;
}
.iwj-resume-detail ul.time-line li:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 7px;
    left: -45px;
    border: 4px #f16e8e solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ffffff;
    z-index: 5;
}
.iwj-resume-detail ul.time-line li .top {
    margin-top: -9px;
    font-weight: 500;
    color: #333333;
}
.iwj-resume-detail ul.time-line li .top span {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    margin-right: 15px;
}
.iwj-resume-detail .skills ul {
    padding: 0 0 0 100px;
}
.iwj-resume-detail .skills ul li .title-skill {
    text-transform: capitalize;
    margin-bottom: 17px;
}
.iwj-resume-detail .skills ul li .scoring {
    position: relative;
    height: 3px;
    width: 315px;
    background: #f6f7f9;
    margin-bottom: 36px;
}
.iwj-resume-detail .skills ul li .scoring .line {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}
.iwj-resume-detail .skills ul li .scoring .percent {
    position: absolute;
    top: -26px;
    right: 0;
    font-weight: 600;
}
.iwj-candicate-detail .iwj-gallery .content-wrap {
    margin-bottom: 35px;
}
.iwj-gallery .image-list {
    margin: 0 -0.5px;
    padding: 0;
    display: table;
    width: 100%;
}
.iwj-gallery .image-list a {
    display: block;
    width: 25%;
    float: left;
    margin-bottom: 1px;
    padding: 0 0.5px;
    outline: none;
}
.fancybox-nav {
    outline: none !important;
}
/*===== End Resume Detail =====*/

/*===== Application Form =====*/
.iwj-popup-form .modal-body {
	padding: 30px;
}
.iwj-popup-form .modal-body .iwjmb-file-wrapper .add-file .file-input {
    display: inline-block;
    overflow: hidden;
}
.iwj-popup-form .iwjmb-field{
	margin-bottom: 20px;
}
.iwj-popup-form .iwjmb-field label{
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	color: #2980b9;
}

.iwj-popup-form .modal-body input,
.iwj-popup-form .modal-body textarea {
    border: 1px solid #eeeeee;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    color: #838383;
    padding: 0 15px;
    text-transform: none;
    width: 100%;
}
.iwj-popup-form .modal-body textarea {
    padding: 15px;
}
.iwj-popup-form .modal-body input, .iwj-popup-form .iwj-btn-action button {
    height: 42px;
    line-height: 40px;
}
.iwj-popup-form .modal-body .file-input input {
    padding: 0;
    border: none;
}
.iwj-popup-form .iwj-btn-action button {
    padding: 0 30px;
    margin: 0 10px 0 0;
    display: inline-block;
}
.iwj-popup-form .iwj-btn-action .iwj-button-loader {
    display: inline-block;
}
.iwj-popup-form p.description {
    color: #818a8d;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
}
.iwj-application-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}
.iwj-application-form .select2-container--default .select2-selection--single {
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*===== End Application Form =====*/

/*===== View Resume Form =====*/
.iw-job-detail .modal-header,
.iwj-employer-detail .modal-header,
.iwj-candicate-detail .modal-header {
    background: #33aa58;
    color: #ffffff;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    text-transform: uppercase;
}
.iwj-sidebar-bottom .modal-header button.close {
    color: #ffffff;
    opacity: 1;
}
.iwj-sidebar-bottom .iwj-view-resume-form {
    padding: 20px 20px 40px;
}
.iwj-sidebar-bottom .iwj-view-resume-form .form-title {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
}
.iwj-sidebar-bottom .iwj-view-resume-form .your-packages {
    text-align: left;
    margin: 30px 0 0;
    border: 1px #eeeeee solid;
}
.iwj-sidebar-bottom .iwj-view-resume-form .your-package-item {
    padding: 10px 15px;
    border-bottom: 1px #eeeeee solid;
}
.iwj-sidebar-bottom .iwj-view-resume-form .your-package-item:last-child {
    border-bottom: none;
}
.iwj-view-resume-form, .iwj-confirm-apply-job-form{
    padding: 0 10px 10px;
}
.iwj-view-resume-form .form-title, .iwj-confirm-apply-job-form .form-title{
    font-size: 14px;
	text-transform: uppercase;
}

.iwj-view-resume-form .package-title, .iwj-confirm-apply-job-form .package-title {
    color: #333333;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}
.iwj-view-resume-form > div.iwj-button-loader, .iwj-confirm-apply-job-form > div.iwj-button-loader {
    margin-top: 20px;
}
.iwj-view-resume-form ul, .iwj-confirm-apply-job-form ul {
    margin: 0;
    padding: 0;
}
.iwj-view-resume-form ul li, .iwj-confirm-apply-job-form ul li {
    list-style: none;
    border-bottom: 1px #eeeeee solid;
    padding: 10px 0;
}
.iwj-view-resume-form ul li .package-title, .iwj-confirm-apply-job-form ul li .package-title {
    display: inline-block;
    min-width: 160px;
}
/*===== End View Resume Form =====*/

/*===== Custom Style Input =====*/
/* Radio */
.iwj-input-radio {
    text-align: center;
}
input[type="radio"].custom-input-radio {
    display:none;
}
input[type="radio"].custom-input-radio + label {
    display:inline-block;
    width:20px;
    height:20px;
    margin:-1px 10px 0 0;
    vertical-align:middle;
    cursor:pointer;
    -webkit-border-radius: 50%;
    border-radius:  50%;
}

input[type="radio"].custom-input-radio + label {
    background-color: #eeeeee;
    position: relative;
}
input[type="radio"].custom-input-radio + label:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ffffff;
    top: 3px;
    left: 3px;
    -webkit-border-radius: 50%;
    border-radius:  50%;
}
input[type="radio"].custom-input-radio:checked + label:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: transparent;
    top: 2px;
    left: 2px;
    border: 2px #ffffff solid;
    -webkit-border-radius: 50%;
    border-radius:  50%;
}

input[type="radio"].custom-input-radio + label,
input[type="radio"].custom-input-radio:checked + label {
    -webkit-transition:background-color 0.4s linear;
    transition:background-color 0.4s linear;
}

/* Checkbox */
.iwj-input-checkbox [type="checkbox"]:not(:checked),
.iwj-input-checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.iwj-input-checkbox [type="checkbox"] + label {
    margin-bottom: 25px;
}
.iwj-input-checkbox [type="checkbox"]:not(:checked) + label,
.iwj-input-checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}
.iwj-input-checkbox [type="checkbox"]:not(:checked) + label:before,
.iwj-input-checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: 2px solid #eeeeee;
    background: #fff;
    border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    box-shadow: none;
}
.iwj-input-checkbox [type="checkbox"]:not(:checked) + label:after,
.iwj-input-checkbox [type="checkbox"]:checked + label:after {
    content: '\f122';
    font-family: "Ionicons";
    position: absolute;
    top: 10px;
    left: 6px;
    line-height: 0.8;
    transition: all 0.2s;
}

.sidebar-jobs .iwj-input-checkbox [type="checkbox"]:not(:checked) + label:before,
.sidebar-jobs .iwj-input-checkbox [type="checkbox"]:checked + label:before {
    top: 7px;
    width: 15px;
    height: 15px;
    line-height: 15px;
}
.sidebar-jobs .iwj-input-checkbox [type="checkbox"]:not(:checked) + label:after,
.sidebar-jobs .iwj-input-checkbox [type="checkbox"]:checked + label:after {
    font-size: 10px;
    left: 4px;
	top: 10px;
}
.iwj-input-checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.iwj-input-checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}
/*.iwj-input-checkbox [type="checkbox"]:disabled + label {*/
    /*color: #aaa;*/
/*}*/
/*===== End Custom Style Input =====*/

/*===== Application Detail =====*/
.iwj-application-view-modal .modal-dialog{
	width: 700px;
}
.iwj-application-view-modal .modal-header{
	padding: 29px 40px 25px;
    position: relative;
}
.iwj-application-view-modal .print-button{
    position: absolute;
    top: 30px;
    left: auto;
    right: 38px;
    font-size: 20px;
    color: #000000;
    opacity: 0.45;
}
.iwj-application-view-modal .modal-header .modal-title{
	text-align: left;
	padding-left: 118px;
	font-size: 24px;
    font-weight: 400;
	margin-bottom: -8px;
}
.iwj-application-view-modal .modal-body{
	padding: 30px 40px;
}

.iwj-application-details .application-title {
    text-transform: uppercase;
	margin-bottom: 30px;
}
.iwj-application-details .application-title h3 {
    margin: 0;
}
.iwj-application-details .application-title .print-button {
    display: inline-block;
    position: absolute;
    right: 35px;
    top: 22px;
    width: 36px;
    height: 36px;
    text-align: center;
    border: 1px rgba(255, 255, 255, 0.5) solid;
    padding: 5px;
}
.iwj-application-details.application-popup {
    position: relative;
}
.iwj-application-details div.avatar {
    position: absolute;
	top: -65px;
	left: 0;
	width: 90px;
    height: auto !important;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-application-details .application-job-date {
    padding-left: 120px;
	margin-top: -16px;
    color: #858585;
    font-size: 14px;
}
.iwj-application-details .application-job-date i{
	margin-right: 5px;
}
.iwj-application-details .application-job-date .application-job {
	margin-right: 15px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}
.iwj-application-details .application-job-date .application-date {
}
.iwj-application-details .avatar img{
    width: 100%;
    height: auto;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 520px rgba(0, 0, 0, 0.3);
}
.iwj-application-details .application-details {
    padding: 0;
    margin: 20px 0 0 0;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    font-size: 14px;
}

.iwj-application-details .application-details > li {
    display: table;
    width: 100%;
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid #f6f7f9;
}
.iwj-application-details .application-details > li:last-child {
    padding-bottom: 20px;
}
.iwj-application-details .application-details > li:last-child {
    border: none;
}
.iwj-application-details .application-details > li > div {
    float: left;
}
.iwj-application-details .application-details > li .title {
    width: 30%;
	position: relative;
	color: #777;
    font-size: 13px;
}
.iwj-application-details .application-details > li .title:after {
	position: absolute;
	content: ":";
	width: 3px;
	height: 5px;
	display: inline-block;
	color: #333333;
	left: auto;
	right: 30px;
	top: 0;
	font-weight: bold;
}

.iwj-application-details .application-details > li .value {
    width: 70%;
}
.iwj-application-details .application-details ul {
    padding: 0;
    margin: 0;
}
.iwj-application-details .application-details > li.application-message{
	border-bottom: none;
}
.iwj-application-details .application-details > li.application-message .value {
    width: 100%;
	height: 150px;
	overflow-y: scroll;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	padding: 10px 15px;
	margin-top: 10px;
	color: #5d5d5d;
}
.iwj-application-details .application-details > li.application-note{
	border-bottom: none;
}
.iwj-application-details .application-details > li.application-note .value {
	width: 100%;
	height: 150px;
	margin-top: 10px;
}
.iwj-application-details .application-details textarea {
	padding: 10px 15px;
	min-height: 150px;
	width: 100%;
	border: 1px dashed #e1e1e1;
	color: #626060;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	background: #f6f7f9;
}
.iwj-application-details .application-details > li.application-status {
    margin-top: 5px;
}
.iwj-application-details .select2-container {
    width: 200px !important;
    margin-top: -5px;
}
.iwj-application-details .select2-container--default .select2-selection--single {
    height: 40px;
    line-height: 40px;
    border: 1px solid #eeeeee;
}
.iwj-application-details .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 38px;
    line-height: 38px;
    padding-left: 15px;
    padding-right: 35px;
}
.iwj-application-details .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 3px;
}
body .iwj-form-2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0;
}
.iwj-application-details .application-button {
	padding: 28px 0 20px;
	border-top: 1px solid #f6f7f9;
	margin-top: 15px;
    display: table;
    width: 100%;
}

.iwj-application-email-form .modal-header {
    padding: 25px 30px;
    background: #33aa58;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-application-email-form .modal-header button.close {
    font-size: 25px;
    color: #eeeeee;
    opacity: 1;
}
.iwj-application-email-form .modal-body,
.iwj-application-email-form .modal-footer {
    display: table;
    width: 100%;
}
.iwj-application-email-form .modal-body input,
.iwj-application-email-form .modal-body select,
.iwj-application-email-form .modal-body textarea {
    width: 100%;
    border: 1px #eeeeee solid;
    padding-left: 15px;
    padding-right: 15px;
    font-family: "Playfair Display";
}
.iwj-application-email-form .modal-body input, .iwj-application-email-form .modal-body select {
    height: 40px;
    line-height: 38px;
    margin-bottom: 15px;
    font-size: 16px;
}
.iwj-application-email-form .modal-body input[name="subject"]{
	color: #f16e8e;
}
.iwj-application-email-form .modal-body textarea {
    padding: 10px 15px;
    color: #333333;
}
.iwj-application-email-form .modal-body .wp-editor-container{
	border: 1px #eeeeee solid;
}
.iwj-application-email-form .modal-body .wp-editor-container > .mce-container{
	border: none;
}
.iwj-application-email-form .modal-body .div.mce-toolbar-grp{
	border-color: #eee;
}
.iwj-application-email-form .modal-footer .iwj-button-loader,
.iwj-application-email-form .modal-footer > button {
    float: left;
    margin-right: 10px;
}
.iwj-application-email-form .modal-footer button {
    padding: 0 25px;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 600;
}
.iwj-application-email-form .iwj-respon-msg{
	padding: 0 15px 15px;
}
.iwj-application-details button.iwj-btn {
    float: left;
    margin-right: 15px;
	margin-bottom: 5px;
}
.iwj-application-details button.iwj-btn.iwj-update-appication-btn {
    background: #3ab929;
}
.iwj-application-details button.iwj-btn i {
    display: inline-block;
    line-height: 22px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px rgba(255, 255, 255, 0.05) solid;
}
.iwj-application-details.page .iwj-update-application-form {
    position: relative;
    padding: 30px;
    border-width: 0 1px 1px 1px;
    border-color: #eeeeee;
    border-style: solid;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.iwj-application-details.page div.avatar {
    top: -50px;
    left: 30px;
}
.iwj-application-details.page .application-title {
    padding: 29px 40px 25px;
    background: #f16e8e;
    position: relative;
    color: #ffffff;
    margin: 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-application-details.page .application-title h3 {
    padding: 0 118px;
    font-weight: 400;
    font-size: 24px;
}
.iwj-application-details.page .print-button{
    position: absolute;
    top: 22px;
    left: auto;
    right: 38px;
    font-size: 20px;
    color: #000000;
    opacity: 0.45;
    border: none;
}

/*===== End Application Detail =====*/

/*===== Application List =====*/
.application-item .avatar{
	max-width: 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	margin-right: 15px;
    margin-bottom: 5px;
}
.application-item .content {
    display: inline-block;
    overflow: hidden;
}
.application-applier h3{
	margin: 0 0 5px 0;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.application-applier h3 a{
	color: #333;
}
.application-applier h3 a:hover{
	color: #2980b9;
}
.application-meta > div{
	display: inline-block;
	margin-right: 5px;
}
.application-meta .meta-title{
	color: #777;
}
.application-meta .meta-title i{
	color: #ccc;
	margin-right: 5px;
	font-size: 13px;
}
.application-meta .meta-value{
	color: #777;
}
.application-meta .meta-value a{
	color: #777;
}
.application-meta .meta-value a:hover{
	color: #2980b9;
}
.application-meta .job i{
	color: #2980b9;
}
.application-meta .phone i{
	color: #4a98ae;
}

.application-created{
	color: #333;
	font-weight: 600;
}
/*===== END Application List =====*/

/*===== Submited Application List =====*/
.iwj-submited-applications .application-item h3{
	margin: 0;
	font-size: 13px;
}
.iwj-submited-applications .application-item h3 a{
	text-transform: uppercase;
	color: #333;
	font-weight: 600;
}
/*===== END Submited Application List =====*/


/*Follows*/
.iwj-follows .avatar{
	max-width: 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	margin-right: 15px;
    margin-bottom: 5px;
}
.iwj-follows .follow-content {
    display: inline-block;
    overflow: hidden;
}
.iwj-follows .follow-item h3{
	margin: 0 0 7px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.iwj-follows .follow-item h3 a {
	color: #333;
}
.iwj-follows .follow-item h3 a:hover, .iwj-follows .follow-item h3 a:active, .iwj-follows .follow-item h3 a:focus {
	color: #2980b9;
}
/*End Follows*/

/*Save Jobs*/
.iwj-save-jobs .avatar{
	max-width: 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	margin-right: 15px;
}
.iwj-save-jobs .save-job-item h3{
	margin: 0 0 7px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.iwj-save-jobs .save-job-item a {
	color: #333;
}
.iwj-save-jobs .save-job-item a:hover, .iwj-save-jobs .save-job-item a:active, .iwj-save-jobs .save-job-item a:focus {
	color: #2980b9;
}
.job-meta > div{
	display: inline-block;
	margin-right: 7px;
}
.job-meta .meta-title{
	color: #777;
}
.job-meta .meta-title i{
	color: #ccc;
	margin-right: 3px;
}
.job-meta .meta-title i.fa-briefcase{
	font-size: 10px;
}
.job-meta .meta-value{
	color: #777;
}
.job-meta .meta-value a{
	color: #777;
}
.job-meta .meta-value a:hover{
	color: #2980b9;
}
.job-meta .categories i{
	color: #2980b9;
}
.job-meta .salary i{
	color: #4a98ae;
}
.job-meta .location i, .job-meta .locations i{
	color: #f16e8e;
}
/*End Save Jobs*/

/*View Resums*/
.iwj-view-resums .avatar{
	max-width: 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	margin-right: 15px;
}
.iwj-view-resums .view-resume-item h3{
	margin: 0 0 5px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.iwj-view-resums .view-resume-item a {
	color: #333;
}
.iwj-view-resums .view-resume-item a:hover, .iwj-view-resums .view-resume-item a:active, .iwj-view-resums .view-resume-item a:focus {
	color: #2980b9;
}
/*End View Resums*/

/*Save Resums*/
.iwj-save-resumes .avatar{
	max-width: 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	margin-right: 15px;
}
.iwj-save-resumes .save-resume-item h3{
	margin: 0 0 6px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	color: #333;
}
.iwj-save-resumes .save-resume-item a {
	color: #333;
}
.iwj-save-resumes .save-resume-item a:hover, .iwj-save-resumes .save-resume-item a:active, .iwj-save-resumes .save-resume-item a:focus {
	color: #2980b9;
}
.candidate-meta > div{
	display: inline-block;
	margin-right: 7px;
}
.candidate-meta .meta-title{
	color: #777;
}
.candidate-meta .meta-title i{
	color: #ccc;
	margin-right: 5px;
	font-size: 13px;
}
.candidate-meta .location i{
	color: #f16e8e;
}
.candidate-meta .phone i{
	color: #4a98ae;
}
.candidate-meta .meta-value{
	color: #777;
}
.candidate-meta .meta-value a{
	color: #777;
}
.candidate-meta .meta-value a:hover{
	color: #2980b9;
}
/*End Save Resums*/

/*===== Pagination =====*/
.iwj-pagination {
    text-align: right;
	margin-top: 35px;
}
.iwj-pagination .page-numbers {
    color: #292929;
    display:inline-block;
    font-size: 12px;
    font-weight:600;
    height: 35px;
    line-height: 31px;
    margin: 0;
    text-align: center;
    width: 35px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.iwj-pagination .page-numbers i {
    line-height:inherit;
    font-size:12px;
}
.iwj-pagination span.current, .iwj-pagination a.page-numbers:hover {
    color:#fff;
}

/*===== End Pagination =====*/
.iwj-dashboard-main .iwj-follows table,
.iwj-dashboard-main .iwj-save-jobs table {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.employer-meta > div{
	display: inline-block;
	margin-right: 10px;
}
.employer-meta .meta-title{
	color: #777;
}
.employer-meta .meta-title i{
	color: #ccc;
	margin-right: 3px;
}
.employer-meta .meta-title i.fa-briefcase{
	font-size: 10px;
}
.employer-meta .meta-value{
	color: #777;
}
.employer-meta .meta-value a{
	color: #777;
}
.employer-meta .meta-value a:hover{
	color: #2980b9;
}
.employer-meta .categories i{
	color: #2980b9;
}
.employer-meta .location i{
	color: #f16e8e;
}
.iwj-follows .follow-item a {
	color: #333;
}
.iwj-follows .follow-item a:hover, .iwj-follows .follow-item a:active, .iwj-follows .follow-item a:focus {
	color: #2980b9;
}

*{
    outline:none;
}

/*------- package css -------*/
.iwj-dashboard-main  .iwj-user-packages h3.title{
    margin:0;
    font-size:13px;
}
.iwj-dashboard-main  .iwj-user-packages .add-new-package{
    margin-bottom:40px;
}

.iwj-dashboard-main .iwj-user-packages .table-title{
    padding-left:20px;
    padding-right:20px;
}


/*------- new package css -------*/
.iwj-dashboard-main h3.iwj-title-table{
    padding: 22px 35px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    margin:0;
    font-size: 14px;
}
.iwj-dashboard-main .iwj-new-package tbody tr:nth-child(2n + 1) {
    background-color: #f6f7f9;
}
.iwj-dashboard-main .iwj-new-package tr th,
.iwj-dashboard-main .iwj-new-package tr td {
    padding: 25px 10px !important;
    border: none !important;
}

.iwj-dashboard-main .iwj-new-package .package-heading th{
    line-height:20px;
    color: #333333;
    background: #f6f7f9;
    text-transform: uppercase;
}
.iwj-dashboard-main .iwj-new-package tr th {
    font-weight: 600;
}

.iwj-dashboard-main .iwj-new-package h3.title{
    margin:0;
    font-size:14px;
}

.iwj-dashboard-main .iwj-new-package table{
    margin-bottom:30px;
    width: 100%;
    border-width: 0 1px 1px 1px;
    border-color: rgba(0, 0, 0, 0.05);
    border-style: solid;
}
.iwj-dashboard-main .iwj-payments-content {
    border:1px solid rgba(51,51,51,0.1);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.iwj-payments .payment-method {
    padding:15px 20px;
    border-top:1px solid rgba(51,51,51,0.1);
}
.iwj-payments .payment-method:first-child {
    border-top: none;
}
.iwj-payments .payment-method > span {
    font-weight: 600;
	font-size: 14px;
    color: #333333;

}
.iwj-dashboard-main .iwj-payments{
    margin-bottom: 30px;
}
.iwj-dashboard-main .payment-description{
    padding: 0 31px;
}

.iwj-dashboard-main .iwj-order-payment h3{
    padding: 5px 0;
    border-bottom: 2px solid rgba(51,51,51,0.1);
    margin:0 0 30px;
    font-weight: 600;
    font-size: 14px;
    color: #333333;
    text-transform: uppercase;
}
.iwj-dashboard-main .iwj-order{
    margin-bottom:30px;
}
.iwj-dashboard-main .iwj-order-price{
    padding:0 20px;
    border:1px solid rgba(51,51,51,0.1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.iwj-dashboard-main .iwj-order-price > div{
    padding: 15px 0;
}
.iwj-dashboard-main .iwj-order-price > div + div{
    border-top: 1px solid rgba(51, 51, 51, 0.1);
}
.iwj-dashboard-main .iwj-order-price > div span + span{
    margin-left:10px;
    font-size: 16px;
    color:#333;
	font-weight: 600;
}
.iwj-dashboard-main .iwj-new-package .package-id{
    text-align:center;
}

/*status*/
.iwj-status span{
	font-size: 22px;
	line-height: 1;
	position: relative;
	top: 1px;
}
.iwj-status .iwj-pending-payment{
	color: #ffd800;
}
.iwj-status .publish, .iwj-status .approved{
	color: #00aadc;
}
.iwj-status .draft{
	color: #ff0000;
}
.iwj-status .iwj-rejected, .iwj-status .reject{
	color: #ff0000;
}
.iwj-status .iwj-expired{
	color: #ff0000;
}
.iwj-status .iwj-cancelled{
	color: #ff0000;
}
.iwj-status .pending{
	color: #ffd800;
}
.iwj-status .iwj-completed{
	color: #00aadc;
}
.iwj-status .iwj-hold{
	color: #cc00cc;
}
/*end status*/

.iwj-thankyou-page{
	text-align: center;
	margin: 50px 0;
}
.iwj-thankyou-page .success-txt > p {
	display: inline-block;
	font-size: 14px;
	line-height: 25px;
	max-width: 550px;
	text-align: left;
	vertical-align: top;
}
.iwj-thankyou-page .success-txt > p a{
	color: #777;
}
.iwj-thankyou-page .success-txt > p a:hover{
	color: #2980b9;
}
.iwj-thankyou-page .success-txt > span{
	margin-top: -10px;
	font-size: 70px;
	display: inline-block;
	margin-right: 5px;
}
.iwj-thankyou-page .success-txt > span.job-publish,.iwj-thankyou-page .success-txt > span.job-pending{
	font-size: 50px;
	margin-top: -2px;
	color: #eee;
}
.iwj-thankyou-page .thankyou-panel > h3 {
	font-weight: 600;
	margin: 40px 0;
	font-size: 30px;
}
.iwj-thankyou-page .thankyou-panel ul{
	list-style: none;
	padding: 0;
	margin: 50px 0 0;
}
.iwj-thankyou-page .thankyou-panel ul li{
	display: inline-block;
	margin-right: 5px;
}/*
.iwj-thankyou-page .thankyou-panel ul li a{
	border: 1px solid #363f48;
	border-radius: 4px;
	color: #363f48;
	display: inline-block;
	height: 34px;
	line-height: 31px;
	padding: 0 25px;
	vertical-align: top;
	margin-right: 5px;
	text-transform: uppercase;
}
.iwj-thankyou-page .thankyou-panel ul li a:hover{
	background: #363f48;
	color: #fff;
}*/
/*------- job posted -------*/
.iwj-dashboard-main .iwj-jobs .table-title{
    padding-left:18px;
    padding-right:18px;
}
.iwj-menu-action{
    position:absolute!important;
    top:calc(100% + 15px);
    width:210px;
    z-index:9;
	-webkit-box-shadow: 0 15px 50px rgba(41,128,185,.15);
	-moz-box-shadow: 0 15px 50px rgba(41,128,185,.15);
	box-shadow: 0 15px 50px rgba(41,128,185,.15);
	left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.iwj-menu-action-inner{
    padding:20px 30px;
    background:#fff;
    text-align:center;
    font-weight:600;
    font-size:12px;
    text-transform:uppercase;

}
.iwj-menu-action-inner > div{
    line-height:24px;
    padding:16px 0;
}
.iwj-menu-action-inner > div + div{
    border-top:1px solid rgba(51, 51, 51, 0.1);
}
.iwj-menu-action-wrap{
    position:relative;
    text-align: center;
}

.iwj-jobs .job-action{
    text-align:center;
}
.iwj-jobs .job-featured{
    text-align:center;
}
.iwj-jobs .job-featured i {
    margin-top: 6px;
}

.iwj-dashboard-main .iwj-jobs .job-title h3.title{
    font-size:14px;
    margin:0 0 7px;
    font-weight:500;
}
.iwj-dashboard-main .iwj-jobs .job-title h3.title a{
    color:#333;
	font-weight: 600;
	line-height: 1;
	font-size: 13px;
}
.iwj-dashboard-main .iwj-jobs .job-title h3.title a:hover{
    color:#777;
}
.iwj-dashboard-main .iwj-jobs .job-title .expiry-date{
    font-size:12px;
    font-weight:500;
    color: #777;
}
.iwj-dashboard-main .iwj-jobs .job-title .expiry-date i{
    color:#33aa58;
    margin-right: 10px;
}
.iwj-dashboard-main .iwj-jobs .job-title .expiry-date span{
    color:#f16e8e;
}
.iwj-dashboard-main .iwj-jobs .job-aplication a{
	background: none !important;
}
.iwj-dashboard-main .iwj-toggle-action{
    background:url(../images/bg-job-list-action-button.png) no-repeat center center scroll transparent;
    height:24px;
    width:24px;
    border:none;
	display: inline-block;
    padding:0;
	cursor: pointer;
	outline: 0;
}
.iwj-dashboard-main .iwj-toggle-action:hover, .iwj-dashboard-main .iwj-toggle-action:focus, .iwj-dashboard-main .iwj-toggle-action:active, .iwj-dashboard-main .iwj-toggle-action:not(.collapsed){
    background:url(../images/bg-job-list-action-button-active.png) no-repeat center center scroll transparent;
	display: inline-block;
	cursor: pointer;
	outline: 0;
}

.iwj-dashboard-main .iwj-menu-action:before {
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    content: "";
    position: absolute;
    top: -8px;
    width: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
	-webkit-box-shadow: 0 15px 50px rgba(41,128,185,.15);
	-moz-box-shadow: 0 15px 50px rgba(41,128,185,.15);
	box-shadow: 0 15px 50px rgba(41,128,185,.15);
}
.iwj-dashboard-main .iwj-jobs .job-item:hover{
	box-shadow: none;
}
.iwj-dashboard-main .iwj-jobs .job-featured i {
    color: #777;
}
.iwj-dashboard-main .iwj-jobs .job-featured.featured i {
    color:#ffd800;
}
.iwj-dashboard-main .iwj-jobs .job-featured a i {
    color:#333333;
}
.iwj-dashboard-main .iwj-jobs td{
	border-color: #eee;
}
.iwj-dashboard-main .iwj-jobs .job-title{
	padding-left: 0 !important;
	margin: 0 0 5px 0;
	font-size: 13px;
}
.iwj-dashboard-main .iwj-jobs .job-meta{
	list-style: none;
	padding: 0;
	margin: 0;
}
.iwj-dashboard-main .iwj-jobs .job-meta li{
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 3px;
}
.iwj-dashboard-main .iwj-jobs .job-meta li:last-child{
	margin-right: 0;
}
.iwj-dashboard-main .iwj-jobs .job-meta li a{
	color: #777;
}
.iwj-dashboard-main .iwj-jobs .job-meta li i{
	margin-right: 3px;
}
.iwj-dashboard-main .iwj-jobs .job-meta li.categories i{
	color: #2980b9;
}
.iwj-dashboard-main .iwj-jobs .job-meta li.sallary i{
	color: #4a98ae;
}
.iwj-dashboard-main .iwj-jobs .job-meta li.locations i{
	color: #f16e8e;
}

.job-aplication .application-item img{
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid #fff;
	margin-left: -10px;
}
.job-aplication .application-item:first-child img{
	margin-left: 0;
}

.job-aplication .applications{
	margin-left: 5px;
	font-weight: 600;
	color: #00aadc;
	position: relative;
	top: 2px;
}

.iwj-search-form {
	margin-bottom: 25px;
}

.iwj-search-form .search-box, .iwj-search-form .select2-container {
    margin-bottom: 10px;
}
.iwj-search-form .search-box{
    position: relative;
    float: left;
    width: 49%;
	max-width: 350px;
}
.iwj-search-form .search-text{
    border-width: 1px 0 1px 1px;
    border-color: rgba(51,51,51,0.05);
    border-style: solid;
    height:40px;
    line-height:40px;
    padding:0 25px;
    -webkit-border-radius:3px;
    border-radius:3px;
	width: calc(100% - 86px);
    font-weight: 500;
}
.iwj-search-form .select2-container{
	margin-left: 10px;
}
.iwj-search-form select.search-select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(51, 51, 51, 0.05);
    height: 40px;
    background:url(../images/bg-arrow-select.png) calc(100% - 25px) center no-repeat scroll #fff;
    line-height: 40px;
    padding: 0 20px;
    border-radius:3px;
    -webkit-border-radius:3px;
    margin-left:10px;
    color: #333333;
    font-weight: 500;
    width: calc(25% - 10px);
    background-color: #f6f7f9;
    float: left;
	max-width: 300px;
	min-width: 200px;
}
.iwj-search-form .search-button{
	position: absolute;
	left: auto;
	right: 0;
	top: 0;
	background: #f6f7f9;
	color: #222;
    height:40px;
    line-height:40px;
    margin:0;
    padding:0 20px;
    width: 88px;
    -webkit-border-radius:3px;
    border-radius:3px;
    border:1px solid #f6f7f9;
}
.iwj-search-form form {
    display: table;
    width: 100%;
}
.iwj-alerts .add-new-alert{
	margin-bottom: 25px;
}
body .select2-container--default .iwj-find-jobs-dropdown .select2-search--dropdown .select2-search__field{
	background: url(../images/search.png)right 8px top 14px no-repeat #fff;
	padding-right: 30px;
}

/*------ taskbar -----*/
.iwj-new-package .task-bar,
.iwj-make-featured .task-bar{
    text-align: center;
    margin-bottom: 40px;
}
.iwj-new-package .task-bar ul,
.iwj-make-featured .task-bar ul{
    margin: 0;
    padding: 0;
    display: inline-block;
}
.iwj-new-package .task-bar ul li,
.iwj-make-featured .task-bar ul li{
    list-style: none;
    font-weight: 600;
    text-transform: uppercase;
    width: 220px;
    float: left;
    text-align: center;
    position: relative;
}
.iwj-new-package .task-bar ul li:after,
.iwj-make-featured .task-bar ul li:after{
    content: "";
    position: absolute;
    top: 21px;
    right: 50%;
    width: 100%;
    height: 2px;
    background: #eeeeee;
}
.iwj-new-package .task-bar ul li.active:after, .iwj-make-featured .task-bar ul li.active:after{
    background:#2980b9;
}
.iwj-new-package .task-bar ul li:first-child:after,
.iwj-make-featured .task-bar ul li:first-child:after{
    display: none;
}
.iwj-new-package .task-bar ul li span,
.iwj-make-featured .task-bar ul li span{
    display: block;
    position: relative;
    z-index: 9;
}
.iwj-new-package .task-bar ul li span.number,
.iwj-make-featured .task-bar ul li span.number{
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #eeeeee;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 auto 12px;
}
.iwj-new-package .task-bar ul li.active span.number,
.iwj-make-featured .task-bar ul li.active span.number{
    color: #ffffff;
}

.iwj-new-package .task-bar ul li.active .number,
.iwj-make-featured .task-bar ul li.active .number{
    background:#2980b9;
}
.iwj-new-package .task-bar ul li.active .desc,
.iwj-make-featured .task-bar ul li.active .desc{
    color:#2980b9;
}

/*------ end taskbar -----*/


.iwj-candicate-detail{
    background:#f6f7f9;
    padding:90px 0;
}
.iwj-candicate-detail .candicate-main-content{
    background:#fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.iwj-candicate-detail .resume-detail-info{
    padding:0 85px;
}
.iwj-candicate-detail .resume-detail-info > div{
    padding: 70px 0 40px;
    border-bottom: 1px #f6f7f9 solid;
}
.iwj-candicate-detail .resume-detail-info .title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
	color: #333;
}

.iwj-candicate-detail .resume-detail-info .time-line .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 0;
}
.iwj-candicate-detail .resume-detail-info ul {
    margin: 0;
}
.iwj-candicate-detail ul.time-line {
    padding: 0 0 0 40px;
    position: relative;
}
.iwj-candicate-detail ul.time-line:before {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 7px);
    top: 7px;
    left: 0;
    background: #f6f7f9;
}
.iwj-candicate-detail .resume-detail-info ul li {
    list-style: none;
}
.iwj-candicate-detail ul.time-line li {
    position: relative;
    margin-bottom: 45px;
}
.iwj-candicate-detail ul.time-line li:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 7px;
    left: -45px;
    border: 4px #f16e8e solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ffffff;
    z-index: 5;
}
.iwj-candicate-detail ul.time-line li .top {
    margin-top: -9px;
    font-weight: 500;
    color: #333333;
}
.iwj-candicate-detail ul.time-line li .top span {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    margin-right: 15px;
}
.iwj-candicate-detail .skills ul {
    padding: 0;
}
.iwj-candicate-detail .skills ul li .title-skill {
    text-transform: capitalize;
    margin-bottom: 17px;
}
.iwj-candicate-detail .skills ul li .scoring {
    position: relative;
    height: 3px;
    width: 315px;
    background: #f6f7f9;
    margin-bottom: 36px;
}
.iwj-candicate-detail .skills ul li .scoring .line {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}
.iwj-candicate-detail .skills ul li .scoring .percent {
    position: absolute;
    top: -26px;
    right: 0;
    font-weight: 600;
}
.widget-area ul.iw-social-all{
    padding: 0;
    margin: 25px 0 0 0;
    text-align:center;
}
.widget-area ul.iw-social-all li{
    display: inline-block;
    list-style: none;
}

.widget-area ul.iw-social-all li a{
    border: 2px solid #f16e8e;
    color:#f16e8e;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
    height: 30px;
    line-height:26px;
    margin:0 7px 10px 7px;
    width: 30px;
}
.widget-areaul.iw-social-all li a i:before{
    line-height:inherit;
}

.widget-area ul.iw-social-all li.social-vimeo a{
    color:#f16e8e;
    border: 2px solid #f16e8e;
}
.widget-area ul.iw-social-all li.social-youtube a{
    color:red;
    border: 2px solid red;
}
.widget-area ul.iw-social-all li.social-google_plus a{
    color:#f16e8e;
    border: 2px solid #f16e8e;
}
.widget-area ul.iw-social-all li.social-twitter a{
    color:#3ac1f1;
    border: 2px solid #3ac1f1;
}
.widget-area ul.iw-social-all li.social-facebook a{
    color:#2980b9;
    border: 2px solid #2980b9;
}
.iwj-candicate-detail .iwj-candidate-non-permission{
	padding: 35px;
	background: #ffffff;
	border-radius: 5px;
}

/*Candidate Details Widget*/
.iwj-candidate-info-top {
    background: url("../img/bg-company.jpg") no-repeat;
    background-size: cover;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    display: table;
    padding: 35px 25px 53px;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    z-index: 0;
    overflow: hidden;
}
.iwj-candidate-info-top .bg-overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #34495e;
    opacity: 0.9;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-candidate-info-top .info-top {
    padding: 35px 25px 53px;
    position: relative;
    z-index: 2;
}
.iwj-candidate-info-top .candidate-logo {
    float: left;
    margin: 10px 40px 0;
    text-align: center;
    width: 150px;
}
.iwj-candidate-info-top .candidate-logo img {
	border-radius:200px;
	-webkit-border-radius: 200px;
	-moz-border-radius: 200px;
}
.iwj-candidate-info-top .info-inner {
	overflow: hidden;
	width: 275px;
}
.iwj-candidate-info-top .title-headline {
    padding-right: 50px;
}
.iwj-candidate-info-top .candidate-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
    margin: 0;
}
.iwj-candidate-info-top .iwj-employerdl-shortdes {
    color: #ffffff;
    font-size: 13px;
    font-style: italic;
    line-height: 18px;
    opacity: 0.5;
}
.iwj-candidate-info-top .candidate-shortdes{
	background: #f16e8e;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	color: #ffffff;
	font-size: 12px;
	display:inline-block;
	padding:0 18px;
}

.iwj-candidate-info-top .candidate-info{
	margin-top:20px;
}
.iwj-candidate-info-top .candidate-info ul li{
	list-style: none;
    font-size: 13px;
    font-style: italic;
    line-height: 18px;
    margin-bottom: 17px;
}
.iwj-candidate-info-top .candidate-info ul li i {
    background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    font-size: 13px;
    height: 20px;
    line-height: 20px;
    margin-right: 10px;
    overflow: hidden;
    text-align: center;
    width: 20px;
    float: left;
}
.candidate-action-button {
    margin-top: 38px;
}
.iwj-candidate-info-top .candidate-info ul {
	padding:0;
	margin:34px 0 0;
	display: block;
}
.iwj-candidate-info-top .candidate-desc{
	font-size:14px;
	color:#777;
	line-height:28px;
	border-top:1px solid #f6f7f9;
	padding:30px 0 0;
	margin-top:20px;
}
.iwj-candidate-info-top .iwj-employerdl-button {
	text-align:center;
	clear:both;
	margin-top:45px;
	border-top: 1px solid #f6f7f9;
	padding-top: 50px;
}
.iwj-candidate-info-top .iwj-employerdl-button .action-button{
	margin:0 0 10px 0;
	height:45px;
	line-height:41px;
}
.iwj-candidate-info-top .iwj-employerdl-button .action-button span{
	line-height:inherit;
	height:auto;
}

.iwj-candidate-info-top .info-hide {
    display: none;
}
.iwj-candidate-info-top .detail-action-button {
    position: absolute;
    right: 25px;
    top: 35px;
}
.iwj-candidate-info-top .detail-action-button.view-infomation {
    position: relative;
    right: auto;
    top: auto;
    left: auto !important;
    margin-top: 35px;
}
.iwj-candidate-info-top .detail-action-button .follow {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    padding: 15px 25px;
    text-transform: uppercase;
}
.iwj-candidate-info-top .detail-action-button .follow.saved {
    background: #16A085;
    border: 1px solid #16A085;
    -webkit-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
}
.iwj-candidate-info-top .detail-action-button .follow i {
    font-size: 20px;
    font-weight: 500;
    margin-right: 15px;
    position: relative;
    top: 2px;
}
.iwj-candidate-info-top .view-infomation a {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 25px;
    font-size: 13px;
    background: #16A085;
    webkit-box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
    box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
}
.iwj-candidate-info-top .view-infomation a i {
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top: 3px;
}
/*END Candidate Details Widget*/

.iwj-orders .modal-body{
	padding: 25px;
}
.iwj-orders .modal-footer{
	padding: 17px 25px;
}
.iwj-dashboard-main .iwj-order-details h3 {
    margin-bottom: 30px;
	text-transform: uppercase;
}
.iwj-dashboard-main .iwj-order-details ul.order_details li{
    padding: 12px 0;
    display:block;
    list-style:none;
}
.iwj-dashboard-main .iwj-order-details ul.order_details li + li{
    border-top: 1px solid rgba(51, 51, 51, 0.1);
}
.iwj-dashboard-main .iwj-order-details ul.order_details{
    margin: 0;
    padding: 0;
    list-style:none;
}
.iwj-dashboard-main .iwj-order-details .title-order{
    position:relative;
}
.iwj-order-details .order-logo{
	float: left;
	margin-bottom: 20px;
	max-width: 140px;
}
.iwj-order-details .order-number-date{
	float: right;
	margin-top: -7px;
}
.iwj-order-details .order-author{
	float: left;
	clear: both;
	margin-bottom: 20px;
}
.iwj-dashboard-main .iwj-order-details table {
	border: none;
}
.iwj-dashboard-main .iwj-order-details table tbody tr th,
.iwj-dashboard-main .iwj-order-details table tfoot tr th {
    padding: 20px 8px !important;
    font-weight: 400;
    line-height: 1.42857143;
}
.iwj-dashboard-main .iwj-order-details .order-again {
    display: none;
}
.iwj-dashboard-main .iwj-order-details .woocommerce-order-details h2 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
}
.iwj-order-pay-message{
	margin-top: 15px;
}
.job-type button.save-job, .job-save-left button.save-job{
    background:none;
    border:none;
    padding:0;
}


/*------ Register form popup -------*/
.iwj-register-form-popup .iwj-form {
    padding-top: 30px;
    padding-right: 40px;
    padding-left: 40px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.iwj-register-form-popup .iwj-form .iwj-field {
    padding: 10px 25px 12px;
}
.iwj-register-form-popup .iwj-form .iwj-field label {
    margin: 0;
}
.iwj-register-form.iwj-form .register-account {
    margin-top: 25px;
}

/*------ End Register form popup -------*/

/*------ login form popup -------*/

.modal-popup.modal{
    padding: 0!important;
    position: fixed!important;
    height:auto;
    transform:translateY(50px);
}
.iwj-login-form-popup .modal-header {
    text-transform: none;
}
.iwj-candicate-detail .iw-contact-form-7.contact-map {
    box-shadow: none;
}
.iwj-login-form-popup .iw-tab-items{
    background:#f6f6f6;
}
.iwj-login-form-popup .iwj-form {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.iwj-login-form-popup .iwj-form .iwj-field {
    padding: 10px 25px 10px;
}
.iwj-login-form-popup .iwj-form .iwj-field label {
    margin: 0;
}
.iwj-login-form-popup .iw-tab-item{
    display:inline-block;
    height:50px;
    line-height:50px;
    padding:0 40px;
    color:#000;
    font-size:16px;
    font-weight:bold;
    text-transform:uppercase;
    cursor:pointer;
}
.iwj-login-form-popup .iw-tab-item.active{
    background:#fff;
}
.iwj-login-form-popup .iw-tab-content .iw-tab-item-content{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:0;
    opacity:0;
    transition:all ease 0.5s;
}

.iwj-login-form-popup .iw-tab-content .iw-tab-item-content.active{
    position:relative;
    z-index:3;
    opacity:1;
}
.iwj-login-form-popup .form-field{
    margin-bottom:20px;
}
.iwj-login-form-popup .iwj-input{
    position:relative;
}
.iwj-login-form-popup .iwj-input i{
    position:absolute;
    left:5px;
    color:#2980b9;
    top:6px;
    width:30px;
    text-align:center;
}
.iwj-login-form-popup .iwj-input .input-form{
    border:1px solid #eee;
    height:40px;
    line-height:38px;
    border-radius:5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    padding:0 10px 0 40px;
    width:100%;
}
.iwj-login-form-popup .alert{
    padding-top:6px;
    padding-bottom:6px;
}
.iwj-login-form-popup .iwj-form{
    padding-top:50px;
    padding-bottom: 55px;
}

.iwj-login-form-popup .iwj-btn-icon i{
    margin-right:15px;
    padding-right:15px;
}
/*------ end login form popup -------*/

/* job alert popup */
.iwj-alert-submit-form-popup{
	padding: 15px 10px 25px;
}
.iwj-alert-submit-form-popup .iwj-button-loader{
	margin-top: 15px;
}
.iwj-alert-submit-form-popup button{
	margin-right: 5px;
}
.iwj-alert-submit-form-popup .iwj-thankyou-page .thankyou-panel > h3{
	padding-bottom: 0;
	margin-bottom: 10px;
	border: none;
	font-size: 22px;
}
.iwj-alert-submit-form-popup .iwj-thankyou-page .success-txt > p{
	text-align: center;
}
/* end job alert popup */

.iwj-payment-thank-you-message{
	margin-top: 10px;
}
.find-jobs-results .iwj-filter-selected-item{
    margin:0 10px;
}
.find-jobs-results{
    margin: 0px auto 10px;
    width: 84%;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
}
@media print{
    .header, .page-heading, .panel-tools, .iw-footer{
		display: none !important;
	}

	.iwj-dashboard-sidebar,
	.iwj-applications-table table,
	.iwj-orders-table table,
	.iwj-search-form,
	.iwj-application-view-modal .print-button,
	.iwj-application-details .application-button,
	.iwj-order-details .print-button,
	.iwj-orders .modal-footer,
	.iwj-dashboard-menu-mobile,
	.iwj-employerdl-content .employer-detail-container,
	.iwj-overview .info-top-wrap.info-top-wrap-employer{
		display: none !important;
	}
	.iwj-application-view-modal{
		position: relative;
		height: 100%;
		width: 100%;
	}
	body, html, .wrapper {
		height: 100% !important;
		overflow: visible !important;
	}
	.iwj-application-view-modal .modal-header{
		border: none;
	}
	.iwj-application-view-modal .modal-body{
		padding-top: 15px !important;
	}
	div.iwj-dashboard-main.applications, div.contents-main, .main-content{
		padding: 0;
	}
	div.iwj-application-details div.avatar{
		top: -55px;
	}
	div.iwj-application-details .application-details > li.application-message .value{
		padding: 0;
		border: none;
		height: auto;
		overflow: auto;
	}
	div.iwj-application-details .application-details > li.application-note{
		border-top: 1px solid #f6f7f9;
	}
	div.iwj-application-details .application-details > li.application-note .value{
		height: auto;
		overflow: auto;
	}
	div.iwj-application-details .application-details > li.application-note .value textarea{
		padding: 0;
		border: none;
		background: inherit;
		min-height: auto;
		height: auto;
	}
	.iwj-application-details .select2-container--default .select2-selection--single{
		border: none !important;
	}
	.iwj-application-details .select2-container--default .select2-selection--single .select2-selection__arrow b{
		display: none;
	}
}

/* ===== Find Jobs Form ===== */
/* Style1 */
.iwj-find-jobs.style1 {
    padding: 50px 0 0;
    background: #ffffff;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-find-jobs form {
    width: 84%;
    margin: 0 auto;
}
.iwj-find-jobs form .field-item, .iwj-find-jobs form .field-item-submit {
    float: left;
    height: 60px;
    font-size: 14px;
    margin-bottom: 15px;
}
.iwj-find-jobs form .field-item{
	width: 30%;
}
.iwj-find-jobs form .field-item-submit {
	width: 10%;
}
.iwj-find-jobs form .fields .field-item .field-content {
    padding: 3px 20px;
    margin: 0 8px 0 0;
    height: 60px;
    position: relative;
    font-size: 12px;
    z-index: 0;
}
.iwj-find-jobs form .fields .field-item.key-word .field-content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    z-index: -1;
}
.iwj-find-jobs.style1 form .fields .field-item.key-word .field-content:after {
    border: 1px #eeeeee solid;
}
.iwj-find-jobs form .fields .field-item.key-word .field-content:hover:after {
    border-width: 2px;
    border-style: solid;
}
.iwj-find-jobs.style1 form .fields .field-item label {
    line-height: 26px;
    margin-bottom: 0;
}
.iwj-find-jobs form .fields .field-item.key-word .input-select {
    height: 25px;
    line-height: 25px;
    position: relative;
    padding: 0 0 0 32px;
}
.iwj-find-jobs form .fields .field-item label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 0;
}
.iwj-find-jobs form .fields .field-item .select2 {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 0;
    width: 100% !important;
}
.iwj-find-jobs form .fields .field-item .select2:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    z-index: -1;
}
.iwj-find-jobs.style1 form .fields .field-item .select2:after {
    border-width: 1px;
    border-style: solid;
}
.iwj-find-jobs form .fields .field-item .select2:after {
    border-color: #eeeeee;
}
.iwj-find-jobs form .fields .field-item .select2:hover:after,
.iwj-find-jobs form .fields .field-item .select2:focus:after,
.iwj-find-jobs form .fields .field-item .select2-container--open:after {
    border-width: 2px !important;
    border-style: solid !important;
}
.iwj-find-jobs form .fields .field-item .select2:focus:after,
.iwj-find-jobs form .fields .field-item .select2-container--open:after {
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-find-jobs.style1 form .fields .field-item .select2-container--open.select2-container--above:after {
    -webkit-border-radius: 0 0 5px 5px;
    border-radius:  0 0 5px 5px;
}
.iwj-find-jobs form .fields .field-item .select2 .selection {
    left: 0;
    position: absolute;
    bottom: 4px;
    width: 100% !important;
    padding: 0 50px 0 60px;
}
body .select2-container--open .iwj-find-jobs-dropdown.select2-dropdown {
    border-width: 0 2px 2px 2px;
    border-style: solid;
    -webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	position: relative;
	top: -2px;
}
body .select2-container--open .iwj-find-jobs-dropdown.select2-dropdown--above{
	top: auto;
	bottom: -2px;
	border-radius: 5px 5px 0 0;
	border-width: 2px 2px 0 2px;
    margin-bottom: -40px;
    margin-top: 0;
}
.select2-container--default .iwj-find-jobs-dropdown .select2-results>.select2-results__options{
	max-height: 225px;
}
.iwj-find-jobs .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 14px;
}
.iwj-find-jobs form .fields .field-item i {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 14px;
    line-height: 18px;
}
.iwj-find-jobs .iwj-find-jobs-select {
    background: transparent !important;
    border: none !important;
    opacity: 0;
	width: 100%;
}
.iwj-find-jobs form .fields .field-item .input-select input,
.iwj-find-jobs .select2-container--default .select2-selection--single,
.iwj-find-jobs .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    border: none;
    box-shadow: none;
    background-color: transparent !important;
    padding: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.iwj-find-jobs .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333333;
    font-size: 13px;
}
body .select2-container--open .select2-dropdown.iwj-find-jobs-dropdown.style2{
	margin-top: 0;
}
.iwj-find-jobs .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #333333 transparent transparent;
}
.iwj-find-jobs form .field-item-submit {
    padding: 0;
    font-size: 24px;
    color: #ffffff;
    border: none;
}
.iwj-find-jobs form .field-item-submit button {
    width: 70px;
    text-align: center;
    height: 100%;
    border: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0;
    position: relative;
    z-index: 0;
	-webkit-box-shadow: 0 3px 7px 0 rgba(0,0,0,0.15);
	box-shadow: 0 3px 7px 0 rgba(0,0,0,0.15);
}
.iwj-find-jobs form .field-item-submit button:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-border-radius: 5px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: -1;
}
.iwj-find-jobs form .field-item-submit button:hover:after {
    opacity: 1;
}
.iwj-find-jobs .trending-keywords {
    padding: 0 0 5px;
    margin-top: 10px;
    margin-right: 25px;
}
.page-template-home-page .iwj-find-jobs .trending-keywords{
	text-align: center;
}
.iwj-find-jobs .trending-keywords span {
    color: #333333;
    font-size: 11px;
	font-weight: 600;
    text-transform: uppercase;
}
.iwj-find-jobs .trending-keywords a {
    color: #999;
    display: inline-block;
    padding-left: 20px;
    text-transform: uppercase;
	font-size: 11px;
    font-style: italic;
}

/* Style2 */
.page-heading .find-jobs-title {
    font-size: 36px;
    text-transform: uppercase;
    width: 84%;
    margin: 12px auto 28px;
    color: #ffffff;
    line-height: 1;
}
.iwj-find-jobs.style2 form .fields .field-item .select2 {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-find-jobs.style2 form .fields .field-item .select2:focus,
.iwj-find-jobs.style2 form .fields .field-item .select2-container--open {
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-find-jobs.style2 form .fields .field-item.key-word .field-content {
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.iwj-find-jobs.style2 form .fields .field-item .select2,
.iwj-find-jobs.style2 form .fields .field-item.key-word .field-content {
    border: 1px solid #dedede;
    background: rgb(16, 16, 16);
    color: #ffffff;
    -webkit-box-shadow: 0 3px 7px 0 rgba(0,0,0,0.15);
    box-shadow: 0 3px 7px 0 rgba(0,0,0,0.15);
}
.iwj-find-jobs.style2 form .fields .field-item .select2 {
    z-index: -1;
}
.iwj-find-jobs.style2 form .fields .field-item input,
.iwj-find-jobs.style2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
    opacity: 0.5;
    font-size: 13px;
}
.iwj-find-jobs.style2 form .fields .field-item input::-webkit-input-placeholder{
	color: #fff;
}
.iwj-find-jobs.style2 form .fields .field-item input:-moz-placeholder{
	color: #fff;
}
.iwj-find-jobs.style2 form .fields .field-item input::-moz-placeholder{
	color: #fff;
}
.iwj-find-jobs.style2 form .fields .field-item input:-ms-input-placeholder{
	color: #fff;
}
.iwj-find-jobs.style2 form .fields .field-item input::-ms-input-placeholder{
	color: #fff;
}
.iwj-find-jobs.style2 form .fields .field-item input::placeholder{
	color: #fff;
}
.iwj-find-jobs.style2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(255, 255, 255, 0.5) transparent transparent;
}
.iwj-find-jobs.style2 form .fields .field-item label,
.iwj-find-jobs.style2 .trending-keywords span {
    color: #ffffff;
}
.iwj-find-jobs.style2 form .fields .field-item label {
    font-size: 11px;
    font-weight: 600;
    line-height: 15px;
}
.iwj-find-jobs.style2 form .fields .field-item i {
    opacity: 0.8;
}
.iwj-find-jobs form .fields .field-item .select i {
    position: absolute;
    bottom: 10px;
    top: auto;
    left: 30px;
}
.iwj-find-jobs.style2 form .fields .field-item i
.iwj-find-jobs.style2 .trending-keywords a {
    color: #ffffff;
    opacity: 0.5;
}

/* ===== End Find Jobs Form ===== */

body.iwj-jobs-page article.page, body.iwj-employers-page article.page, body.iwj-candidates-page article.page,
body.iwj-login-page article.page, body.iwj-register-page article.page, body.iwj-lostpass-page article.page{
	padding: 0;
	background: inherit;
}
/* ===== Employers Listing ===== */
.iwj-jobs .sidebar-1.right {
    float: right;
}
.iwj-employers.iwj-listing .iwj-employer-item {
    padding: 20px 30px 25px;
}
.iwj-employers.iwj-listing .iwj-employer-item.list{
    border-bottom: 1px #f6f7f9 solid;
    height: auto !important;
}
.iwj-employers .iwj-employer-item {
	padding: 20px 30px;
	margin-bottom: 20px;
	background: #ffffff;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.iwj-employers-page .iwj-employers .iwj-employer-item:hover {
	-webkit-box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
	box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
}
.iwj-employers .iwj-employer-item .employer-image {
    float: left;
    line-height: 1;
	margin: 20px 25px 0 0;
	text-align: center;
    max-width: 46px;
    position: relative;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.iwj-employers .iwj-employer-item .employer-info {
    padding-left: 5px;
    position: relative;
    float: left;
    width: calc(100% - 76px);
}
.iwj-employers.iwj-listing .iwj-employer-item:last-child {
    border: none;
}
.iwj-employers .iwj-employer-item .employer-info .employer-featured {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
    padding: 0 15px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background: #f16e8e;
    line-height: 20px;
    margin-right: 10px;
}
.iwj-employers .iwj-employer-item .employer-info h3 {
    margin: 0 0 8px;
    display: inline-block;
}
.iwj-employers .iwj-employer-item .employer-info .employer-name {
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    font-size: 13px;
}
.iwj-employers .iwj-employer-item.featured .employer-info .employer-name {
    color: #f16e8e !important;
}
.employer-info .info-company i {
    margin-right: 10px;
}
.employer-info .info-company .address i {
    color: #f16e8e;
}
.iwj-employers .iwj-employer-item .employer-info .employer-type {
    position: absolute;
    top: 0;
    right: 25px;
}
.iwj-employers .employer-info .employer-type span {
    border-width: 1px;
    border-style: solid;
    height: 30px;
    line-height: 26px;
    padding: 0 20px;
}
.iwj-employers .iwj-employer-item .employer-info .employer-type.freelancer span {
    color: #4a98ae;
    border-color: #4a98ae;
}
.iwj-employers .iwj-employer-item:hover .employer-info .employer-type.freelancer span {
    background: #4a98ae;
}
.iwj-employers .iwj-employer-item .employer-info .employer-type.contract span {
    color: #3ac1f1;
    border-color: #3ac1f1;
}
.iwj-employers .iwj-employer-item:hover .employer-info .employer-type.contract span {
    background: #3ac1f1;
}
.iwj-employers .iwj-employer-item .employer-info .employer-type.remote span {
    color: #33aa58;
    border-color: #33aa58;
}
.iwj-employers .iwj-employer-item:hover .employer-info .employer-type.remote span {
    background: #33aa58;
}
.iwj-employers .iwj-employer-item:hover .employer-info .employer-type span {
    color: #ffffff;
}
.iwj-employer-alphabet{
	margin: 10px 0;
	display: table;
	width: 100%;
}
.iwj-employer-alphabet a{
	padding: 3px 7px 3px 7px;
	border-bottom: 2px solid #eee;
	float: left;
	color: #444;
	font-weight: 600;
	text-transform: uppercase;
    outline: none;
}
.iwj-employer-alphabet a:hover, .iwj-employer-alphabet a:active, .iwj-employer-alphabet a:focus{
	color: #444;
    outline: none;
}
.iwj-employer-alphabet .active a{
	border-bottom: 2px solid #337ab7;
}
/* ===== End Employers Listing ===== */

/* ===== Employers Grid ===== */
.iwj-employers.iwj-grid .grid-content {
	width: 50%;
	float: left;
}
.iwj-employers.iwj-grid .grid-content:nth-child(odd) {
    padding: 0 10px 0 0;
}
.iwj-employers.iwj-grid .grid-content:nth-child(even) {
    padding: 0 0 0 10px;
}
.iwj-employers.iwj-grid .iwj-employer-item {
    float: left;
    padding: 15px 20px 20px;
    position: relative;
	width: 100%	;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-image{
	margin-right: 20px;
}
/* ===== End Employers Grid ===== */

/* ===== Candidates Listing ===== */
.iwj-candidates.iwj-listing .candidate-item{
	height: auto !important;
	padding: 20px 30px;
	margin-bottom: 20px;
	background: #ffffff;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.iwj-candidates.iwj-listing .candidate-image{
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	margin-top: 12px;
	overflow: hidden;
	max-width: 45px;
}
.iwj-candidates.iwj-listing .candidate-title{
	margin: 0 0 8px;
}
.iwj-candidates.iwj-listing .candidate-title a, .iwj-candidates.iwj-listing .candidate-title span{
	color: #333333;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	display: inline-block;
}
.iwj-candidates.iwj-listing .candidate-info{
	padding: 0;
	margin-left: 80px;
	position: relative;
	margin-top: -7px;
}
.iwj-candidates.iwj-listing .candidate-info i{
	width: 15px;
	font-size: 13px;
	text-align: center;
	margin-right: 10px;
}
.iwj-candidates.iwj-listing .candidate-info .address i{
	color: #f16e8e;
	font-size: 14px;
}
/* ===== END Candidates Listing ===== */

/* ===== Candidates Grid ===== */
.iwj-candidates.iwj-grid .grid-content:not(.col-sm-4) {
	width: 50%;
	float: left;
}
.iwj-candidates.iwj-grid .candidate-item {
	display: table;
	padding: 0;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
	text-align: center;
	position: relative;
	background: #ffffff;
	border-bottom: none;
}
.iwj-candidates.iwj-grid .grid-content:not(.col-sm-4):nth-child(odd) {
    padding: 0 10px 0 0;
}
.iwj-candidates.iwj-grid .grid-content:not(.col-sm-4):nth-child(even) {
    padding: 0 0 0 10px;
}
.iwj-candidates.iwj-grid .candidate-bg-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 140px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, height 0.3s ease 0s;
}
.iwj-candidates.iwj-grid .candidate-bg-image img{
	opacity: 0.2;
	width: 100%;
}
.iwj-candidates.iwj-grid .candidate-bg-image:after {
	content: "";
	position: absolute;
	bottom: -105%;
	left: -10%;
	width: 120%;
	height: 140%;
	background: #ffffff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}
.iwj-candidates.iwj-grid .candidate-info {
	padding: 35px 35px 0;
	position: relative;
}
.iwj-candidates.iwj-grid .info-top {
	padding-bottom: 50px;
}
.iwj-candidates.iwj-grid .info-top .candidate-image {
	width: 100px;
	height: 100px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 26px;
	-webkit-box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
	-moz-box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
	box-shadow: 0px 5px 25px rgba(41,128,185,0.3);
}
.iwj-candidates.iwj-grid .candidate-image img {
	width: 100%;
}
.iwj-candidates.iwj-grid .candidate-title {
	margin: 0;
	font-weight: 600;
	color: #333333;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 26px;
}
.iwj-candidates.iwj-grid .candidate-title a {
	color: #333333;
}
.iwj-candidates.iwj-grid .headline {
	font-weight: 500;
	margin-bottom: 0;
	line-height: 1.5;
	font-size: 11px;
}
.iwj-candidates.iwj-grid .info-bottom {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	height: auto;
	background: #ffffff;
	padding: 0 35px 35px;
	opacity: 0;
	box-shadow: 0 16px 20px 4px #ebf3f8;
	-webkit-transition: -webkit-transform 0.3s ease 0s, opacity 0.3s ease 0s;
	transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
}
.iwj-candidates.iwj-grid .social-link ul{
	margin: 0;
	padding: 0 0 10px;
}
.iwj-candidates.iwj-grid .social-link ul li{
	list-style: none;
	display: inline-block;
	margin: 0 5px 6px;
}

.iwj-candidates.iwj-grid .social-link li a {
	display: inline-block;
	width: 25px;
	height: 25px;
	line-height: 21px;
	border-width: 2px;
	border-style: solid;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
}
.iwj-candidates.iwj-grid .social-link li a.facebook {
	color: #3B5998 !important;
	border-color: #3B5998;
}
.iwj-candidates.iwj-grid .social-link li a.twitter {
	color: #0084B4 !important;
	border-color: #0084B4;
}
.iwj-candidates.iwj-grid .social-link li a.google-plus {
	color: #DB4437 !important;
	border-color: #DB4437;
}
.iwj-candidates.iwj-grid .social-link li a.pinterest {
	color: #BD081C !important;
	border-color: #BD081C;
}
.iwj-candidates.iwj-grid .social-link li a.linkedin {
	color: #006fa6 !important;
	border-color: #006fa6;
}
.iwj-candidates.iwj-grid .social-link li a.vimeo {
	color: #009fde !important;
	border-color: #009fde;
}
.iwj-candidates.iwj-grid .social-link li a.youtube {
	color: #e62117 !important;
	border-color: #e62117;
}
.iwj-candidates.iwj-grid .social-link li a.facebook:hover {
	color: #ffffff !important;
	background: #3B5998;
}
.iwj-candidates.iwj-grid .social-link li a.twitter:hover {
	color: #ffffff !important;
	background: #0084B4;
}
.iwj-candidates.iwj-grid .social-link li a.google-plus:hover {
	color: #ffffff !important;
	background: #DB4437;
}
.iwj-candidates.iwj-grid .social-link li a.pinterest:hover {
	color: #ffffff !important;
	background: #BD081C;
}
.iwj-candidates.iwj-grid .social-link li a.linkedin:hover {
	color: #ffffff !important;
	background: #006fa6;
}
.iwj-candidates.iwj-grid .social-link li a.vimeo:hover {
	color: #ffffff !important;
	background: #009fde;
}
.iwj-candidates.iwj-grid .social-link li a.youtube:hover {
	color: #ffffff !important;
	background: #e62117;
}
.iwj-candidates.iwj-grid .candidate-desc{
	line-height: 28px;
	margin-bottom: 18px;
}
.iwj-candidates.iwj-grid .candidate-item .view-resume {
	display: inline-block;
	color: #ffffff;
	border-width: 1px;
	border-style: solid;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 10px;
	line-height: 20px;
	padding: 1px 15px;
}
.iwj-candidates.iwj-grid .candidate-item:hover .info-bottom {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	opacity: 1;
	z-index: 9;
}
.iwj-candidates.iwj-grid .candidate-item:hover .candidate-bg-image, .iwj-candidates.iwj-grid .candidate-item:hover .candidate-bg-image:after {
	opacity: 1;
}
/* ===== End Candidates Grid===== */

/* ===== Pricing ===== */
.iwj-pricing-tables .pricing-item {
    margin-bottom: 30px;
	margin-top: 60px;
}
.iwj-pricing-tables .owl-wrapper .owl-item:nth-child(even){
	z-index: 1;
	position: relative;
}

.iwj-pricing-tables .owl-wrapper .owl-item:nth-child(even) .pricing-item{
	-webkit-box-shadow: 0 5px 25px 0 rgba(41,128,185,0.15);
	box-shadow: 0 5px 25px 0 rgba(41,128,185,0.15);
}

.iwj-pricing-tables .pricing-item.featured-item {
	margin-top: 0;
}
.iwj-pricing-tables .pricing-item .item-top {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    z-index: 0;
	overflow: hidden;
    height: 230px;
}
.iwj-pricing-tables .pricing-item.featured-item .item-top {
    height: 290px;
}
.iwj-pricing-tables .pricing-item .item-top .item-top-bg {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: -1;
}
.iwj-pricing-tables .pricing-item.featured-item .item-top .item-top-bg {
    background: #E67E22 !important;
}
.iwj-pricing-tables .pricing-item .item-top .item-top-content {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
    padding: 46px;
}
.iwj-pricing-tables .pricing-item .star {
    font-size: 21px;
    font-weight: 500;
    line-height: 23px;
    height: 45px;
    margin-bottom: 15px;
}

.iwj-pricing-tables .pricing-item .active-label{
	position: absolute;
	width: 80px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background: #333;
	color: #fff;
	text-transform: uppercase;
	left: -20px;
	top: 12px;
	z-index: 99;
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
	transform: rotate(-45deg);
}
.iwj-pricing-tables .pricing-item .star i {
    margin: 0 5px;
}
.iwj-pricing-tables .pricing-item .star i:nth-child(2) {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
}
.iwj-pricing-tables .pricing-item .sub-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    line-height: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.iwj-pricing-tables .pricing-item .title {
    font-size: 36px;
    font-weight: bold;
    line-height: 49px;
    margin: 0 0 15px;
    text-transform: uppercase;
	color: #fff;
}
.iwj-pricing-tables .pricing-item .price {
    font-size: 36px;
    font-weight: bold;
    line-height: 49px;
}
.iwj-pricing-tables .pricing-item .item-bottom {
    padding: 30px;
    background: #ffffff;
}
.iwj-pricing-tables .pricing-item .item-bottom ul {
    margin: 0;
    padding: 0;
}
.iwj-pricing-tables .pricing-item .item-bottom ul li {
    list-style: none;
    color: #333333;
    font-size: 15px;
    line-height: 50px;
	height: 50px;
    background-color: #F6F7F9;
    margin-bottom: 15px;
}
.iwj-pricing-tables .pricing-item .item-bottom ul li strong {
    font-size: 20px;
    line-height: 27px;
    margin-right: 20px;
    position: relative;
    top: 2px;
	display: inline-block;
	width: 32%;
	text-align: right;
}
.iwj-pricing-tables .pricing-item .item-bottom ul li.package-categories.infinty strong{
	font-size: 24px;
}
.iwj-pricing-tables .pricing-item .item-bottom .buy-now {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    line-height: 19px;
    padding: 20px 17px;
    text-transform: uppercase;
    display: inline-block;
	width: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 15px 0 5px;
	position: relative;
	z-index: 0;
	text-align: center;

}
.iwj-pricing-tables .pricing-item .item-bottom .buy-now:hover {
    opacity: 0.9;

}

.iwj-pricing-tables .pricing-item.featured-item .item-bottom .buy-now {
    background: #E67E22 !important;
}
/* ===== End Pricing ===== */

.wrapper-sticky {
    float: left !important;
}
.iwj-dashboard .wrapper-sticky{
	display: block !important;
}

body.iwj-loading .contents-main, body.iwj-loading .iwj-jobs.page{
	opacity: 0.5;
}
img.js-info-bubble-close {
	top: 7px !important;
	right: 7px !important;
}
form.iwj-job-indeed-loader{
	margin-bottom: 10px;
}
form.iwj-job-indeed-loader .iwjmb-field input[name="iwj_ide_query"]{
	height: 40px;
	border-color: rgba(51,51,51,0.05);
}
body form.iwj-job-indeed-loader .select2-container--default .select2-selection--single .select2-selection__arrow b{
	top: 20px;
}

/* ===== RTL ===== */

/* Jobs */
.rtl .iwj-find-jobs form .field-item, .iwj-find-jobs form .field-item-submit {
    float: right;
}
.rtl .iwj-find-jobs form .fields .field-item .field-content {
    margin: 0 0 0 15px;
}
.rtl .iwj-find-jobs form .field-item-submit button i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: block;
}
.rtl .job-info i {
    margin: 0 0 0 10px;
}
.rtl .job-info .job-type i {
    margin: 0 5px 0 0;
}
.rtl .iwj-items .iwj-item {
    border-right: none !important;
    border-left: 1px solid #f6f8f9;
}
.rtl .iwj-jobs-carousel .iwj-items .iwj-item:nth-child(3n) {
    border-left: none !important;
}
.rtl .iwj-featured-categories .category-item {
    float: right;
}
.rtl .iwj-featured-categories .category-item:nth-child(5n) {
    border-left: none !important;
}
.rtl .iwj-jobs.iwj-featured-jobs .iwj-item {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.rtl .iwj-jobs.iwj-featured-jobs .iwj-item:nth-child(2n) {
    border-left: none !important;
}
.rtl .iwj-employers-slider .owl-theme .owl-controls .owl-buttons div i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: block;
    position: relative;
    top: 2px;
}
.rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item {
    float: right;
}
.rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5n) {
    border-left: none !important;
}
.rtl .iwj-widget-candidates .owl-controls, .rtl .iwj-top-company-widget .owl-controls {
    left: 0;
    right: auto;
}
.rtl .iwj-widget-candidates.owl-theme .owl-controls .owl-buttons div.owl-next,
.rtl .iwj-top-company-widget .owl-theme .owl-controls .owl-buttons div.owl-next {
    float: right;
}
.rtl .jobs-layout-form form > div {
    float: right;
    margin: 0 0 10px 10px;
}
.rtl .jobs-layout-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin: 2px -5px 0 0;
}
.rtl .iwj-input-checkbox [type="checkbox"]:not(:checked) + label::before, .rtl .iwj-input-checkbox [type="checkbox"]:checked + label::before {
    right: 0;
    left: auto;
}
.rtl .sidebar-jobs .iwj-input-checkbox [type="checkbox"]:not(:checked) + label::after, .rtl .sidebar-jobs .iwj-input-checkbox [type="checkbox"]:checked + label::after {
    left: auto;
    right: 4px;
}
.rtl .sidebar-jobs .sidebar-job-1 ul li.iwj-input-checkbox label {
    padding: 0 30px 0 0;
}
.rtl .sidebar-jobs .sidebar-job-1 ul li span.iwj-count {
    float: left !important;
}
.rtl .iwj-input-checkbox [type="checkbox"]:not(:checked), .rtl .iwj-input-checkbox [type="checkbox"]:checked {
    right: -9999px;
    left: auto;
}
.rtl .iwj-find-jobs form .fields .field-item .select i {
    left: auto;
    right: 30px;
}
.rtl #iwjob-search input {
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}
.rtl .iwj-find-jobs .trending-keywords a {
    padding: 0 20px 0 0;
}
.rtl #iwjob-search button {
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    border-right: none;
    border-left: 1px #eeeeee solid;
}
.rtl .jobs-layout-form form .layout-switcher ul li {
    margin: 0 0 0 8px;
}
.rtl .jobs-layout-form form .layout-switcher ul li:last-child {
    margin-left: 0;
}
.rtl .iwj-widget-jobs .job-item .job-image {
    float: right;
    margin: 0 0 0 20px;
}
.rtl .iwj-find-jobs form .fields .field-item.key-word .input-select {
    padding: 0 32px 0 0;
}
.rtl .iwj-find-jobs form .fields .field-item i {
    right: 0;
    left: auto;
}
.rtl .iwj-jobs .job-item .job-image {
    float: right;
}
.rtl .iwj-jobs .job-item .job-info {
    margin: 0 80px 0 0;
    padding: 0 0 0 160px;
}
.rtl .iwj-jobs .job-item .job-info .job-type {
    right: auto;
    left: 0;
}
.rtl .iwj-listing .job-item .job-image {
    float: right;
    margin: 0 0 0 30px;
}
.rtl .iwj-listing .job-item .job-info {
    padding: 0 0 0 140px;
}
.rtl .iwj-candidates .iwj-listing .job-item .job-info {
    padding: 0;
}
.rtl .iwj-listing .job-item .job-info .job-type {
    left: 0;
    right: auto;
}
.rtl .iwj-listing .job-item .job-info .job-featured {
    margin: 0 0 10px 10px;
}
.rtl .open-filters {
    text-align: right;
}
.rtl .iwj-candicate-detail ul.time-line {
    padding: 0 40px 0 0;
}
.rtl .iwj-candicate-detail ul.time-line:before {
    left: auto;
    right: 0;
}
.rtl .iwj-candicate-detail ul.time-line li:before {
    left: auto;
    right: -45px;
}
.rtl .iwj-widget-information li i {
    margin: 0 0 0 10px;
    float: right;
}
.rtl .iwj-single-contact-form .iwj-contact-btn i,
.rtl .iwj-employer-detail .follow-button .follow i,
.rtl .iwj-candidate-info-top .detail-action-button .follow i,
.rtl .iwj-candicate-detail ul.time-line li .top span,
.rtl .iwj-candidate-info-top .view-infomation a i {
    margin: 0 0 0 15px;
}
.rtl .iwj-employer-detail .employer-info-top .employer-logo,
.rtl .iwj-candidate-info-top .candidate-logo {
    float: right;
}
.rtl .iwj-employer-detail .title-location,
.rtl .iwj-candidate-info-top .title-headline {
    padding: 0 0 0 180px;
}
.rtl .iwj-employer-detail .employer-info ul li i,
.rtl .iwj-candidate-info-top .candidate-info ul li i {
    float: right;
    margin: 0 0 0 10px;
}
.rtl .iwj-employer-detail .follow-button,
.rtl .iwj-candidate-info-top .detail-action-button {
    right: auto;
    left: 25px;
}
.rtl .iwj-widget-jobs .job-item .job-info {
    padding: 9px 15px 12px 0;
    margin: 0;
}
.rtl .iwj-widget-jobs .job-item:first-child .job-info {
    padding-top: 0;
}
.rtl .iwj-widget-jobs .job-item .job-info:before {
    left: auto;
    right: 0;
}
.rtl .iwj-single-widget .widget_title:after {
    left: auto;
    right: 0;
}
.rtl .job-item .job-image {
    float: right;
}
.rtl .job-item .job-info {
    margin: 0 80px 0 0;
    padding: 0 0 0 160px;
}
.rtl .job-item .job-info .job-type {
    position: absolute;
    right: auto;
    left: 0;
}
.rtl .job-item .iwj-featured {
    left: auto;
    right: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.rtl .iwj-categories.style2 .category-icon {
    float: right;
}
.rtl .iwj-categories.style2 .category-info {
    padding: 0 80px 0 0;
}
.rtl .iwj-jobs-carousel-v3.style3 .navigation-text-v2.owl-theme .owl-controls,
.rtl .iwj-employers-slider.style2 .navigation-text-v2.owl-theme .owl-controls {
    right: auto;
    left: -5px;
}
.rtl .navigation-text-v2.owl-theme .owl-controls .owl-buttons {
    padding: 0 45px 0 0;
}
.rtl .navigation-text-v2.owl-theme .owl-controls {
    right: auto;
    left: 20px;
}
.rtl .navigation-text-v2.owl-theme .owl-controls .owl-buttons:before {
    left: auto;
    right: 0;
}
.rtl .navigation-text-v2.owl-theme .owl-controls .owl-buttons div i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: block;
    position: relative;
    top: 2px;
}
.rtl .iwj-grid .job-item .job-info {
    margin: 0;
    padding: 0;
}
.rtl .iwj-grid .job-item .job-info .job-type {
    position: relative;
}
.rtl .iwj-alert-feed {
    right: auto;
    left: 30px;
}
.rtl .job-alert-btn i {
    margin-right: 0;
    margin-left: 7px;
}
.rtl .iw-job-detail .job-detail-info ul li i,
.rtl .iwj-job-widget-wrap .company-link a i,
.rtl .iw-job-detail .action-button a i {
    margin: 0 0 0 10px;
}
.rtl .iw-job-detail .action-button a.apply-job.apply-with-linkedin {
    margin-left: 10px;
    margin-right: 10px;
}
.rtl .iw-job-detail .action-button a.apply-job {
    margin-right: 0;
}
.rtl .iw-job-detail .post-share-title {
    float: right;
    margin: 7px 0 0 20px;
}
.rtl .iw-job-detail .post-share-buttons-inner a {
    float: right;
}
.rtl .iw-job-detail .job-detail-info ul li .left {
    float: right;
}
.rtl .iwj-job-items.style3 .job-image {
    margin-left: 0;
    margin-right: 35px;
}
.rtl .iwj-job-items.style3 .job-info {
    margin-right: 112px;
}
.rtl .iwj-job-items.style3 .job-info .job-company-time {
    right: auto;
    left: 0;
    text-align: left;
}
.rtl .iwj-job-items.style3 .job-info .info-company .job-type{
    position: static;
    display: inline-block;
    float: right;
}
.rtl .iwj-job-items.style3 .info-company > div {
    margin-right: 0;
    margin-left: 4px;
}

/* End Jobs */

/* Candidate */
.rtl .iwj-candidates.iwj-listing .candidate-image {
    float: right;
}
.rtl .iwj-candidates.iwj-listing .candidate-info {
    margin-left: 0;
    margin-right: 80px;
}
.rtl .iwj-candidates.iwj-listing .candidate-info i {
    margin: 0 0 0 10px;
}
.rtl .iwj-candicate-detail .skills ul li .scoring .line {
    left: auto;
    right: 0;
}
/* End Candidate */

/* Employer */
.rtl .iwj-employers .iwj-employer-item .employer-image {
    float: right;
    margin-right: 0;
    margin-left: 25px;
}
.rtl .iwj-employers .iwj-employer-item .employer-info {
    float: right;
    padding-left: 0;
    padding-right: 5px;
}
.rtl .employer-info .info-company i {
    margin: 0 0 0 10px;
}
.rtl .iwj-employer-review .iwj-review-item .review-avatar {
    float: right;
    margin-right: 0;
    margin-left: 30px;
}
.rtl .iwj-employer-review .iwj-review-item .employer-review-details {
    padding-left: 0;
    padding-right: 125px;
}
.rtl .employer-review-details .er-review-title .er-title-bold,
.rtl .employer-review-details .er-review-title .er-rate-box-wrap {
    float: right;
}
.rtl .iwj-employer-review .iwj-review-item .employer-review-details .er-review-title .er-title-bold {
    margin-right: 0;
    margin-left: 16px;
}
.rtl .iwj-employer-review .iwj-review-item .employer-review-details .er-review-title span.iwj-box-reviewed {
    margin-left: 0;
    margin-right: 12px;
}
.rtl .iwj-employer-review .iwj-review-item .employer-review-details .er-review-title span.iwj-edit-reviewed {
    right: auto;
    left: -16px;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.rtl .iwj-employer-review .form-review-employer h4.title:after {
    left: auto;
    right: 0;
}
.rtl .iwj-employer-review .form-review-employer .re-form-container .re-post-form-submit {
    padding-left: 0;
    padding-right: 35px;
}
.rtl .form-review-employer .re-form-container .re-post-form-submit span.re-text {
    float: right;
    margin-right: 0;
    margin-left: 20px;
}
.rtl .form-review-employer .re-form-container .re-post-form-submit span.re-text {
    float: right;
}
.rtl .form-review-employer .re-form-container .re-post-form-submit .iwj-cancel-review-btn,
.rtl .iwj-reply-author-content .iwj-cancel-edit-reply-btn {
    margin-left: 0;
    margin-right: 3px;
}
@media (max-width: 480px)  {
    .rtl .iwj-employer-review .iwj-review-item .review-avatar {
        float: none;
    }
    .rtl .iwj-employer-review .iwj-review-item .employer-review-details {
        padding: 0;
    }
}
/* End Employer */

/* Dashboard */
.rtl .iwj-dashboard-main, .rtl .iwj-overview .main-info {
    float: left;
}
.rtl .iwj-dashboard-sidebar, .rtl .iwj-overview .sidebar-info {
    float: right;
}
.rtl .iwj-overview .avatar {
    left: auto;
    right: 0;
}
.rtl .iwj-edit-profile i {
    margin-right: 0;
    margin-left: 5px;
}
.rtl .iwj-overview .info-bottom ul li .left {
    float: right;
}
.rtl .iwj-dashboard-sidebar .user-profile img {
    float: right;
}
.rtl .iwj-dashboard-sidebar .user-profile h4 {
    padding-left: 0;
    padding-right: 10px;
    float: right;
}
.rtl .iwj-overview .info-bottom ul li i {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .iwj-dashboard-menu ul li i {
    margin-right: 0;
    margin-left: 20px;
}
.rtl .iwj-dashboard-menu-mobile button .caret {
    margin-right: 10px;
    margin-left: 0;
}
.rtl .iwj-dashboard-menu-mobile .dropdown-menu {
    text-align: right;
}
.rtl .iwj-dashboard-menu-mobile .dropdown ul li i {
    margin-right: 0;
    margin-left: 5px;
}
.rtl .iwj-avatar-container .avatar-view {
    float: right;
}
.rtl .iwj-avatar-container .desc-change-image {
    margin-left: 0;
    margin-right: 150px;
}
.rtl .iwj-button-loader-respon-msg .iwj-button-loader {
    float: right;
}
.rtl .iwj-profile .select2-container--default {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .iwj-task-bar.job ul li {
    float: right;
}
.rtl .iwj-task-bar.job ul li:after {
    right: auto;
    left: 50%;
}
.rtl .iwj-btn-icon i {
    margin-right: 0;
    margin-left: 4px;
}
.rtl .iwj-dashboard-main .iwj-jobs .job-meta li {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .iwj-dashboard-main .iwj-jobs .job-meta li i {
    margin-right: 0;
    margin-left: 3px;
}
.rtl .candidate-meta > div {
    margin-right: 0;
    margin-left: 7px;
}
.rtl .candidate-meta .meta-title i {
    margin-right: 0;
    margin-left: 5px;
}
.rtl .iwj-search-form .search-button {
    right: auto;
    left: 0;
}
.rtl .modal-content form {
    text-align: right;
}
.rtl .iwj-popup-form .iwj-btn-action button {
    margin: 0 0 0 10px;
}
.rtl .iwj-cv-area label {
    padding-left: 0;
    padding-right: 25px;
}
.rtl .iwj-cv-area .custom-radio {
    left: auto;
    right: 0;
}
.rtl .job-aplication .application-item img {
    margin-left: 0;
    margin-right: -10px;
}
.rtl .job-aplication .applications {
    margin-left: 0;
    margin-right: 5px;
}
.rtl .iwj-search-form .search-box {
    float: right;
}
.rtl .iwj-search-form .select2-container {
    margin-left: 0;
    margin-right: 10px;
}
.rtl .iwj-follows .avatar, .rtl .iwj-save-jobs .avatar,
.rtl .application-item .avatar, .rtl .iwj-view-resums .avatar {
    float: right;
    margin-right: 0;
    margin-left: 15px;
}
.rtl .employer-meta > div {
    margin-right: 0;
    margin-left: 10px;
}
.rtl .employer-meta .meta-title i,
.rtl .job-meta .meta-title i {
    margin-right: 0;
    margin-left: 3px;
}
.rtl .save-job-item .job-meta > div {
    margin-right: 0;
    margin-left: 7px;
}
.rtl .application-meta > div,
.rtl .application-meta .meta-title i {
    margin-right: 0;
    margin-left: 5px;
}
.rtl .iwj-dashboard-main .iwj-vote-review h3.author-name {
    text-align: right;
}
.rtl .iwj-application-view-modal .modal-header .modal-title {
    text-align: right;
    padding-left: 0;
    padding-right: 118px;
}
.rtl .iwj-application-view-modal .print-button {
    left: 38px;
    right: auto;
}
.rtl .iwj-application-details .application-job-date {
    padding-left: 0;
    padding-right: 120px;
}
.rtl .iwj-application-details .application-job-date .application-job {
    margin-right: 0;
    margin-left: 15px;
}
.rtl .iwj-application-details .application-job-date i {
    margin-right: 0;
    margin-left: 5px;
}
.rtl .iwj-application-details .application-details > li > div {
    float: right;
}
.rtl .iwj-application-details .application-details > li .title::after {
    left: 30px;
    right: auto;
}
.rtl .iwj-application-details button.iwj-btn {
    float: right;
    margin-right: 0;
    margin-left: 15px;
}
.rtl .iwj-application-details button.iwj-btn i {
    padding-right: 0;
    padding-left: 10px;
    margin-right: 0;
    margin-left: 10px;
    border-right: none;
    border-left: 1px rgba(255, 255, 255, 0.05) solid;
}
/* End Dashboard */

/* Login And Register */
.rtl .iwj-form .iwj-field .iwj-input {
    padding-left: 0;
    padding-right: 40px;
}
.rtl .iwj-btn-full.iwj-btn-icon {
    text-align: right;
}
.rtl .iwj-login-form-popup .iwj-btn-icon i {
    margin-right: 0;
    margin-left: 15px;
    padding-right: 0;
    padding-left: 15px;
}
.rtl .iwj-btn-full.iwj-btn-icon i {
    border-right: none;
    border-left: 1px solid rgba(255,255,255, 0.1);
}
.rtl .iwj-login-form-popup .iwj-input i {
    left: auto;
    right: 5px;
}
/* End Login And Register */


/* ===== End RTL ===== */

/* ===== Responsive ===== */
@media (max-width: 1700px) {
    .iwj-overview .sidebar-info{
        width: 30%;
    }
    .iwj-overview .main-info{
        width: 70%;
    }
    .iwj-overview .avatar{
        clear: both;
        display: block;
    }
    .main-information .employer-contact {
        width: auto;
        margin-bottom: 20px;
    }
    .main-information .empl-info-jobs-listing {
        width: 100%;
    }
    .main-information .empl-info-jobs-listing .empl-info-jobs-item {
        height: auto;
    }
}
@media (max-width: 1366px)  {
	.iwj-overview .sidebar-info{
		width: 25%;
	}
	.iwj-overview .main-info{
		width: 75%;
	}
	.iwj-overview .info-top-wrap{
		padding: 50px;
	}
	.iwj-candicate-detail .resume-detail-info{
		padding: 0 50px;
	}
	.main-information .empl-box.employer-contact .avatar{
		width: 86px;
		height: 86px;
	}
	.main-information .empl-box.employer-contact .empl-detail-info {
		margin-left: 97px;
	}
	.iwj-overview .info-top-wrap.info-top-wrap-employer .main-information{
		display: block;
		text-align: center;
	}
	.main-information .empl-box.employer-contact{
		text-align: left;
	}
    .main-information .empl-box .empl-small-detail {
        width: 110px;
        height: 110px;
        padding: 10px 12px;
    }
    .main-information .empl-box .empl-small-detail h5 {
        font-size: 36px;
    }
    .main-information .empl-box .empl-small-detail span {
        font-size: 12px;
    }
    .iw-profile-content .iwj-employerdl-content .employer-detail-container {
        width: 100%;
        margin-bottom: 30px;
    }
}
@media (max-width: 1280px) {
	.iwj-overview .sidebar-info{
		width: 30%;
	}
	.iwj-overview .main-info{
		width: 70%;
	}
	.iwj-overview .avatar{
		clear: both;
		display: block;
	}
	.iwj-new-package .task-bar ul li, .iwj-make-featured .task-bar ul li, .iwj-task-bar.job ul li {
		width: 120px;
	}
}
@media (max-width: 1199px) {
    .iwj-verify-account .desc-form {
        padding: 0;
    }
    .main-information .empl-info-jobs-item .empl-box {
        padding: 20px 10px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .iwj-alert-feed.job {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        display: inline-block;
    }
}
@media (max-width: 1024px) {
	.iwj-overview .sidebar-info{
		width: 35%;
	}
	.iwj-overview .main-info{
		width: 65%;
	}
	.iwj-overview .info-top-wrap{
		padding: 40px 40px 30px;
	}
    .iwj-employer-detail .employer-detail-info, .iwj-employer-detail .iwj-open-position, .iwj-employer-detail .iwj-employer-review {
		padding: 0 40px;
	}
	.iwj-employer-detail .employer-detail-info > div{
		padding: 20px 0 40px;
	}

	.job-item .job-info{
		padding-right: 0;
		margin-left: 65px;
	}
	.rtl .job-item .job-info{
		padding-left: 0;
	}

	.job-item .job-info .job-type,
    .rtl .job-item .job-info .job-type,
	.iwj-job-items.style3 .job-info .job-company-time {
		position: relative;
		margin-top: 5px;
	}
	.iwj-job-items.style3 .job-info .job-company-time{
		text-align: left;
	}
}
@media (max-width: 991px) {
    /*.widget-area.sidebar-default, .iwj-sidebar-sticky {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        margin-top: 30px;
    }*/

	.iwj-jobs-carousel .job-item{
		padding: 30px;
	}

	.iw-item-info.style1 .description{
		width: 80%;
	}
    .iwj-employers-slider .clear {
        clear: none;
    }
    .iwj-employers-slider .employer-items .row > div:nth-child(odd) {
        clear: both !important;
    }
    .iwj-verify-account.iwj-form {
        padding: 50px 50px 0px;
    }
    .iwj-job-items.style3 .job-info {
        padding: 0 !important;
    }
    .iwj-job-items.style3 .job-info .job-company-time {
        text-align: left;
        padding: 0 15px;
    }
    .rtl .iwj-job-items.style3 .job-info .job-company-time {
        text-align: right;
        padding: 0 15px;
    }
	.iwj-overview .info-top-wrap.info-top-wrap-employer{
		background-size: auto;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
    .iwj-categories.style7 .category-icon {
        font-size: 50px;
        width: 80px;
    }
    .iwj-categories.style7 .category-info {
        padding-left: 90px;
    }
}
@media (max-width: 980px) {
    .iwj-find-jobs form .field-item, .iwj-find-jobs form .field-item-submit {
        width: 50% !important;
        padding: 0 8px;
    }
    .iwj-find-jobs form .fields .field-item .field-content {
        margin: 0;
    }
    .iwj-find-jobs .trending-keywords {
        padding: 0 8px 5px;
    }
    .iw-recent-resumes.iw-recent-resumes .recent-resume-item, .iwj-featured-categories .category-item {
        width: 33.3333%;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(3n+0),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3n+0) {
        border-right: none !important;
    }
    .rtl .iwj-featured-categories .iwj-items .iwj-item:nth-child(3n+0),
    .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3n+0) {
        border-left: none !important;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(5n+0),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5n+0) {
        border-right: 1px solid #f6f8f9 !important;
    }
    .rtl .iwj-featured-categories .iwj-items .iwj-item:nth-child(5n+0),
    .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5n+0) {
        border-right: none !important;
        border-left: 1px solid #f6f8f9 !important;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(4),
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(5),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(4),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5) {
        border-top: 1px solid #f6f8f9 !important;
    }

    .iwj-categories.style8 .item-category {
        width: 33.3333%;
    }
    .iwj-categories.style8 .item-category:nth-child(3n+0) {
        border-right: none !important;
    }
    .rtl .iwj-categories.style8 .item-category:nth-child(3n+0) {
        border-left: none !important;
    }
    .iwj-categories.style8 .item-category:nth-child(4n+0) {
        border-right: 1px solid #f1f1f1 !important;
    }
    .rtl .iwj-categories.style8 .item-category:nth-child(4n+0) {
        border-right: none !important;
        border-left: 1px solid #f1f1f1 !important;
    }
    .iwj-categories.style8 .item-category:nth-child(4) {
        border-top: 1px solid #f1f1f1 !important;
    }
    .iwj-content {
        width: 100%;
        float: none;
    }
    .iwj-sidebar-1 {
        width: 100%;
        float: none;
        padding: 0 15px;
    }
    .iwj-sidebar-2 {
        width: 100%;
    }
    .iwj-application-view-modal .modal-dialog {
        width: 100%;
    }
    .iwj-search-form .search-box, .iwj-search-form .select2-container {
        width: calc(50% - 5px) !important;
    }
    .iwj-search-form .select2-container {
        margin: 0 0 10px;
    }
    .iwj-search-form .search-box {
        margin-right: 10px;
    }
    .show-filter-mobile {
        display: block;
        cursor: pointer;
    }
    .contents-main, .main-content {
        position: relative;
    }
	body.open-filter .contents-main > .container .row{
		position: relative;
	}
	body.iwj-job-taxonomy-page .iwj-sidebar-1, body.iwj-jobs-page .iwj-sidebar-1, body.iwj-employers-page .iwj-sidebar-1, body.iwj-candidates-page .iwj-sidebar-1{
		position: absolute !important;
		width: calc(100% - 30px);
		top: 0;
		left: -150%;
		-webkit-transition: left 0.3s linear;
		transition: left 0.3s linear;
		z-index: 9;
		padding: 0;
	}
	body.iwj-job-taxonomy-page .iwj-sidebar-1.open-filter, body.iwj-jobs-page .iwj-sidebar-1.open-filter, body.iwj-employers-page .iwj-sidebar-1.open-filter, body.iwj-candidates-page .iwj-sidebar-1.open-filter{
        left: 15px;
    }
	.iwj-dashboard-sidebar{
		display: none;
	}
	.iwj-dashboard-main{
		width: 100%;
	}
	.iwj-dashboard-menu-mobile{
		display: block;
	}
	.iwj-dashboard-main-inner{
		min-height: auto;
	}

	.iwj-find-jobs form .field-item-submit button{
		width: 100%;
	}

	.iwj-categories.style2 .item-category{
		padding: 20px;
	}
	.iwj-categories.style2 .category-info{
		padding-left: 50px;
	}
	.main-information .empl-box .empl-small-detail a{
		font-size: 12px;
	}
}

@media (max-width: 767px) {
    .iwj-featured-jobs .iwj-items .iwj-item,
    .iwj-jobs-carousel .iwj-items .iwj-item {
        border-right: none !important;
    }
    .rtl .iwj-featured-jobs .iwj-items .iwj-item,
    .rtl .iwj-jobs-carousel .iwj-items .iwj-item {
        border-left: none !important;
    }
    .iwj-jobs-carousel .iwj-items .iwj-item:nth-child(2),
    .iwj-jobs-carousel .iwj-items .iwj-item:nth-child(3) {
        border-top: 1px solid #f6f8f9 !important;
    }
    .iwj-featured-jobs .iwj-items .iwj-item:nth-child(2) {
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    .iwj-dashboard-main table tr th {
        padding-left: 4px;
        padding-right: 4px;
    }
    .iwj-dashboard-main table tr td,
    .iwj-dashboard-main .iwj-order-details table tbody tr th,
    .iwj-dashboard-main .iwj-order-details table tfoot tr th {
        padding: 15px 4px !important;
    }
    .iwj-dashboard-main .iwj-jobs .job-title h3.title {
        font-size: 11px;
        text-transform: none;
        line-height: 20px;
    }
    .iwj-new-package .task-bar ul li, .iwj-make-featured .task-bar ul li, .iwj-task-bar.job ul li {
        width: auto;
        padding: 0 15px 15px;
    }
    .iwj-task-bar.job ul li:after, .iwj-task-bar.job ul li:before {
        display: none;
    }
    .iwj-new-package .task-bar ul li.active .desc, .iwj-make-featured .task-bar ul li.active .desc {
        font-size: 11px;
    }
    .iwj-table-overflow-x {
        padding-bottom: 10px;
        margin-bottom: 20px;
        overflow-x: auto;
    }
    .iwj-table-overflow-x table {
        min-width: 600px;
    }
    .iwj-order-details .iwj-table-overflow-x table {
        min-width: 350px;
    }
    .iwj-dashboard-main .iwj-menu-action {
        right: -4px;
        left: auto;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .iwj-dashboard-main .iwj-menu-action:before {
        right: 25px;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .rtl .iwj-dashboard-main .iwj-menu-action {
        right: auto;
        left: -4px;
    }
    .rtl .iwj-dashboard-main .iwj-menu-action:before {
        right: auto;
        left: 25px;
    }
    .iw-job-detail .job-detail-info ul li {
        padding: 35px 30px;
    }
    .iw-job-detail .job-detail-about {
        padding: 10px 30px 0;
    }
    .iw-job-detail .job-related {
        padding: 75px 30px 50px;
    }
    .iw-job-detail .action-button, .iw-job-detail .post-social-share {
        padding: 30px;
    }
    .iwj-candicate-detail .resume-detail-info, .iwj-employer-detail .employer-detail-info {
        padding: 0 30px;
    }
    .iwj-employer-detail .iwj-open-position {
        padding: 55px 30px;
    }
    .iwj-candicate-widget-wrap {
        padding: 45px 30px 50px;
    }
    .iwj-profile .info-top-wrap {
        padding: 50px 30px;
    }

	.iwj-form{
		padding: 45px;
	}
	.iwj-btn-icon i{
		padding-right: 10px;
		margin-right: 10px;
	}
	.iwj-main-block{
		padding: 35px;
	}
	.iwj-dashboard-sidebar{
		padding: 35px;
	}
	.iwj-task-bar.job, .iwj-new-package .task-bar, .iwj-make-featured .task-bar{
		display: none;
	}
	.iwj-jobs .job-title{
		min-width: 160px;
	}
	.iwj-orders th{
		min-width: 90px;
	}
    .iw-work-steps .iw-work-step.style1:before,
    .iw-work-steps .iw-work-step.style2:before {
        display: none;
    }
    .iwj-pricing-tables .pricing-item.featured-item {
        margin-top: 0;
    }
    .iwj-pricing-tables .pricing-item .item-bottom {
        -webkit-box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
        box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
    }
	.iw-video-html.style1 .video-poster{
		max-height: 450px;
	}

	.iwj-find-jobs form{
		width: 100%;
	}
    .iwj-alert-feed, .rtl .iwj-alert-feed {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        display: inline-block;
    }
	.iwj-employerdl-content .employer-detail-container:first-child{
		margin-bottom: 30px;
	}
    .main-information .empl-info-jobs-listing .empl-info-jobs-item {
        width: 50%;
        margin-bottom: 20px;
    }
    .iw-profile-content .iwj-employerdl-content .employer-detail-container {
        margin-bottom: 0;
    }
    .iw-profile-content .iwj-employerdl-content .iwj-table-overflow-x {
        padding-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .iw-recent-resumes.iw-recent-resumes .recent-resume-item, .iwj-featured-categories .category-item {
        width: 50%;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(3n+0),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3n+0) {
        border-right: none !important;
    }
    .rtl .iwj-featured-categories .iwj-items .iwj-item:nth-child(3n+0),
    .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3n+0) {
        border-right: none !important;
        border-left: none !important;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(2n+0),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(2n+0) {
        border-right: none !important;
    }
    .rtl .iwj-featured-categories .iwj-items .iwj-item:nth-child(2n+0),
    .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(2n+0) {
        border-left: none !important;
    }
    .rtl .iwj-featured-categories .iwj-items .iwj-item:nth-child(3),
    .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3) {
        border-left: 1px solid #f6f8f9 !important;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(3),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3) {
        border-top: 1px solid #f6f8f9 !important;
    }
    .iwj-categories.style8 .item-category {
        width: 50%;
    }
    .iwj-categories.style8 .item-category:nth-child(3n+0) {
        border-right: 1px solid #f6f8f9 !important;
    }
    .rtl .iwj-categories.style8 .item-category:nth-child(3n+0) {
        border-right: none !important;
        border-left: 1px solid #f1f1f1 !important;
    }
    .iwj-categories.style8 .item-category:nth-child(2n+0) {
        border-right: none !important;
    }
    .rtl .iwj-categories.style8 .item-category:nth-child(2n+0) {
        border-left: none !important;
    }
    .iwj-categories.style8 .item-category:nth-child(3) {
        border-top: 1px solid #f1f1f1 !important;
    }
    .iwj-search-form .search-box, .iwj-search-form .select2-container, .add-new-package a {
        width: 100% !important;
        margin: 0 0 10px;
    }
    .iwj-search-form .search-box {
        max-width: none;
    }
    .iw-job-detail .job-detail-info ul li {
        width: 100%;
        border-right: none;
    }
    .iwj-candicate-detail .skills ul li .scoring {
        width: 250px;
    }
    .iwj-profile .sidebar-info, .iwj-profile .main-info {
        float: none;
        width: 100%;
    }
    .iwj-profile .sidebar-info {
        text-align: center;
        margin-bottom: 30px;
    }
    .iwj-profile .avatar {
        display: block;
        margin: 0 auto;
    }
    .iwj-profile .info-top {
        text-align: center;
    }
    .iwj-job-widget-wrap .info-bottom {
        padding: 5px 15px 0;
    }
	.iw-contact-form-7.contact-map{
		padding: 20px;
	}

	.iwj-dashboard-main-inner{
		padding: 25px;
	}
    .iwj-employer-detail .employer-info-top .employer-logo,
    .iwj-candidate-info-top .candidate-logo,
    .rtl .iwj-employer-detail .employer-info-top .employer-logo,
    .rtl .iwj-candidate-info-top .candidate-logo {
        float: none !important;
        margin: 0 0 30px;
    }
    .iwj-employer-detail .title-location,
    .iwj-candidate-info-top .title-headline,
    .rtl .iwj-employer-detail .title-location,
    .rtl .iwj-candidate-info-top .title-headline {
        padding: 0;
    }
    .iwj-verify-account.iwj-form {
        padding: 50px 0 0;
    }
    .iwj-verify-account.iwj-form .confirmation-icon {
        width: 120px;
        height: 120px;
        line-height: 120px;
        font-size: 90px;
    }
    .iwj-employer-detail .iwj-employer-review .form-review-employer {
        padding: 25px 25px 50px 25px;
    }
    .iwj-employer-review .form-review-employer .re-form-container {
        display: block;
    }
    .iwj-employer-review .form-review-employer .re-form-container .rve-avatar {
        text-align: center;
    }
    .iwj-employer-review .form-review-employer .re-form-container .re-post-form-submit {
        padding: 0;
        margin-top: 25px;
    }
    .iwj-employer-review .iwj-box-each-vote,
    #iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-box-each-vote,
    .iwj-user-update-review .iwj-box-each-vote {
        min-width: 250px;
        padding: 5px 10px 5px;
    }
    .iwj-employer-review .iwj-box-each-vote .iwj-line-tc-vote {
        margin-bottom: 5px;
    }
    .iwj-employer-review .iwj-box-each-vote .line-tc-star > i {
        font-size: 16px;
        padding: 0 2px;
    }
    .iwj-employer-review .form-review-employer .iwj-count-stars .iwj-box-each-vote .rating-container .star {
        margin: 0 2px;
    }
    .iwj-employer-review .form-review-employer .iwj-count-stars .iwj-box-each-vote i {
        font-size: 16px;
    }
    .iwj-change-password-btn {
        margin: 0 5px 10px 0;
    }
    .iwj-delete-account-btn {
        float: none;
    }
	.iwj-employer-review .iwj-review-item .employer-review-details .iwj-author-reply{
		display: inline-block;
	}
    .iwj-candidate-info-top .info-inner {
        width: auto;
    }
}

@media (max-width: 539px) {
    .iwj-pricing-tables .owl-carousel .owl-wrapper-outer {
        padding-top: 0;
    }
}

@media (max-width: 480px) {

    .iwj-main-block{
        padding: 35px 20px;
    }
    body.rtl .iwj-featured-categories .iwj-items .iwj-item,
    body.rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item,
    .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(3),
    .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5n) {
        border-left: none !important;
    }
    .iwj-find-jobs form .field-item, .iwj-find-jobs form .field-item-submit {
        width: 100% !important;
    }
    .iw-tabs .iw-tab-item {
        padding: 7px 20px;
    }
    .iwj-jobs .job-item .job-info .job-type {
        margin-top: 10px;
        position: relative;
        right: auto;
        top: auto;
    }
    .iwj-jobs .job-item .job-info {
        padding-right: 0;
    }
    .iwj-featured-categories .category-item, .iw-recent-resumes.shortcode .iwj-items .iwj-item,
    .iwj-categories.style8 .item-category {
        width: 100%;
    }
    .iwj-featured-categories .iwj-items .iwj-item, .iw-recent-resumes.shortcode .iwj-items .iwj-item,
    .iwj-categories.style8 .item-category {
        border-right: none !important;
    }
    .rtl .iwj-featured-categories .iwj-items .iwj-item, .rtl .iw-recent-resumes.shortcode .iwj-items .iwj-item,
    .iwj-categories.style8 .item-category {
        border-left: none !important;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(2n+0),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(2n+0) {
        border-top: 1px solid #f6f8f9 !important;
    }
    .iwj-categories.style8 .item-category:nth-child(2n+0) {
        border-top: 1px solid #f1f1f1 !important;
    }
    .iwj-login-form-popup .iw-tab-item {
        font-size: 14px;
        padding: 0 30px;
    }
    .iwj-login-form-popup .iwj-form {
        padding: 50px 20px;
    }
    .iwj-find-jobs form .fields .field-item .select2 {
        width: 100% !important;
    }
    .iwj-grid .grid-content, .iwj-employers.iwj-grid .grid-content {
        width: 100%;
    }
    .application-item .avatar {
        float: none;
        margin: 0 0 5px;
    }
    .iwj-new-package .task-bar ul li, .iwj-make-featured .task-bar ul li, .iwj-task-bar.job ul li {
        width: 100%;
    }
    .iwj-listing .job-item .job-info {
        padding-right: 0;
    }
    .iw-job-detail .job-related {
        padding: 75px 15px 50px;
    }
    .iwj-listing .job-item .job-info .job-type {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 5px;
    }
    .iwj-listing .job-item .job-image {
        margin-right: 15px;
    }
    .iwj-job-widget-wrap .info-top {
        padding: 0 0 35px;
    }
    .iwj-job-widget-wrap .iwj-title {
        font-size: 25px;
    }
    .iwj-job-widget-wrap .info-bottom {
        padding: 15px 0 0;
    }
    .iw-recent-resumes.iw-recent-resumes .recent-resume-item, .iwj-featured-categories .category-item {
        width: 100%;
    }
    .iw-recent-resumes.iw-recent-resumes .iwj-items .iwj-item {
        border: none;
    }
    .iwj-candicate-detail .resume-detail-info {
        padding: 0 15px;
    }
    .iwj-candicate-widget-wrap {
        padding: 45px 15px 50px;
    }
    .iwj-gallery .image-list a {
        width: 50%;
    }
    .iwj-view-resume-form ul li .package-title {
        min-width: auto;
        margin-right: 15px;
    }
	.iwj-block {
		padding: 20px;
	}
    .rtl .iwj-view-resume-form ul li .package-title {
        margin: 0 0 0 15px;
    }
    .iwj-jobs-carousel .job-item .job-info {
        padding: 0;
    }
    .iwj-jobs-carousel .job-item .job-info .job-type {
        position: relative;
        right: auto;
        top: auto;
    }

	.iwj-magic-line p{
		padding: 3px 25px;
	}

	.iwj-categories.style1 .item-category{
		width: 150px;
		height: 150px;
		padding-top: 18px;
	}

	.iwj-categories.style1 .item-category.all-categories .item-category-inner{
		height: 122px;
		width: 122px;
		line-height: 122px;
	}
	.iwj-categories.style1 .item-category.all-categories .item-category-inner .category-title{
		height: 122px;
		line-height: 122px;
	}

	.iwj-employers-slider .employer-item{
		padding: 25px 10px 30px;
	}

	.iwj-find-jobs form .field-item-submit button{
		height: 87%;
	}

	.iw-job-detail .action-button .button > a, .iw-job-detail .action-button .iwj-button-loader > a{
		min-width: 140px;
	}
    .iwj-register-form-popup .iwj-form,
    .iwj-register-form.iwj-form,
    .iwj-login-form-popup .iwj-form,
    .iwj-login-form.iwj-form {
        padding-left: 15px;
        padding-right: 15px;
    }
    .iwj-jobs.iwj-grid .grid-content {
        width: 100%;
        padding: 0 !important;
    }
	.iwj-employers.iwj-grid .grid-content {
        padding: 0 !important;
		width: 100%;
	}
	.iwj-candidates.iwj-grid .grid-content {
		padding: 0 !important;
		width: 100%;
    }
    .iwj-employer-detail .employer-info-top .info-top,
    .iwj-candidate-info-top .info-top {
        padding: 35px 15px 53px;
    }
    .iwj-employer-detail .follow-button,
    .iwj-candidate-info-top .detail-action-button,
    .rtl .iwj-employer-detail .follow-button,
    .rtl .iwj-candidate-info-top .detail-action-button {
        position: relative;
        top: auto;
        right: auto !important;
        left: auto !important;
        margin-top: 30px;
    }
    .w-pagination .job-alert-btn {
        float: none;
    }
    .iwjob-ajax-pagination.pagination-main {
        float: none;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(5n+0),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(5n+0) {
        border-right: none !important;
    }
	.iwj-employer-review .iwj-review-item .review-avatar {
		float: none;
		margin-bottom: 15px;
	}
	.iwj-employer-review .iwj-review-item .employer-review-details{
		padding-left: 0;
	}
    .iwj-verify-account .iwj-change-email-form .iwj-field,
    .iwj-verify-account .iwj-button-loader {
        float: none;
        width: 100%;
    }
    .form-review-employer .re-form-container .re-post-form-submit .iwj-button-loader button {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .iwj-job-items.style3 .job-image {
        position: relative;
        float: none !important;
        margin: 20px auto !important;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .iwj-job-items.style3 .job-save-left {
        position: relative;
        text-align: center;
        display: block;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .iwj-job-items.style3 .job-info {
        margin-left: 0;
    }
    .rtl .iwj-job-items.style3 .job-info {
        margin-right: 0;
    }
}

@media (max-width: 460px) {
    .iw-recent-resumes.iwj-candidates-grid .candidate-item,
    .main-information .empl-info-jobs-listing .empl-info-jobs-item,
    .main-information .employer-contact {
        width: 100%;
    }
    .main-information .employer-contact div.avatar {
        float: none;
        margin-bottom: 10px;
    }
    .main-information .employer-contact .empl-detail-info {
        margin: 0;
    }
}
@media (max-width: 360px) {
    .iwj-jobs .job-item .job-info .info-company > span {
        margin: 0;
        display: block;
    }
    .iw-job-detail .job-detail-info ul li {
        padding: 35px 15px;
    }
    .iw-job-detail .job-detail-about {
        padding: 10px 15px 0;
    }
    .iw-job-detail .action-button, .iw-job-detail .post-social-share {
        padding: 30px 15px;
    }
    .iw-recent-resumes.iw-recent-resumes .row > div {
        padding: 0 15px;
    }
    .iwj-candicate-detail .skills ul, .iwj-gallery .image-list, .iwj-employer-detail .employer-detail-info .iwj-employerdl-des .content {
        padding: 0;
    }
    .iwj-candicate-detail ul.time-line {
        padding: 0 0 0 40px;
    }
    .iwj-job-widget-wrap .iwj-title, .iwj-employer-detail .iwj-employer-widget-wrap .candidate-name {
        font-size: 25px;
    }
	.iwj-select-image-button{
		margin: 0;
		float: left;
		clear: both;
		margin-top: 5px;
	}
    .employer-review-details .er-review-title .er-title-bold {
        float: none;
        display: block;
    }
}
/* ===== End Responsive ===== */

/*======= ReCaptCha =======*/

.g-recaptcha {
	padding-bottom: 20px;
}

/*======= Review =======*/
.iwj-vote-review .avatar{
	max-width: 50px;
	float: left;
	display: block;
	margin-right: 10px;
}
.iwj-vote-review .avatar img{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.iwj-vote-review h3.author-name{
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: left;
	margin: 0;
}
#iwj-confirm-reply-review textarea,#iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-cdd-rev-field input,#iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-cdd-rev-field textarea{
	max-width: 100%;
	width: 100%;
	border: 1px solid #F1F1F1;
	padding: 3px 8px;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
#iwj-confirm-reply-review textarea:hover,#iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-cdd-rev-field input:hover,#iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-cdd-rev-field textarea:hover{
	border-color: #333333;
}
#iwj-confirm-edit-review .modal-body{
	clear: both;
	float: left;
	width: 100%;
}
#iwj-confirm-edit-review .modal-footer{
	clear: both;
}
#iwj-confirm-edit-review .iwj-candidate-rev-e{
	float: left;
	clear: both;
	display: block;
	width: 100%;
}
#iwj-confirm-edit-review .iwj-candidate-rev-e .re-post-form-submit{
	display: inline-block;
}
#iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-cdd-rev-field input,#iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-cdd-rev-field textarea{
	width: 100%;
}
#iwj-confirm-edit-review .iwj-candidate-rev-e .re-post-form-submit > span{
	float: left;
}
.re-post-form-submit > span.iwj-count-stars{
	margin-left: 15px;
	position: relative;
	cursor: pointer;
	display: inline-block;
}
.re-post-form-submit > span.iwj-count-stars .line-tc-star .caption{
	display: none !important;
}
#iwj-confirm-edit-review .iwj-candidate-rev-e .iwj-box-each-vote .iwj-line-tc-vote{
	float: left;
	width: 100%;
}
.iwj-user-update-review .re-post-form-submit .iwj-count-stars i{
	padding: 0 1px;
	speak: none;
}

.iwj-button-loader-respon-msg{
	margin-top: 25px;
}
.iwj-button-loader-respon-msg .iwj-button-loader{
	float: left;
	margin-top: 0;
}
.iwj-button-loader-respon-msg .iwj-respon-msg{
	float: left;
	margin: 8px 0 0 20px;
}
.iwj-button-loader-respon-msg.btn-right .iwj-button-loader{
	float: right;
}
.iwj-button-loader-respon-msg.btn-right .iwj-respon-msg{
	float: right;
	margin: 8px 20px 0 0;

}
.iwj-button-loader-respon-msg .iwj-respon-msg .alert{
	padding: 0;
	margin: 0;
	border: none;
	background: none;
}
.iwj-alert-box{
	background: #d2daef;
	border-color: #8a97b9;
	border-left: 3px solid #2980b9;
	padding: 15px;
}