/*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*/

/*equal row*/
.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.row-flex-wrap{
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
/*End equal row*/

/*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{
    background: #2980b9;
    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{
    background: #2980b9;
    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;
}
/*end form*/

/*Login Page*/
.iwj-login-form .lost-password{
    margin-top: 10px;
}
.iwj-login-form .iwj-divider,
.iwj-register-form .iwj-divider{
    margin-top: 45px;
}
.iwj-login-form .social-login,
.iwj-register-form .social-login{
    margin-top: 35px;
}
.iwj-login-form .social-login > div,
.iwj-register-form .social-login > div {
    margin-bottom: 30px;
}
.iwj-login-form-popup .iwj-login-form .social-login > div,
.iwj-register-form-popup .iwj-register-form .social-login > div {
    margin-bottom: 15px;
}
.iwj-login-form .register-account{
    margin-top: 20px;
}
.iwj-login-form .social-login .social-login-facebook,
.iwj-register-form .social-login .social-login-facebook {
    background: #3B5998;
}
.iwj-login-form .social-login .social-login-google,
.iwj-register-form .social-login .social-login-google {
    background: #DB4437;
}
.iwj-login-form .social-login .social-login-twitter,
.iwj-register-form .social-login .social-login-twitter {
    background: #0084B4;
}
.iwj-login-form .social-login .social-login-linkedin,
.iwj-register-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;
    list-style: none;
}
.iwj-dashboard-menu ul li:last-child {
    border: none;
}
.iwj-dashboard-menu ul li a, .entry-content .iwj-dashboard-menu a:visited{
    text-transform: uppercase;
    color: #fff;
}
.iwj-dashboard-menu ul li i{
    display: inline-block;
    color: #ccc;
    width: 35px;
    font-size: 20px;
    position: relative;
    top: 2px;
}
.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;
    text-align: left;
}
.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;
}
.gdpr_profile-area .iwjmb-field.iwjmb-checkbox-wrapper{
    display: flex;
}
.gdpr_profile-area .iwjmb-field.iwjmb-checkbox-wrapper .iwjmb-input{
    order: 1;
}
.gdpr_profile-area .iwjmb-field.iwjmb-checkbox-wrapper .iwjmb-label{
    order: 2;
}
/* 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;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
/* 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 ul.select2-selection__rendered li.select2-search.select2-search--inline {
    margin: 0;
}
.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;
}

.iwj-alert-feed .iwj-feed {
    margin-left: 10px;
    font-size: 13px;
}

.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;
    background: #2980b9;
}
.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:not(.iwj-style-match-height) .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;
}
.job-info.no-logo {
    margin: 0 !important;
}
.iwj-jobs-style.style2 .iwj-jobs .job-item .iwj-featured{
    border-radius: 0;
    -webkit-border-radius: 0;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item {
    display: table;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    padding: 0;
    border-bottom: 1px #ededed solid;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 155px;
    background: #ededed;
    z-index: 9;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-content-wrap {
    margin-left: 155px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-image{
    border-radius: 0;
    margin: 0;
    padding: 25px 15px 25px;
    float: left;
    max-width: none;
    text-align: center;
    width: 155px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-image img {
    max-width: 75px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-image .company h6 {
    font-size: 12px;
    font-weight: 600;
    margin: 15px 0 0;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info, .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item:last-child .job-info{
    padding: 30px 180px 30px 25px;
    position: relative;
    color: #999999;
    margin: 0;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info .job-type {
    position: absolute;
    right: 25px;
    top: 25px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info .info-company div{
    display: inline-block;
    padding-right: 10px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-skill {
    display: block;
    padding: 8px 25px;
    border-top: 1px solid #ededed;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-skill a{
    color: rgb(153,153,153);
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-skill a{
    color: rgb(153,153,153);
    padding-right: 20px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-skill a i{
    padding-right: 10px;
}

/* 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: 45px;
    margin-top: 0;
    margin-bottom: 20px;
}
.iwj-job-items.style3 .job-info{
    margin-left: 135px;
}
.iwj-job-items.style3 .job-info.no-logo {
    margin-left: 60px !important;
}
.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 {
    display: table;
    width: 100%;
}
.iwj-job-items.style3 .info-company > div{
    display: inline-block;
    float: left;
    margin-right: 7px;
    margin-bottom: 6px;
    height: 28px;
    line-height: 26px;
    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;
	display: initial;
}
.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-style.style2 .iwj-grid,
.iwj-jobs-style.style2 .iwj-listing {
    margin-bottom: 0;
}
.iwj-jobs.iwj-style-match-height .iwj-job-items {
    margin: 0 -15px;
}
.iwj-jobs.iwj-style-match-height .grid-content {
    width: 50%;
    float: left;
    padding: 0 15px;
}
.iwj-jobs.iwj-style-match-height .grid-content .job-item {
    margin-bottom: 30px;
}
.iwj-jobs.iwj-grid .iwj-job-items-margin {
    margin: 0 -10px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .iwj-job-items-margin {
    margin: 0;
}
.iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
    width: 50%;
    float: left;
}
.iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
    padding: 0 10px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
    padding: 0;
}
.iwj-jobs-style.column-3 .iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
    width: 33.33333333%;
}
.iwj-jobs-style.column-4 .iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
    width: 25%;
}
.iwj-grid .job-item {
    padding: 25px 30px 35px;
    position: relative;
    border-bottom: none;
}
.iwj-grid .job-item .job-info{
    margin: 0;
    padding: 0;
}
.iwj-jobs .job-item .iwj-job-page {
    display: none;
}
.iwj-jobs-style.style2 .iwj-jobs .job-item .iwj-job-page {
    display: block;
}
.iwj-grid .job-item .job-info .job-featured{
    display: none;
}
.iwj-grid .job-item .job-info .job-type {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
}
.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 top left;
    background-size: 52px 52px;
}
.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;
}

/* style 2 */
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item {
    text-align: center;
    margin: 0;
    border-bottom: 1px #f5f5f5 solid;
    border-right: 1px #f5f5f5 solid;
    padding-bottom: 30px;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item:hover {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.iwj-jobs-style.style2.column-2 .iwj-jobs.iwj-grid .grid-content:nth-child(2n) .job-item {
    border-right: none;
}
.iwj-jobs-style.style2.column-3 .iwj-jobs.iwj-grid .grid-content:nth-child(3n) .job-item {
    border-right: none;
}
.iwj-jobs-style.style2.column-4 .iwj-jobs.iwj-grid .grid-content:nth-child(4n) .job-item {
    border-right: none;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-image {
    display: block !important;
    float: none;
    max-width: none;
    margin-bottom: 15px;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,40px,0);
    transform: translate3d(0,40px,0);
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item:hover .job-image {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-image .img-avatar {
    height: 96px !important;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .company h6 {
    font-size: 12px;
    font-weight: 600;
    margin: 20px 0 5px;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item:hover .company h6 {
    opacity: 1;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-title a {
    color: #777777;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item:hover .job-title a {
    color: #f16e8e;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-info .info-company {
    margin-bottom: 10px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-info .info-company > div {
    display: inline-block;
    margin-left: 12px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-info .info-company .address {
    margin-left: 0;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-info .info-company i {
    width: auto;
    margin-right: 5px;
}
.iwj-jobs-style.style2 .iwj-jobs .info-company .company {
    display: none !important;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-info .job-type {
    display: table;
    width: auto;
    margin: 0 auto;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-skill {
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 100%;
    height: auto;
    background: transparent;
    padding: 15px 35px 15px;
    opacity: 0;
    -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    -webkit-transition: -webkit-transform 0.3s ease 0s, opacity 0.3s ease 0s;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
    color: #ffffff;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item:hover .job-skill {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 1;
    z-index: 9;
    background: #ffffff;
    color: #999999;
    border-top: 1px #f5f5f5 solid;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-skill .skills {
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-skill a {
    display: inline-block;
    color: #ffffff;
    margin-left: 20px;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item:hover .job-skill a {
    color: #999999;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item .job-skill a:first-child {
    margin-left: 0;
}
.iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item:hover .job-skill a i {
    margin-right: 10px;
}
/* End Grid */

/*===== Jobs Detail =====*/
/* Style 1 */
.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;
    line-height: 39px;
    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;
    border: 2px solid;
}
.iw-job-detail .action-button .button > a:hover, .iw-job-detail .action-button .iwj-button-loader > a:hover {
    -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 .action-button a.iwj-save-job{
    border: 2px solid;
}
.iw-job-detail .action-button a.iwj-save-job,
.iw-job-detail .action-button .iwj-button-loader > a.iwj-save-job{
    min-width: unset;
    border-color: #F16E8E;
}
.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 a.iwj-save-job i{
    margin: 0;
    color: #F16E8E;
}
.iw-job-detail .action-button a.iwj-save-job.saved i{
    color: #ffffff;
}
.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;
    border-color: #16A085;
}
.iw-job-detail .action-button a.apply-job.applied {
    background-color: #aaa !important;
    border-color: #aaa;
}
.iw-job-detail .action-button a.apply-job.apply-with-linkedin {
    margin-right: 10px;
    background-color: #0077B5;
    border-color: #0077B5;
    min-width: unset;
}
.iw-job-detail .action-button a.apply-job.apply-with-linkedin:hover {
    background-color: #0077B5;
    border-color: #0077B5;
}
.iw-job-detail .action-button a.apply-job.apply-with-linkedin i,
.iw-job-detail .action-button a.apply-job.apply-with-facebook i{
    margin: 0;
}
.iw-job-detail .action-button a.apply-job.apply-with-facebook{
    background-color: #3b5999;
    border-color: #3b5999;
    min-width: unset;
}
.iw-job-detail a.save-job.saved {
    background-color: #F16E8E;
    border-color: #F16E8E;
    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.v2 .action-button, .iw-job-detail.v2 .post-social-share{
    padding: 30px 55px;
}
.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;
}
.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-button-loader .action-button.iwj-save-resume.saved span {
    background: none !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,
.iwj-single-contact-form .iwjmb-gdpr__candidate textarea,
.iwj-single-contact-form .iwjmb-gdpr__employer textarea{
    width: 100%;
    border: 1px solid #F1F1F1;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 5px 26px;
}
.iwj-single-contact-form .iwjmb-input textarea,
.iwj-single-contact-form .iwjmb-gdpr__candidate textarea,
.iwj-single-contact-form .iwjmb-gdpr__employer textarea{
    padding: 10px 26px;
}
.iwj-single-contact-form .iwj-contact-form .iwjmb-field {
    margin-bottom: 15px;
}
.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 .iwjmb-gdpr__candidate textarea,
.iwj-single-contact-form .iwjmb-gdpr__employer textarea{
    resize: vertical;
}
.iwj-single-contact-form .iwjmb-gdpr__candidate label.lb_terms_and_services input,
.iwj-single-contact-form .iwjmb-gdpr__employer label.lb_terms_and_services input{
    margin-right: 4px;
}
.iwj-single-contact-form .iwj-contact-btn {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #33aa58;
    -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;
}
.iwj-job-by-employer .job-title{
    font-size: 16px;
    font-weight: 500;
}
.iwj-job-by-employer .job-title a{
    color: #777777;
}
.iwj-job-by-employer .job-info{
    padding-top: 14px;
    margin-bottom: 24px;
    border-top: 1px solid rgba(237, 237, 237, 0.4);
}
.iwj-job-by-employer .job-info:last-of-type{
    margin-bottom: 0;
}
.iwj-job-by-employer .job-address-time{
    font-size: 13px;
}
.iwj-job-by-employer .job-address-time i{
    margin-right: 7px;
    color: #999999;
    font-size: 12px;
}
.iwj-job-by-employer .job-address-time .address i{
    color: #f16e8e;
}
.iwj-job-by-employer .job-address-time a{
    color: #999999;
}
.iwj-job-by-employer .job-type{
    margin-top: 8px;
}
.iwj-job-by-employer .job-type a.type-name{
    display: inline-block;
    float: left;
    font-weight: 400;
    height: 28px;
    line-height: 24px;
    padding: 0 13px;
    border: 2px solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
}
.iwj-job-by-employer .job-info:not(:hover) a.type-name{
    color: #FFFFFF !important;
}
.iwj-job-by-employer .job-info:hover a.type-name{
    background: #ffffff !important;
}
.iwj-job-by-employer .job-type a.iwj-save-job{
    color: #777;
    outline: none;
}
.iwj-job-by-employer .job-type i{
    margin: 0;
    display: inline-block;
    height: 28px;
    line-height: 26px;
    width: 28px;
    text-align: center;
    color: #cdcdcd;
    border: 1px rgb(205, 205, 205) solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 7px;
}
.iwj-job-by-employer .job-type a.iwj-save-job.saved i,
.iwj-job-by-employer .job-info:hover .job-type i{
    background: #e24242;
    border-color: #e24242;
    color: #fff;
}

/* Style2 */
.iw-job-detail.v2 {
    padding: 0;
}
.iw-job-detail.v2 .job-detail-search-2 {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}
.iw-job-detail.v2 .iwj-find-jobs.style3 form.iw-job-advanced_search {
    background: none;
}
.iw-job-detail.v2 .iwj-find-jobs form {
    width: 100%;
}
.iw-job-detail.v2 .content-wrap {
    padding-top: 380px;
}
.iw-job-detail.v2 .content-inner {
    background: #fafafa;
    position: relative;
    z-index: 9;
    padding-bottom: 90px;
}
.iw-job-detail.v2 .job-detail-page-heading {
    margin-bottom: 30px;
}
.iw-job-detail.v2 .page-heading-content {
    background: #ffffff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-top: -115px;
    padding: 25px 0;
    position: relative;
}
.iw-job-detail.v2 .page-heading-content .iwj-featured {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    background: url("../img/job-featured.png") no-repeat top left;
    background-size: 39px 39px;
    -webkit-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
}
.iw-job-detail.v2 .page-heading-content .info-job-detail {
    display: table;
    width: 100%;
    padding-right: 20px;
}
.iw-job-detail.v2 .page-heading-content .info-company {
    float: left;
    width: 220px;
    padding: 0 55px;
    text-align: center;
}
.iw-job-detail.v2 .page-heading-content .company-logo {
    width: 115px;
    margin: 0 auto;
}
.iw-job-detail.v2 .page-heading-content .company-name {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0 0;
}
.iw-job-detail.v2 .page-heading-content .info-job {
    float: left;
    width: calc(100% - 220px);
}
.iw-job-detail.v2 .breadcrumbs-top .container {
    width: auto !important;
    padding: 0px;
}
.iw-job-detail.v2 .breadcrumbs-top .breadcrumbs > li.current,
.iw-job-detail.v2 .breadcrumbs-top .breadcrumbs > li > a,
.iw-job-detail.v2 .breadcrumbs-top .breadcrumbs > li i {
    font-size: 13px;
    color: #777777;
}
.iw-job-detail.v2 .page-heading-content .iw-heading-title h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    margin: 5px 0 10px;
}
.iw-job-detail.v2 .page-heading-content .iw-heading-meta {
    display: table;
    width: 100%;
}
.iw-job-detail.v2 .page-heading-content .iw-heading-meta > span {
    float: left;
    margin-right: 15px;
}
.iw-job-detail.v2 .page-heading-content .page-title i {
    display: inline-block;
    margin-right: 3px;
    width:20px;
    text-align: center;
}
.iw-job-detail.v2 .page-heading-content .property-address i {
    color: #f16e8e;
}
.iw-job-detail.v2 .page-heading-content .action-button {
    padding: 35px 20px 35px 0;
    display: table;
    width: auto;
    border-top: none;
    text-align: right;
    float: right;
}
.iw-job-detail.v2 .page-heading-content .action-button > a,
.iw-job-detail.v2 .page-heading-content .action-button .iwj-button-loader,
.iw-job-detail.v2 .page-heading-content .action-button .job-expired {
    margin: 0 0 8px 8px;
}
.iw-job-detail.v2 .page-heading-content .action-button a {
    display: inline-block;
    line-height: 42px;
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
    text-align: center;
    padding: 0 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    outline: none;
}
.iw-job-detail.v2 .action-button .job-expired {
    height: 42px;
    line-height: 40px;
}
.iw-job-detail.v2 .page-heading-content .action-button a:hover {
    -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.v2 .page-heading-content .action-button a.apply-with-linkedin,
.iw-job-detail.v2 .page-heading-content .action-button .iwj-button-loader a,
.iw-job-detail.v2 .page-heading-content .action-button a.save-job,
.iw-job-detail .action-button a.apply-job.apply-with-linkedin,
.iw-job-detail .action-button .iwj-button-loader a,
.iw-job-detail .action-button a.save-job{
    width: 42px;
    height: 42px;
    padding: 0;
    text-align: center;
}
.iw-job-detail.v2 .modal-dialog,
.iwj-candicate-detail-v2 .modal-dialog {
    margin-top: 100px;
}
@media screen and (min-width: 992px){
    .iw-job-detail.v2 .job-detail-page-heading.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 999999 !important;
        -webkit-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s;
        animation: smoothScrollJob 0.3s forwards;
        -webkit-animation: smoothScrollJob 0.3s forwards;
        margin: 0;
        background: #ffffff;
        -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.05);
        box-shadow: 0 0 8px 0 rgba(0,0,0,0.05);
    }
    body.admin-bar .iw-job-detail.v2 .job-detail-page-heading.sticky {
        top: 32px;
    }
    @keyframes smoothScrollJob {
        0% {
            transform: translateY(-40px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    @-webkit-keyframes smoothScrollJob {
        0% {
            transform: translateY(-40px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .page-heading-content {
        margin: 0;
        padding: 15px 0;
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .breadcrumbs-top,
    .iw-job-detail.v2 .job-detail-page-heading.sticky .property-address,
    .iw-job-detail.v2 .job-detail-page-heading.sticky .iw-heading-meta,
    .iw-job-detail.v2 .job-detail-page-heading.sticky .company-name,
    .iw-job-detail.v2 .job-detail-page-heading.sticky .iwj-featured {
        display: none;
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .info-company {
        width: 90px;
        padding: 0;
        text-align: center;
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .info-company .company-logo {
        width: 60px;
        margin: 0;
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .info-job {
        float: left;
        width: calc(100% - 90px);
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .iw-heading-title h2 {
        font-size: 24px;
        line-height: 30px;
        margin: 15px 0 0;
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .action-button {
        padding: 14px 0 0;
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .page-heading-content .action-button a {
        line-height: 35px;
        font-size: 12px;
    }
    .iw-job-detail.v2 .job-detail-page-heading.sticky .page-heading-content .action-button a.apply-with-linkedin,
    .iw-job-detail.v2 .job-detail-page-heading.sticky .page-heading-content .action-button .iwj-button-loader a,
    .iw-job-detail.v2 .job-detail-page-heading.sticky .page-heading-content .action-button a.save-job {
        width: 35px;
        height: 35px;
    }
    .iw-job-detail .job-detail-page-heading.sticky .action-button a i {
        font-size: 16px;
        top: 0;
    }
}
.iw-job-detail.v2 .job-detail-about {
    padding: 10px 55px 0;
}
.iw-job-detail.v2 .title-block-content {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 0;
}
.iw-job-detail.v2 .job-detail-desc h4 {
    margin-top: -10px;
}
.iw-job-detail.v2 .job-related {
    padding: 0;
}
.iw-job-detail.v2 .job-related .title {
    font-size: 18px;
    font-weight: 500;
    text-align: inherit;
    padding: 30px 55px;
    border-bottom: 1px #ededed solid;
}
.iw-job-detail.v2 .job-related .iwj-listing {
    margin: 0;
}
.iw-job-detail.v2 .job-related.iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item:last-child {
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
}
.iw-job-detail.v2 .widget_iwj_jobs_by_author{
    padding-bottom: 30px;
}
.iw-job-detail.v2 .widget_iwj_jobs_by_author .job-info{
    padding-left: 30px;
    padding-right: 30px;
}

/*===== 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 */
.iwj-jobs-listing-term1.iwj-jobs .job-item {
    position: relative;
}
.iwj-jobs-listing-term1.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);
}
div.job-item {
    display: block;
}
.job-item {
    padding: 30px 0 30px 0;
    border-bottom: 1px #f6f7f9 solid;
    overflow: hidden;
}
.job-item .job-image {
    border-radius: 5px;
    float: left;
    margin-top: 9px;
    overflow: hidden;
    max-width: 60px;
}
.job-item h3 {
    margin: 0 0 10px;
    font-weight: 500;
    line-height: 1;
}
.job-item .job-title a {
    color: #333;
    text-transform: capitalize;
    font-size: 16px;
    display: inline-block;
    line-height: 1.5;
}
.job-item.featured-item .job-title a {
    color: #f16e8e;
}
.job-item .job-info {
    margin-left: 95px;
    padding-right: 160px;
    position: relative;
    color: #999999;
}
.job-item .job-info .company a {
    position: relative;
    left: -3px;
}
.job-item .job-info i {
    width: 20px;
    font-size: 13px;
    text-align: center;
    margin-right: 3px;
    display: inline-block;
}
.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;
    float: left;
    font-weight: 400;
    height: 28px;
    line-height: 24px;
    padding: 0 13px;
    border: 2px solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
}
.job-item:hover .job-info .job-type a.type-name, .job-item:hover .job-info .job-type span.type-name {
    background-color: #ffffff !important;
}
.job-item:not(:hover) .job-info .job-type a.type-name, .job-item:not(:hover) .job-info .job-type span.type-name {
    color: #ffffff !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: 28px;
    line-height: 26px;
    width: 28px;
    text-align: center;
    color: #cdcdcd;
    border: 1px #cdcdcd solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 7px;
}
.iwj-job-items.style3 .job-save-left i {
    margin: 0;
}
.job-item .job-info .job-type .saved i, .iwj-job-items.style3 .job-save-left .saved i {
    background: #e24242;
    border-color: #e24242;
    color: #fff;
}
.job-item .job-info .job-type {
    position: absolute;
    right: 0;
    top: 9px;
}
.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, 
.recent-resume-item.iwj-item .iwj-featured {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: #adcb48;
    border-radius: 5px 0 0 0;
    transform: rotate(45deg) translate(-70%);
}
.job-item .iwj-featured:after, 
.recent-resume-item.iwj-item .iwj-featured:after {
    content: "\f005";
    position: absolute;
    top: 40%;
    left: 70%;
    color: #fff;
    font: normal normal normal 14px/1 FontAwesome;
    transform: rotate(-45deg);
}

.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:hover: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: 22px 25px 38px;
    border: 1px rgba(0, 0, 0, 0.1) solid;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    height: 100%;
    background: #ffffff;
}
.iwj-jobs-carousel .owl-theme .owl-nav {
    margin-top: 0;
    margin-bottom: 30px;
}
.iwj-jobs-carousel .owl-theme .owl-nav .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-nav .owl-page.active span.owl-numbers,
.iwj-jobs-carousel .owl-theme .owl-nav .owl-page span.owl-numbers:hover {
    color: #ffffff;
}
.iwj-jobs-carousel.style2 .iwj-items {
    padding-top: 0;
}
.navigation-text-v2.owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    right: 20px;
    top: -80px;
}
.navigation-text-v2.owl-theme .owl-nav:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 12px;
    top: 12px;
    left: -45px;
    background: rgba(0, 0, 0, 0.1);
}
.navigation-text-v2.owl-theme .owl-nav button {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background: #777777;
    padding: 0;
    opacity: 1;
    font-size: 13px;
    color: #fff;
}
.navigation-text-v2.owl-theme .owl-nav button:hover {
    background: #16A085;
    color: #ffffff !important;
}
.iwj-jobs-carousel-v3.style3 {
    margin: 0;
}
.iwj-jobs-carousel-v3.style3 .navigation-text-v2.owl-theme .owl-nav {
    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;
    display: inline-block;
}
.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;
}

/* Style 4 */
.iwj-jobs-carousel-v4 .iwj-items {
    padding: 25px 0 0;
}
.iwj-jobs-carousel-v4 .job-item {
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px 25px 60px;
    margin: 0 0 30px;
    position: relative;
    border: none;
    text-align: center;
}
.iwj-jobs-carousel-v4 .job-item .job-info {
    padding: 0 0 15px !important;
    margin: 0 !important;
}
.iwj-jobs-carousel-v4 .job-item .job-info .company-image {
    width: 70px;
    margin: 0 auto;
}
.iwj-jobs-carousel-v4 .job-item .job-info .company-image img {
    width: 100%;
}
.iwj-jobs-carousel-v4 .job-item .job-info .job-title {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 15px;
    line-height: 24px;
}
.iwj-jobs-carousel-v4 .job-item .job-info .job-meta {
    margin: 0;
    padding: 0;
}
.iwj-jobs-carousel-v4 .job-item .job-info .job-meta li {
    display: inline-block;
    list-style: none;
    margin-right: 8px;
    line-height: 26px;
}
.iwj-jobs-carousel-v4 .job-item .job-type {
    position: absolute;
    width: 100%;
    height: 60px;
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
    padding: 15px 25px;
}
.iwj-jobs-carousel-v4 .job-item .job-type:before {
    content: "";
    position: absolute;
    width: calc(100% - 50px);
    height: 1px;
    top: 0;
    left: 25px;
    background: #ededed;
}
.iwj-jobs-carousel-v4 .job-item .job-type .job-type-inner {
    display: table;
    margin: 0 auto;
}
.iwj-jobs-carousel-v4 .iwj-items .job-type .type-name {
    display: inline-block;
    float: left;
    font-weight: 400;
    height: 30px;
    line-height: 26px;
    padding: 0 13px;
    border: 2px solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
}
.iwj-jobs-carousel-v4 .iwj-items .job-item:hover .job-type a.type-name {
    background: none !important;
}
.iwj-jobs-carousel-v4 .iwj-items .job-item:not(:hover) .job-type a.type-name {
    color: #ffffff !important;
}
.iwj-jobs-carousel-v4 .iwj-items .iwj-save-job {
    float: left;
}
.iwj-jobs-carousel-v4 .iwj-items .iwj-save-job i {
    margin: 0 0 0 7px;
    display: inline-block;
    height: 30px;
    line-height: 28px;
    width: 30px;
    text-align: center;
    color: #cdcdcd;
    border: 1px #cdcdcd solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 12px;
}
.iwj-jobs-carousel-v4 .iwj-items .iwj-save-job.saved i {
    border-color: #f16e8e;
    color: #ffffff;
}

/* Style 5 */
.iwj-jobs-carousel-v5 .iwj-items {
    padding: 25px 0 0;
}
.iwj-jobs-carousel-v5 .job-item {
    padding: 0;
    margin-bottom: 30px;
    background: #ffffff;
    border: none;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image {
    position: relative;
    height: 215px;
    background: rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-repeat: no-repeat;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .iwj-featured {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 44px;
    height: 44px;
    background: url("../img/job-featured.png") no-repeat top left;
    background-size: 45px 45px;
    -webkit-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
    z-index: 2;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .job-type {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 2;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .job-type .type-name {
    display: inline-block;
    float: left;
    font-weight: 400;
    height: 30px;
    line-height: 26px;
    padding: 0 13px;
    border: 2px solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
}
.iwj-jobs-carousel-v5 .iwj-items .job-item:hover .job-type a.type-name {
    background: none !important;
}
.iwj-jobs-carousel-v5 .iwj-items .job-item:not(:hover) .job-type a.type-name {
    color: #ffffff !important;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .iwj-save-job i {
    margin: 0 0 0 7px;
    display: inline-block;
    height: 30px;
    line-height: 28px;
    width: 30px;
    text-align: center;
    color: #ffffff;
    border: 1px #ffffff solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 12px;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .iwj-save-job.saved i {
    border-color: #f16e8e;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 35px;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-avatar {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 35px;
    bottom: -15px;
    padding: 2px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-avatar img {
    width: 100%;
    border-radius: 50%;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-name-location {
    margin-left: 100px;
    color: #ffffff;
    line-height: 24px;
    padding-bottom: 10px;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-name a {
    color: #ffffff;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-locations {
    margin-top: 5px;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-locations a {
    color: #ffffff;
}
.iwj-jobs-carousel-v5 .iwj-items .job-cover-image .company-info .company-locations i {
    display: inline-block;
    width: 15px;
}
.iwj-jobs-carousel-v5 .iwj-items .job-item .job-info {
    padding: 35px 45px;
    margin: 0 !important;
    background: #ffffff;
    line-height: 24px;
}
.iwj-jobs-carousel-v5 .iwj-items .job-item .job-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}
.iwj-jobs-carousel-v5 .iwj-items .job-item .job-info i {
    margin: 0 !important;
    width: 20px;
}
.pagination-dot.owl-theme .owl-controls {
    margin: 25px 0;
}
.pagination-dot.owl-theme .owl-controls .owl-page span {
    width: 8px;
    height: 8px;
    margin: 3px;
    background: #777777;
    border: 2px solid;
}
.pagination-dot.owl-theme .owl-controls .owl-page.active span,
.pagination-dot.owl-theme .owl-controls .owl-page:hover span {
    width: 10px;
    height: 10px;
    position: relative;
}

/* ===== End Recent Jobs ===== */

/* ===== Recent Resumes ===== */
.iw-recent-resumes {
    position: relative;
    margin-bottom: 90px;
}
.iw-recent-resumes.shortcode {
    margin-bottom: 0;
}
.iw-recent-resumes.shortcode .iwj-items {
    padding: 25px 0;
}
.iw-recent-resumes .recent-resume-item {
    width: 25%;
    float: left;
    text-align: center;
    position: relative;
    background: #ffffff;
    border-bottom: none;
    border-top: 1px solid #f6f8f9;
    border-right: 1px solid #f6f8f9;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.iw-recent-resumes .recent-resume-item:hover {
    -webkit-transform: translate3d(0,-15px,0);
    transform: translate3d(0,-15px,0);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(4n+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) {
    border-top: none;
}
.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: 1;
}
.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: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    padding: 0 35px 25px;
    opacity: 0;
    -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    -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: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    -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 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
}
.recent-resume-item .resumes-address {
    color: #999999;
}
.recent-resume-item .resumes-address i {
    color: #f16e8e;
}
.recent-resume-item .resumes-address span {
    padding: 0 5px;
}
.recent-resume-item .info-top {
    padding-bottom: 30px;
}
.iw-recent-resumes .recent-resume-item:hover .info-top {
    padding-bottom: 0;
}
.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 {
    font-family: Roboto;
    color: #333333;
    line-height: 26px;
    margin-top: 12px;
    margin-bottom: 18px;
}
.iw-recent-resumes .recent-resume-item .view-resume {
    display: inline-block;
    color: #ffffff;
    border-width: 2px;
    border-style: solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-weight: 600;
    line-height: 34px;
    padding: 0 20px;
}
.iw-recent-resumes .recent-resume-item .view-resume:hover {
    background: #ffffff;
}

/* Style 2 */
.iw-recent-resumes-style2.shortcode .iwj-items {
    padding: 25px 0;
}
.iw-recent-resumes-style2 .recent-resume-item {
    padding: 30px 20px;
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
}
.iw-recent-resumes-style2 .recent-resume-item:hover {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.iw-recent-resumes-style2 .recent-resume-item .iwj-featured {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    background: url("../img/job-featured.png") no-repeat;
    background-size: auto auto;
    background-size: cover;
    -webkit-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-info {
    display: table;
    width: 100%;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-avatar {
    width: 95px;
    height: 95px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 0 30px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    float: left;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-avatar img {
    width: 100%;
}
.iw-recent-resumes-style2 .recent-resume-item .info-content {
    position: relative;
    margin-left: 155px;
}
.iw-recent-resumes-style2 .recent-resume-item .name {
    padding-right: 50px;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-meta {
    margin: 0;
    padding: 0;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-meta li {
    display: inline-block;
    list-style: none;
    margin-right: 25px;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-meta li span {
    padding: 0;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-meta li i {
    display: inline-block;
    width: 15px;
}
.iw-recent-resumes-style2 .recent-resume-item .resumes-meta li a {
    color: #777777;
}
.iw-recent-resumes-style2 .recent-resume-item .info-content .desc {
    line-height: 24px;
    margin-top: 5px;
}
.iw-recent-resumes-style2 .recent-resume-item .iwj-button-loader {
    position: absolute;
    top: 0;
    right: 10px;
}
.iw-recent-resumes-style2 .recent-resume-item .iwj-button-loader .iwj-btn {
    min-width: auto !important;
    padding: 0;
    background: none !important;
}
.iw-recent-resumes-style2 .recent-resume-item .iwj-button-loader .iwj-btn span {
    display: none !important;
}
.iw-recent-resumes-style2 .recent-resume-item .iwj-button-loader .iwj-btn i {
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #cdcdcd;
    border: 1px #cdcdcd solid;
}
.iw-recent-resumes-style2 .recent-resume-item .iwj-button-loader .iwj-btn.saved i {
    background-color: #f16e8e;
    border-color: #f16e8e;
    color: #ffffff;
}
.iw-recent-resumes-style2 .recent-resume-item .rem-button-loader {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

/* ===== End Recent Resumes ===== */

/* ===== Resumes Slider ===== */
.iw-resumes-slider .heading-block {
    text-align: center;
    color: #4c4c4c;
    margin: 25px 0 32px;
}
.iw-resumes-slider .heading-block .title-block {
    font-size: 36px;
    line-height: 36px;
    font-weight: 300;
    margin: 0 0 12px;
}
.iw-resumes-slider .heading-block .desc-block {
    font-size: 16px;
}
.iw-resumes-slider .owl-theme {
    padding-top: 30px;
}
.iw-resumes-slider .owl-item .resumes-avatar {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin: 0 auto 30px;
}
.iw-resumes-slider .owl-item .resumes-avatar img {
    width: 100%;
}
.iw-resumes-slider .owl-theme .owl-controls {
    margin: 0;
}
.iw-resumes-slider .owl-theme .owl-nav > button {
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 13px);
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background: #777777;
    padding: 0;
    margin: 0;
    opacity: 0;
    font-size: 13px;
    color: #ffffff;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
}
.iw-resumes-slider .owl-theme:hover .owl-nav > button {
    opacity: 1;
}
.iw-resumes-slider .owl-theme .owl-nav > button:hover {
    background: #16A085;
}
.iw-resumes-slider .owl-theme .owl-nav > button.owl-prev {
    left: 73px;
}
.iw-resumes-slider .owl-theme .owl-nav > button.owl-next {
    right: 73px;
}
.iw-resumes-slider .link-browse-all {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 60px 0 25px;
}
.iw-resumes-slider .link-browse-all a {
    color: #13b02d;
}
.iw-resumes-slider .link-browse-all a i {
    display: inline-block;
    margin-left: 8px;
}
/* ===== End Resumes Slider ===== */

/* ===== Candidates With Map ===== */
.candidate-item-with-map {
    position: relative;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.candidate-item-with-map .candidate-bg {
    position: absolute;
    width: 100%;
    height: 125px;
    top: 0;
    left: 0;
}
.candidate-item-with-map .candidate-bg:after {
    content: "";
    position: absolute;
    bottom: -105%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: #ffffff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.candidate-item-with-map .candidate-info {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    color: #999999;
    line-height: 24px;
}
.candidate-item-with-map .candidate-info .avatar {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin: 0 auto 22px;
    background-repeat: no-repeat;
    background-size: cover;
}
.candidate-item-with-map .candidate-info .title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.candidate-item-with-map .candidate-info .headline {
    margin: 0 0 3px;
}
/* ===== End Candidates With Map ===== */

/* ===== 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;
    display: block;
    height: 64px;
}
.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 .categories-child {
    margin: 0;
    padding: 0;
}
.iwj-categories.style5 .categories-child {
    position: relative;
    z-index: 1;
}
.iwj-categories .categories-child li {
    list-style: none;
}
.iwj-categories .categories-child li a {
    color: #ffffff;
    padding: 0 0 0 15px;
    position: relative;
}
.iwj-categories .categories-child li a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    top: calc(50% - 3px);
    background: #ffffff;
}
.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: -12px 0 4px;
}
.iwj-categories .style6-1 .category-title a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
}
.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-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;
}
.iwj-categories.style7 .categories-child li a {
    color: #777777;
}
.iwj-categories.style7 .categories-child li a:before {
    background: #777777;
}
.iwj-categories.style7 .item-category:hover .categories-child li a {
    color: #ffffff;
}
.iwj-categories.style7 .item-category:hover .categories-child li a:before {
    background: #ffffff;
}

/* 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;
}
.iwj-categories.style8 .categories-child li a {
    color: #777777;
}
.iwj-categories.style8 .categories-child li a:before {
    background: #777777;
}
.iwj-categories.style8 .item-category:hover .categories-child li a {
    color: #ffffff;
}
.iwj-categories.style8 .item-category:hover .categories-child li a:before {
    background: #ffffff;
}

/* style 9 */
.iwj-categories.style9 .element-item .item-category {
    text-align: center;
    padding: 10px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 30px;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}
.iwj-categories.style9 .item-category .category-icon {
    display: block;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,32px,0);
    transform: translate3d(0,32px,0);
}
.iwj-categories.style9 .item-category:hover .category-icon {
    -webkit-transform: translate3d(0,-20px,0);
    transform: translate3d(0,-20px,0);
}
.iwj-categories.style9 .item-category .category-icon i {
    font-size: 55px;
    color: #ffffff;
}
.iwj-categories.style9 .item-category .content {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,32px,0);
    transform: translate3d(0,32px,0);
}
.iwj-categories.style9 .item-category:hover .content {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.iwj-categories.style9 .item-category .category-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}
.iwj-categories.style9 .item-category .category-title a,
.iwj-categories.style9 .item-category .total-jobs {
    color: #ffffff;
}
.iwj-categories.style9 .item-category .total-jobs {
    font-weight: 600;
    padding-top: 15px;
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.iwj-categories.style9 .categories-child {
    margin-top: 15px;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.iwj-categories.style9 .item-category:hover .categories-child,
.iwj-categories.style9 .item-category:hover .total-jobs {
    opacity: 1;
}
.iwj-categories.style9 .item-category .total-jobs:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    top: 0;
    left: calc(50% - 40px);
    background: #ffffff;
}
.iwj-categories.style9 .all-categories {
    text-align: center;
}

/* style 10 */
.iwj-categories.style10 .item-category {
    padding: 30px 25px;
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    display: table;
    width: 100%;
}
.iwj-categories.style10 .item-category:hover {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.iwj-categories.style10 .item-category .category-icon {
    float: left;
    font-size: 60px;
    color: #13b02d;
}
.iwj-categories.style10 .item-category .category-content {
    margin-left: 80px;
}
.iwj-categories.style10 .item-category .category-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}
.iwj-categories.style10 .item-category .categories-child {
    padding: 20px 0 0;
    margin: 0 0 24px;
    position: relative;
}
.iwj-categories.style10 .item-category .categories-child:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    top: 0;
    left: 0;
    background: #e7e7e7;
}
.iwj-categories.style10 .item-category .categories-child li {
    list-style: none;
}
.iwj-categories.style10 .item-category .categories-child li a {
    font-size: 14px;
    color: #777777;
    padding: 0 15px;
    position: relative;
    line-height: 30px;
}
.iwj-categories.style10 .item-category .categories-child li a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    top: calc(50% - 3px);
    background: #777777;
}
.iwj-categories.style10 .item-category h4.view-all-jobs {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* style 11 */
.iwj-categories.style11 {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0) linear-gradient(to right bottom , #736efe, #43cbff) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(to right bottom , #736efe, #43cbff) repeat scroll 0 0;
    padding: 35px 20px 45px;
}
.iwj-categories.style11 .item-category {
    display: table;
    width: 100%;
    padding: 20px 0;
    border-top: 1px rgba(255, 255, 255, 0.1) solid;
}
.iwj-jobs-style.style2.column-2 .iwj-jobs.iwj-grid .item-col:nth-child(2n) .job-item {
    border-right: none;
}
.iwj-categories.style11 .item-col:nth-child(1) .item-category,
.iwj-categories.style11 .item-col:nth-child(2) .item-category,
.iwj-categories.style11 .item-col:nth-child(3) .item-category {
    border-top: none;
}
.iwj-categories.style11 .item-category .category-icon {
    float: left;
}    
.iwj-categories.style11 .item-category .category-icon a {
    color: #ffffff;
    font-size: 40px;
}
.iwj-categories.style11 .item-category .category-icon a img{
    max-width: 52px;
}
.iwj-categories.style11 .item-category .category-content {
    margin-left: 60px;
}
.iwj-categories.style11 .item-category .category-title {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px;
}
.iwj-categories.style11 .item-category .category-title a {
    color: #ffffff;
}
.iwj-categories.style11 .item-category .categories-child {
    margin: 0;
    padding: 0;
    color: #ffffff;
}
.iwj-categories.style11 .item-category .categories-child li {
    display: inline-block;
    list-style: none;
}
.iwj-categories.style11 .item-category .categories-child li a {
    font-size: 12px;
    color: #ffffff;
    line-height: 30px;
}

/* style 12 */
.iwj-categories.style12 .owl-item {
    padding: 0 15px;
}
.iwj-categories.style12 .item-category {
    position: relative;
}
.iwj-categories.style12 .item-category .category-image {
    position: relative;
    width: 100%;
    height: 260px;
    background-repeat: no-repeat;
    background-size: cover;
}
.iwj-categories.style12 .item-category .category-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.iwj-categories.style12 .item-category .category-content-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc(100% - 80px);
    left: 0;
    padding: 15px 25px;
    z-index: 0;
    transition: top 0.3s, padding 0.3s;
    -webkit-transition: top 0.3s, padding 0.3s;
}
.iwj-categories.style12 .item-category:hover .category-content-wrap {
    top: 0;
    padding: 35px 25px;
}
.iwj-categories.style12 .item-category .category-content-wrap:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: -1;
}
.iwj-categories.style12 .item-category .category-icon {
    float: left;
    width: 70px;
    font-size: 50px;
    color: #ffffff;
    border-right: 1px rgba(255, 255, 255, 0.4) solid;
}
.iwj-categories.style12 .item-category .category-content {
    margin-left: 90px;
    color: #ffffff;
}
.iwj-categories.style12 .item-category .category-title {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #ffffff;
}
.iwj-categories.style12 .item-category a {
    color: #ffffff;
}
.iwj-categories.style12 .item-category .content-bttom {
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
}
.iwj-categories.style12 .item-category:hover .content-bttom {
    opacity: 1;
}
.iwj-categories.style12 .item-category .categories-child {
    padding: 0;
    margin: 12px 0 0;
}
.iwj-categories.style12 .item-category .categories-child li {
    font-size: 14px;
    line-height: 30px;
    list-style: none;
}
.iwj-categories.style12 .item-category .categories-child li a {
    padding: 0 15px;
    position: relative;
}
.iwj-categories.style12 .item-category .categories-child li a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    top: calc(50% - 3px);
    background: #ffffff;
}
.iwj-categories.style12 .item-category .view-all-jobs {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    margin-top: 20px;
}
.iwj-categories.style12 .pagination-dot.owl-theme .owl-controls {
    margin: 55px 0 30px;
}

/* ===== End Categories ===== */

/* ===== iwj-employers-slider ===== */
.iwj-employers-slider {
    -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.style1 .employer-items {
    padding: 15px;
}
.iwj-employers-slider.style1 .col-item {
    position: relative;
    z-index: 0;
    margin-bottom: 30px;
}
.iwj-employers-slider.style1 .col-item:hover:after {
    position: absolute;
    content: "";
    width: calc(100% - 30px);
    height: 100%;
    top: 0;
    left: 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    z-index: -1;
}
.iwj-employers-slider .employer-item {
    padding: 42px 30px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}
.iwj-employers-slider.style1 .employer-item {
    margin-bottom: 0;
}
.iwj-employers-slider .employer-image img {
    max-width: 80px;
    max-height: 80px;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.iwj-employers-slider .employer-title{
    margin : 16px 0 8px;
}
.iwj-employers-slider .employer-title {
    font-size: 18px;
    font-weight: 600;
}
.iwj-employers-slider .employer-headline {
    font-size: 12px;
    font-weight: 600;
    color: #777777;
    margin-top: 0;
}
.iwj-employers-slider .employer-locations{
    margin-bottom: 20px;
}
.iwj-employers-slider .employer-locations a{
    color: #777777;
}
.iwj-employers-slider .total-jobs {
    margin: 0;
}
.iwj-employers-slider .total-jobs a {
    display: inline-block;
    padding: 0 15px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 11px;
    background: #45bd15;
    text-transform: uppercase;
}
.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 .number {
    color: #fff !important;
}
.iwj-employers-slider .owl-theme .owl-controls {
    margin-top: 25px;
    margin-bottom: 20px;
}
.iwj-employers-slider .owl-theme .owl-controls .owl-page span {
    width: 8px;
    height: 8px;
    margin: 3px;
    background: #777777;
    border: 2px transparent solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}
.iwj-employers-slider .owl-theme .owl-controls .owl-page.active span,
.iwj-employers-slider .owl-theme .owl-controls .owl-page:hover span {
    width: 10px;
    height: 10px;
    position: relative;
    top: 1px;
}
/* Style2 */

.iwj-employers-slider.style2 .iwj-employers-slider-inner {
    margin: 0 -15px;
}
.iwj-employers-slider.style2 .owl-item {
    padding: 0 15px;
}
.iwj-employers-slider.style2 .employer-locations {
    margin-bottom: 5px;
}
.iwj-employers-slider.style2 .iwj-box-rating {
    margin-bottom: 26px;
}
.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;
}
.iwj-employers-slider.style2 .owl-theme .owl-controls {
    margin: 0;
    right: 10px;
}
/* Style3 */
.iwj-employers-slider.style3 {
    -webkit-border-radius: 0;
    border-radius: 0;
    overflow: visible;
}
.iwj-employers-slider.style3 .iwj-employers-slider-inner {
    margin: 0 -15px;
}
.iwj-employers-slider.style3 .owl-item {
    padding: 0 15px;
}
.iwj-employers-slider.style3 .employer-item {
    padding: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.iwj-employers-slider.style3 .employer-item:hover {
    -webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.15);
}
.iwj-employers-slider.style3 .employer-item .employer-cover-image {
    position: relative;
    height: 245px;
    background: #33aa58;
    background-repeat: no-repeat;
    background-size: cover;
}
.iwj-employers-slider.style3 .employer-item .employer-cover-image:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.iwj-employers-slider.style3 .employer-item:hover .employer-cover-image:after {
    opacity: 0.4;
}
.iwj-employers-slider.style3 .employer-item .employer-cover-image > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.iwj-employers-slider.style3 .employer-item .employer-image {
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    bottom: 0;
    left: calc(50% - 55px);
    -webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.15);
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.15);
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,32px,0);
    transform: translate3d(0,32px,0);
    z-index: 9;
}
.iwj-employers-slider.style3 .employer-item:hover .employer-image {
    -webkit-transform: translate3d(0,-75px,0);
    transform: translate3d(0,-75px,0);
}
.iwj-employers-slider.style3 .employer-item .employer-content {
    padding: 32px 35px 0;
    position: relative;
}
.iwj-employers-slider.style3 .employer-item .employer-content-inner {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,32px,0);
    transform: translate3d(0,32px,0);
}
.iwj-employers-slider.style3 .employer-item:hover .employer-content-inner {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.iwj-employers-slider.style3 .employer-item .employer-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.iwj-employers-slider.style3 .employer-item .iwj-box-rating {
    margin-bottom: 14px;
    line-height: 20px;
}
.iwj-employers-slider.style3 .iwj-box-rating .iwj-count-rate i {
    color: #f37d1e;
    font-size: 20px;
}
.iwj-employers-slider.style3 .employer-item .employer-meta > div {
    color: #999999;
    margin-right: 15px;
    margin-bottom: 12px;
}
.iwj-employers-slider.style3 .employer-item .employer-meta > div.employer-phone {
    margin-right: 0;
}
.iwj-employers-slider.style3 .employer-item .employer-meta > div i {
    color: #f16e8e;
    margin-right: 5px;
}
.iwj-employers-slider.style3 .employer-item .total-jobs {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
    padding: 15px 0;
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-top: 1px #ebebeb solid;
    height: auto;
    -webkit-border-radius: 0;
    border-radius: 0;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
.iwj-employers-slider.style3 .employer-item:hover .total-jobs {
    opacity: 1;
}
.iwj-employers-slider.style3 .owl-theme .owl-controls {
    margin-top: 10px;
}
.iwj-employers-slider.style3 .owl-theme .owl-controls .owl-page span {
    width: 8px;
    height: 8px;
    margin: 3px;
    background: #777777;
    border: 2px transparent solid;
}
.iwj-employers-slider.style3 .owl-theme .owl-controls .owl-page.active span,
.iwj-employers-slider.style3 .owl-theme .owl-controls .owl-page:hover span {
    width: 10px;
    height: 10px;
    position: relative;
    top: 1px;
}

/* Style 4 */
.iwj-employers-slider.style4 {
    overflow: hidden;
}
.iwj-employers-slider.style4 .iwj-employers-slider-inner {
    margin: 0 -15px;
}
.iwj-employers-slider.style4 .owl-item {
    padding: 0 15px;
}
.iwj-employers-slider.style4 .employer-item {
    padding: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin-bottom: 10px;
    background: none;
}
.iwj-employers-slider.style4 .employer-item .employer-cover-image {
    position: relative;
    height: 330px;
    background: #33aa58;
    background-repeat: no-repeat;
    background-size: cover;
}
.iwj-employers-slider.style4 .employer-item .employer-cover-image > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.iwj-employers-slider.style4 .employer-item .employer-content {
    margin-top: -130px;
    padding: 0 30px 10px;
    position: relative;
    z-index: 2;
}
.iwj-employers-slider.style4 .employer-item .employer-content-inner {
    background: #ffffff;
    padding: 30px 0;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.iwj-employers-slider.style4 .employer-item .employer-image-rating {
    float: left;
    width: 140px;
    text-align: center;
}
.iwj-employers-slider.style4 .iwj-box-rating .iwj-count-rate i {
    color: #f37d1e;
    font-size: 18px;
    margin: 0 1px;
}
.iwj-employers-slider.style4 .employer-item .content-right {
    margin-left: 140px;
    padding-right: 30px;
    text-align: left;
}
.iwj-employers-slider.style4 .employer-item .employer-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.iwj-employers-slider.style4 .employer-item .employer-locations {
    color: #999999;
    margin-bottom: 9px;
}
.iwj-employers-slider.style4 .employer-item .employer-locations i {
    display: inline-block;
    width: 15px;
    margin: 0;
    color: #f16e8e;
}
.iwj-employers-slider.style4 .employer-item .employerdl-desc {
    line-height: 24px;
}

/* ===== 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.8);
    font-size: 11px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    color: #ffffff;
    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 !important;
}
.iw-social-all.hover-bg li a.twitter:hover {
    background: #0084B4 !important;
}
.iw-social-all.hover-bg li a.google_plus:hover {
    background: #DB4437 !important;
}
.iw-social-all.hover-bg li a.pinterest:hover {
    background: #BD081C !important;
}
.iw-social-all.hover-bg li a.linkedin:hover {
    background: #006fa6 !important;
}
.iw-social-all.hover-bg li a.vimeo:hover {
    background: #009fde !important;
}
.iw-social-all.hover-bg li a.youtube:hover {
    background: #e62117 !important;
}
.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-employer-detail .employer-detail-v1 .iwj-gallery-detail .bx-pager {
    display: 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;
    z-index: 9;
}
.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;
}

/* version 2 */
.iwj-employer-detail.v2 {
    padding-top: 380px;
    background: #fafafa;
}
.iwj-single-parallax .iw-parallax {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover !important;
    overflow: hidden;
}
@media (-webkit-min-device-pixel-ratio:0) {
    .iwj-single-parallax .iw-parallax {
        -webkit-backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
    }
}
.iwj-single-parallax .iw-parallax-overlay {
    background-color: #000000;
    opacity: 0.7;
}
.employer-detail-v2 .employer-detail-content-wrap {
    background: #fafafa;
    position: relative;
    z-index: 2;
}
.iwj-employer-detail .employer-detail-v2 .employer-info-top {
    background-image: none;
    background-color: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-top: -125px;
}
.iwj-employer-detail .employer-detail-v2 .employer-info-top .info-top {
    padding: 30px 320px 30px 55px;
    display: table;
    width: 100%;
}
.iwj-employer-detail .employer-detail-v2 .employer-info-top .employer-logo {
    width: 140px;
    margin: 0 100px 0 0;
}
.iwj-employer-detail .employer-detail-v2 h3.title {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
}
.iwj-employer-detail .employer-detail-v2 .employer-headline {
    font-size: 14px;
    color: #777777;
    font-weight: 500;
}
.iwj-employer-detail .employer-detail-v2 .iw-social-all.hover-bg {
    margin-top: 15px;
}
.iwj-employer-detail .employer-detail-v2 .iw-social-all.hover-bg li {
    margin-right: 8px;
}
.iwj-employer-detail .employer-detail-v2 .iw-social-all.hover-bg li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #777777;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.08);
}
.iwj-employer-detail .employer-detail-v2 .iw-social-all.hover-bg li a:hover {
    color: #ffffff;
}
.iwj-employer-detail .employer-detail-v2 .follow-button {
    position: absolute;
    top: 45px;
    right: 35px;
    display: table;
    width: auto;
    z-index: 9;
}
.iwj-employer-detail .employer-detail-v2 .follow-button > div {
    float: right;
}
.iwj-employer-detail .employer-detail-v2 .follow-button .iwj-box-rating {
    margin: 0 20px 0 0;
    padding: 0;
    background: none;
    text-align: right;
}
.iwj-employer-detail .employer-detail-v2 .follow-button .iwj-box-rating .iwj-count-rate i {
    font-size: 24px;
    color: #f37d1e;
}
.iwj-employer-detail .employer-detail-v2 .follow-button .iwj-box-rating .iwj-text-totals-rate {
    font-size: 13px;
    color: #777777;
}
.iwj-employer-detail .employer-detail-v2 .follow-button a.iwj-btn.action-button.follow {
    border: none;
    padding: 6px 25px;
    font-size: 14px;
    background: #33aa58;
    line-height: 28px;
    float: right;
}
.iwj-employer-detail .employer-detail-v2 .follow-button .follow i {
    margin-right: 5px;
    font-size: 14px;
    top: 0;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail {
    max-height: 435px;
    overflow: hidden;
    margin-bottom: 0;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail .bx-viewport {
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail .bxslider li {
    list-style: none;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail .bx-controls-direction {
    display: none;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail .bx-pager {
    position: absolute;
    padding: 0;
    width: 100%;
    bottom: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail:hover .bx-pager {
    opacity: 1;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail .bx-wrapper .bx-pager.bx-default-pager a {
    width: 12px;
    height: 12px;
    margin: 0 4px;
    line-height: 1;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ffffff;
}
.iwj-employer-detail .employer-detail-v2 .iwj-gallery-detail .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #41bf68;
}
.employer-detail-v2 .iwj-employer-detail-video {
    height: 435px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    cursor: pointer;
    padding: 0 !important;
    z-index: 0;
}
.employer-detail-v2 .iwj-employer-detail-video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}
.employer-detail-v2 .iwj-employer-detail-video .play-button {
    text-align: center;
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.employer-detail-v2 .iwj-employer-detail-video .play-button span {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #37b05d;
    position: relative;
}
.employer-detail-v2 .iwj-employer-detail-video .play-button span:before {
    content: "";
    top: -20px;
    left: -20px;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 96px;
    height: 96px;
    border-radius: 100%;
    -webkit-animation: jumper 1.8s 0.33333s ease-out infinite;
    animation: jumper 1.8s 0.33333s ease-out infinite;
    z-index: -1;
}
.employer-detail-v2 .iwj-employer-detail-video .play-button span:after {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 96px;
    height: 96px;
    top: -20px;
    left: -20px;
    border-radius: 100%;
    position: absolute;
    opacity: 0;
    -webkit-animation: jumper 1.8s 0.66666s ease-out infinite;
    animation: jumper 1.8s 0.66666s ease-out infinite;
    z-index: -1;
}
.employer-detail-v2 .iwj-employer-detail-video .play-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 30px;
    margin-left: 2px;
}
.employer-detail-v2 .iwj-employer-detail-video .play-button .title-button {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.iwj-employer-detail .employer-detail-v2 .employer-detail-info {
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.iwj-employer-detail .employer-detail-v2 .employer-detail-info,
.iwj-employer-detail .employer-detail-v2 .iwj-employer-review {
    padding: 0 50px;
}
.iwj-employer-detail .employer-detail-v2 .employer-detail-info .title h3,
.iwj-employer-detail .employer-detail-v2 .iwj-employer-review .title h3 {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 500;
}
.iwj-employer-detail .employer-detail-v2 .iwj-open-position{
    padding: 0;
}
.iwj-employer-detail .employer-detail-v2 .iwj-open-position .iwj-jobs{
    margin-top: 0;
}
.iwj-employer-detail .employer-detail-v2 h3.iw-title-border{
    text-align: left;
    padding: 30px 50px;
    border-bottom: 1px solid #f6f7f9;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin: 0;
}
.employer-detail-v2 .iwj-jobs .job-item {
    padding: 25px 0 0 50px;
    margin-bottom: 0;
}
.employer-detail-v2 .job-item .job-info{
    margin: 0;
    padding-right: 170px;
}
.employer-detail-v2 .job-item .job-info .job-type {
    position: absolute;
    right: 25px;
    top: 0;
}
.employer-detail-v2 .job-item .job-info .info-company,
.employer-detail-v2 .job-item .job-info .info-company a{
    color: rgb(153,153,153);
}
.employer-detail-v2 .info-company ul{
    list-style-type: none;
    padding-left: 0;
    padding-bottom: 35px;
    margin: 0;
}
.employer-detail-v2 .info-company ul li {
    display: inline-block;
    padding-right: 25px;
}
.employer-detail-v2 .info-company ul li i {
    margin-right: 5px;
}
.employer-detail-v2 .info-company ul li.job-posted-time i,
.employer-detail-v2 .info-company ul li.cat i{
    color: rgb(41,128,185);
}
.employer-detail-v2 .iwj-jobs .job-item:last-child {
    padding-bottom: 15px;
}
.employer-detail-v2 .job-skill {
    border-top: 1px #f6f7f9 solid;
    padding: 10px 0;
}
.employer-detail-v2 .job-skill a {
    display: inline-block;
    color: #999999;
    padding-right: 20px;
}
.employer-detail-v2 .job-skill a i {
    padding-right: 10px;
}
@media screen and (min-width: 992px){
    .employer-detail-v2 .employer-info-top-wrap.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 999999 !important;
        -webkit-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s;
        animation: smoothScrollEmployer 0.3s forwards;
        -webkit-animation: smoothScrollEmployer 0.3s forwards;
        margin: 0;
        background: #ffffff;
        -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.05);
        box-shadow: 0 0 8px 0 rgba(0,0,0,0.05);
    }
    body.admin-bar .employer-detail-v2 .employer-info-top-wrap.sticky {
        top: 32px;
    }
    @keyframes smoothScrollEmployer {
        0% {
            transform: translateY(-40px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    @-webkit-keyframes smoothScrollEmployer {
        0% {
            transform: translateY(-40px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top-wrap.sticky .employer-info-top {
        margin-top: 0;
        margin-bottom: 0;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top-wrap.sticky .employer-info-top .info-top {
        padding: 15px 320px 15px 0;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top-wrap.sticky .employer-info-top .employer-logo {
        width: 60px;
        margin: 0 30px 0 0;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top-wrap.sticky .social-link {
        display: none;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top-wrap.sticky .iw-social-all.hover-bg li a:hover {
        color: #ffffff;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top-wrap.sticky .follow-button {
        top: 20px;
        right: 0;
    }
}

/*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.style1 li i {
    width: 21px;
    height: 21px;
    line-height: 20px;
    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-widget-information.style2 li {
    margin: 0;
    padding: 22px 30px;
    border-bottom: 1px #eeeeee solid;
    display: table;
    width: 100%;
}
.employer-detail-v1 .iwj-widget-information.style2 li {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.iwj-widget-information.style2 li:first-child {
    padding-top: 2px;
}
.iwj-widget-information.style2 li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.iwj-employer-detail.v1 .iwj-widget-information.style2 li:last-child {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.iwj-widget-information.style2 li i {
    font-size: 32px;
    color: #d2d2d2;
    display: inline-block;
    float: left;
    width: 45px;
}
.iwj-widget-information.style2 li .content {
    float: left;
    width: calc(100% - 45px);
    font-weight: 700;
}
.iwj-widget-information.style2 li .content label {
    display: block;
    color: #777777;
    font-weight: 400;
}
.iwj-widget-information.style2 li .content span {
    color: #333333;
}
.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*/
/*=== Widget Employer Detail v2 ===*/
.employer-detail-v2 .widget-area {
    padding: 0;
    background: none;
}
.employer-detail-v2 .widget-area aside {
    background: #ffffff;
    padding: 0 0 30px;
    margin-bottom: 30px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.employer-detail-v2 .iwj-widget-information.style2 li .content{
    font-weight: normal;
}
.employer-detail-v2 a.website{
    display: inherit;
    margin-top: 5px;
}
.employer-detail-v2 .iwj-widget-information.style2 li .content span {
    color: #777;
}
.employer-detail-v2 .iwj-widget-information.style2 li .content span.map{
    font-weight: 600;
}
.employer-detail-v2 span.map a{
    color: #333 !important;
    font-weight: 700;
}
.employer-detail-v2 .widget-area aside:first-child{
    padding: 0;
    margin: 0;
}
.employer-detail-v2 .widget-area .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 32px;
    padding: 28px 30px;
}
.employer-detail-v2 .widget-area aside:first-child .widget-title{
    padding-top: 28px;
}
.employer-detail-v2 .widget-area .iwj-single-widget {
    margin: 0;
}
.iwj-employer-detail.v2 .employer-detail-v2 .widget-area .iwj-single-widget.style1 {
    padding: 0 30px;
}
.iwj-employer-detail.v2 .employer-detail-v2 .widget-area .iwj-single-widget.iwj-single-contact-form{
    padding: 0;
}
.employer-detail-v2 .widget-area .widget-title:after{
    display: none;
}
.employer-detail-v2 .job-detail-map{
    -webkit-border-radius: 0;
    border-radius: 0;
}
/*= CONTACT FORM =*/
.employer-detail-v2 div.iwjmb-field {
    padding: 0 30px;
}
.employer-detail-v2 .iwj-single-contact-form .iwj-btn-action {
    padding: 0 30px;
}
/*= END CONTACT FORM =*/
/*=== End Widget Employer Detail v2 ===*/
/*===== End Employer =====*/

/*===== Resume Detail =====*/

/* version 1*/
.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;
}
.iwj-gallery .image-list a img {
    width: 100%;
}
.fancybox-nav {
    outline: none !important;
}

/* version 2 */
.iwj-candicate-detail-v2 .content-top {
    position: relative;
    z-index: 9;
    padding-top: 60px;
}
.iwj-candicate-detail-v2 .info-top {
    display: inline-block;
    width: 100%;
    margin-bottom: 35px;
}
.iwj-candicate-detail-v2 .info-top .candidate-logo {
    float: left;
    margin: 0 30px 0 0;
    text-align: center;
    width: 120px;
}
.iwj-candicate-detail-v2 .info-top .candidate-logo img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.iwj-candicate-detail-v2 .info-top .info-inner {
    margin: 0 0 0 150px;
}
.iwj-candicate-detail-v2 .info-top .info-inner .candidate-name {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 5px;
}
.iwj-candicate-detail-v2 .info-top .info-inner .candidate-headline {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: #dadada;
    margin: 0 0 12px;
}
.iwj-candicate-detail-v2 .info-top .can-view-resum {
    display: table;
    width: 100%;
}
.iwj-candicate-detail-v2 .info-top .info-inner .candidate-info {
    float: left;
    width: 50%;
}
.iwj-candicate-detail-v2 .info-top .info-inner .candidate-info ul {
    padding: 0;
    margin: 0;
}
.iwj-candicate-detail-v2 .info-top .info-inner .candidate-info ul li {
    display: inline-block;
    list-style: none;
    margin-right: 15px;
}
.iwj-candicate-detail-v2 .info-top .info-inner .candidate-info ul li i {
    display: inline-block;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 29px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 8px;
}
.iwj-candicate-detail-v2 .info-top .info-inner .candidate-info ul li h6 {
    display: inline-block;
    font-weight: 600;
    color: #ffffff;
}
.iwj-candicate-detail-v2 .info-top .info-inner .detail-action-button.iwj-button-loader {
    display: table;
    float: left;
    width: 50%;
}
.iwj-candicate-detail-v2 .info-top .info-inner .detail-action-button {
    margin-top: 8px;
}
.iwj-candicate-detail-v2 .info-top .info-inner .detail-action-button a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background: #33aa58;
    margin: 0;
    min-width: auto;
    padding: 9px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    font-family: Montserrat;
}
.iwj-candicate-detail-v2 .info-top .info-inner .iwj-button-loader.detail-action-button a {
    float: right;
}
.iwj-candicate-detail-v2 .info-top .info-inner .detail-action-button a.iwj-download-cv {
    margin-left: 8px;
    margin-bottom: 8px;
}
.iwj-candicate-detail.v2 {
    background: #fafafa;
}
.iwj-candicate-detail-v2 .candidate-detail-menu .iwj-detail-menu {
    border-top: 1px rgba(255, 255, 255, 0.3) solid;
    display: table;
    width: 100%;
    padding: 20px 0;
}
.iwj-candicate-detail-v2 .candidate-detail-menu ul.menu {
    float: left;
    width: 80%;
    margin: 0;
    padding: 0;
}
.iwj-candicate-detail-v2 .candidate-detail-menu ul.menu li {
    display: inline-block;
    list-style: none;
}
.iwj-candicate-detail-v2 .candidate-detail-menu ul.menu li a {
    font-family: Montserrat;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    padding-right: 40px;
    margin: 0;
    outline: none !important;
}
.iwj-candicate-detail-v2 .candidate-detail-menu .social-link {
    float: right;
    width: 20%;
    text-align: right;
}
.iwj-candicate-detail-v2 .candidate-detail-menu .iw-social-all.hover-bg {
    margin: 0;
}
.iwj-candicate-detail-v2 .candidate-detail-menu .iw-social-all.hover-bg li {
    margin-left: 8px;
    margin-right: 0;
}
.iwj-candicate-detail-v2 .candidate-detail-menu .iw-social-all.hover-bg li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #ffffff;
}
.iwj-candicate-detail-v2 .content-bottom {
    position: relative;
    z-index: 2;
    background: #fafafa;
    padding-top: 90px;
}
.iwj-candicate-detail-v2 .iwj-alert-box {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
}
.iwj-candicate-detail-v2 .iwj-alert-box span {
    display: block;
    background: #d2daef;
    border-color: #8a97b9;
    border-left-color: rgb(138, 151, 185);
    border-left: 3px solid #2980b9;
    padding: 15px;
}
.iwj-candicate-detail .iwj-candicate-detail-v2 .candicate-main-content {
    background: none;
}
.iwj-candicate-detail-v2 .candidate-detail-video-desc {
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}
.iwj-candicate-detail-v2 .iwj-candidate-video {
    height: 435px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    cursor: pointer;
    padding: 0 !important;
    z-index: 0;
}
.iwj-candicate-detail-v2 .iwj-candidate-video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}
.iwj-candicate-detail-v2 .iwj-candidate-video .play-button {
    text-align: center;
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.iwj-candicate-detail-v2 .iwj-candidate-video .play-button span {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #37b05d;
    position: relative;
}
.iwj-candicate-detail-v2 .iwj-candidate-video .play-button span:before {
    content: "";
    top: -20px;
    left: -20px;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 96px;
    height: 96px;
    border-radius: 100%;
    -webkit-animation: jumper 1.8s 0.33333s ease-out infinite;
    animation: jumper 1.8s 0.33333s ease-out infinite;
    z-index: -1;
}
.iwj-candicate-detail-v2 .iwj-candidate-video .play-button span:after {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 96px;
    height: 96px;
    top: -20px;
    left: -20px;
    border-radius: 100%;
    position: absolute;
    opacity: 0;
    -webkit-animation: jumper 1.8s 0.66666s ease-out infinite;
    animation: jumper 1.8s 0.66666s ease-out infinite;
    z-index: -1;
}
.iwj-candicate-detail-v2 .iwj-candidate-video .play-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 30px;
    margin-left: 2px;
}
.iwj-candicate-detail-v2 .iwj-candidate-video .play-button .title-button {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}
.iwj-candicate-detail .candidate-detail-desc {
    padding: 40px 50px 45px;
}
.iwj-candicate-detail .candidate-detail-desc .title-block-desc {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 30px;
}
.iwj-candicate-detail .iwj-candicate-detail-v2 .resume-detail-info {
    padding: 0 50px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #ffffff;
}
.iwj-candicate-detail-v2 .widget-area {
    padding: 0;
    background: none;
}
.iwj-candicate-detail-v2 .widget-area aside {
    background: #ffffff;
    padding: 28px 0 30px;
    margin-bottom: 30px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-candicate-detail-v2 .widget-area aside .candidate-action-button {
    padding: 0 30px;
}
.iwj-candicate-detail-v2 .widget-area .iwj-single-widget {
    margin: 0;
}
.iwj-candicate-detail.v2 .iwj-candicate-detail-v2 .widget-area .iwj-single-widget.style1 {
    padding: 0 30px;
}
.iwj-candicate-detail-v2 .widget-area .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 32px;
    padding: 0 30px;
}
.iwj-candicate-detail-v2 .widget-area .widget-title:after {
    display: none;
}
@media screen and (min-width: 992px){
    .iwj-candicate-detail-v2 .candidate-detail-menu.sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 999999 !important;
        -webkit-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s;
        animation: smoothScroll 0.3s forwards;
        -webkit-animation: smoothScroll 0.3s forwards;
    }
    body.admin-bar .iwj-candicate-detail-v2 .candidate-detail-menu.sticky {
        top: 32px;
    }
    @keyframes smoothScroll {
        0% {
            transform: translateY(-40px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    @-webkit-keyframes smoothScroll {
        0% {
            transform: translateY(-40px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    .iwj-candicate-detail-v2 .candidate-detail-menu.sticky .iwj-detail-menu {
        border-top: none;
    }
}

/*===== 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;
}
div.iwjmb-field.iwjmb-gdpr__applyjob{
    margin: 0;
}
.iwjmb-gdpr__applyjob label.lb_terms_and_services{
    line-height: 27px;
    display: flex;
    align-items: center;
    text-transform: none;
    color: #777;
}
.iwjmb-gdpr__applyjob label.lb_terms_and_services input{
    margin: 0;
    width: 30px;
}
.iwjmb-gdpr__applyjob textarea[name="terms_and_services_desc"]{
    margin-bottom: 10px;
    resize: none;
}
/*===== 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);
    top: 8px;
    left: 8px;
}
/*.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.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.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;
    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-repeat: 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: #000000;
    opacity: 0.8;
    -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.2) none repeat scroll 0 0;
    border-radius: 50%;
    color: #ffffff;
    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.5);
    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: 10px;
    position: relative;
    top: 3px;
}
.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;
}
.iwj-candicate-detail-v1 .iwj-candidate-info-top .detail-action-button {
    right: 10px;
}
.iwj-candicate-detail-v1 .iwj-candidate-info-top .detail-action-button .follow {
    padding: 9px 15px;
    line-height: 27px;
}
.iwj-candicate-detail-v1 a.iwj-btn.action-button.follow.iwj-save-resume,
.iwj-candicate-detail-v1 a.iwj-btn.action-button.follow.iwj-download-cv {
    min-width: 165px;
}
.iwj-candicate-detail-v1 .iwj-candidate-info-top .title-headline {
    padding: 0;
}
.iwj-candicate-detail-v1 .iwj-candidate-info-top .info-inner {
    width: auto;
    margin-right: 185px;
}
/*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-bottom: 15px;
}

/*------ End Register form popup -------*/

/*------ login form popup -------*/

.modal-popup.modal{
    padding: 0!important;
    position: fixed!important;
    height:auto;
    z-index:10002;
}
.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;
    }
    a[href]:after {
        content:""!important;
    }
    .entry-footer {
        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: 75px;
    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: 10px 25px;
    margin: 0 15px 0 0;
    height: 75px;
    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: none;
    background: rgba(0, 0, 0, 0.3);
    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: 15px;
    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;
}
/* Style3 */
.iwj-find-jobs.style3 form.iw-job-advanced_search.style3 {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.38);
}
.iwj-find-jobs.style3 form .fields {
    margin: 0 -5px;
}
.iwj-find-jobs.style3 form .fields:after {
    content: "";
    display: table;
    clear: both;
}
.iwj-find-jobs.style3 form .field-item {
    width: 28%;
    margin: 0;
    padding: 0 5px;
    height: 50px;
    margin-bottom: 10px;
}
.iwj-find-jobs.style3.style2-3 form .field-item {
    width: 29%;
}
.iwj-find-jobs.style3.style2-3 form .field-item.submit {
    width: 13%;
}
.iwj-find-jobs.style3 form .fields .field-item .input-select {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    background: #ffffff;
}
.iwj-find-jobs.style3 form .fields .field-item.key-word .input-select,
.iwj-find-jobs.style3 form .fields .field-item.key-word .input-select input {
    height: 100%;
    line-height: inherit;
    font-size: 14px;
    color: #8a8a8a;
}
.iwj-find-jobs.style3 form .fields .field-item.key-word .input-select {
    padding: 0 !important;
    position: relative;
    z-index: 0;
}
.iwj-find-jobs.style3 form .fields .field-item.key-word .input-select input {
    padding: 0 15px;
}
.iwj-find-jobs.style3 form .fields .field-item.key-word .input-select:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    z-index: -1;
}
.iwj-find-jobs.style3 form .fields .field-item.locations {
    position: relative;
}
.iwj-find-jobs.style3 form .fields .field-item .btn-pinpoint {
    padding: 0;
    position: absolute;
    top: calc(50% - 9px);
    right: 15px;
    background: none;
    border: none;
    line-height: 1;
}
.iwj-find-jobs.style3 form .fields .field-item .btn-pinpoint i {
    color: #555555;
    font-size: 14px;
}
.iwj-find-jobs.style3 form .fields .field-item.locations .section-filter,
.iwj-find-jobs.style3 form .fields .field-item.locations input {
    height: 100%;
}
.iwj-find-jobs.style3 form .fields .field-item.locations input {
    border: solid #e1e1e1;
    border-width: 0 1px 0 1px;
    border-radius: 0;
    -webkit-border-radius: 0;
    font-family: Roboto;
    font-size: 14px;
    color: #8a8a8a;
    padding: 0 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.iwj-find-jobs.style3 form .fields .field-item .input-select {
    height: 100%;
}
.iwj-find-jobs.style3 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.style3 form .fields .field-item .select2,
.iwj-find-jobs.style3 form .fields .field-item .select2 .selection {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0;
    min-width: auto;
}
body .iwj-find-jobs.style3 .select2-container .select2-selection--single {
    height: 46px;
    position: relative;
    padding: 0;
}
body .iwj-find-jobs.style3 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
}
.iwj-find-jobs.style3 .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    color: #8a8a8a;
    padding: 0 15px;
}
.iwj-find-jobs.style3 .iw-job-advanced_search .trending-advance .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: rgba(255, 255, 255, 0.5);
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .trending-advance .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
}
body .iwj-find-jobs.style3 .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 16px;
    top: 10px;
}
body .iwj-find-jobs.style3 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    top: auto;
    margin: 0;
    left: auto;
    right: 0;
    width: auto;
}
body .iwj-find-jobs.style3 .select2-container--default .select2-selection--single .select2-selection__arrow b::after {
    content: "\f3d0";
    display: inline-block;
    float: right;
    font-family: "Ionicons";
    line-height: inherit;
    color: #555555;
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .trending-advance .select2-container--default .select2-selection--single .select2-selection__arrow b::after{
    color: rgba(255, 255, 255, 0.5);
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .field-item.location .select2-container--default .select2-selection--single .select2-selection__arrow b::after{
    content: "\f2e9";
}
body .select2-container--open .iwj-find-jobs-dropdown.select2-dropdown--above.style3 {
    bottom: -3px;
}
body .select2-dropdown--below.style3 .select2-search--dropdown {
    border-top: 1px rgba(0, 0, 0, 0.05) solid;
}
body .select2-container--open .select2-dropdown.iwj-select-2-advance-dropdown {
    margin: 0 !important;
}
.iwj-find-jobs.style3 form .field-item.submit {
    width: 16%;
}
.iwj-find-jobs.style3 form .field-item.submit button {
    width: 100%;
    height: 100%;
    background: #33aa58;
    text-align: center;
    margin: 0;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.iwj-find-jobs.style3 form .field-item.submit button h6 {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.iwj-find-jobs.style3 form .fields .field-item i {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}
.iwj-find-jobs.style3 form .field-item.submit button i {
    display: inline-block;
    margin: 0 5px 0 0;
    font-size: 18px;
    color: #ffffff;
    top: 1px;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .field-item {
    margin: 0 0 10px;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .field-item.submit{
    position: relative;
}
.iwj-find-jobs.style3 .trending-keywords {
    text-align: left;
}
.iwj-find-jobs.style3 .trending-keywords span {
    color: #ffffff;
    font-size: 13px;
    text-transform: capitalize;
    padding-right: 25px;
}
.iwj-find-jobs.style3 .trending-keywords a {
    color: #ffffff;
    display: inline-block;
    padding-left: 0;
    font-size: 13px;
    padding-right: 25px;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .field-item.submit button{
    width: 86%;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .field-item.submit .iw-search-add-advanced{
    cursor: pointer;
    position: absolute;
    right: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .field-item.submit .iw-search-add-advanced i{
    color: #FFFFFF;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance .title-form {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    margin-right: 40px;
    line-height: 46px;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance:after {
    display: table;
    content: "";
    clear: both;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance > div {
    float: left;
    margin: 0;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance .select2-container {
    width: auto !important;
    margin-right: 80px;
    min-width: auto;
    height: 46px;
}
.iwj-find-jobs.style3 .iw-job-advanced_search .trending-advance .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 25px !important;
    padding-left: 0 !important;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    opacity: 1;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance.section-filter .select2-selection--single {
    border: none !important;
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .filter-advance .select2-container--default .select2-selection--single .select2-selection__arrow {
    font-size: 16px;
    right: 0 !important;
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .filter-advance .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    color: #ffffff;
}
body .select2-container--open .select2-dropdown {
    min-width: 200px;
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .trending-keywords {
    display: table;
    width: 100%;
    cursor: pointer;
    margin: 0;
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .keywords {
    float: left;
    width: calc(100% - 140px);
}
body .iwj-find-jobs.style3 .iw-job-advanced_search .iw-search-add-advanced {
    float: right;
    width: 140px;
    text-align: right;
    font-size: 12px;
    color: #ffffff;
}
.iwj-find-jobs.style3 form.iw-job-advanced_search.style3 .field-item.submit button {
    width: 100%;
}
/* ===== 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 45px 45px;
}
.iwj-employers.iwj-listing .iwj-employer-item.list .employer-info .info-company .company{
    float:left;
    margin-right:20px;
}
.iwj-employers.iwj-listing .iwj-employer-item.list{
    border-bottom: 1px #f6f7f9 solid;
    height: auto !important;
    position: relative;
}
.iwj-employers .iwj-employer-item {
    padding: 20px 30px;
    margin-bottom: 30px;
    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: 13px 0 0;
    text-align: center;
    max-width: 78px;
    position: relative;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    height: 79px;
}
.iwj-employers .iwj-employer-item .employer-info {
    position: relative;
}
.iwj-employers.iwj-listing .iwj-employer-item .employer-info {
    padding: 0 130px 0 140px;
}
.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-listing .iwj-employer-item.list .employer-info .employer-headline {
    font-family: Montserrat, sans-serif;
    color:#777777;
    font-size:12px;
    font-weight:600;
}
.iwj-employers.iwj-listing .iwj-employer-item.list .employer-info .info-company {
    margin-top:8px;
}
.iwj-employers.iwj-listing .iwj-employer-item.list .employer-info .info-top h3 {
    margin:0px;
}
.iwj-employers.iwj-listing .iwj-employer-item.list .employer-info .employer-name {
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    text-transform: none;
    margin: 0;
}
.iwj-employers .iwj-employer-item .employer-info .employer-name {
    font-weight: 600;
    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 ===== */

/* 2 cols */
.iwj-employers.iwj-grid .grid-content {
    padding: 0 15px;
    float: left;
}
.cols2 .iwj-employers.iwj-grid .grid-content {
    width: 50%;
}
.cols2 .iwj-employers.iwj-grid .grid-content:nth-child(odd) {
    padding: 0 15px 0 0;
}
.cols2 .iwj-employers.iwj-grid .grid-content:nth-child(even) {
    padding: 0 0 0 15px;
}

/* 3 cols */
.cols3 .iwj-employers.iwj-grid .grid-content {
    width: 33.33333%;
}

/* 4 cols */
.cols4 .iwj-employers.iwj-grid .grid-content {
    width: 25%;
}

.iwj-employers.iwj-grid .iwj-employer-item {
    float: left;
    padding: 45px 20px 45px;
    position: relative;
    width: 100%	;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-info .info-top,
.iwj-employers.iwj-grid .iwj-employer-item .employer-info .info-company{
    text-align: center;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-info{
    float:none;
    width:100%;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-image img{
    width:79px;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-info h3{
    margin:0px;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-info .info-company .address a{
    color:#999999;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-info .info-company .employer-headline{
    font-size:12px;
    color:#777777;
    font-family: Montserrat, sans-serif;
    font-weight:600;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-info .employer-name{
    font-size:18px;
    text-transform: none;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-info .openjobs {
    margin-top:18px;
}
.iwj-employers.iwj-listing .iwj-employer-item .openjobs{
    position: absolute;
    top: 38px;
    right: 30px;
}
.openjobs a.link-openjobs{
    background: #45bd15;
    color: #fff;
    padding: 6px 20px;
    border-radius: 14px;
}
.iwj-employers.iwj-grid .iwj-employer-item .employer-image{
    /*margin-right: 20px;*/
    float:none;
    margin: 0px;
    max-width: none;
    position: relative;
    margin-bottom: 12px;
}
/* ===== End Employers Grid ===== */

/* ===== Candidates Listing ===== */
.iwj-candidates.iwj-listing .candidate-item{
    height: auto !important;
    padding: 20px 0 12px 45px;
    margin-bottom: 20px;
    background: #ffffff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.iwj-candidates.iwj-listing .candidate-image {
    float: left;
    margin-top:12px;
    overflow: hidden;
    max-width: 95px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    -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-listing .candidate-title{
    margin: 0 0 8px;
}
.iwj-candidates.iwj-listing .candidate-title a, .iwj-candidates.iwj-listing .candidate-title span{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    display: inline-block;
    font-family: Montserrat, sans-serif;
}
.iwj-candidates.iwj-listing .candidate-info{
    padding: 0;
    position: relative;
    margin: 0 0 0 140px;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-top {
    padding-right: 20px;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-bottom a:first-child{
    padding-left:0px;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-bottom a{
    color: #999999;
    padding-left:10px;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-bottom a:before{
    content: "\f02b";
    font-family: FontAwesome;
    padding-right: 12px;
    width: 16px;
    text-align: center;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-bottom{
    border-top: 1px solid #f7f7f7;
    padding-top: 10px;
    margin-top: 16px;
    color: #999999;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-left{
    float:left;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-right a{
    color: #13b02d;
    text-transform: uppercase;
    font-size:12px;
    font-family: Montserrat, sans-serif;
    font-weight:600;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-right a i {
    margin: 0;
}
.iwj-candidates.iwj-listing .candidate-info .candidate-info-right{
    float:right;
}
.iwj-candidates.iwj-listing .candidate-info i{
    width: 15px;
    font-size: 13px;
    text-align: center;
    margin-right: 5px;
}
.iwj-candidates.iwj-listing .candidate-info h3.candidate-title{
    margin:0px;
}
.iwj-candidates.iwj-listing .candidate-info .info-item .categories{
    color: #777777;
    font-weight: 600;
    margin-bottom: 5px;
}
.iwj-candidates.iwj-listing .candidate-info .info-item i {
    width: 16px;
    height: 20px;
    line-height: 21px;
    text-align: center;
    display: inline-block;
    margin: 0;
}
.iwj-candidates.iwj-listing .candidate-info .info-item .address a{
    color: #999999;
}
.iwj-candidates.iwj-listing .candidate-info .address i{
    color: #f16e8e;
    font-size: 14px;
}
.iwj-candidates.iwj-listing .candidate-info .latest-activities .content span {
    color: #999999;
}
/* ===== END Candidates Listing ===== */

/* ===== Candidates Grid ===== */
/* 2 cols */
.iwj-candidates.iwj-grid .grid-content {
    float: left;
    padding: 0 15px;
}
.cols2 .iwj-candidates.iwj-grid .grid-content {
    width: 50%;
}

/* 3 cols */
.cols3 .iwj-candidates.iwj-grid .grid-content {
    width: 33.33333%;
}

/* 4 cols */
.cols4 .iwj-candidates.iwj-grid .grid-content {
    width: 25%;
}

.iwj-candidates.iwj-grid .candidate-item .candidate-headline{
    font-size:12px;
    color:#777777;
    font-family: Montserrat, sans-serif;
    font-weight:600;
}

.iwj-candidates.iwj-grid .candidate-item {
    display: table;
    padding: 0;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    float: left;
    text-align: center;
    position: relative;
    background: #ffffff;
    border-bottom: none;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.iwj-candidates.iwj-grid .candidate-item:hover {
    -webkit-transform: translate3d(0,-15px,0);
    transform: translate3d(0,-15px,0);
    z-index: 9;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.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: 1;
}
.iwj-candidates.iwj-grid .candidate-info {
    padding: 35px 35px 0;
    position: relative;
}
.iwj-candidates.iwj-grid .info-top {
    padding-bottom: 30px;
}
.iwj-candidates.iwj-grid .info-top .candidate-image {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    -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 0 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
    font-family: Montserrat, sans-serif;
}
.iwj-candidates.iwj-grid .headline {
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 11px;
}
.iwj-candidates.iwj-grid .resumes-address a{
    color: #999999;
}
.iwj-candidates.iwj-grid .resumes-address {
    color: #999999;
    margin-top:10px;
}
.iwj-candidates.iwj-grid .resumes-address i {
    color: #f16e8e;
}
.iwj-candidates.iwj-grid .resumes-address span {
    padding: 0 5px;
}
.iwj-candidates.iwj-grid .info-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
    padding: 0 35px 25px;
    opacity: 0;
    -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    -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{
    color: #333333;
    line-height: 26px;
    margin-top: 12px;
    margin-bottom: 18px;
}
.iwj-candidates.iwj-grid .latest-activities {
    margin-bottom: 18px;
    line-height: 26px;
}
.iwj-candidates.iwj-grid .latest-activities i {
    display: inline-block;
    width: 20px;
}
.iwj-candidates.iwj-grid .latest-activities .content label {
    margin: 0;
}
.iwj-candidates.iwj-grid .latest-activities .content span {
    color: #999999;
}
.iwj-candidates.iwj-grid .candidate-item .view-resume {
    display: inline-block;
    color: #ffffff;
    border-width: 2px;
    border-style: solid;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 34px;
    padding: 0 20px;
}
.iwj-candidates.iwj-grid .candidate-item .view-resume:hover {
    background: #ffffff;
}
.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 ===== */
/* Style 1 */
.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.style1 .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;
}*/

/* Style 2 */
.iwj-pricing-tables.style2 {
    background: #fff;
}
.iwj-pricing-tables.style2 .owl-item .pricing-item{
    margin: 3px 10px;
    box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.iwj-pricing-tables.style2 .owl-item .pricing-item:hover{
    box-shadow: 0px 2px 20px 1px rgba(0, 0, 0, 0.1);
}
.iwj-pricing-tables.style2 .pricing-item .item-top{
    border-bottom: 1px solid #ebebeb;
    height: auto;
    overflow: visible;
}
.iwj-pricing-tables.style2 .pricing-item.popular .item-top .package_label {
    position: absolute;
    color: #Fff;
    background: #ff8800;
    padding: 5px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 2px;
    line-height: 12px;
    top: -3px;
    right: 3px;
}
.iwj-pricing-tables.style2 .pricing-item .item-top .item-top-content{
    position: static;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    padding: 20px 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.iwj-pricing-tables.style2 .pricing-item .price{
    color: #4c5462;
    font-size: 48px;
    line-height: 1.1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.iwj-pricing-tables.style2 .pricing-item:hover .price{
    color: #00c9fd;
}
.iwj-pricing-tables.style2 .pricing-item .title{
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    padding: 20px 0;
    line-height: 18px;
}
.iwj-pricing-tables.style2 .pricing-item .price span{
    font-size: 18px;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom {
    padding: 0;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom ul{
    padding: 20px 0;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom ul li {
    list-style: none;
    font-size: 15px;
    line-height: 40px;
    height: 40px;
    padding-left: 32px;
    color: rgb(119,119,119);
    background: none;
    margin-bottom: 0;
    font-weight: normal;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom ul li .unlimited{
    color: #13b02d;
    text-transform: capitalize;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom ul li:nth-child(even){
    background-color: #F6F7F9;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom ul li span {
    color: #333;
    font-weight: 500;
    position: absolute;
    left: 160px;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom ul li span i{
    color: #e84a5f;
    font-size: 18px;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom .choose-package {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom .choose-package:before{
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom .choose-package:after{
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.iwj-pricing-tables.style2 .pricing-item:hover .item-bottom .choose-package:before{
    opacity: 1;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom .choose-package .buy-now {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2b323f;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    border: 0 none;
    border-radius: 100px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    outline: 0 none;
    padding: 13px 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 1;
    white-space: nowrap;
    vertical-align: middle;
    text-overflow: ellipsis;
    width: auto;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom .choose-package .buy-now:before{
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #00c9fd 0%, #81ee8e 100%) repeat scroll 0 0;
    border-radius: 100px;
    content: "";
    height: calc(100% + 4px);
    left: -2px;
    position: absolute;
    top: -2px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: calc(100% + 4px);
    z-index: -2;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom .choose-package .buy-now:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 100px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: -1;
}
.iwj-pricing-tables.style2 .pricing-item:hover .item-bottom .choose-package .buy-now:not([disabled]){
    color: #ffffff;
}
.iwj-pricing-tables.style2 .pricing-item:hover .item-bottom .choose-package .buy-now:not([disabled]):after{
    opacity: 0;
}
.iwj-pricing-tables.style2 .pricing-item .item-bottom .choose-package .buy-now:not([disabled]):hover{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #fff;
    outline: 0 none;
    border: 0 none;
    text-decoration: none;
}

/* Membership */
.iwj-dashboard-main.current-plan .iwj-change-plan{
    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-dashboard-main.current-plan .iwj-change-plan i{
    margin-right: 7px;
    font-size: 13px;
}
.iwj-dashboard-main.current-plan .iwj-cancel-subscription{
    display: inline-block;
    background: #aaa;
    padding: 3px 25px;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    outline-style: none;
}

/* ===== 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;
}

/* ===== 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: 130px;
        height: 130px;
        padding: 10px 12px;
    }
    .main-information .empl-box .empl-small-detail a {
        color: #ffffff;
        font-size: 13px;
    }
    .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;
    }
    .cols4 .iwj-candidates.iwj-grid .grid-content {
        width: 33.33333%;
    }
    .cols4 .iwj-employers.iwj-grid .grid-content {
        width: 33.33333%;
    }
}
@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;
    }
    .iwj-find-jobs.style3 form .field-item.submit button h6 {
        font-size: 12px;
    }
    .iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance > div {
        width: auto !important;
    }
    .iwj-jobs-style.column-4 .iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
        width: 33.33333333%;
    }
    .iwj-jobs-style.style2.column-4 .iwj-jobs.iwj-grid .grid-content:nth-child(3n) .job-item {
        border-right: none;
    }
}
@media (max-width: 1199px) {
    .iwj-verify-account .desc-form {
        padding: 0;
    }
    .main-information .empl-info-jobs-item .empl-box {
        padding: 20px 10px;
    }
    .iwj-single-parallax.iwj-candicate-detail-v2 .iw-parallax{
        background-size: cover !important;
    }
}
@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: 80px;
    }

    .job-item .job-info .job-type {
        top: auto;
    }
    .job-item .job-info .job-type,
    .iwj-job-items.style3 .job-info .job-company-time {
        position: relative;
        margin-top: 5px;
    }
    .iwj-job-items.style2 .job-info .job-posted-time,
    .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;
    }
    .iwj-overview .info-top-wrap.info-top-wrap-employer{
        background-size: auto;
    }
    body .row-in-revo-slider {
        margin-top: -280px !important;
        margin-bottom: 0 !important;
    }
    body .categories-in-revo-slider {
        margin-top: 100px;
    }
    .iwj-categories.style9.categories-in-revo-slider .item-category .category-icon i,
    .iwj-categories.style9.categories-in-revo-slider .item-category .category-title a,
    .iwj-categories.style9.categories-in-revo-slider .item-category .total-jobs {
        color: #333333;
    }
    .iwj-categories.style9.categories-in-revo-slider .item-category .total-jobs:before {
        background: #333333;
    }
    .iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance .title-form,
    .iwj-find-jobs.style3 form.iw-job-advanced_search .filter-advance .select2-container {
        margin-right: 15px;
    }
    .iwj-find-jobs.style3 form .field-item {
        width: 50%;
    }
    .iwj-employer-detail .employer-detail-v2 .iwj-employerdl-content {
        margin-bottom: 30px;
    }
    .iwj-candicate-detail-v2 .candidate-detail-menu ul.menu {
        float: none;
        width: 100%;
    }
    .iwj-candicate-detail-v2 .candidate-detail-menu .social-link {
        float: none;
        width: 100%;
        text-align: left;
        margin: 20px 0 10px;
    }
    .iwj-candicate-detail-v2 .candidate-detail-menu .iw-social-all.hover-bg li {
        margin-left: 0;
        margin-right: 8px;
    }
    .iw-job-detail.v2 .page-heading-content .action-button {
        float: none;
        width: 100%;
        padding: 20px 20px 0 212px;
    }


}
@media (min-width: 981px) and (max-width: 991px) {
    .iwj-find-jobs.style3 form .field-item.submit button h6{
        display: none;
    }
}
@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;
    }
    .iwj-featured-categories .iwj-items .iwj-item:nth-child(5n+0),
    .iw-recent-resumes.shortcode .iwj-items .iwj-item:nth-child(4n+0) {
        border-right: 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;
    }
    .iwj-categories.style8 .item-category:nth-child(4n+0) {
        border-right: 1px solid #f1f1f1 !important;
    }
    .iwj-categories.style8 .item-category:nth-child(4) {
        border-top: 1px solid #f1f1f1 !important;
    }
    .iwj-content {
        width: 100%;
        float: none;
        z-index: 1;
    }
    .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.select2-container {
        width: calc(50% - 5px) !important;
    }
    .iwj-search-form .select2.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,
    body.iwj-job-taxonomy-page .iwj-jobs.page {
        position: relative;
    }
    body.iwj-job-taxonomy-page .iwj-sidebar-1, body.jobs-page-style2 .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: 99;
        padding: 0;
        box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
    }
    body.iwj-job-taxonomy-page .iwj-sidebar-1.open-filter, body.jobs-page-style2 .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;
    }

    /*Job Table*/
    .iwj-table-overflow-x {
        overflow-x: scroll;
    }
}

@media (max-width: 767px) {
    .iwj-featured-jobs .iwj-items .iwj-item,
    .iwj-jobs-carousel .iwj-items .iwj-item {
        border-right: 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);
    }
    .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-candicate-detail-v2 .iwj-candicate-widget-wrap {
        padding: 0;
    }
    .iwj-profile .info-top-wrap {
        padding: 50px 30px;
        display: inline-block;
        vertical-align: top;
    }

    .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 {
        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;
    }
    .iwj-jobs.iwj-style-match-height .grid-content {
        width: 100%;
    }
    body .row-in-revo-slider {
        margin-top: -400px !important;
    }
    body .categories-in-revo-slider {
        margin-top: 200px;
    }
    .iwj-candicate-detail-v2 .info-top .info-inner .candidate-info,
    .iwj-candicate-detail-v2 .info-top .info-inner .detail-action-button.iwj-button-loader {
        float: none;
        width: 100%;
    }
    .iwj-candicate-detail-v2 .info-top .info-inner .iwj-button-loader.detail-action-button a {
        float: left;
    }
    .iwj-candicate-detail-v2 .info-top .info-inner .detail-action-button a.iwj-download-cv {
        margin-left: 0;
        margin-right: 8px;
    }
    .iwj-candidate-info-top .candidate-logo {
        float: none !important;
        margin: 0 0 20px !important;
    }
    .iwj-candicate-detail-v1 .iwj-candidate-info-top .info-inner {
        margin: 0;
    }
    .iwj-candidates.iwj-grid .grid-content {
        width: 50% !important;
    }
    .iwj-employers.iwj-grid .grid-content {
        width: 50% !important;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .iwj-categories.style9 .element-item {
        width: 33.33333333%;
    }
}
@media (min-width: 420px) and (max-width: 640px) {
    .iwj-categories.style9 .element-item {
        width: 50%;
    }
}

@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;
    }
    .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;
    }
    .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;
    }
    .iwj-categories.style8 .item-category:nth-child(2n+0) {
        border-right: 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.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-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 {
        float: none !important;
        margin: 0 0 30px;
    }
    .iwj-employer-detail .title-location,
    .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;
    }

    .iwj-application-details .application-details > li .title:after{
        content: none;
    }
    body .iwj-find-jobs.style3-3 .iw-job-advanced_search .iw-search-add-advanced,
    body .iwj-find-jobs.style3-3 .iw-job-advanced_search .keywords {
        float: none;
        width: 100%;
        text-align: left;
    }
    .iwj-find-jobs.style3 .trending-keywords span,
    .iwj-find-jobs.style3 .trending-keywords a {
        padding-right: 10px;
    }
    .iwj-find-jobs.style3 .trending-keywords a {
        font-size: 11px;
    }
    body .row-in-revo-slider {
        margin-top: -350px !important;
    }
    body .categories-in-revo-slider {
        margin-top: 180px;
    }
    .iwj-jobs-style.style2.column-3 .iwj-jobs.iwj-grid .grid-content:nth-child(2n) .job-item {
        border-right: none;
    }
    .iwj-jobs-style.column-4 .iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
        width: 50%;
    }
    .iwj-jobs-style.style2.column-4 .iwj-jobs.iwj-grid .grid-content:nth-child(2n) .job-item {
        border-right: none;
    }
    .iwj-jobs-style.style2.column-3 .iwj-jobs.iwj-grid .grid-content:nth-child(3n) .job-item {
        border-right: 1px #f5f5f5 solid;
    }
    .iwj-jobs-style.style2.column-4 .iwj-jobs.iwj-grid .grid-content:nth-child(4n) .job-item {
        border-right: 1px #f5f5f5 solid;
    }
    .iw-job-detail.v2 .job-detail-about {
        padding: 10px 25px 0;
    }
    .iw-job-detail.v2 .page-heading-content .info-company,
    .iw-job-detail.v2 .page-heading-content .info-job{
        padding: 0 20px;
        width: 100%;
    }
    .iw-job-detail.v2 .page-heading-content .info-job{
        margin-top: 10px;
    }
    .iw-job-detail.v2 .page-heading-content .action-button {
        padding: 20px 15px 0 12px;
    }
    .iwj-candicate-detail .candidate-detail-desc {
        padding: 40px 25px 45px;
    }
    .iwj-candicate-detail .iwj-candicate-detail-v2 .resume-detail-info {
        padding: 0 25px;
    }
    .iwj-employers.iwj-listing .iwj-employer-item {
        padding: 20px 20px 45px;
    }
    .iwj-employers.iwj-listing .iwj-employer-item .employer-info {
        padding: 0 0 0 100px;
    }
    .iwj-employers.iwj-listing .iwj-employer-item .openjobs {
        position: relative;
        top: auto;
        right: auto;
        padding: 20px 0 0 100px;
    }
    .iwj-candidates.iwj-listing .candidate-item {
        padding: 20px 0 12px 20px;
    }
    .iwj-candidates.iwj-listing .candidate-info {
        margin: 0 0 0 110px;
    }
    .iwj-candidates.iwj-listing .candidate-info .candidate-info-right,
    .iwj-candidates.iwj-listing .candidate-info .candidate-info-left {
        float: none;
    }
}
@media (max-width: 560px) {
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-image{
        width: 115px;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-content-wrap{
        margin-left: 115px;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info,
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item:last-child .job-info{
        padding: 25px;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info .job-type{
        position: inherit;
        padding: 0 0 25px 25px;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item::after{
        left: 115px;
    }
}
@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;
    }
    .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;
    }
    .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% !important;
    }
    .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-candicate-detail-v2 .iwj-candicate-widget-wrap {
        padding: 0;
    }
    .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;
    }
    .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%;
    }
    .iwj-employers.iwj-grid .grid-content {
        width: 100% !important;
    }
    .iwj-candidates.iwj-grid .grid-content {
        width: 100% !important;
    }
    .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 {
        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 0 !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;
        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;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item::after{
        content: none;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-grid .job-item {
        border-right: none !important;
    }
    .iwj-candicate-detail-v2 .info-top .candidate-logo {
        float: none;
        margin: 0 0 15px;
    }
    .iwj-candicate-detail-v2 .info-top .info-inner {
        margin: 0;
    }
    .iw-recent-resumes-style2 .recent-resume-item .resumes-avatar {
        float: none;
        margin: 0 auto 30px;
    }
    .iw-recent-resumes-style2 .recent-resume-item .info-content {
        margin: 0;
    }
}

@media (max-width: 479px) {
    body .row-in-revo-slider {
        margin-top: -540px !important;
        margin-bottom: 0 !important;
    }
    body .categories-in-revo-slider {
        margin-top: 210px;
    }
}
@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: 420px) {
    body .row-in-revo-slider {
        margin-top: -420px !important;
        margin-bottom: 0 !important;
    }
}
@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;
    }
    body .row-in-revo-slider {
        margin-top: -390px !important;
        margin-bottom: 0 !important;
    }
    body .categories-in-revo-slider {
        margin-top: 40px;
    }
}
/* ===== 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;
}
/*=== RESPONSIVE ===*/
@media screen and (max-width: 1024px) {
    .iwj-employer-detail .employer-detail-v2 .job-item .job-info .job-type{
        position: absolute;
        top: -5px;
    }
}
@media screen and (max-width: 991px) {
    /* Single Employer */
    .iwj-employer-detail .employer-detail-v2 .employer-info-top .employer-logo {
        margin: 0 50px 10px 0;
        width: 75px;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top .info-top {
        padding: 30px 220px 30px 35px;
    }
    .iwj-employer-detail .employer-detail-v2 .follow-button .iwj-box-rating {
        margin: 10px 0;
        float: none;
    }
    .iwj-employer-detail .employer-detail-v2 .follow-button a.iwj-btn.action-button.follow {
        margin-bottom: 10px !important;
    }
    .iwj-candicate-detail .iwj-candicate-detail-v2 .resume-detail-info {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 767px) {
    /* Job Listing */
    .iw-top-bar-wrapper .top-bar-right .notification a i, .header.header-default .iw-header .notification a i {
        font-size: 25px;
        color: #2980b9 !important;
    }
    .entry-content .top-category {
        margin-top: -110px !important;
    }
}
@media screen and (max-width: 640px){
    /* Job Listing */
    .iwj-jobs-style.column-3 .iwj-jobs.iwj-grid .iwj-job-items-margin .grid-content {
        width: 50%;
    }
    /* Single Employer */
    .iwj-employer-detail .employer-detail-v2 h3.iw-title-border {
        padding: 30px 20px;
    }
    .employer-detail-v2 .iwj-jobs .job-item {
        padding: 25px 0 0 20px;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top .info-top {
        padding: 20px;
    }
    .iwj-employer-detail .employer-detail-v2 .employer-info-top .employer-logo {
        margin: 0 0 10px 0;
    }
    .iwj-employer-detail .employer-detail-v2 .follow-button {
        position: relative;
        top: auto;
        right: auto;
    }
    .iwj-employer-detail .employer-detail-v2 .follow-button {
        padding: 0 20px 15px;
    }
    .iwj-employer-detail .employer-detail-v2 .follow-button .iwj-box-rating {
        text-align: left;
    }
    .entry-content .top-category {
        margin-top: -75px !important;
    }
}
@media screen and (max-width: 480px) {
    /* Job Listing */
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info .job-type {
        top: 10px;
        left: 25px;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-content-wrap {
        margin: 0 auto;
        display: block;
        clear: both;
        text-align: center;
    }

    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-image {
        padding: 15px 0;
        width: 100px;
        float: none;
        margin: 0 auto;
    }

    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info,
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item:last-child .job-info {
        padding: 30px 25px;
    }

    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item:after {
        left: 100px;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-image img {
        max-width: 59px;
    }
    .page-nav .page-numbers {
        height: 30px !important;
        line-height: 30px !important;
        width: 30px !important;
    }
    .jobs-layout-form form .show-filter-mobile {
        padding: 0 20px;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info .job-type{
        padding: 0;
        position: initial;
    }
    .iwj-jobs-style.style2 .iwj-jobs.iwj-listing .job-item .job-info .job-type a{
        float: none;
    }
    /* Single Employer */
    .employer-detail-v2 .iwj-jobs .job-item {
        padding: 25px 20px 0 20px;
    }
    .employer-detail-v2 .job-item .job-info{
        padding-right: 170px;
    }
    .iwj-employer-detail .employer-detail-v2 .follow-button{
        margin: 0 !important;
    }
    .iwj-employer-detail .employer-detail-v2 h3.iw-title-border {
        padding: 20px 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 {
        left: 25px;
    }
    .employer-detail-v2 .job-item .job-info {
        padding-right: 0;
    }
    .iwj-employer-detail .employer-detail-v2 .job-item .job-info .job-type {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 0 30px;
    }
    .employer-detail-v2 .info-company ul {
        padding-bottom: 15px;
    }
    .entry-content .top-category {
        margin-top: 50px !important;
    }
}
@media screen and (max-width: 400px){
    .iwj-employers-slider.style4 .employer-item .content-right{
        margin: 0;
        padding: 0 25px;
    }
}
@media screen and (max-width: 320px){
    /* Job Listing */
    .iwj-grid .job-item {
        padding: 25px 15px 35px;
        position: relative;
        border-bottom: none;
    }
    /* Single Employer */
    .iwj-employer-detail .employer-detail-v2 .employer-detail-info,
    .iwj-employer-detail .employer-detail-v2 .iwj-employer-review {
        padding: 0 25px;
    }
    .iwj-employer-detail .employer-detail-info > div,
    .iwj-employer-detail .iwj-employer-review > .iwj-review-container {
        border-bottom: 1px solid #f6f7f9;
        padding: 20px 0 10px;
    }
    .iwj-employer-detail .employer-detail-info .title h3,
    .iwj-employer-detail .iwj-employer-review .title h3 {
        margin-bottom: 20px;
    }
    .employer-detail-v2 .widget-area .widget-title {
        padding: 0 20px;
    }
    .iwj-widget-information.style2 li {
        padding: 22px 20px;
    }
    .employer-detail-v2 div.iwjmb-field {
        padding: 0 20px;
    }
    .iwj-employer-detail .employer-detail-v2 h3.title {
        font-size: 24px;
        line-height: 33px;
    }

}

/*=== END RESPONSIVE ===*/

/*== SIDEBAR JOB STYLE 2*/
.iwj-job-detail-v2 .widget-area{
    padding: 0;
    background: none;
}
.iwj-job-detail-v2 .widget-area aside {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
}
.iwj-job-detail-v2 .widget-area .widget-title{
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    padding: 25px 30px;
    border-bottom: 1px solid #f8f8f8;
}
.iwj-job-detail-v2 .widget-area .widget-title:after{
    display: none;
}
.iwj-job-detail-v2 .iwj-job-widget-wrap{
    padding: 0;
}
.iw-job-detail.v2 .company-link {
    padding: 0 0 10px;
    text-align: center;
}
.iw-job-detail.v2 .iwj-job-widget-wrap .info-top{
    padding-top: 30px;
}
.iwj-job-infomation-v2-widget ul li{
    padding: 20px 30px;
    border-bottom: 1px solid #f8f8f8;
}
.iwj-job-infomation-v2-widget ul li:last-child{
    border-bottom: none;
}
.iwj-job-infomation-v2-widget ul li i{
    font-size: 32px;
    color: #d2d2d2;
    display: inline-block;
    float: left;
    width: 45px;
}
.iwj-job-infomation-v2-widget ul li .content {
    margin-left: 45px;
}
.iwj-job-infomation-v2-widget ul li .content span.title {
    display: block;
    text-transform: capitalize;
    line-height: 18px
}
.iwj-job-infomation-v2-widget ul li.job-categories .content a {
    font-weight: 600;
}
.iwj-job-infomation-v2-widget ul li .content p,
.iwj-job-infomation-v2-widget ul li .content .skills a,
.iwj-job-infomation-v2-widget ul li.job-levels .content a,
.iwj-job-infomation-v2-widget ul li.job-type .content a {
    font-weight: 600;
    color: #777777;
}
.iwj-job-detail-v2 .iwj-single-contact-form {
    padding: 10px 30px 30px;
}
.iwj-job-detail-v2 .widget-area .widget_iwj_job_contact_form .widget-title,
.iwj-job-detail-v2 .widget-area .widget_iwj_jobs_by_author .widget-title {
    border-bottom: none;
}

/*== END SIDEBAR JOB STYLE 2*/

a.dotted{
    border-bottom: dashed 1px;
    text-decoration: none;
}

.owl-carousel-gallery .owl-dots{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.owl-carousel-gallery.owl-theme .owl-dots .owl-dot span{
    background: #41bf68;
}
.owl-carousel-gallery.owl-theme .owl-dots .owl-dot.active span{
    border: solid 2px #fff;
    width: 13px;
    height: 13px;
}