/* css for front & back end*/
:root {
    --main-color: #bb141a;
    --main-color-dark: #a30207;
    --sub-color: #303030;
}
/*font style*/
a {
    color: var(--main-color);
}
a:hover{
    color: var(--sub-color);
}
img{
    max-width: 100%;
}
/*font*/
.font-6 {
    font-size: 6px;
}
.font-7 {
    font-size: 7px;
}
.font-8 {
    font-size: 8px;
}
.font-9 {
    font-size: 9px;
}
.font-10 {
    font-size: 10px;
}
.font-11 {
    font-size: 11px;
}
.font-12 {
    font-size: 12px;
}
.font-13 {
    font-size: 13px;
}
.font-14 {
    font-size: 14px;
}
.font-15 {
    font-size: 15px;
}
.font-16 {
    font-size: 16px;
}
.font-17 {
    font-size: 17px;
}
.font-18 {
    font-size: 18px;
}
.font-19 {
    font-size: 19px;
}
.font-20 {
    font-size: 20px;
}
.font-21 {
    font-size: 21px;
}
.font-22 {
    font-size: 22px;
}
.font-23 {
    font-size: 23px;
}
.font-24 {
    font-size: 24px;
}
.font-25 {
    font-size: 25px;
}
.font-26 {
    font-size: 26px;
}
.font-27 {
    font-size: 27px;
}
.font-28 {
    font-size: 28px;
}
.font-29 {
    font-size: 29px;
}
.font-30 {
    font-size: 30px;
}
.font-31 {
    font-size: 31px;
}
.font-32 {
    font-size: 32px;
}
.font-33 {
    font-size: 33px;
}
.font-34 {
    font-size: 34px;
}
.font-35 {
    font-size: 35px;
}
.font-36 {
    font-size: 36px;
}
.font-37 {
    font-size: 37px;
}
.font-38 {
    font-size: 38px;
}
.font-39 {
    font-size: 39px;
}
.font-40 {
    font-size: 40px;
}
.font-41 {
    font-size: 41px;
}
.font-42 {
    font-size: 42px;
}
.font-43 {
    font-size: 43px;
}
.font-44 {
    font-size: 44px;
}
.font-45 {
    font-size: 45px;
}
.font-46 {
    font-size: 46px;
}
.font-47 {
    font-size: 47px;
}
.font-48 {
    font-size: 48px;
}
.font-49 {
    font-size: 49px;
}
.font-50 {
    font-size: 50px;
}
.font-51 {
    font-size: 51px;
}
.font-52 {
    font-size: 52px;
}
.font-53 {
    font-size: 53px;
}
.font-54 {
    font-size: 54px;
}
.font-55 {
    font-size: 55px;
}
.font-56 {
    font-size: 56px;
}
.font-57 {
    font-size: 57px;
}
.font-58 {
    font-size: 58px;
}
.font-59 {
    font-size: 59px;
}
.font-60 {
    font-size: 60px;
}
.font-base{
    font-size: 1rem !important;
}
.mt-default{
    margin-top: 1.5rem !important;
}
.mb-default{
    margin-bottom: 1.5rem !important;
}
.my-default{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.py-default{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
a:hover{
    text-decoration: none;
}
.display-5 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-6 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
}
.display-7 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}
p{
    margin-bottom: 0.5rem;
}
/*end font style*/
.sub-title{
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--main-color);
    border-bottom: 1px dashed var(--main-color);
}
.text-main{
    color: var(--main-color) !important;
}
.text-sub{
    color: var(--sub-color) !important;
}
.bg-main{
    background-color: var(--main-color) !important;
    color: #ffffff;
}
.bg-sub{
    background-color: var(--sub-color) !important;
    color: #ffffff;
}
.bg-main a{
    color: #ffffff;
}
/*button*/
.btn-main {
    color: #fff !important;
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
.btn-main:hover {
    color: #fff !important;
    background-color: var(--main-color-dark) !important;
    border-color: var(--main-color-dark) !important;
}
.btn-sub {
    color: #fff;
    background-color: var(--sub-color);
    border-color: var(--sub-color);
}
.btn-sub:hover {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
/*end button*/
.dropzone{
    min-height: 0;
    padding: 10px;
    text-align: center;
}
.dropzone .dz-message{
    margin: 0;
}
.dropzone-delete{
    position: absolute;
    top: 0;
    right: 0px;
}
.dropzone.dz-clickable{
    max-width: 200px;
    margin: 0 auto;
}
img.avatar{
    width: 160px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    padding: 5px;
}
.avatar-sm{
    width: 70px !important;
}
img.cover{
    width: 240px;
    height: 160px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}
.card-footer .pagination{
    margin-bottom: 0;
    overflow: auto;
}
.card-footer button{
    margin-left: 10px;
}
.btn-default{
    border: 1px solid #ccc !important;
}
.form-control.is-invalid,
.mce-tinymce.is-invalid{
    border-color: #dc3545;
}
.model-list-item{
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.model-list-item span {
    text-transform: capitalize;
}
.model-list > .model-list-item:last-child{
    margin-bottom: 0;
}
.model-list-img{
    width: 100px;
    max-width: 100%;
    margin-right: 1rem;
    border: 1px solid #ddd;
}
.model-list-sm .model-list-img{
    width: 70px;
}
.model-list-title{
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 1rem;
}
.model-list-sm .model-list-title{
    font-size: 0.95rem;
}
.model-list-title .badge{
    padding: 5px;
    float: right;
    margin-top: 3px;
    font-size: 11px;
}
/*.model-list-item.job_vip .model-list-title a,
.model-list-item.job_featured .model-list-title a{
    font-weight: bold;
}*/
.model-list-item .model-list-title a{
    position: relative;
}
.model-list-item.job_vip .model-list-title a{
    padding-left: 32px;
}
.model-list-item.job_vip .model-list-title a:before{
    content: "";
    background-image: url(/wp-content/plugins/wejob/assets/img/vip.gif);
    width: 28px;
    height: 19px;
    position: absolute;
    top: 0;
    left: 0;
}
.label-job.label-hot {
    font-size: 9px;
    line-height: 13px;
    background: var(--main-color);
    color: #ffffff;
    padding: 0 3px 1px 3px;
    border-radius: 3px;
    margin-left: 4px;
    animation-duration: 500ms;
    animation-name: hot_anim;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation: hot_anim 500ms infinite;
    vertical-align: super;
}
.model-list-media-map iframe{
    width: 100%;
    height: 400px;
}
.model-list-media-image img{
    width: 100%;
    height: 400px;
}
@media (min-width: 992px) {
    .col-md-12.model-list-media-image img {
        max-width: 100%;
        width: auto;
    }
}
@media (max-width: 991px){
    .model-list-media-map iframe{
        height: 250px;
    }
    .model-list-media-image img{
        width: 100%;
        height: 250px;
    }
    .col-md-12.model-list-media-image img {
        height: auto;
    }
}
.card-body,
.card-footer
.card-header{
    padding: 1rem;
}
/*.card-body .toolbar{
    padding-bottom: 0.5rem;
}
.card-body .toolbar > *{
    margin-right: 10px;
    margin-bottom: 5px !important;
}*/
.card-header .main-title{
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0;
}
#wejob_resume_form .fa-file-o{
    font-size: 120px;
    padding: 20px;
}
.font-100{
    font-size: 100px;
}

/*select2 bs4*/
.select2-container--bootstrap4 .select2-selection--single {
    height: calc(1.5em + .5rem - 1px) !important;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
    color: #495057;
    line-height: 1.5;
    font-size: 0.875rem;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 3px;
    width: 20px;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
    top: 60%;
    border-color: #343a40 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    width: 0;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute; }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.5em + .5rem - 2px);
}
.select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.select2-results__message {
    color: #6c757d;
}
.select2-container--bootstrap4 .select2-selection--multiple {
    min-height: calc(1.5em + .5rem) !important;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    color: #343a40;
    border: 1px solid #bdc6d0;
    border-radius: 0.2rem;
    padding: 0;
    padding-right: 5px;
    cursor: pointer;
    float: left;
    margin-top: 0.3em;
    margin-right: 5px;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
    color: #bdc6d0;
    font-weight: bold;
    margin-left: 3px;
    margin-right: 1px;
    padding-right: 3px;
    padding-left: 3px;
    float: left;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #343a40;
}
.select2-container {
    display: block;
}
.select2-container *:focus {
    outline: 0;
}
.input-group .select2-container--bootstrap4 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group > .select2-container--bootstrap4:not(:last-child) .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.select2-container--bootstrap4 .select2-selection {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    width: 100%;
}
@media screen and (prefers-reduced-motion: reduce) {
    .select2-container--bootstrap4 .select2-selection {
        -webkit-transition: none;
        transition: none;
    }
}
.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select2-container--bootstrap4.select2-container--disabled .select2-selection, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection {
    background-color: #e9ecef;
    cursor: not-allowed;
    border-color: #ced4da;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.select2-container--bootstrap4.select2-container--disabled .select2-search__field, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field {
    background-color: transparent;
}
select.is-invalid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection {
    border-color: #dc3545;
}
select.is-valid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection {
    border-color: #28a745;
}
.select2-container--bootstrap4 .select2-dropdown {
    border-color: #ced4da;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above {
    border-top: 1px solid #ced4da;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true] {
    background-color: #e9ecef;
}
.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
    background-color: #007bff;
    color: #f8f9fa;
}
.select2-container--bootstrap4 .select2-results__option[role=group] {
    padding: 0;
}
.select2-container--bootstrap4 .select2-results > .select2-results__options {
    max-height: 15em;
    overflow-y: auto;
}
.select2-container--bootstrap4 .select2-results__group {
    padding: 6px;
    display: list-item;
    color: #6c757d;
}
.select2-container--bootstrap4 .select2-selection__clear {
    width: 1.2em;
    height: 1.2em;
    line-height: 1.15em;
    padding-left: 0.3em;
    margin-top: 0.5em;
    border-radius: 100%;
    background-color: #6c757d;
    color: #f8f9fa;
    float: right;
    margin-right: 0.3em;
}
.select2-container--bootstrap4 .select2-selection__clear:hover {
    background-color: #343a40;
}
.select2-container .select2-search--inline .select2-search__field{
    max-width: 90%;
    margin-top: 0;
    margin-bottom: 5px;
}
/*end select2*/

.datepicker td, .datepicker th {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.75rem;
}
.datepicker {
    margin-bottom: 3rem;
}
.datepicker-dropdown {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.toolbar .btn{
    margin-right: 0.25rem;
}
/*.toolbar .form-group{
    width: 190px;
}
.toolbar .form-control{
    width: 100% !important;
}

@media (max-width: 767px) {
    .toolbar .form-group{
        width: 47%;
    }
}
*/
.alert-dismissible .close{
    padding: 0.25rem 1rem;
}
.pagination .page-link:focus {
    z-index: 0;
    outline: none;
    box-shadow: none;
}
.card-header h1 {
    font-size: 2rem;
}
.badge-main {
    color: #fff;
    background-color: var(--main-color);
}
.select2-selection{
    min-height: 31px;
}
.select2-selection,
.select2-results{
    font-size: 0.875rem;
}
.select2-selection--multiple{
    padding: 2px 4px;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice{
    margin-top: 1px;
    line-height: 20px;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice > span{
    vertical-align: middle;
}
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove{
    border: none;
    background: no-repeat;
    border-right: 1px solid #ced4da;
    margin-right: 3px;
    padding-right: 6px;
}
.label-job{
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    padding: 5px;
    margin-top: 3px;
    font-size: 11px;
    color: #ffffff;
    background-color: #000;
    animation-duration: 500ms;
    animation-name: blink_new;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation:blink_new 500ms infinite;
}
@keyframes blink_new {
    from {background-color: var(--sub-color);}
    to {background-color: var(--main-color);}
}
@keyframes hot_anim {
    from {transform: scale(1);}
    to {transform: scale(1.3);}
}
.company-name{
    text-transform: uppercase;
}
/*step*/
.steps-form {
    display: table;
    width: 100%;
    position: relative;
    margin-bottom: 5px;
}
.steps-form .steps-row {
    display: table-row;
}
.steps-form .steps-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.steps-form .steps-row .steps-step {
    display: table-cell;
    text-align: center;
    position: relative;
    width: 25%;
}
.steps-form .steps-row .steps-step p {
    margin-top: 0.5rem;
    font-size: 13px;
}
.steps-form .steps-row .steps-step .btn:not(.btn-main) {
    background-color: #ffffff;
}
.steps-form .steps-row .steps-step .btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
    margin-top: 0;
}
.step-cards .card-header{
    padding: 0.5rem .75rem;
    font-weight: bolder;
}
.step-cards .card-footer{
    padding: 0.5rem .75rem;
}
.step-cards .card-body{
    font-size: 14px;
}
#wejob_resume_form .card.card-body.bg-light,
.step-cards .card.card-body.bg-light{
    margin-bottom: 0.75rem;
    padding: 0.75rem;
}
.company-stars{
    cursor: help;
}
.company-stars .fa{
    color: gold;
    margin-right: 2px;
    animation-duration: 3s;
    animation-name: blink_star;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    -webkit-animation:blink_star 3s infinite;
}
@keyframes blink_star {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

ul.timeline {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}
ul.timeline:before {
    content: ' ';
    background: var(--main-color);
    display: inline-block;
    position: absolute;
    left: 15px;
    width: 2px;
    height: 100%;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 10px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--main-color);
    left: 8px;
    width: 16px;
    height: 16px;
}
.btn-group.rounded-pill .btn:first-child {
    border-top-left-radius: 50rem;
    border-bottom-left-radius: 50rem;
    padding-left: 1rem;
}
.btn-group.rounded-pill .btn:last-child {
    border-top-right-radius: 50rem;
    border-bottom-right-radius: 50rem;
    padding-right: 1rem;
}
.language-level .btn{
    margin-right: 3px;
    width: 50px;
}
.language-level .btn:last-child{
    margin-right: 0;
}
@media screen and ( max-width: 450px ) {
    .language-level .btn{
        margin-right: 3px;
        width: 30px;
    }
}