
/*loading button*/
.loading-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0.5;
    background: #ffffff;
}
.fre-loading-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
}
.fre-loading {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 0.25rem solid rgba(31, 189, 189, 0.2);
    border-top-color: #1fbdbd;
    -webkit-animation: fre-spin 1s infinite linear;
    animation: fre-spin 1s infinite linear;
}

@-webkit-keyframes fre-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes fre-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@-o-keyframes fre-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes fre-spin {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg)
    }
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg)
    }
}
/* end loading button*/

/*Metabox*/
.gj-metabox > h3{
    background: #ccc;
    padding: 6px 10px;
    text-transform: uppercase;
    margin: 5px -12px 0;
}
/*Setting Apply Form*/
#gj-tab-applyform .core-field .apply_form_remove_field{
    cursor: not-allowed;
}
.hide{
    display: none;
}
.gj-setting-page form #gj-setting-tabs > ul {
    display: table;
    width: 100%;
    margin-top: 15px;
    background: #23282d;
    border-radius: 0;
}
.gj-setting-page form #gj-setting-tabs > ul li {
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0;
    border-radius: 0;
}
.gj-setting-page form #gj-setting-tabs > ul li a {
    display: inline-block;
    padding: 10px 35px;
    text-decoration: none;
    color: #ffffff;
    outline: none;
    box-shadow: none;
    font-size: 15px;
}

.gj-setting-page form #gj-setting-tabs > ul li a:hover {
    background: #000000;
}
.gj-setting-page form #gj-setting-tabs > ul li.ui-tabs-active a {
    background: #0073aa;
}
.gj-setting-page form #gj-setting-tabs .select2-container--default .select2-selection--multiple {
    border: 1px solid #ddd;
    height: 36px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.gj-setting-page .form-table .gj-heading{
    background: white;
    border-bottom: 1px solid #eee;
}
.gj-setting-page .form-table .gj-heading h3{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* option tables */
.gj-setting-page .form-table th,
.gj-setting-page .form-table td {
    padding: 20px 20px;
}

.gj-setting-page .form-table tbody:first-child tr th:first-child,
.gj-setting-page .form-table tbody:first-child tr td:first-child {
    border-left: 1px solid #DFDFDF;
}
.gj-setting-page .form-table tbody:first-child tr th:last-child,
.gj-setting-page .form-table tbody:first-child tr td:last-child {
    border-right: 1px solid #DFDFDF;
}

.gj-setting-page .form-table {
    margin: 20px 0 0;
}
.gj-setting-page .form-table tr {
    background: white;
    border-bottom: 1px solid #eee;
}

.gj-setting-page p.submit {
    background: #FFF;
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    border-left: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
}

/* heading */
.gj-setting-page .gj-heading th {
    background: #F1F1F1;
    background: none repeat scroll 0 0 #F5F5F5;
    border-left: 1px solid #DFDFDF;
    border-top: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
    color: #222222;
    padding: 10px 20px;
}
.gj-setting-page .gj-heading h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.gj-setting-page .gj-heading p {
    font-weight: normal;
    margin-top: 5px;
}
.gj-setting-page .gj-heading p:last-child {
    margin-bottom: 0;
}

/*order note*/
ul.gj-order-notes {
    padding: 2px 0 0;
}
#poststuff #gj-order-notes .inside ul.gj-order-notes li {
    padding: 0 10px;
}
ul.gj-order-notes li .gj-note-content {
    padding: 10px;
    background: #efefef;
    position: relative;
}
ul.gj-order-notes li.system-note .gj-note-content {
    background: #d7cad2;
}
ul.gj-order-notes li .gj-note-content p{
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}
ul.gj-order-notes li p.meta {
    padding: 10px;
    color: #999;
    margin: 0;
    font-size: 11px;
}
ul.gj-order-notes li .gj-note-content::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: #efefef transparent;
}
ul.gj-order-notes li.system-note .gj-note-content::after {
    border-color: #d7cad2 transparent;
}
.gj-add-note {
    border-top: 1px solid #ddd;
    padding: 10px 10px 0;
}
.gj-add-note #gj-add-order-note {
    width: 100%;
    height: 50px;
}

.gj-submitbox p{
    margin: 5px 0 10px;
}
.gj-submitbox select{
    width: 100%;
}

.job-status{
    padding: 5px 10px ;
    background: #eee;
    display: inline-block;
    margin-top: 2px;
    border-radius: 5px;
}
.job-status.publish{
    background: #00aadc;
    color: #fff;
}
.job-status.gj-completed,.job-status.approved{
    background: #00aadc;
    color: #fff;
}
.job-status.pending{
    background: #1ED200;
    color: #fff;
}
.job-status.gj-incomplete{
    background: #1ED200;
    color: #fff;
}
.job-status.draft,.job-status.reject{
    background: #ff0000;
    color: #fff;
}
.job-status.gj-pending-payment{
    background: #F1C40F;
    color: #fff;
}
.job-status.gj-hold{
    background: #cc00cc;
    color: #fff;
}

/* Action */
.wp-list-table td.actions button{
    padding: 5px 10px;
    background: #fff;
    display: inline-block;
    margin-right: 5px;
    border-radius: 5px;
    cursor: pointer;
    min-width: 87px;
}
.wp-list-table td.actions button[disabled]{
    opacity: 0.5;
    cursor: not-allowed;
}
.wp-list-table td.actions button:last-child{
    margin-right: 0;
}
.wp-list-table td.actions button.publish {
      border: 1px solid #00aadc;
      color: #00aadc;
}
.wp-list-table td.actions button.pending {
    border: 1px solid #1ED200;
    color: #1ED200;
}
.wp-list-table td.actions button.gj-rejected {
    border: 1px solid #ff0000;
    color: #ff0000;
}

/* Featured */
.wp-list-table td.featured button{
    padding: 5px 10px;
    background: #fff;
    display: block;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 1px solid;
    cursor: pointer;
}
.wp-list-table td.featured button.featured{
    border-color: #ffd800;
    color: #ffd800;
}
body .select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 0;
}
.wp-admin table .gj-field .select2-container {
    margin-right: 10px;
}

/*.wp-admin.taxonomy-gj_cat .term-parent-wrap,*/
.wp-admin.taxonomy-gj_type .term-parent-wrap,
.wp-admin.taxonomy-gj_salary .term-parent-wrap,
.wp-admin.taxonomy-gj_skill .term-parent-wrap,
.wp-admin.taxonomy-gj_keyword .term-parent-wrap,
.wp-admin.taxonomy-gj_size .term-parent-wrap,
.wp-admin.taxonomy-gj_level .term-parent-wrap{
    display: none;
}

.post-type-gj_candidate .column-avatar, .post-type-gj_employer .column-avatar, .post-type-gj_job .column-avatar{
    width: 35px;
}
.post-type-gj_candidate td.column-avatar img, .post-type-gj_employer td.column-avatar img, .post-type-gj_job td.column-avatar img{
    max-width: 32px;
    max-height: 32px;
    height: auto;
    padding: 3px 0 3px 3px;
}

.post-type-gj_job .column-title,
.post-type-gj_job .column-actions,
.post-type-gj_employer .column-title,
.post-type-gj_employer .column-actions,
.post-type-gj_candidate .column-title,
.post-type-gj_candidate .column-actions
{
    width: 20%;
}

.post-type-gj_job .column-featured, 
.post-type-gj_job .column-expiry,
.post-type-gj_employer .column-jobs,
.post-type-gj_employer .column-featured,
.post-type-gj_candidate .column-featured
{
    width: 10%;
}

table.wp-list-table.reviews span.job-status{
    text-transform: capitalize;
}
.gj-setting-page .gj-setting-accordion {
    margin: 20px 0 0;
    border-top: 1px #dfdfdf solid;
}
.gj-setting-page .gj-setting-accordion > h3 {
    font-size: 14px;
    margin: 0;
    padding: 10px 20px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #dfdfdf;
    cursor: pointer;
}
.gj-setting-page .gj-setting-accordion table {
    margin: 0;
}
.gj-edit-review-form .gj-review-criteria{
    float: left;
    display: block;
    clear: both;
    min-width: 325px;
}
.gj-edit-review-form span.criteria-title{
    text-transform: capitalize;
    float: left;
}
.gj-edit-review-form span.criteria-stars{
    float: right;
    margin-left: 10px;
}
.gj-edit-review-form span.criteria-stars .caption{
    display: none;
}
.gj-edit-review-form .rating-stars span.star > i{
    color: #F5A623;
    font-size: 20px;
}
.gj-review-setting-page table.form-table tr{
    background: white;
    border-bottom: 1px solid #eee;
}
.gj-review-setting-page table.form-table tr th{
    padding-left: 9px;
}
.gj-review-setting-page table.form-table tr input[type="text"],.gj-review-setting-page table.form-table tr textarea{
    width: 100%;
}
.gj-review-setting-page form #gj_reject_rev_content{
    min-width: 500px;
    display: block;
    margin-bottom: 12px;
}

.gj-review-setting-page td.title > a.no-read{
    color: #555;
    font-weight: bold;
}

table.wp-list-table .column-username img{
    margin-right: 10px;
}
#gj-translate-term-tabs{
    border: none;
}
#gj-translate-term-tabs > ul.ui-tabs-nav, .gj-translate-metabox .ui-tabs.ui-corner-all > ul.ui-tabs-nav{
    margin: 0;
    padding: .2em .2em 0;
    color: #555;
    border-bottom: 1px solid #c5c5c5;
    background: transparent;
    border-width: 0 0 1px;
    border-radius: 0;
}
#gj-translate-term-tabs > ul.ui-tabs-nav > li.ui-corner-top, .gj-translate-metabox .ui-tabs.ui-corner-all > ul.ui-tabs-nav > li.ui-corner-top{
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    white-space: nowrap;
    font-weight: normal;
    border-radius: 3px 3px 0 0;
    border: 1px solid #ccc;
    border-bottom: none;
    margin-left: .3em;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
    background: #e5e5e5;
    color: #555;
}
#gj-translate-term-tabs > ul.ui-tabs-nav > li.ui-corner-top.ui-tabs-active, .gj-translate-metabox .ui-tabs.ui-corner-all > ul.ui-tabs-nav > li.ui-corner-top.ui-tabs-active{
    margin-bottom: -1px;
    padding-bottom: 1px;
    font-weight: normal;
    border-bottom: 1px solid #f1f1f1;
    background: #f1f1f1;
}
#gj_translate_product_data #gj-translate-term-tabs > ul.ui-tabs-nav > li.ui-corner-top.ui-tabs-active{
    border-bottom: 1px solid #ffffff;
    background: #ffffff;
}
#gj-translate-term-tabs > ul.ui-tabs-nav > li a.ui-tabs-anchor, .gj-translate-metabox .ui-tabs.ui-corner-all > ul.ui-tabs-nav > li a.ui-tabs-anchor{
    cursor: pointer;
    float: left;
    padding: .5em 1em;
    text-decoration: none;
    outline: none;
}
#gj-translate-term-tabs > ul.ui-tabs-nav > li:focus, #gj-translate-term-tabs > ul.ui-tabs-nav > li a.ui-tabs-anchor:focus {
    outline: none;
}
#gj-translate-term-tabs > ul.ui-tabs-nav > li a.ui-tabs-anchor img, .gj-translate-metabox .ui-tabs.ui-corner-all > ul.ui-tabs-nav > li a.ui-tabs-anchor img{
    margin-right: 4px;
}
#gj-translate-term-tabs > .ui-tabs-panel.ui-corner-bottom, .gj-translate-metabox .ui-tabs.ui-corner-all > .ui-tabs-panel.ui-corner-bottom{
    padding: 6px 3px;
}
#gj-translate-term-tabs > .ui-tabs-panel.ui-corner-bottom input, .gj-translate-metabox .ui-tabs.ui-corner-all > .ui-tabs-panel.ui-corner-bottom input{
    font-size: 14px;
    font-family: inherit;
}
/*admin sameple link (slug)*/
#sample-permalink > i{
    word-break: break-all;
}

/*jobs export*/
.gj-loading-exports{
    text-align: center;
    margin: 10px 0;
}
#gj-download-link{
    text-align: center;
}

/*jobs import*/
#gj_importjob_sec{
    text-align: center;
}
#gj_filename_display {
    font-weight: 400;
    font-size: 2em;
    margin: 5%;
}
#gj_progress-div{
    border: 1px solid #00A699;
    margin: 30px 0px;
    border-radius: 9px;
    text-align: center;
}
#gj_progress-div #gj_progress-bar{
    background-color: #00A699;
    border-radius: 7px;
    height: 20px;
    color: #FFFFFF;
    width: 0%;
    -webkit-transition: width 1.3s;
    -moz-transition: width 1.3s;
    transition: width 1.3s;
}
#gj_progress-bar .progresslabel{
    color: #fff;
    font-size: 1.2em;
}
#gj_targetLayer{
    width: 100%;
    text-align: center;
}
.clearfix {
    display: block;
}
.gj_mt10 {
    margin-top: 10px !important;
    margin-bottom: 15px;
}
#gj_select_module{
    margin: 15px auto;
}
.gj_mt20{
    margin-top: 20px;
}
.gj_mb20{
    margin-bottom: 20px;
}
.smack-btn{
    font-size: 14px;
    padding: 8px 20px;
    line-height: 1.5em;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    font-family: 'Montserrat', sans-serif !important;
    border: none;
}
.smack-btn.btn-default{
    background: #ffffff;
    border: 1px solid #b2b2b2;
    font-size: 14px;
    text-decoration: none !important;
}
.smack-btn.smack-btn-primary{
    background-color: #00A699;
    border-color: #00A699;
    color: #ffffff;
    cursor: pointer;
}
.smack-btn.smack-btn-danger {
    background-color: #E04B4A;
    border-color: #E04B4A;
    color: #ffffff;
    cursor: pointer;
}
.smack-btn:disabled,.smack-btn[disabled]{
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}
.btn-radius{
    border-radius: 30px;
}
.bhoechie-tab-content, #gj_importjob_sec{
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}
.gj_job_page_gj-tools div.notice, .gj_job_page_gj-tools div.update-nag{
    margin-left: 0;
}
.gj_job_page_gj-setting-page div.notice, .gj_job_page_gj-setting-page div.update-nag{
    margin-left: 0;
}
.gj_job_page_gj-fields-page div.notice, .gj_job_page_gj-fields-page div.update-nag{
    margin-left: 0;
}
.gj-tools-content-page{
    background: #fff;
    padding: 20px 20px 10px;  
}
.gj-tools-content-page table{
    width: 100%;
}
.gj-tools-content-page th{
    text-align: left;
    font-weight: normal;
}
.gj-tools-content-page label{
    display: block;
}
.gj-tools-content-page .gj_file_upload{
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 50px;
    padding-bottom: 20px;
}
#gj_upload_file{
    display: none;
}
.file-upload-icon{
    position: relative;
    display: inline-block;
}
#gj_fileupload{
    text-decoration: none;
    color: #000080;
    cursor: pointer;
}
.file-upload-icon .file-upload-text{
    visibility: hidden;
    width: 230px;
    background-color: #00a699;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 0%;
    margin-left: -85px;
    opacity: 0;
    transition: opacity 1s;
    font-size: 13px;
}
.file-upload-icon .file-upload-text::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #00a699 transparent transparent transparent;
}
.file-upload-icon:hover .file-upload-text{
    visibility: visible;
    opacity: 1;
}
.template_body{
    border: 1px solid #d1d1d1;
    background-color: #fff;
    margin-top: 40px;
    padding: 1%;
    height: auto;
    display: inline-block;
    width: 98%;
}
.csv-importer-heading{
    color: #333;
    line-height: 26px;
    font-weight: 800;
}
.mapping_table .panel-group{
    margin-bottom: 20px;
}
.mapping_table .panel-group .panel{
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    background-color: #fff;
    border: 1px solid #ddd;
}
.panel-default > .panel-heading{
    border-color: #ddd;
    color: #333;
    background-color: #f5f5f5;
    border-bottom: 0;
    border-radius: 0;
    padding: 10px 15px;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
    cursor: pointer;
}
.table-mapping{
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    margin-bottom:0px;
}
.table.table-mapping tr:last-child td{
    border-bottom: none;
}
.table.table-mapping td{
    border-color: #E5E5E5 !important;
    vertical-align: middle;
    border-width: 0 0 1px;
    border-style:solid;
    padding: 8px;
    line-height: 1.42857143;
}
.table.table-mapping tr > td {
    box-sizing: border-box;
}
.mappingtd_style{
    width: 20% !important
}
.groupfield{
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-left: 20px;
}
.grouptitlecontent label{
    font-size: small;
    width: 100%;
}
.table.table-mapping tr:not(:first-child):hover{
    background-color: rgba(244, 250, 255, 0.5);
    border-top-color: #cce6fa;
    border-bottom-color: #cce6fa;
}
.mappingtemplate, .wpfields, .samptxt{
    padding-left: 20px;
}
.samptxt{
    color: #2ea2cc;
}
.wpfields{
    display: block;
}
.mapping-select-close-div {
    height: 246px;
    padding: 8px;
    display: none;
    width: 300px;
    border: 3px solid #2ea2cc;
    margin-top: 5px;
    position: absolute;
    background-color: #ffffff;
    z-index: 99;
}
.gj_import_btn_ctn {
    width: 100%;
    float: left;
    margin-top: 20px;
}
.customfield_btndiv {
    text-align: right;
}
.customfield_btn {
    margin: 15px 15px 15px 0;
}
.media_head {
    margin-left: 2%;
    margin-bottom: 3%;
}
.media_data {
    width: 100%;
    font-size: 14px;
}
fieldset.scheduler-border{
    border: 1px solid #ddd !important;
    padding: 0 1.4em 0.7em 0.7em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}
legend.scheduler-border{
    font-size: 1.2em !important;
    text-align: left !important;
    width: auto;
    padding: 2px 20px;
    background: #f1f1f1 none repeat scroll 0 0;
    border: 1px solid #d3d3d3;
    display: block;
    margin-bottom: 20px;
    line-height: inherit;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}
.gj_option_media_left{
    width: 60%;
    float: left;
}
.gj_option_media_right{
    width: 40%;
    float: left;
}
/* skewed  button css */
.tgl {
    display: none !important;

}
.tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn {
    box-sizing: border-box;
}
.tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection {
    background: none;
}
.tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection {
    background: none;
}
.tgl + .tgl-btn {
    outline: 0;
    display: block;
    width: 4em;
    height: 2em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}
.tgl + .tgl-btn:after {
    left: 0;
}
.tgl + .tgl-btn:before {
    display: none;
}
.tgl:checked + .tgl-btn:after {
    left: 50%;
}
/* skewed start */
.tgl-skewed + .tgl-btn {
    overflow: hidden;
    -webkit-transform: skew(-10deg);
    transform: skew(-10deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    font-family: 'Montserrat', sans-serif !important;
    background: #888;
}
.tgl-skewed + .tgl-btn:after, .tgl-skewed + .tgl-btn:before {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
    display: inline-block;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%;
    text-align: center;
    position: absolute;
    line-height: 2em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.tgl-skewed + .tgl-btn:after {
    left: 100%;
    content: attr(data-tg-on);
}
.tgl-skewed + .tgl-btn:before {
    left: 0;
    content: attr(data-tg-off);
}
.tgl-skewed + .tgl-btn:active {
    background: #888;
}
.tgl-skewed + .tgl-btn:active:before {
    left: -10%;
}
.tgl-skewed:checked + .tgl-btn {
    background: #00A699;
}
.tgl-skewed:checked + .tgl-btn:before {
    left: -100%;
}
.tgl-skewed:checked + .tgl-btn:after {
    left: 0;
}
.tgl-skewed:checked + .tgl-btn:active:after {
    left: 10%;
}
.gj_col-md-12{
    padding: 15px;
}
.scheduler-border .gj-col20{
    width: 25%;
    float: left;
    display: inline-block;
}
.event-summary{
    margin: 10px auto;
    width: 100%;
    clear: both;
    display: block;
    float: left;
}
.event-summary .es-left{
    float: left;
}
.event-summary .es-right{
    float: right;
}
#innerlog p{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #00A699;
}
.import-if-duplicate{
    margin-right: 28px;
}
td.sortable-state{
    cursor: all-scroll;
}


form .gj-metabox fieldset{
    margin-top: 15px;
    border: 1px solid #ddd;
    padding: 15px;
}
form .gj-metabox fieldset legend .sub-title{
    display: block;
    font-weight: normal;
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}
form .gj-metabox fieldset legend{
    background: #fff;
    font-weight: bold;
    color: #222;
    padding: 5px 10px;
}

form .gj-metabox .form-group{
    width: 50%;
    padding: 0 15px;
}
form .gj-metabox .form-group.custom-width-100{
    width: 100% !important;
}
form .vue-form-generator .field-map .map-inner{
    margin: 0;
}
/*form .gj-metabox fieldset .form-group:nth-child(even){*/
/*    padding-right: 15px;*/
/*    padding-left: 0;*/
/*}*/
/*form .gj-metabox fieldset .form-group:nth-child(odd){*/
/*    padding-left: 15px;*/
/*    padding-right: 0;*/
/*}*/
/*form .gj-metabox fieldset .form-group .form-group:nth-child(even){*/
/*    padding-left: 15px;*/
/*	padding-right: 0;*/
/*}*/
/*form .gj-metabox fieldset .form-group .form-group:nth-child(odd){*/
/*    padding-right: 15px;*/
/*	padding-left: 0;*/
/*}*/
/*form .gj-metabox .form-group:nth-child(even){*/
/*    padding-left: 15px;*/
/*}*/
/*form .gj-metabox .form-group:nth-child(odd){*/
/*    padding-right: 15px;*/
/*}*/
/*form .gj-metabox .form-group .form-group:nth-child(even){*/
/*    padding-right: 15px;*/
/*    padding-left: 0;*/
/*}*/
/*form .gj-metabox .form-group .form-group:nth-child(odd){*/
/*    padding-left: 15px;*/
/*    padding-right: 0;*/
/*}*/
form .gj-metabox .form-group.field-object .field-wrap{
	display: block;
}
form .gj-metabox .form-group.field-object, form .gj-metabox .form-group.field-gallery, form .gj-metabox .form-group.field-array{
    width: 100%;
}
form .gj-metabox fieldset fieldset {
    padding: 0;
    border: none;
}

form .gj-metabox fieldset fieldset .form-group:nth-child(even){
    padding-left: 15px;
}

form .gj-metabox fieldset fieldset .form-group:nth-child(odd){
    padding-right: 15px;
}

body .form-group label {
    display: inline-block;
    margin: 0 0 7px;
}
body .multiselect__tags input {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
body .multiselect__tags input.multiselect__input {
    padding: 0;
    margin: 0 0 10px;
}
body .multiselect__tags span.multiselect__placeholder {
    padding: 0;
    line-height: 20px;
    vertical-align: top;
}
body .multiselect__content-wrapper .multiselect__content li {
    margin: 0;
}
body .multiselect__content-wrapper .multiselect__content .noResult span.multiselect__option,
body .multiselect__content-wrapper .multiselect__content .fetchingOptions span.multiselect__option {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 30px;
    min-height: auto;
}
body .multiselect__tags input:focus {
    border-color: #5b9dd9;
}
body .multiselect__content-wrapper .multiselect__content {
    margin: 0;
    padding: 10px 0;
}
body .multiselect__content-wrapper .multiselect__content .multiselect__option {
    background: none !important;
}
body .multiselect__content-wrapper .multiselect__content .multiselect__option:hover,
body .multiselect__content-wrapper .multiselect__content .multiselect__option--selected,
body .multiselect__content-wrapper .multiselect__content .multiselect__option--highlight {
    color: #41b883 !important;
}
body .vue-form-generator .form-control {
    box-shadow: none;
    margin: 0;
    padding-top: 9px;
    padding-bottom: 9px;
}
body .vue-form-generator .form-group select {
    height: 37px;
	padding-top: 2px;
	padding-bottom: 2px;
}
.panel-heading .group-actions {
    display: table;
}
.panel-heading .group-actions > button,
.panel-body .field-actions > button {
    float: left;
    border: 1px solid #eee;
    background: #F7F5F9;
    margin-left: 4px;
    cursor: pointer;
}
.panel-body .fields li .item-inner > span {
    line-height: 24px;
}
body .component-fields .fields-area .heading-title input {
    padding: 3px 10px;
    margin: 0;
}
/*Post Type Tab*/
#gj-setting-page .vue-form-generator .tab-head,
.gj-post-type-tab{
	line-height: 33px;
	margin: 20px 0 0;
	border-bottom: 2px solid #0073aa;
}
#gj-setting-page .vue-form-generator .tab-head .tab-title,
.gj-post-type-tab a{
	display: inline-block;
	padding: 0 20px;
	text-decoration: none;
	color: #0073aa;
	background: #fff;
	margin: 0 3px 0 0;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
}
#gj-setting-page .vue-form-generator .tab-head .tab-title:hover,
#gj-setting-page .vue-form-generator .tab-head .tab-title.active,
.gj-post-type-tab a.active, .gj-post-type-tab a:hover{
	background: #0073aa;
	color: #fff;
}
.component-fields .modal .modal-body .tabs .tab-item {
	border-color: #e2e2e2;
}
.component-fields .modal .modal-header h3{
	margin-top: 0;
}
.field-wrap .locations .country, .field-wrap .locations .city, .field-wrap .locations .state {
	margin-top: 15px;
}
.field-wrap input.form-control{
	border-color: #e8e8e8;
	padding-top: 8px;
	padding-bottom: 8px;
}
.field-wrap .inputs{
	padding-right: 15px;
}
.multiselect, .multiselect__input, .multiselect__single{
	font-size: 14px!important;
}
.invalid .multiselect__tags {
    border-color: #dc3232!important;
    -webkit-box-shadow: 0 0 2px rgba(204,0,0,.8);
    box-shadow: 0 0 2px rgba(204,0,0,.8);
}

.gj-field-page .component-fields > .fields-area {
    margin-top: 20px;
}
.gj-field-page .component-fields > .field-types ul {
    margin-top: 40px;
}
.gj-field-page .component-fields > .field-types ul h3 {
    margin-top: 0;
}

#gj-setting-page .tab-content{
    display: -webkit-flex; /* Safari */
    display: none;
    flex-wrap: wrap;
    padding: 10px 0 0;
}
#gj-setting-page .tab-content.active{
    display: flex;
}
#gj-setting-page .tab-content > fieldset{
    flex: 2 0 48%;
    margin: 5px;
    background: #fff;
}
#gj-setting-page .tab-content fieldset legend{
    font-size: 15px;
    border: 1px solid #ddd;
    padding: 6px 15px;

}
#gj-setting-page .tab-content fieldset label{
    font-size: 12px;
    font-weight: 500;
}
#gj-setting-page-btn{
    background: #fff;
    margin: 0 5px;
    padding: 10px 10px 10px;
    border: 1px solid #ddd;
}
.users-php .column-username img{
    max-width: 32px;
    height: auto;
}
#activity-widget #the-comment-list .avatar {
    max-width: 50px;
    max-height: 50px;
}

.track3-modal {
    width: 10px;
    background: #D0C9D6;
    margin-right: 0;
    right: -21px;
    border-radius: 10px;
    -webkit-transition: background 250ms linear;
    transition: background 250ms linear;
}

.track3-modal:hover,
.track3-modal.dragging {
    background: #D0C9D6;
}

.handle3-modal {
    width: 10px;
    right: 0;
    background: rgba(29, 32, 39, 0.2);
    border-radius: 7px;
    -webkit-transition: width 250ms;
    transition: width 250ms;
}

.track3-modal:hover .handle3-modal,
.track3-modal.dragging .handle3-modal {
    width: 10px;
}
.vue-form-generator .field-wrap > .wrapper {
    width: 100%;
}
body .vue-form-generator .field-checklist .combobox {
    min-height: 40px;
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 14px;
}
body .vue-form-generator .field-checklist .combobox .mainRow .arrow {
    left: auto;
    right: 0;
    width: auto;
    height: auto;
    top: 9px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #999999 transparent transparent transparent;
    background: none;
    margin: 0;
}

body div.error {
     border: none;
     -webkit-box-shadow: none;
     box-shadow: none;
     margin: 0 0 1rem;
}
div.form-group.error .errors span {
    line-height: 1.2;
    font-weight: 500;
    background: none;
    padding: 0;
}

.vue-form-generator input[type=number] {
    line-height: 1.42857143;
    height: auto;
}

.vue-form-generator .field-input .wrapper.has-prefix .prefix{
    height: 38px;
    line-height: 38px;
}
.vue-form-generator .field-input .wrapper.has-subfix .subfix{
    height: 38px;
    line-height: 38px;
}