/*************
JobPress plugin admin settings page styles.
**************/

/*Meta Box Styles*/
.mb-5{
    margin-bottom: 5px;
}
.mt-5{
    margin-top: 5px;
}
.jobpress-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.jobpress-field {
    margin-bottom: 25px;
    width: 45%;
}
.jobpress-check-field {
    margin-bottom: 25px;
}

.jobpress-field input , .jobpress-field textarea{
    width: 100%;
}

.jobpress-field textarea{
    height: 5em;
    display: block;
}

.jobpress-dflex {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.w-100{
    width: 100%!important;
}
.d-none{
    display: none;
}
#jobpress_meta_box .inside {
    padding: 30px 20px;
}

.jobpress-error-notify {
    color: #FF2626;
    background: #FF262612;
    padding: 10px 15px;
    border: 1px solid #FF2626;
}
.jobpress-error-notify p {
    margin: 0;
}

/*Jobpress settings nav*/
.jobpress-container {
    display: flex;
}

.jobpress-container .jobpress-left-nav {
    width: 300px;
    background: #fff;
    border-right: 1px solid #f0f0f1;
}

.jobpress-container .jobpress-left-nav ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.jobpress-container .jobpress-left-nav ul li a {
    display: block;
    text-decoration: none;
    padding: 12px 20px;
    color: #202529;
    transition: .3s;
}

.jobpress-container .jobpress-left-nav ul li {
    margin: 0;
    border-bottom: 1px solid #eee;
}

.jobpress-container .jobpress-left-nav ul li a span {
    color: #335eea;
    display: inline-block;
    margin-right: 10px;
}

.jobpress-container .jobpress-left-nav ul li a:hover, .jobpress-container .jobpress-left-nav ul li a.active {
    background: #335eea;
    color: #fff;
}

.jobpress-container .jobpress-left-nav ul li a:hover span, .jobpress-container .jobpress-left-nav ul li a.active span {
    color: #fff;
}

/*form content area style*/
.jobpress-right-content .notice {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
}

.jobpress-right-content {
    background: #fff;
    padding: 30px;
    width: calc(100% - 371px);
    margin-right: 15px;
}
.jobpress-right-content h2 {
    margin: 0;
}
.jobpress-right-content p {
    margin-top: 5px;
}
.jobpress-shortcode-content {
    margin-bottom: 30px;
}
.jobpress-shortcode-content h4 {
    margin-bottom: 7px!important;
}

.jobpress-shortcode-content ul {
    margin: 0!important;
    padding: 0!important;
    list-style: none;
}

/*Small Device Responsive Styles*/
@media only screen and (max-width: 991px) {
    .jobpress-dflex {
        display: block;
    }
    .jobpress-field {
        width: 100%;
    }
}