@font-face {
    font-family: 'Inter';
    src: url('../font_family/Inter-Black.woff') format('woff2'), url('../font_family/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font_family/Inter-Bold.woff2') format('woff2'), url('../font_family/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font_family/Inter-SemiBold.woff2') format('woff2'), url('../font_family/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font_family/Inter-Medium.woff2') format('woff2'), url('../font_family/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font_family/Inter-Light.woff2') format('woff2'), url('../font_family/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../font_family/Inter-Regular.woff2') format('woff2'), url('../font_family/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Chrome, Edge, and Safari */
.sidebar::-webkit-scrollbar {
    width: 12px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #eceeef;
    border-radius: 0px;
    border: 3px solid #0f1a34;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.adminbody {
    background-color: var(--adminbgColor);
    margin: 60px 0;
}

.userBody-wrapper {
    margin: 88px 0 60px;
    background: var(--userbgColor);
}

:root {
    --darkColor: #212529;
    --lightColor: #ffffff;
    --adminbgColor: #e9ecef;
    --userbgColor: #e9ecef8c;
}

a {
    text-decoration: none;
}
/*a:hover,a:focus {
    text-decoration: none;
}*/
ul, ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

label {
    margin: 0;
}
.adminbody .form-control {
    border-radius: 0;
}
input[type=checkbox]:not(.enable-checkbox) {
    position: relative;
    border: 1px solid var(--darkColor);
    border-radius: 2px;
    background-color: var(--lightColor);
    cursor: pointer;
    outline: 0;
    vertical-align: text-top;
    height: 16px;
    min-width: 16px;
    -webkit-appearance: none;
    margin-top: 2px;
}

input[type=checkbox]:not(.enable-checkbox):before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    z-index: 2;
    transform: translate(-50%,-50%)
}

input[type=checkbox]:not(.enable-checkbox):checked::before {
    background-color: var(--darkColor);
    opacity: 1;
}

.enable-checkbox {
    position: relative;
    border: 2px solid #dc3545;
    background-color: var(--lightColor);
    outline: 0;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    -webkit-appearance: none;
    margin-top: 2px;
}

    .enable-checkbox:before {
        content: '';
        position: absolute;
        width: 75%;
        height: 75%;
        z-index: 2;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        background: url("../images/uncheck.svg") no-repeat center;
        background-size: contain;
    }

    .enable-checkbox:checked {
        border-color: #198754;
    }

        .enable-checkbox:checked::before {
            background: url("../images/check.svg") no-repeat center;
            background-size: contain
        }

.form-group input:not([type="checkbox"]):focus, .form-group select:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.15);
    outline:0;
}

.usermain-most-outer {
    padding-bottom: 70px;
    margin-bottom: 12px;
}

.sidebar-wrapper .accordion-item {
    border: 0;
}

.sidebar-wrapper .sidebar a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--lightColor);
    padding: 10px 16px;
    text-decoration: none;
    font-size: 15px;
}

.sidebar-wrapper a span {
    display: flex;
    height: 25px;
    width: 25px;
    justify-content: center;
    align-items: center;
}

.sidebar-wrapper a:hover {
    background-color: rgba(255,255,255,.1);
    color: var(--lightColor);
    text-decoration: none;
}

div.content {
    margin-left: 200px;
    padding: 1px 16px;
    height: 1000px;
}

footer {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.2);
    z-index: 80;
}

.header-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 4px 20px;
    background-color: #fff;
}

    .header-wrapper a {
        display: inline-block;
        padding: 6px 15px;
    }

    .header-wrapper .username {
        color: var(--darkColor);
    }

    .header-wrapper .logout-link {
        background-color: var(--darkColor);
        color: var(--lightColor);
        border-radius: 5px;
        border: 2px solid #0f1a34;
        transition: all 0.4s;
    }

        .header-wrapper .logout-link:hover {
            background-color: var(--lightColor);
            color: var(--darkColor);
        }

.admin-header .menu {
    list-style-type: none;
    display: flex;
    gap: 12px;
    margin: 0px;
}

.sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    z-index: 99;
    background-color: #0f1a34;
    box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);
}

.sidebar {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.main-wrapper {
    padding: 15px 20px;
}

.hrm-link-wrapper {
    background-color: #182444;
}
.sidebar-wrapper .hrm-link-wrapper img{
    max-width:160px;
    width:100%;
}

.hrm-link-wrapper a {
    display: block;
    padding: 12px 18px;
    font-size: 24px;
    font-weight: 600;
    color: var(--lightColor);
}

.admin-header, .main-wrapper, .admin-footer {
    width: calc(100% - 250px);
    margin-left: auto;
}

.accordion-button span {
    pointer-events: none;
}

.accordion-button::after {
    background-image: url("../images/chevron-left.svg");
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    color: var(--lightColor);
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("../images/chevron-down.svg");
        transform: rotate(-0deg);
    }

.sidebar-menu-link .accordion-item, .sidebar-menu-link .accordion-button {
    background-color: transparent;
}

    .sidebar-menu-link .accordion-button .accordion-item {
        border: 0;
    }

.sidebar-link .accordion-button[aria-expanded="true"] {
    background-color: rgba(255,255,255,0.05);
}

.accordion-button:focus {
    color: var(--lightColor);
    text-decoration: none;
    box-shadow: none;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 22px;
}

.copyright-privacy-link a {
    color: var(--darkColor);
}

    .copyright-privacy-link a:hover {
        color: var(--darkColor);
    }

.customer-info-wrapper .customer-info > .row {
    margin-bottom: 10px;
}

.user-mail {
    margin-left: auto;
}

.rightside-submit-btn {
    display: flex;
    justify-content: end;
}

.font-weight {
    font-weight: 700;
}

.active_child {
    background-color: #091023;
}
.sidebar-wrapper .active_child {
    background-color: rgba(255,255,255,.1);
}
.bshadow {
    box-shadow: 0 0 #0000,0 0 #0000,0 10px 15px -3px rgba(15,23,42,0.07), 0 4px 6px -2px rgba(15,23,42,0.02);
}

table {
    font-size: 15px;
}
.user-header .card-body,.userBody-wrapper .card-body {
    overflow: auto;
}
table, tbody, td, th, tr {
    color: var(--darkColor);
}

.table > :not(:last-child) > :last-child > * {
    border-bottom: 1px solid #e0e0e0;
}

tr, th {
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0;
}
th{
    white-space:nowrap;
}
.emptytable-wrap {
    text-align: center;
}

.form-field-btn-wrapper {
    display: flex;
    justify-content: center;
}

.primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: 400;
    gap: 5px;
    padding: 5px 14px;
    transition: all 0.4s;
}
.button-space {
    margin: 10px; /* Adjust the margin as needed */
    display: inline-block;
}

.comn-btn {
    color: var(--darkColor);
    background-color: var(--lightColor);
    border: 2px solid var(--darkColor);
}

    .comn-btn:hover {
        background-color: var(--adminbgColor);
        border-color: rgba(0,0,0,.075);
        color: var(--darkColor);
    }

.comndlt-btn {
    background-color: #dd4b39;
    border: 2px solid #dd4b39;
    color: var(--lightColor);
}

.comnexport-btn {
    background-color: #3c8dbc;
    border: 2px solid #3c8dbc;
    color: var(--lightColor);
}

.comnimport-btn {
    background-color: #605ca8;
    border: 2px solid #605ca8;
    color: var(--lightColor);
}

.comncreate-btn {
    background-color: #3d9970;
    border: 2px solid #3d9970;
    color: var(--lightColor);
}

    .comndlt-btn:hover, .comnexport-btn:hover, .comncreate-btn:hover {
        color: var(--lightColor);
    }

.primary-btn span {
    font-size: 14px;
}

.btn-wrapper {
    display: flex;
    justify-content: end;
    gap: 12px;
}

.user-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/*.delete-btn {
    width: ;
    margin: 0 auto;
}*/
.viewLog-btn {
    width: 95px;
}

.user-edit-btn, .delete-btn {
    width: 95px;
}

.detail-btn {
    width: 100px;
    cursor: pointer;
}

    .detail-btn a {
        color: var(--lightColor);
        transition: all 0.4s;
    }

.card-upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.card-upper h5 {
    margin: 0px;
}

.admin-form-wrapper {
    background-color: #fff;
    margin-bottom: 24px;
    padding: 16px;
}

    .admin-form-wrapper:not(.primary-btn), .customize-page, .customize-page {
        color: var(--darkColor);
    }

    .admin-form-wrapper .search-btn {
        display: flex;
        justify-content: center;
    }

.button-group {
    display: flex;
    flex-wrap:wrap;
    gap: 8px;
}

.approval-btn {
    justify-content: center;
}

.pagination-btn-wrapper {
    display: flex;
    justify-content: end;
}

    .pagination-btn-wrapper .page-link {
        color: var(--darkColor);
    }

        .pagination-btn-wrapper .page-link:hover {
            background-color: var(--adminbgColor)
        }

        .pagination-btn-wrapper .page-link:focus {
            box-shadow: none;
        }

    .pagination-btn-wrapper .page-item.active .page-link {
        background-color: #0f1a34;
        border: 1px solid #0f1a34;
        color: var(--lightColor)
    }

.select2-container {
    min-width: 500px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #eaeaeb;
    color: #272727;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eaeaeb !important;
    color: #272727 !important;
}

.select2-container .select2-dropdown {
    width: 326px !important;
}
.card .select2-selection {
    border: 1px solid #ced4da !important;
}
.select2-container .select2-dropdown {
    top: -23px;
}

.select2-container .select2-results__options {
    max-height: 150px !important;
}

.search-title {
    display: flex;
    margin-bottom: 0px;
    justify-content: space-between;
    align-items: center;
    padding-right: 12px;
}

/*.form-outer-box {
    padding-top: 16px;
}*/
.heading-with-line {
    position: relative;
}

    .heading-with-line::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: lightgrey;
    }
.search-title .search-txt {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    transition: all 0.4s;
}
.search-title .rotate-arrow {
    transform: rotate(180deg)
}
.createemployee-wrapper {
    border-top: 2px solid transparent;
}
.adminbody .customize-page h6 {
    border-top: 3px solid #d2d6de;
    position: relative;
}
.createemployee-wrapper:not(:has(.collapsed)) {
    border-top: 2px solid #00c0ef;
    border-radius: 4px;
}
.adminbody .customize-page h6:not(.collapsed) {
    border-top: 2px solid #00c0ef;
    border-radius: 4px;
    margin-bottom:8px;

    /*#0d6efd*/
}
.adminbody .customize-page h6:not(.collapsed):before {
    content: "";
    width: calc(100% - 32px);
    position: absolute;
    height: 1px;
    bottom: 0;
    background: #e0e0e0;
}
.usermain-most-outer {
    margin-top: 4rem;
}
.access-control-listTable{
    overflow-x:scroll;
}
.access-control-listTable tr th,
.access-control-listTable tr td {
    word-break: break-word;
}
.access-control-listTable tr th{
    vertical-align: top;

}
.access-control-listTable tr th:first-child{
    max-width:300px;
    min-width: 300px;
}
.access-control-listTable tr th:not(:first-child){
    max-width: 100px;
    min-width: 80px;
}
.back-page-link {
    display: flex;
    align-items: center;
    color: var(--darkColor);
    gap: 5px;
    transition: all 0.4s;
}

    .back-page-link:hover {
        color: var(--darkColor)
    }

    .back-page-link .arrow-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        height: 21px;
        width: 21px;
        border-radius: 50%;
        border: 1px solid var(--darkColor );
        font-size: 11px;
        transition: all 0.4s;
    }

    .back-page-link:hover .arrow-icon {
        background-color: var(--darkColor);
        color: var(--lightColor);
    }

.backlist-txt {
    opacity: 1;
    transition: all 0.4s;
}
.form-wrapper {
    flex-direction: column;
    margin-bottom: 8px;
}
.create-User {
    margin-bottom: 8px;
}
.form-wrapper > div:not(:last-child) {
    margin-bottom: 10px;
}
.back-page-link:hover .backlist-txt {
    opacity: 0.75;
}
.adminbody .detail-list {
    padding: 0 16px;
}
.form-group {
    margin-bottom: 10px;
}
.gender-field>input{
    margin-left:10px;
}
.gender-field *:nth-child(3) {
    margin-left: 0;
}
.form-group label {
    margin-bottom: 3px;
}

.field-error {
    color: rgb(220,53,69);
    font-size: 13px;
}

.customize-page dl {
    margin: 0;
}

.customize-page .title {
    margin-bottom: 10px;
}

.access-control-listTable th label {
    display: flex;
    gap: 5px;
}

.input-btn {
    border-radius: 5px;
    font-weight: 400;
    padding: 5px 10px 5px 30px;
    background: #dd4b39 url("../images/trash.svg") no-repeat left 8px center;
    background-size: 18px;
    border: 2px solid #dd4b39;
    color: var(--lightColor);
}
.cancel-btn {
    background: #dd4b39 url("../images/cross.svg") no-repeat left 13px center;
    background-size: 11px;
}
.front-cancel-btnn{
    position:relative;
}
.front-cancel-btnn::before {
    content:"";
    display:block;
    width:12px;
    height:14px;
    background:url("../images/cross.svg") no-repeat center center;
    background-size:11px;
}
/*Login page & register*/

.login-most-outer, .register-most-outer {
    display: flex;
    justify-content: center;
}

.register-most-outer {
    padding: 18px 0;
}

.login-wrapper {
    border: 1px solid rgba(0,0,0,.15);
}

.login-form, .register-form {
    background: #ffffff;
}

.register-wrapper {
    border: 1px solid rgba(0,0,0,.15);
}

    .login-wrapper h5, .register-wrapper h5 {
        margin: 0;
    }

    .login-wrapper .title, .register-wrapper .title {
        text-align: center;
        padding: 14px 0px;
        background-color: #0f1a34;
        color: #fff;
    }

.login-form, .register-form {
    padding: 22px;
}

.forgot-password-link {
    margin-bottom: 10px;
}

    .forgot-password-link a {
        color: var(--darkColor);
    }

.register-link {
    text-align: center;
}

    .register-link a {
        color: var(--darkColor);
    }

.login-form .form-group label, .register-form .form-group label {
    margin-bottom: 5px;
}

.login-btn {
    width: 100%;
}

.form-group .select2-container {
    display: initial;
}

.register-button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}
/*user side design*/
header {
    padding: 8px 0;
    box-shadow: 0 0px 8px #2105122e;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background-color: var(--lightColor);
}
.header-inner {
    padding: 0 18px;
    align-items: center;
}

.hrm-logo a {
    display:block;
    font-size: 22px;
    color: var(--darkColor);
    font-weight: 500;
}
.hrm-logo img {
    max-width: 210px;
    width: 100%;
}

.header-inner row {
    display: flex;
    align-items: center;
}

.user-header ul a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s;
}

    .user-header ul a::after {
        content: "";
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 0%;
        background-color: var(--darkColor);
        height: 2px;
        transition: all 0.4s;
    }

    .user-header ul a:hover {
        opacity: 0.75;
    }

        .user-header ul a:hover::after {
            width: calc(100% - 16px);
        }

.heading-border {
    padding-bottom: 6px;
    margin: 0;
}

.customize-page .account-title {
    margin-bottom: 5px;
}

.boldtxt {
    font-weight: 600;
}

.admin-feedbackList-wrapper {
    margin-bottom: 24px;
}

.jobList-wrapper a {
    color: var(--darkColor)
}

.jobList-wrapper li {
    margin-bottom: 6px;
    line-height: 20px;
}

.recruitedit-wrap {
    margin-bottom: 24px;
}

.jobtxt-wrapper {
    margin-bottom: 12px;
}

.jobapplybtn-wrapper {
    display: flex;
    justify-content: center;
}
.jobdetail-wrapper table a {
    color: var(--darkColor);
    position: relative
}

.jobdetail-wrapper table a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--darkColor);
}

.jobdetail-wrapper table a:hover::before {
    width: 100%;
}
.leaveStatus{
    color:var(--lightColor);
    width:120px;
}
.status-new {
    background-color: #00c0ef;
}
.status-approved {
    background-color: #00a65a;
}
.status-pending {
    background-color: #f39c12;
}
.status-rejected {
    background-color: #dd4b39;
}
.status-canceled {
    background-color: #808080;
}
.feedbackStatus {
  color: var(--lightColor);
  width: 85%;
}
.status-completed {
  background-color: #00a65a;
}
.status-on-hold {
  background-color: #f39c12;
}
.selectdrop-list,.selectdrop-list + span .select2-selection{
    background:url('../images/chevrondark-down.svg') no-repeat 97% center;
    background-size:18px;
}
body:has(.select2-selection__clear) .selectdrop-list + span .select2-selection {
    background: none;
}
.createemployee-wrapper{
    padding:12px;
}
.createemployee-space {
    margin-bottom: 12px;
}
.customize-page .title {
    padding: 0 12px;
}
.main-admin-wrapper .customize-page h6 {
    padding: 12px 16px;
}
.customize-page h6 {
    padding: 12px 0;
}
.createemployee-wrapper h6 {
    padding: 0;
}
.adminbody .customize-page .card-body,.createemployee-wrapper .card-body {
    padding: 0px;
}
.card-up{
    padding-top:10px;
    padding-bottom:10px;
}
.card-edit {
    padding-bottom: 10px;
}
.adminbody .customize-page .card-body .row{
     padding: 0px 16px;
}
.adminbody .createemployee-wrapper .card-body .row{
     padding: 16px 4px;
}
.form-outer-box .row{
    padding-top:12px;
}
.createemployee-wrapper .search-txt span i, .createemployee-wrapper .search-txt span i {
    font-size: 17px
}
.customize-page .search-txt i {
    font-size: 17px;
    line-height: 24px;
}
.page-count {
   margin-right:auto
}
.adminbody .customize-page .log-view .row {
    padding: 16px 16px 10px 16px;
}
.adminbody .leaveapp-edit-form .customize-page .row {
    padding-bottom: 8px;
}
.adminbody .customize-page .all-view .row {
  padding: 8px 8px 10px 8px;
}
.custom-margin {
    margin-bottom: 10px;
}
.jobtxt-wrapper ul,.jobtxt-wrapper ol{
    list-style-type:disc;
    padding-left:32px;
}
.employee-view-wrap .header-title{
    width:100%;
    justify-content:space-between;
}
.employee-view-wrap .titlebtn-wrap{
    display:flex;
    align-items:center;
    gap:12px;
}
.job-edit-wrapper input[type="number"] {
    border: 1px solid #ced4da;
    padding:6px 12px;
}
.job-edit-wrapper input[type="number"]:focus{
    outline:0;
}
.user-header h4{
    margin-bottom:0;
}
.mobile-menubtn-wrap{
    display:flex;
    justify-content:end;
}
/* current Vacancy */
.jobdetail-wrapper p{
    margin-bottom:0;
}
.currentvacancy-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 18px;
}
.currentvacancy-item{
    display:flex;
    align-items:center;
    column-gap : 20px;
    border-radius:8px;
    background-color:var(--lightColor);
}
.currentvacancy-item .jobname{
    width:calc(100% - 200px);
}
.currentvacancy-item img{
    width:70px;
    height:70px;
    object-fit:contain;
    padding:0;
}
.jobapply-btn-wrap a {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--darkColor);
    background-color: var(--lightColor);
    color: var(--darkColor);
    border-radius: 5px;
    transition: all 0.4s;
}
.jobapply-btn-wrap a:hover{
    border-color: rgba(0, 0, 0, .075);
    background-color: var(--adminbgColor);
    color: var(--darkColor);
}
.jobdetail-wrapper .empty-data-wrap{
    width:100%;
    background-color:var(--lightColor);
    padding:10px 15px;
}
.job-edit-wrapper .row,.create-job .row{
    align-items:center;
}
.grecaptcha-badge {
    bottom: 70px !important;
}
.add-candidate-form::before {
    content: "";
    position: fixed;
    width: 100vw;
    height: 100%;
    margin-left: calc(-1*((100vw - 100%) / 2));
    background: url("../images/add_candidate_banner.svg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    top: 0;
    left: 0;
    z-index: -1
}
.add-candidate-form .card {
    background-color: transparent;
}
.add-candidate-form .card label,
.add-candidate-form .card-upper h5,
.add-candidate-form .back-page-link,
.add-candidate-form .form-control,
.add-candidate-form .form-group{
    color:#ffffff;
}
.add-candidate-form .card{
    border:0;
}
.add-candidate-form .form-control,.add-candidate-form .form-control:focus {
    background-color: #ffffff40;
}
.add-candidate-form select{
    background-image:url("../images/chevrondark-downlight.svg");
}
.add-candidate-form select option{
    color:#000000;
}
.back-page-link .arrow-icon{
    border-color:#ffffff;
}
.userBody-wrapper .add-candidate-form .card-body {
    padding:8px 0 0 0;
    overflow:initial;
}
.add-candidate-form .logo-wrap {
    margin-bottom:35px; 
}
.add-candidate-form .form-group input,
.add-candidate-form .form-group input:not([type="checkbox"]):focus {
    border-color: #ffffff;
}
.add-candidate-form input::placeholder {
    color: #CCC2A3;
}
@media (max-width: 991px) {
    .overlay-wrap {
        display:none;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.5);
        z-index: 98;
    }
    .overlay-wrap.active-overlay {
        display: block;
    }
    .user-header .login-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 320px;
        padding: 12px 18px;
        height: 100%;
        overflow-y: auto;
        color: #ffffff;
        background-color: #0f1a34;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-100%);
        transition: all 0.4s;
        z-index:99;
    }
    .user-header .login-menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }
    .user-header ul li{
        padding:5px 0;
    }
    .user-header ul a {
        line-height: 24px;
        color: #ffffff;
    }
    .user-header .mobile-menubtn-wrap span {
        display: block;
        width: 35px;
        height: 35px;
        background: url("../images/mobile-menu.svg") no-repeat center center;
    }
    .currentvacancy-item {
        width: 100%;
    }
    .user-header .close-btn{
        position:absolute;
        right:12px;
        top:12px;
        padding:0;
    }
    .user-header .close-btn span {
        display:block;
        height:20px;
        width:20px;
        background:url('../images/cross.svg') no-repeat center center;
        background-size: 16px;
    }
}
@media (max-width: 767px) {
    .login-most-outer {
        padding-top: 25px;
    }
    .card-body{
        padding:15px 18px;
    }
    .customize-page .detail-list dt {
        margin-bottom: 4px;
        padding:0;
    }
    .customize-page .detail-list dd {
        margin-bottom: 12px;
        padding: 0;
    }
    .card-upper h5 {
        font-size: 18px;
    }
    .jobtxt-wrapper p {
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .currentvacancy-item {
        flex-direction: column;
        row-gap: 8px;
        padding: 15px 12px;
    }
    .currentvacancy-item .jobname{
        text-align:center;
    }
    .userBody-wrapper .card-upper {
        flex-direction: column;
        row-gap: 12px;
    }
    .primary-btn,.input-btn {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .login-wrapper {
        width: 100%;
    }
}
@media (min-width: 481px) and (max-width: 575px) {
    .login-wrapper {
        width: 80%;
    }
}
@media (min-width: 576px) {
    .login-wrapper {
        min-width: 390px;
        width: 35%;
    }
    .currentvacancy-item {
        padding: 12px 18px;
    }
    .primary-btn,.input-btn {
        font-size: 16px;
    }
}
@media (min-width: 768px) {
    .login-most-outer {
        padding-top: 50px;
    }
    .register-wrapper {
        width: 85%;
    }
    .customize-page .detail-list dt, .customize-page .detail-list dd {
        margin-bottom: 6px;
    }
    .card-upper h5 {
        font-size: 26px;
    }
    .jobtxt-wrapper p{
        font-size:16px;
    }
}
@media (min-width: 992px) {
    .user-header .mobile-menubtn-wrap {
        display: none;
    }
    .user-header ul {
        display: flex;
        justify-content: end
    }
    .user-header ul a {
        color: var(--darkColor);
        padding: 10px 8px;
    }
    .currentvacancy-item {
        width: calc((100% - 18px)/2);
    }
}

