/* Fonts */
@import url("https://use.typekit.net/ccp1jok.css");
/* font-family: "europa", sans-serif; */

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.eot');
    src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff'),
        url('../fonts/Gotham-Medium.ttf') format('truetype'),
        url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff'),
        url('../fonts/Gotham-Bold.ttf') format('truetype'),
        url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Fonts */
:root {
    --europa-font: "europa", sans-serif;
    --gotham-font: 'Gotham';
    --bg-color: #fff;
    --theme-color: #1E6CA5;
    --text-color: #607384;
    --alt-theme-color: #1C486F;
    --border-color: #D3D7DF;
    --light-color-text: #B6C2CD;
}

/* Reset CSSS */
* {
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none !important;
    outline: none !important;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-shadow: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--europa-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.5;
    background-color: var(--bg-color);
}

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 20px 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
.hOne,
h2,
.hTwo,
h3,
.hThree,
h4,
.hFour,
h5,
.hFive,
h6,
.hSix {
    margin: 0 0 25px 0;
    padding: 0;
    font-family: var(--gotham-font);
    color: var(--alt-theme-color);
    font-weight: 700;
    line-height: 1.2;
}

h1:last-child,
.hOne:last-child,
h2:last-child,
.hTwo:last-child,
h3:last-child,
.hThree:last-child,
h4:last-child,
.hFour:last-child,
h5:last-child,
.hFive:last-child,
h6:last-child,
.hSix:last-child {
    margin-bottom: 0;
}

h1,
.hOne {
    font-size: 21px;
}

h2,
.hTwo {
    font-size: 18px;
}

h3,
.hThree {
    font-size: 16px;
}

h4,
.hFour {
    font-size: 14px;
}

h5,
.hFive {
    font-size: 13px;

}

h6,
.hSix {
    font-size: 10px;
    margin-bottom: 10px;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--theme-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--alt-theme-color)
}

img,
figure {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
.form-control,
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0 16px;
    appearance: none;
    border: 1px solid var(--border-color);
    border-radius: 0;
    height: 60px;
    background-color: transparent;
    font-size: 13px;
    line-height: 58px;
    color: var(--alt-theme-color);
    font-family: var(--europa-font);
    font-weight: 700;
    width: 100%;
    background-clip: padding-box;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
.form-control:focus {
    border-color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    color: #000;
}

textarea,
textarea.form-control {
    background-color: transparent;
    font-size: 13px;
    color: #000;
    color: var(--alt-theme-color);
    font-family: var(--europa-font);
    font-weight: 700;
    background-clip: padding-box;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 1px solid var(--border-color);
    padding: 0 16px;
    width: 100%;
    height: 158px;
    line-height: 1.2;
    outline: none !important;
    resize: none;
    padding-top: 18px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

textarea:focus,
textarea.form-control:focus {
    border-color: #000;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    height: 44px;
    border: 1px solid var(--theme-color);
    width: 100%;
    padding: 0 11px;
    background: url(../images/blu_drp.svg) no-repeat calc(100% - 16px) center transparent;
    background-size: 8px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select:focus {
    border-color: #000;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: var(--theme-color);
    color: var(--bg-color);
    height: 60px;
    line-height: inherit;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--gotham-font);
    font-weight: 700;
    outline: none !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: var(--alt-theme-color);
    color: var(--bg-color);
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}

/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 23px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 13px;
    height: 13px;
    border: 1px solid var(--text-color);
    background: transparent;
    border-radius: 1px;
}

.form_input_check label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 13px;
    height: 13px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(../images/wh_chck.svg) no-repeat center center;
    background-size: 8px;
    border-radius: 1px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.form_input_check label input[type="checkbox"]:checked+span:before {
    background: var(--alt-theme-color);
    border-color: var(--alt-theme-color);
}

/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {

    } */

.form_input_radio label input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background-color: #bdd653;
    border-radius: 100%;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: #88a725;
}

#scroll em {
    font-style: normal;
    color: #fff;
    font-size: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover em {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
}

/* Custom CSS */

/* Header Section */
/* navbar*/
.main-head {
    position: relative;
    z-index: 99;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 170px;
    min-width: 170px;
    display: inline-block;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 15px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    font-weight: normal;
}

.navbar-nav>li>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #3B61DC;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: #3B61DC;
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
}

/* navbar submenu*/
.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
    background: #eab71e;
    color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0 !important;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

/* for push-menu end*/
.erp_mainBox {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.erpBox {
    background: var(--bg-color);
    padding: 36px 112px 60px;
    -webkit-box-shadow: 0px 4px 49px 0px #D2E6F9;
    box-shadow: 0px 4px 49px 0px #D2E6F9;
    border-radius: 10px;
}

.erp_logoBox {
    text-align: center;
    margin-bottom: 67px;
}

.erp_logoBox a {
    display: inline-block;
}

.erp_logoBox img {
    max-width: 176px;
}

.erp_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.shape1 {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}

.shape2 {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}

.shape3 {
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: -20%;
    width: 100%;
}

.shape4 {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.applctn_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.applctn_box>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 8px;
    padding-right: 8px;
}

.app_imgCol {
    width: 211px;
}

.app_img {
    padding: 30px 36px 22px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    height: 100%;
    position: relative;
}

.app_upldImg {
    position: relative;
}

.app_img input[type=file] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    font-size: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.app_upldImg {
    width: 78px;
    height: 78px;
    overflow: hidden;
    border-radius: 22px;
    margin: 0 auto 25px;
}

.app_upldImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.upld_imgTxt {
    color: var(--alt-theme-color);
}

.upld_indvdlBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.upld_indvdlBox:not(:last-child) {
    margin-bottom: 23px;
}

.upld_docBox {
    position: relative;
    background: rgba(30, 108, 165, 0.40);
    width: 52px;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 12px;
}

.upld_docBox img {
    max-width: 31px;
    max-height: 31px;
    -o-object-fit: contain;
    object-fit: contain;
}

.upld_indvdlBox input[type=file] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    font-size: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upld_optnBox_hldr {
    width: calc(100% - 211px);
}

.upld_docTxtBox {
    width: calc(100% - 52px);
    padding-left: 13px;
}

.upld_docTxtBox p {
    margin-bottom: 0;
    line-height: 1;
}

.upld_docTxtBox small {
    font-size: 10px;
    color: var(--text-color);
    font-style: italic;
    display: block;
    margin-top: 3px;
}

.undrstnd_txt {
    margin-top: 20px;
}

.undrstnd_txt.form_input_check label input[type="checkbox"]+span::after {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    opacity: 0.2;
}

.undrstnd_txt.form_input_check label input[type="checkbox"]:checked+span::after {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

.erpBox input[type=submit] {
    width: 100%;
}

.prevBttn {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--alt-theme-color);
}

.prevBttn:hover {
    background: var(--theme-color);
}

.prevBttn img {
    max-width: 8px;
    max-height: 14px;
    -o-object-fit: contain;
    object-fit: contain;
}

.nxt_prvusBttnHldr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nxt_prvusBttnHldr .nxtBttn_hldr {
    width: calc(100% - 60px);
    padding-left: 15px;
}

.frm_bttm {
    margin-top: 32px;
}

.basic_bttn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--gotham-font);
    background: var(--theme-color) !important;
    color: var(--bg-color);
    border-radius: 50px;
    padding: 22px 30px;
    line-height: 1;
}

.basic_bttn:hover {
    background: var(--alt-theme-color) !important;
    color: var(--bg-color);
}

.frmmBttnBox .basic_bttn {
    width: 100%;
}

.erpBox .form_input_check label input[type="checkbox"]+span::before {
    top: 3px;
}

.erpBox .form_input_check label input[type="checkbox"]+span::after {
    top: 3px;
}

.fixer-hOne {
    /* text-transform: uppercase; */
    margin-bottom: 15px;
}

.fixer-pghdbx {
    text-align: center;
    margin-bottom: 18px;
}

.step-wrap {
    position: relative;
}

.step-numbrbx {
    width: 33px;
    height: 33px;
    border-radius: 100%;
    background-color: rgba(30, 108, 165, 0.2);
    color: var(--theme-color);
    text-align: center;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
}

.step-flexbx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.step-flexbx li {
    list-style: none;
}

.setp-outingbx {
    max-width: 287px;
    margin: 40px auto 25px auto;
}

.step-active .step-numbrbx {
    background-color: var(--theme-color);
    color: #ffffff;
}

.fixer-inputbx {
    position: relative;
}

.fixer-frmcol {
    margin-top: 15px;
}

.fixer-inputbx input[type="text"],
.fixer-inputbx input[type="tel"],
.fixer-inputbx input[type="password"],
.fixer-inputbx input[type="email"],
.fixer-inputbx input[type="url"],
.fixer-inputbx select,
.fixer-inputbx textarea {
    padding: 0;
    border: none;
    height: auto;
    line-height: normal;
    color: var(--alt-theme-color);
    font-size: 13px;
    border: 1px solid #D3D7DF;
    border-radius: 10px;
    padding: 29px 24px 12px 24px;
    width: 100%;
    height: 60px;
    font-weight: 400;
}

.fixer-inputbx input[type="text"]:focus,
.fixer-inputbx input[type="tel"]:focus,
.fixer-inputbx input[type="password"]:focus,
.fixer-inputbx input[type="email"]:focus,
.fixer-inputbx input[type="url"]:focus,
.fixer-inputbx select:focus,
.fixer-inputbx textarea:focus {
    border: 1px solid var(--alt-theme-color);
}

.fixer-inputbx input:focus+label,
.fixer-inputbx select:focus+label,
.fixer-inputbx textarea:focus+label,
.fixer-inputbx input.has_value+label,
.fixer-inputbx select.has_value+label,
.fixer-inputbx textarea.has_value+label {
    top: -10px;
    left: 20px;
    background-color: #ffffff;
    padding: 0 5px;
}

.fixer-inputbx input:focus,
.fixer-inputbx select:focus,
.fixer-inputbx textarea:focus,
.fixer-inputbx input.has_value,
.fixer-inputbx select.has_value,
.fixer-inputbx textarea.has_value {
    padding: 12px 25px 12px 24px;
}

.fixer-inputbx label {
    color: var(--alt-theme-color);
    font-size: 13px;
    position: absolute;
    top: 10px;
    left: 25px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.fixer-form-rw {
    --bs-gutter-x: 1rem;
}

.fixer-inputbx select {
    background-image: url(../images/select-dropdwnicon.svg);
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 16px 12px;
    padding-right: 26px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    color: var(--text-color);
    font-weight: 400;
}

.gogle-lnkdin-butnwrpr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
}

.ggle-lnkdnbutn {
    border: 1px solid #D3D7DF;
    border-radius: 40px;
    padding: 14px 20px;
    width: 100% !important;
    font-size: 16px;
    font-family: var(--gotham-font);
    color: var(--graycolor);
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ggle-lnkdnbutn:hover {
    background-color: rgba(30, 108, 165, 0.2);
    color: var(--theme-color);
    border: 1px solid rgba(30, 108, 165, 0.2);
}

.ggle-lnkdnbutn:first-child {
    /* margin-right: 15px; */
    justify-content: center;
}

.ggleimg {
    /* width: 182px; */
    height: 30px;
    margin-right: 15px;
}

.ggleimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.fixer-apponebutn {
    margin-top: 25px;
}

.fixer-inputbx input::-webkit-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.fixer-inputbx input:-ms-input-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.fixer-inputbx input::-moz-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.fixer-inputbx input:-moz-placeholder {
    color: var(--text-color);
    opacity: 1;
}

.fixer-inputbx select.val_selected {
    color: var(--alt-theme-color);
}

.sucess-applie-wrap {
    max-width: 419px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.basic_bttn.sucesbutn {
    width: inherit;
    min-width: 152px;
    margin-top: 10px;
}

.sucesiconbx-outr {
    width: 85px;
    height: 85px;
    border-radius: 100%;
    background-color: rgb(30, 108, 165, 0.2);
    margin: 0 auto 25px auto;
    position: relative;
}

.sucesiconbx {
    width: 53px;
    height: 53px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--theme-color);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.psswrd_toggle_shw {
    position: absolute;
    right: 20px;
    bottom: 6px;
    z-index: 2;
    width: 24px;
    height: 48px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.fixer-inputbx input[type="password"] {
    padding-right: 48px;
}

.eye_hide {
    display: none;
}

.eye_active .eye_show {
    display: none;
}

.eye_active .eye_hide {
    display: block;
}

.forgtpaswordlnk {
    color: var(--alt-theme-color);
    font-weight: 500;
    font-family: var(--gotham-font);
    display: inline-block;
}

.forgtpaswordlnk:hover {
    color: var(--theme-color);
}

.becme-fixerlnk {
    color: var(--alt-theme-color);
    font-weight: 500;
    font-family: var(--gotham-font);
    display: inline-block;
}

.becme-fixerlnk:hover {
    color: var(--theme-color);
}

.become-fixerlnkbx {
    text-align: center;
    margin-top: 30px
}

.login-frm_bttm {
    margin-top: 20px;
}

.login-frm_bttm .frmmBttnBox {
    margin-top: 20px;
}

input[type="submit"].basic_bttn {
    line-height: 1;
}

.passwordtoltip {
    position: absolute;
    color: #C18248;
    right: 0;
    bottom: -30px;
    padding: 10px 13px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 4px 49px #D2E6F9;
    box-shadow: 0px 4px 49px #D2E6F9;
    border-radius: 4px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

.psswrd_toggle_shw:hover .passwordtoltip {
    opacity: 1;
    visibility: visible;
}

.passwordtoltip::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    right: 20px;
    -webkit-transform: translateY(-70%) rotate(45deg);
    -ms-transform: translateY(-70%) rotate(45deg);
    transform: translateY(-70%) rotate(45deg);
    background: #ffffff;
    z-index: -1;
}

.passwordtoltip i {
    margin-right: 8px;
}

input[type="text"].password-fild {
    padding-right: 48px;
}

.step_bar {
    width: 71px;
    height: 7px;
    border-radius: 20px;
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(30, 108, 165, 0.2);
}

.step_bar::after {
    content: '';
    width: 50%;
    height: 7px;
    left: 0;
    border-radius: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    background-color: var(--theme-color);
    opacity: 0;
    visibility: hidden;
}

.step-wrap.step-complete .step_bar::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.step-wrap.step-active .step_bar::after {
    opacity: 1;
    visibility: visible;
}

.step-wrap.step-complete .step-numbrbx {
    background: var(--theme-color);
    color: var(--bg-color);
}

.step-wrap:last-child .step_bar {
    display: none;
}

.step-wrap:first-child .step-numbrbx {
    margin-left: 0;
}

.step-wrap:last-child .step-numbrbx {
    margin-right: 0;
}

.erpBox.erp_StepTwo {
    padding-left: 23px;
    padding-right: 23px;
}

.erp_StepTwo .frmmBttnBox {
    max-width: 575px;
    margin-left: auto;
    margin-right: auto;
}

.splztn_srch_innr {
    position: relative;
}

.srch_boxHldr {
    position: relative;
}

.splztn_srchBox label {
    position: absolute;
    left: 15px;
    top: -10px;
    background: var(--bg-color);
    display: inline-block;
    z-index: 1;
    padding: 0 8px;
}

.erp_StepTwo input[type=text],
.erp_StepTwo input[type=search] {
    border-radius: 10px;
    border-color: var(--alt-theme-color);
    font-weight: 400;
}

.splztn_srch_innr input[type=text],
.splztn_srch_innr input[type=search] {
    padding: 15px 80px 15px 20px;
}

.srch_boxHldr input[type=submit] {
    padding: 0;
    background: url(../images/srch_icon.svg) no-repeat center center;
    background-size: 12px;
    width: 62px;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    position: absolute;
    font-size: 0;
}

.cstm_drpBttn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 13px 11px;
    line-height: 0.95;
    border: 1px solid var(--border-color);
    position: relative;
    border-radius: 5px;
    color: var(--alt-theme-color);
    font-weight: 700;
    padding-right: 18px;
    font-size: 10px;
    height: 44px;
}

.cstm_drpBttn::after {
    position: absolute;
    content: "";
    right: 8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/blu_drp.svg) no-repeat center center;
    width: 9px;
    height: 6px;
}

.cstm_drpDwn {
    position: relative;
}

.cstm_drpSubMenu {
    position: absolute;
    top: 100%;
    z-index: 10;
    padding: 15px 17px 22px;
    background: var(--bg-color);
    -webkit-box-shadow: 0px 4px 49px 0px rgba(80, 104, 128, 0.20);
    box-shadow: 0px 4px 49px 0px rgba(80, 104, 128, 0.20);
    border-radius: 10px;
    width: 100%;
    min-width: unset;
    border: 0;
}

.slct_lstng {
    max-height: 276px;
    overflow-y: auto;
    padding-right: 6px;
    padding-bottom: 20px;
    font-size: 13px;
}

.nice_scroll_cstm {
    border-radius: 50px;
}

.slct_lstng li:not(:last-child) {
    margin-bottom: 4px;
}

.slct_lstng li label {
    position: relative;
    padding-left: 25px;
    text-transform: capitalize;
    color: var(--theme-color);
    cursor: pointer;
    display: block;
}

.slct_lstng li label input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--border-color);
    background: #C9D3DC;
    border-radius: 4px;
}

.slct_lstng li label input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 14px;
    height: 14px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(../images/wh_chk_alt.svg) no-repeat center center;
    background-size: 8px;
    border-radius: 4px;
}

.slct_lstng label input[type="checkbox"]:checked+span:before {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

.slct_lstng label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.subTtle {
    display: block;
    font-family: var(--gotham-font);
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 14px;
}

.sltcd_mdlHdng {
    padding: 10px 14px;
    color: var(--alt-theme-color);
    background: rgba(28, 72, 111, 0.04);
    border-radius: 5px;
    margin: 14px 0;
}

.slctd_mdule_row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.mdule_lstRow {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 14px;
}

.mdle_lstTtle {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.mdle_lstTtle p {
    display: inline-block;
    position: relative;
}

.mdle_lstTtle p::after {
    position: absolute;
    content: "";
    right: unset;
    left: 100%;
    width: 100vw;
    height: 1px;
    background: #F6F6F6;
    display: block;
    margin-left: 7px;
    top: 10px;
}

.erp_StepTwo .frm_bttm {
    margin-top: 48px;
}

.slctd_mdulBox .cstm_drpBttn {
    border-color: var(--alt-theme-color);
}

.splztn_srch_innr {
    max-width: 575px;
    margin-left: auto;
    margin-right: auto;
}

/* Tooltip */
.tooltip-inner {
    background-color: #ffffff;
    padding: 10px 13px;
    -webkit-box-shadow: 0px 4px 49px #D2E6F9;
    box-shadow: 0px 4px 49px #D2E6F9;
    color: #C18248;
    border-radius: 5px;
    max-width: inherit;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
}

.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #ffffff;
    border-width: 0 0.4rem 0.6rem;
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #ffffff;
    border-width: 0 0.4rem 0.6rem;
}

.tooltip-arrow {
    left: 43% !important;
}

.tooltip.show {
    opacity: 1;

}

.tooltip {
    inset: -12px auto auto 107px !important;
}

.tooltip-inner img {
    margin-right: 8px;
}

/*9august*/
.wlcm-fixer-wrpr {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wlcm-fixer-wrpr .basic_bttn.sucesbutn {
    margin-top: 6px;
}

.updt-frmbutnbx {
    margin-top: 30px;
}

.multi-slct-inpt .select2-selection {
    font-size: 13px;
    border: 1px solid #D3D7DF;
    border-radius: 10px;
    padding: 25px 24px 10px 24px;
    min-height: 60px;
    background-image: url(../images/select-dropdwnicon.svg);
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 16px 12px;
    padding-right: 30px;
}

.multi-slct-inpt label {
    top: 4px;
}

.multi-slct-inpt .select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
    height: auto;
}

.multi-slct-inpt input.select2-search__field {
    display: none;
}

.multi-slct-inpt .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    background-color: #dadfe2;
    border: none;
    border-radius: 30px;
    font-size: 10px;
    padding: 4px 23px 4px 9px;
    position: relative;
    color: #607384;
    margin-bottom: 2px;
    margin-right: 10px;
}

.multi-slct-inpt .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
    position: absolute;
    right: 8px;
    width: 6px;
    height: 6px;
    padding: 0;
    margin-right: 0;
}

.multi-slct-inpt label {
    z-index: 1;
}

.multi-slct-inpt .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.multi-slct-inpt .select2-container--bootstrap-5.select2-container--open .select2-selection {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--alt-theme-color);
}


.dateinputbx input[type="text"] {
    padding-right: 30px;
}

.personldetls-stepbx {
    margin: 0px auto 45px auto;
}

.fixer-inputbx select.has_value,
.fixer-inputbx select:focus {
    padding: 12px 30px 12px 24px;
}

.dateinputbx input[type="text"] {
    background-image: url(../images/calendar.svg);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 15px 14px;
}

.hr-ratevalue {
    font-size: 13px;
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hour-inptbx input[type="text"] {
    padding-right: 55px;
}

.prof-dtls-frm_bttm {
    margin-top: 50px;
}

.brifbio-wrap {
    border: 1px solid var(--alt-theme-color);
    background-color: var(--theme-color);
    padding: 16px 26px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--bg-color);
}

.brifbio-count {
    text-align: right;
    display: block;
}

.brifbio-hd {
    margin-bottom: 10px;
    display: inline-block;
    line-height: 1;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    font-size: 13px;
}

.brifbio-wrap p {
    margin-bottom: 8px;
    line-height: 1.1;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    background-color: var(--theme-color);
}

.brifbio-wrap {
    margin-top: 37px;
}

.facingeror-wrap {
    background-color: rgba(204, 33, 41, 0.1);
    padding: 9px 14px;
    margin-top: 30px;
    border-radius: 5px;
}

.facingeror-span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.facingeror-wrap p {
    font-size: 13px;
    color: #CC2129;
}

.facingeror-wrap p a {
    color: #CC2129;
    text-decoration: underline !important;
}

.facingeror-wrap p a:hover {
    color: #85090f;
}

.redinfoicon {
    margin-right: 9px;
}

.defrehd {
    color: var(--alt-theme-color);
    padding-top: 15px;
    display: inline-block;
    text-transform: capitalize;
}

.degreb-wrap .mdle_lstTtle {
    padding-bottom: 0;
    padding-top: 15px;
}

.dashboardpopup .modal-content {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.06);
    padding: 68px 70px 64px 70px;
    border-radius: 20px;
    border: none;
}

.dashboardpopup .modal-body {
    text-align: center;
    padding: 0;
}

.dashboardpopup .modal-dialog {
    max-width: 681px;
}

.dashboardpopup .modal-header {
    border-bottom: none;
    padding: 0;
}

.dashboardpopup .erp_logoBox {
    margin-bottom: 39px;
}

.dashboardpopup .modal-header .btn-close {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 23px;
    right: 23px;
    background-color: rgba(30, 108, 165, 0.4);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0;
    opacity: 1;
    background-image: none;
    margin: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.dashboardpopup .modal-header .btn-close:hover {
    background-color: rgba(30, 108, 165, 0.2);
}

.dashboardpopup .modal-header .btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dashboardpopup .dshbrd-popp-contwrap .hOne {
    margin-bottom: 20px;
}

.basic_bttn.ftr-popup-clsbutn {
    margin-top: 5px;
    padding-left: 24px;
    padding-right: 24px;
    min-width: 121px;
}

.modal-backdrop.show {
    background: -o-linear-gradient(313deg, rgba(28, 72, 111, 0.78) 0%, rgba(28, 72, 111, 0.29) 100%);
    background: linear-gradient(137deg, rgba(28, 72, 111, 0.78) 0%, rgba(28, 72, 111, 0.29) 100%);
    -webkit-backdrop-filter: blur(9.5px);
    backdrop-filter: blur(9.5px);
    opacity: 1;
}

/*9august*/
.defrehd a {
    color: var(--alt-theme-color);
}

.defrehd a:hover {
    color: var(--theme-color);
}

/* Dahboard */
.erp_dashBrd {
    padding: 8px 28px 39px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    overflow: hidden;
    background: #F5FAFF;
}

.shape5 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.shape6 {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    bottom: -5%;
    z-index: -1;
}

.shape7 {
    position: absolute;
    left: 0;
    bottom: 100px;
    z-index: -1;
}

.dshbrdLogo {
    width: 271px;
    text-align: center;
}

.dshbrdLogo a {
    display: inline-block;
    min-width: 176px;
    width: 176px;
}

.dshbrd_hdr {
    padding: 18px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 100;
    position: relative;
}

.dshbrdRght {
    padding-left: 30px;
}

.dshbrd_ttle h1 {
    text-transform: uppercase;
}

.usrImgBox {
    position: relative;
}

.usr_ac_drpDwn {
    padding: 0;
    border-radius: 15px;
    border: 0;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(80, 104, 128, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(80, 104, 128, 0.15);
    margin-top: 5px !important;
    overflow: hidden;
}

.usr_ac_drpDwn ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--alt-theme-color);
    font-size: 13px;
}

.usr_ac_drpDwn ul li.active a,
.usr_ac_drpDwn ul li a:hover {
    background: var(--theme-color);
    color: var(--bg-color);
}

.usr_ac_drpDwn ul li:not(:last-child) {
    border-bottom: 1px solid rgba(96, 115, 132, 0.1);
}

.dshbrd_hdr_rght {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 271px);
    padding-left: 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.usr_prfleInfo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.usrAcntBttn {
    width: 37px;
    height: 37px;
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
}

.usrAcntBttn img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.usr_nme {
    display: inline-block;
    margin-right: 14px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.02em;
    color: var(--alt-theme-color);
}

.dshbrdHdrIconLstng,
.dshbrd_hdrInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dshbrdHdrIconLstng>li:not(:last-child) {
    margin-right: 10px;
}

.dshbrdHdrIconLstng>li>a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: var(--bg-color);
    border-radius: 9px;
    position: relative;
}

.dshbrdHdrIconLstng>li>a img {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    max-width: 21px;
    max-height: 21px;
    -o-object-fit: contain;
    object-fit: contain;
}

.dshbrdHdrIconLstng>li>a:hover {
    background-color: var(--theme-color);
}

.dshbrdHdrIconLstng>li>a:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.ntfctn_no {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    color: var(--bg-color);
    font-family: var(--gotham-font);
    font-weight: 500;
    font-size: 5px;
    background: #E55491;
    position: absolute;
    right: -3px;
    top: -3px;
}

.dshbrdBttm {
    position: relative;
}

.sdePnl {
    position: absolute;
    width: 271px;
    background: var(--bg-color);
    border-radius: 10px;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 19px 16px 32px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 80vh;
    font-family: var(--gotham-font);
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    z-index: 100;
}

.sdePnl .sdpnl_nav>li:not(:last-child) {
    margin-bottom: 4px;
}

.sdePnl .sdpnl_nav>li {
    border-radius: 10px;
    border-right: 2px solid rgba(28, 72, 111, 0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.sdePnl .sdpnl_nav>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 15px;
    color: var(--alt-theme-color);
    position: relative;
    padding-right: 50px;
}

.sdePnl .sdpnl_nav>li:hover,
.sdePnl .sdpnl_nav>li.active,
.sdePnl .sdpnl_nav>li.has_submenu.has_submenu_open {
    background: rgba(28, 72, 111, 0.08);
    border-color: rgba(28, 72, 111, 0.8);
}

.sdePnl .sdpnl_nav>li a:hover,
.sdePnl .sdpnl_nav>li.active>a {
    color: var(--theme-color);
}

.sdePnl .sdpnl_nav>li>a span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    min-width: 31px;
    border-radius: 9px;
    background: rgba(30, 108, 165, 0.2);
    margin-right: 13px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.sdePnl .sdpnl_nav>li>a span img {
    max-width: 15px;
    max-height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
}

.sdePnl .sdpnl_nav>li>a:hover span,
.sdePnl .sdpnl_nav>li.active>a span,
.sdePnl .sdpnl_nav>li.has_submenu.has_submenu_open>a span {
    background: rgba(30, 108, 165, 1);
}

.sdePnl .sdpnl_nav>li>a:hover span img,
.sdePnl .sdpnl_nav>li.active>a span img,
.sdePnl .sdpnl_nav>li.has_submenu.has_submenu_open>a span img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.sdePnl .sdpnl_nav>li.has_submenu>a::after {
    content: "+";
    position: absolute;
    right: 24px;
    width: 14px;
    font-size: 22px;
}

.sdePnl .sdpnl_nav>li.has_submenu.has_submenu_open>a::after {
    content: "-";
}

.sdpnl_sub_menu {
    padding: 0 26px 26px;
}

.sdpnl_sub_menu>li>a span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 5px;
    background: #607384;
    margin-right: 9px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.sdpnl_sub_menu>li {
    font-size: 12px;
    text-transform: capitalize;
}

.sdpnl_sub_menu>li a {
    color: var(--text-color);
}

.sdpnl_sub_menu>li:not(:last-child) {
    margin-bottom: 12px;
}

.sdpnl_sub_menu>li.submenu_active>a,
.sdpnl_sub_menu>li>a:hover {
    color: var(--alt-theme-color);
}

.sdpnl_sub_menu>li.submenu_active>a span,
.sdpnl_sub_menu>li>a:hover span {
    background: var(--theme-color);
}

.sdpnl_shpe {
    height: 639px;
}

.logout_menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--alt-theme-color);
}

.logout_menu a span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--theme-color);
    width: 48px;
    height: 48px;
    border-radius: 9px;
    margin-right: 18px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.logout_menu a:hover {
    color: var(--theme-color);
}

.logout_menu a span img {
    max-width: 15px;
    max-height: 15px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.logout_menu a:hover span {
    background: rgba(30, 108, 165, 0.2);
}

.logout_menu a:hover span img {
    -webkit-filter: none;
    filter: none;
}

.sdpnl_shpe_hldr {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 95%;
}

.sdpnl_shpe1 {
    height: 50%;
    width: 100%;
    background: -o-linear-gradient(top, rgba(246, 246, 246, 0.52) 0%, rgba(255, 255, 255, 0.00) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 246, 246, 0.52)), to(rgba(255, 255, 255, 0.00)));
    background: linear-gradient(180deg, rgba(246, 246, 246, 0.52) 0%, rgba(255, 255, 255, 0.00) 100%);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    margin-bottom: -40%;
}

.sdpnl_shpe2 {
    height: 50%;
    width: 100%;
    background: -o-linear-gradient(top, rgba(20, 127, 226, 0.03) 0%, rgba(255, 255, 255, 0.00) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 127, 226, 0.03)), to(rgba(255, 255, 255, 0.00)));
    background: linear-gradient(180deg, rgba(20, 127, 226, 0.03) 0%, rgba(255, 255, 255, 0.00) 100%);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.rghtPnl {
    margin-left: 271px;
    padding-left: 28px;
}

.lrge_pnlInnr_box {
    padding: 28px 30px;
    background: var(--bg-color);
    border-radius: 10px;
    margin-bottom: 30px;
}

.lrge_pnlInnr_box:last-child {
    margin-bottom: 0;
}

.indvdl_jobHldr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.indvdl_jobIcon_lft {
    width: 112px;
}

.indvdl_jobIcon_lft figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    border-radius: 5px;
}

.indvdl_jobIcon_lft figure img {
    max-width: 42px;
    max-height: 42px;
    -o-object-fit: contain;
    object-fit: contain;
}

.indvdl_jobDtls_rgt {
    width: calc(100% - 112px);
    padding-left: 10px;
    font-size: 16px;
}

.jbdtls_rght_innr strong {
    font-size: 30px;
    font-family: var(--gotham-font);
    font-weight: 700;
}

.jbdtls_rght_innr {
    height: 100%;
    padding: 24px 27px 28px;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    line-height: 1.3;
}

.job_col:nth-child(3n+1) .indvdl_jobIcon_lft figure {
    background: rgba(249, 196, 8, 0.2);
}

.job_col:nth-child(3n+1) .jbdtls_rght_innr strong {
    color: #F9C408;
}

.job_col:nth-child(3n+2) .indvdl_jobIcon_lft figure {
    background: rgba(105, 165, 116, 0.2);
}

.job_col:nth-child(3n+2) .jbdtls_rght_innr strong {
    color: #69A574;
}

.job_col:nth-child(3n+3) .indvdl_jobIcon_lft figure {
    background: rgba(249, 138, 8, 0.2);
}

.job_col:nth-child(3n+3) .jbdtls_rght_innr strong {
    color: #F98A08;
}

.job_row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 20px;
}

.job_bttmLftCol {
    width: 71.5%;
    padding-right: 23px;
}

.job_bttmRgtCol {
    width: calc(100% - 71.5%);
    padding-left: 5px;
}

.job_sttus_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(96, 115, 132, 0.1);
}

.job_sttus_top h2 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.sttus_prgrssBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 10px;
    font-family: var(--gotham-font);
    font-weight: 500;
}

.prgrss_hldr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 10px;
    font-family: var(--gotham-font);
}

.sttus_prgrssBox .progress {
    width: 103px;
    height: 8px;
    font-size: 10px;
    font-family: var(--gotham-font);
    background: #EBEBEB;
}

.prgrss_toolTip {
    margin-right: 3px;
    color: #69A574;
}

.progress-bar {
    background-color: #69A574;
    border-radius: 50px;
}

.prgrss_ttle {
    color: var(--alt-theme-color);
    padding-right: 3px;
    letter-spacing: -0.02em;
}

.job_recrtBox {
    padding-top: 26px;
}

.jb_rcrt_row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.job_rcrtInnrBox {
    position: relative;
    border: 1px solid transparent;
    z-index: 1;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    color: var(--text-color);
}

.job_rcrtIndBox {
    padding: 10px 10px 10px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 10px 10px 14px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    border: 1px solid rgb(30, 108, 165, 0.1);
    background: var(--bg-color);
    -webkit-transition: all 0.6s cubic-bezier(0.79, 0.33, 0.14, 0.53);
    -o-transition: all 0.6s cubic-bezier(0.79, 0.33, 0.14, 0.53);
    transition: all 0.6s cubic-bezier(0.79, 0.33, 0.14, 0.53);
}

.archv_box {
    position: absolute;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #DA4A51;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0 14px;
    opacity: 0;
    visibility: hidden;
}

.apliedjob-listbx.apliedjob-itembx ul li.add_to_archive .job_rcrtIndBox {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    border-color: #DA4A51;
    margin-left: auto;
}

.apliedjob-listbx.apliedjob-itembx ul li.add_to_archive .archv_box {
    opacity: 1;
    visibility: visible;
}

.apliedjob-listbx.apliedjob-itembx ul li.add_to_archive .job_rcrtInnrBox {
    border-color: #DA4A51;
}

.job_rcrtInnrBox:hover {
    background: rgba(28, 72, 111, 0.08);
    border-color: rgba(28, 72, 111, 0.8);
}

.jb_rcrtIconBox {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgb(30, 108, 165, 0.05);
}

.jb_rcrtIconBox img {
    max-width: 21px;
    max-height: 21px;
    -o-object-fit: contain;
    object-fit: contain;
}

.jb_rcrtTxtBox {
    padding-left: 10px;
    width: calc(100% - 47px);
}

.jb_rcrtInfoRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.job_rcrtInfoCol {
    width: 50%;
    font-size: 11px;
    padding: 0 5px;
}

.job_rcrtInfoCol:first-child {
    width: 45%;
}

.job_rcrtInfoCol:last-child {
    width: 55%;
}

.job_rcrtInfoCol strong {
    font-weight: 400;
    color: var(--text-color);
    font-size: 10px;
}

.jb_rctTtle {
    font-family: var(--gotham-font);
    font-weight: 500;
    color: var(--alt-theme-color);
}

.jb_rctTtle a {
    color: var(--alt-theme-color);
}

.jb_rctTtle a:hover {
    color: var(--theme-color);
}

.btlrge_pnlInnr_box {
    padding-top: 33px;
    padding-bottom: 33px;
}

.jb_sttusTb_hldr .nav-tabs {
    border-bottom: 0;
}

.jb_sttusTb_hldr .nav-tabs .nav-link {
    padding: 8px 28px;
    border: 0;
    font-family: var(--gotham-font);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color);
    position: relative;
}

.jb_sttusTb_hldr .nav-tabs .nav-link::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: -31px;
    height: 4px;
    border-radius: 50px;
    background: var(--alt-theme-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.jb_sttusTb_hldr .nav-tabs .nav-link.active {
    color: var(--alt-theme-color);
}

.jb_sttusTb_hldr .nav-tabs .nav-link.active::after {
    opacity: 1;
    visibility: visible;
}

.jb_stusInfo_hldr table {
    table-layout: fixed;
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    vertical-align: middle;
    position: relative;
    z-index: 2;
}

.stus_tble_hldr table thead th {
    font-family: var(--gotham-font);
    font-weight: 500;
    color: var(--alt-theme-color);
    padding: 15px 16px;
}

.stus_tble_hldr table tbody td {
    padding: 20px 16px;
    word-break: break-word;
}

.stus_tble_hldr table tbody td:first-child {
    border-radius: 10px 0 0 10px;

}

.stus_tble_hldr table tbody td:last-child {
    border-radius: 0 10px 10px 0;
}

.stus_tble_hldr table tbody tr:nth-child(odd) {
    background: rgb(30, 108, 165, 0.05);
}

.see_bttn_hldr {
    margin-top: 30px;
}

.see_bttn_hldr .basic_bttn {
    padding: 12px 24px;
}

.job_id {
    width: 20.15%;
}

.job_ttle {
    width: 33.35%;
}

.jb_dte {
    width: 21%;
}

.jb_tme_zne {
    width: 25.50%;
}

.cht_no {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    color: var(--bg-color);
    background: var(--alt-theme-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-style: normal;
    font-size: 8px;
    right: 18px;
    position: absolute;
}

/*9august*/
.smal-pnlInnr_box {
    padding: 18px 14px;
}

.aplied-jobhdbx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aplied-jobhdbx .hTwo {
    margin-bottom: 0;
    text-transform: uppercase;
}

.explorelnk {
    font-family: var(--gotham-font);
}

.dshbrd_appldBox {
    margin-top: -13px;
}

.dshbrd_appldBox .jb_rctmntItem {
    padding-top: 13px;
}

.aplied-jobhdbx {
    margin-bottom: 13px;
}

.dshbrd-profimgbx {
    width: 77px;
    height: 77px;
    overflow: hidden;
    border-radius: 100%;
}

.dshbrd-profimgbx>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.dshbrd-profle-tpbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 27px;
}

.dshbrd-prof-namewrp {
    width: calc(100% - 77px);
    padding-left: 18px;
}

.profdesig {
    text-transform: uppercase;
    font-family: var(--gotham-font);
    display: block;
    letter-spacing: -0.02em;
}

.dshbrd-prof-namewrp .hOne {
    margin-bottom: 2px;
}

.dshbrd-prof-namewrp .sttus_prgrssBox {
    margin-top: 13px;
}

.dshbrd-prof-namewrp .prgrss_ttle {
    font-size: 10px;
}

.dshbrd-prof-namewrp .prgrss_toolTip {
    font-size: 10px;
}

.prof-skilhd {
    font-size: 12px;
    color: var(--alt-theme-color);
    font-family: var(--gotham-font);
    margin-bottom: 16px;
    display: block;
}

.prof-skillst-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.prof-skillst-ul li {
    padding: 0 12px;
    width: calc(100% / 4);
}

.prof-skilbx {
    background-color: rgba(30, 108, 165, 0.05);
    border-radius: 10px;
    padding: 17px;
}

.dshbrd-proflebx {
    position: relative;
    padding-top: 6px;
}

.editicon {
    position: absolute;
    right: 0px;
    top: -5px;
    display: inline-block;
}

.editicon:hover {
    opacity: 0.6;
}

.apliedjob-listbx .job_rcrtInfoCol:first-child {
    width: 32%;
}

.apliedjob-listbx .job_rcrtInfoCol:last-child {
    width: 68%;
}

/*9august*/
.psted_jobBox h2 {
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.pstd_grphBox img {
    width: 100%;
}

.ham_menuBttn {
    display: none;
}

/* Dashboard My Profile */
.my_prfle_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.my_prfle_row .job_bttmRgtCol {
    padding-left: 0;
    padding-right: 7px;
}

.my_prfle_row .job_bttmLftCol {
    padding-left: 23px;
    padding-right: 0;
}

.myPrfle_fxdPnl {
    border-radius: 10px;
    background: var(--bg-color);
}

.prfle_actnBttn_hldr {
    width: 95px;
    margin-left: auto;
}

.prfle_actnBttn_hldr .select2-selection.select2-selection--single {
    height: 23px;
    min-height: 23px;
    padding: 0 9px;
    border-radius: 7px !important;
    background-color: rgba(28, 72, 111, 0.1);
    font-size: 12px;
    color: rgba(28, 72, 111, 0.7);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0 !important;
    outline: none !important;
    border: 0 !important;
    background-image: url(../images/drp_icon.svg);
    background-size: 6px;
    background-position: right 7px center;
    padding-right: 15px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.prfle_actnBttn_hldr .select2-selection.select2-selection--single .select2-selection__rendered {
    line-height: 23px;
    color: rgba(28, 72, 111, 0.7);
    letter-spacing: -0.02em;
}

.optn-circle {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    border: 1px solid var(--bg-color);
    display: inline-block;
    vertical-align: 0px;
}

.optn-circle.user-available {
    background: #3ECC58;
}

.optn-circle.user-unavailable {
    background: #F4B02B;
}

.select2-container--bootstrap-5 .prfle_info_drpDwn.select2-dropdown .select2-results__options .select2-results__option {
    font-size: 10px;
    color: rgba(28, 72, 111, 0.7);
    position: relative;
}

.select2-container--bootstrap-5 .prfle_info_drpDwn.select2-dropdown {
    border: 0 !important;
    background: var(--bg-color);
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(28, 72, 111, 0.10);
    box-shadow: 0px 4px 10px 0px rgba(28, 72, 111, 0.10);
    margin-top: 6px;
}

.select2-container--bootstrap-5 .prfle_info_drpDwn.select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
    background: var(--theme-color);
    color: var(--bg-color);
}

.select2-container--bootstrap-5 .prfle_info_drpDwn.select2-dropdown .select2-results__options .select2-results__option:hover {
    background: var(--theme-color);
    color: var(--bg-color);
}

.select2-container--bootstrap-5 .prfle_info_drpDwn.select2-dropdown .select2-results__options .select2-results__option .optn-circle {
    margin-right: 2px;
    vertical-align: -1px;
}

.prfle_fxdTop {
    padding: 16px 0 34px;
    background: var(--bg-color);
    border-radius: 10px;
}

.prfle_actnBttn_outr {
    padding: 0 16px;
    margin-bottom: 8px;
}

.usr_prfleDataTop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 16px;
}

.usr_prfleImg {
    width: 85px;
    height: 85px;
    overflow: hidden;
    border-radius: 100%;
}

.usr_prfleImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.usr_prfleDataRght {
    width: calc(100% - 85px);
    padding-left: 14px;
}

.usr_prfleDataRght h2 {
    margin-bottom: 4px;
}

.mmbr_actvty {
    display: block;
    color: var(--alt-theme-color);
    margin-top: 2px;
    margin-bottom: 6px;
}

.mmbr_actvty span {
    color: #147FE2;
}

.usr_prfleDataRght .sttus_prgrssBox .progress {
    width: 90px;
}

.usr_prfleDataRght .prgrss_toolTip {
    margin-right: 2px;
}

.prfle_fxdTopInnr {
    padding-bottom: 24px;
    position: relative;
}

.prfle_fxdTopInnr::after {
    position: absolute;
    content: "";
    height: 1px;
    left: 13px;
    right: 13px;
    bottom: 0;
    background: rgba(96, 115, 132, 0.1);
}

.prfle_infoTble {
    padding: 22px 13px;
    position: relative;
}

.prfle_infoTble::after {
    position: absolute;
    content: "";
    height: 1px;
    left: 13px;
    right: 13px;
    bottom: 0;
    background: rgba(96, 115, 132, 0.1);
}

.prfle_infoRow {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 16px;
}

.prfle_infoBlock {
    word-break: break-word;
}

.prfle_infoBlock span {
    display: block;
    color: var(--alt-theme-color);
}

.prfle_infoBlock p a {
    color: var(--text-color);
}

.prfle_infoBlock p a:hover {
    color: var(--theme-color);
}

.dtl_menuHdr {
    padding: 14px 13px;
    position: relative;
    margin-bottom: 26px;
}

.dtl_menuHdr::after {
    position: absolute;
    content: "";
    height: 1px;
    left: 13px;
    right: 13px;
    bottom: 0;
    background: rgba(96, 115, 132, 0.1);
}

.dtl_menuHdr h3 {
    text-transform: uppercase;
}

.dtls_menu_lstng>li {
    font-family: var(--gotham-font);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.dtls_menu_lstng>li:last-child {
    margin-bottom: 0;
}

.dtls_menu_lstng>li a {
    color: var(--alt-theme-color);
    padding: 5px 18px;
    display: block;
    line-height: 1;
    position: relative;
    border-left: 4px solid transparent;
}

.dtls_menu_lstng>li.active-profile-item a {
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.prfle_dtlsHldr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.prfle_dtlsRght {
    width: 218px;
    padding-left: 33px;
}

.prfle_dtlsLft {
    width: calc(100% - 218px);
}

.prfle_dtlsHldr {
    padding-top: 45px;
}

.prfle_hdrTtle {
    overflow: hidden;
}

.prfle_hdrTtle h4,
.prfle_hdrTtle .hFour {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.prfle_hdrTtle h4::after,
.prfle_hdrTtle .hFour::after {
    position: absolute;
    content: "";
    right: unset;
    left: 100%;
    width: 100vw;
    height: 1px;
    background: rgba(96, 115, 132, 0.1);
    display: block;
    margin-left: 7px;
    top: 8px;
}

.edtBttn {
    display: inline-block;
    width: 21px;
    height: 21px;
}

.prfle_edtHdr {
    position: relative;
    padding-right: 25px;
}

.prfle_invdlDtlsHdngBlck {
    padding-bottom: 15px;
}

.prfle_edtHdr .edtBttn {
    position: absolute;
    right: 0;
    top: -3px;
}

.prfle_edtHdr .edtBttn:hover {
    -webkit-filter: invert(41%) sepia(46%) saturate(205%) hue-rotate(166deg) brightness(95%) contrast(86%);
    filter: invert(41%) sepia(46%) saturate(205%) hue-rotate(166deg) brightness(95%) contrast(86%);
}

.prfle_invdlDtlsBlck:not(:last-child) {
    margin-bottom: 30px;
}

.prfle_addMdleBlck {
    margin: 15px 0 0;
}

.prfle_mdle_ttle {
    padding: 0;
    margin-bottom: 15px;
}

.prfle_addMdlueBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.prfle_addMdleBttn_hldr {
    width: 129px;
    min-width: 129px;
    padding: 8px 0;
}

.prfle_addMdleBttn_hldr .basic_bttn {
    width: 100%;
    font-size: 13px;
    padding: 11px 23px;
    font-weight: 500;
}

.prfle_mduleLstng {
    padding-right: 10px;
    margin-top: -8px;
}

.prfle_mduleLstng>li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 25px;
    padding-top: 8px;
}

.prfle_mduleLstng>li:last-child {
    padding-right: 0;
}

.prfle_subMduleLstng>li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.prfle_frms .brifbio-wrap {
    margin-top: 15px;
}

.prfle_frms .frm_bttm {
    margin-top: 25px;
}

.prfle_frms .frm_bttm input[type=submit] {
    min-width: 129px;
}

.prfle_invdlDtlsBlck .app_upldImg {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    margin: 0 auto 20px;
}

.prfle_invdlDtlsBlck .upld_docBox {
    width: 39px;
    height: 39px;
}

.prfle_invdlDtlsBlck .upld_docBox img {
    max-width: 21px;
    max-height: 21px;
}

.prfle_invdlDtlsBlck .upld_indvdlBox {
    padding: 9px 8px;
}

.upld_edtOptnBox_hldr {
    margin-top: 15px;
}

.upld_edtOptnBox_hldr .upld_indvdlBox:not(:last-child) {
    margin-bottom: 15px;
}

/*10august*/
.job-detlsmian-contbx {
    position: relative;
    min-height: 100vh;
    height: 100%;
}

.openjob-detls-wrpr {
    position: relative;
}

.openjob-detlsbx {
    opacity: 0.14;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.openjobtab-nav {
    padding: 15px 0;
    border-bottom: 1px solid rgba(96, 115, 132, 0.1);
}

.openjobtab-nav .nav-tabs .nav-link {
    padding: 2px 0px;
    width: 100%;
}

.openjobtab-nav .nav-item {
    padding: 0 28px;
}

.openjobtab-nav .nav-tabs {
    margin: 0 -28px;
}

.openjobtab-nav .nav-tabs .nav-link::after {
    bottom: -16px;
}

.iner-openjobtab-nav .nav-tabs {
    border-bottom: 1px solid rgb(30, 108, 165, 0.1);
    /* border-radius: 10px; */
    padding: 6px 0;
    margin: 13px 0;
}

.iner-openjobtab-nav .nav-tabs .nav-link {
    font-size: 13px;
    text-transform: capitalize;
    padding: 14px 2px;
    text-align: center;
    color: var(--text-color);
    font-family: var(--gotham-font);
    border: none;
    width: 100%;
    position: relative;
}

.iner-openjobtab-nav .nav-tabs .nav-link::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 50px;
    background: var(--alt-theme-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.iner-openjobtab-nav .nav-tabs .nav-link.active::after {
    opacity: 1;
    visibility: visible;
}

.iner-openjobtab-nav .nav-item {
    width: 50%;
}

.iner-openjobtab-nav .nav-tabs .nav-link.active {
    border: none;
    border-radius: 10px;
    color: var(--alt-theme-color);
    /* background-color: var(--theme-color); */
}

.job-contentbox {
    border-bottom: 1px solid rgba(96, 115, 132, 0.1);
    padding: 34px 0;
}

.job-adminishd {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
}

.job-adminis-hdbx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 35px;
}

.jb-adminis-posttm {
    padding: 9px 20px;
    border-radius: 40px;
    background-color: rgba(96, 115, 132, 0.1);
    color: var(--text-color);
    line-height: 1;
    font-size: 12px;
    margin-left: 13px;
    display: inline-block;
}

.job-adminis-duteshd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 20px;
    color: var(--alt-theme-color);
}

.job-adminis-duteicon {
    width: 13px;
    height: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 4px;
}

.job-adminis-duteicon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.job-adminis-duteshdbox {
    margin-bottom: 10px;
}

.job-adminis-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -8px;
}

.job-adminis-col {
    padding-top: 8px;
}

.arch-jbdtls-hd h3 {
    font-size: 13px;
    font-weight: normal;
    text-transform: uppercase;
}

.arch-jbdtls-hd {
    margin-bottom: 30px;
}

.archive-jobdtlsbx p {
    line-height: 1.8;
}

.ach-job-hghlgt-listbx ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.ach-job-hghlgt-listbx ul li {
    width: 33.3%;
    margin-bottom: 14px;
    padding: 0 15px;
}

.ach-job-hghlgt-listbx ul li span {
    padding-left: 25px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ach-job-hghlgt-listbx ul li span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-size: 15px;
    background-image: url(../images/hightlgt-corecticon.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.ach-jobdtls-ftrpart {
    padding: 30px 0;
}

.ach-jobmsg-lnk {
    color: var(--text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ach-jobmsg-lnk span {
    text-decoration: underline !important
}

.ach-jobmsg-lnk:hover {
    color: var(--theme-color);
}

.ach-jobmsgicon {
    margin-right: 11px;
    min-width: 18px;
}

.open-jobtab-wrpr .job_rcrtInnrBox {
    position: relative;
}

.job_rcrt-arw {
    position: absolute;
    left: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sdpnl_sub_menu>li.active a {
    color: var(--theme-color);
}

.applybutn {
    min-width: 129px;
}

.arc-jobdtls-flexftr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -13px;
}

.apliedjob-itembx ul li {
    padding-top: 13px;
}

.applybutn.disable {
    background-color: #d7e6ef;
    color: var(--theme-color);
    pointer-events: none;
}

.apliedjob-itembx ul li.active .job_rcrtInnrBox {
    border: 1px solid var(--theme-color);
}

.jb-adminis-posttm.pending-span {
    color: #F9C408;
    background-color: #fff9e5;
}

.aplydate {
    margin-left: 28px;
}

.jb-adminis-posttm.approve-span {
    background-color: #fff2e4;
    color: #F98A08;
}

.decline-span {
    background-color: #fdebf2;
    color: #E55491;
}

.sucess-span {
    background-color: #dceadf;
    color: #69A574;
}

/*apply side panel*/
.apply-form-blck {
    padding-top: 23px;
}

.aplyplanel-wrpr {
    background-color: #fff;
    -webkit-box-shadow: -9px 1px 27px 0px rgba(85, 59, 124, 0.17);
    box-shadow: -9px 1px 27px 0px rgba(85, 59, 124, 0.17);
    height: 100%;
    padding: 30px 17px;
    overflow: auto;
}

body.showbox {
    overflow: hidden;
}

.aplyplanel-outrwrpr {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100% !important;
    width: 584px;
    overflow-y: auto;
    padding-left: 40px;
    right: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 100;
}

.aplyplanel-outrwrpr.applypanel-show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.apply-form-blck .fixer-inputbx textarea {
    color: var(--alt-theme-color);
    height: auto;
    min-height: 219px;
}

.apply-form-blck .upld_indvdlBox {
    padding: 8px;
    border-radius: 10px;
}

.apply-form-blck .upld_docBox {
    width: 39.15px;
    height: 39.15px;
    background-color: rgba(30, 108, 165, 0.4);
}

.apply-form-blck .upld_docBox img {
    max-width: 23px;
}

.apply-form-blck .upld_optnBox_hldr {
    width: 100%;
}

.apply-form-blck .upld_docTxtBox {
    width: calc(100% - 39.15px);
    padding-left: 15px;
}

.apply-submitbutn input[type="submit"] {
    padding: 22px 30px;
    height: auto;
    min-width: 129px;
    line-height: 1;
}

.apply-submitbutn {
    margin-top: 13px;
}

.apply-form-blck .fixer-frmcol {
    margin-top: 13px;
}

.aply-closebutn {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px 0px 0px 10px;
}

.aply-closebutn:hover {
    background: #d7e7ef;
}

.jobrequrt-sidewrpr {
    padding-top: 30px;
}

/*apply side panel*/
/*10august*/
/* Chat Room */
.cht_RoomPnl {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.admn_chtBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-top: 20px;
}

.invdl_chtBox {
    width: 70%;
    margin-bottom: 25px;
}

.invdl_chtBox:last-child {
    margin-bottom: 0;
}

.cht_dteStmp {
    display: block;
    text-align: center;
    margin-bottom: 28px;
    color: #C5CACE;
}

.cht_usrImg {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    overflow: hidden;
}

.cht_usrImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cht_usrInfo {
    width: calc(100% - 32px);
}

.cht_usrTxt {
    width: 100%;
}

.cht_tmeStmp {
    min-width: 47px;
    display: block;
    text-align: right;
    margin-left: 20px;
}

.cht_usrInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-left: 11px;
}

.cht_userBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.cht_usrTxt {
    padding: 18px 27px;
    background: var(--theme-color);
    color: var(--bg-color);
    border-radius: 20px 20px 20px 0;
    line-height: 1.7;
}

.invdl_chtBox:nth-child(even) .cht_userBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.invdl_chtBox:nth-child(even) .cht_userBox .cht_usrInfo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.invdl_chtBox:nth-child(even) .cht_userBox .cht_usrInfo .cht_usrTxt {
    background: #F3F3F3;
    color: var(--text-color);
    border-radius: 20px 20px 0 20px;
}

.invdl_chtBox:nth-child(even) {
    margin-left: auto;
}

.invdl_chtBox:nth-child(even) .cht_userBox .cht_usrInfo {
    padding-left: 0;
    padding-right: 11px;
}

.invdl_chtBox:nth-child(even) .cht_userBox .cht_usrInfo .cht_tmeStmp {
    margin-right: 20px;
}

.cht_typngBox {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #DFDFDF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
}

.chtBttn_Box {
    width: 180px;
}

.cht_txtArea {
    width: calc(100% - 180px);
    padding-right: 15px;
}

.cht_txtArea textarea {
    height: auto;
    min-height: 51px;
    border: 0;
    border-bottom: 1px solid transparent;
    padding-bottom: 12px;
    overflow: hidden;
}

.cht_txtArea textarea:focus {
    border-color: var(--alt-theme-color);
}

.cht_txtArea textarea::-webkit-input-placeholder {
    color: var(--text-color);
}

.cht_txtArea textarea::-moz-placeholder {
    color: var(--text-color);
}

.cht_txtArea textarea:-ms-input-placeholder {
    color: var(--text-color);
}

.cht_txtArea textarea::-ms-input-placeholder {
    color: var(--text-color);
}

.cht_txtArea textarea::placeholder {
    color: var(--text-color);
}

.chtBttn_lstng {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.chtBttn_lstng li {
    line-height: 1;
}

.smly_btn {
    width: 24px;
    min-width: 24px;
    height: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.smly_btn>img {
    max-width: 24px;
    max-height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.attchng_btn {
    width: 20px;
    height: 22px;
    min-width: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.attchng_btn>img {
    max-width: 20px;
    max-height: 22px;
    -o-object-fit: contain;
    object-fit: contain;
}

.admn_chtBox input[type=submit] {
    min-width: 95px;
    background: var(--theme-color) url(../images/send_icon.svg) no-repeat center right 13px;
    background-size: 12px;
    padding-right: 28px;
    height: 42px;
    padding-left: 14px;
}

.admn_chtBox input[type=submit]:hover {
    background-color: var(--alt-theme-color);
}

.chtBttn_lstng>li:not(:last-child) {
    margin-right: 20px;
}

.ntfctn_innrBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 23px 12px 14px;
    border: 1px solid rgb(30, 108, 165, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 13px;
}

.ntf_innrIconBox {
    width: 47px;
    height: 47px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgb(30, 108, 165, 0.05);
}

.ntf_innrIconBox img {
    max-width: 21px;
    max-height: 21px;
    -o-object-fit: contain;
    object-fit: contain;
}

.ntf_innrTxtBox {
    padding-left: 10px;
    width: calc(100% - 47px);
}

.ntfctn_drpBox {
    padding: 28px 14px 17px;
    background: var(--bg-color);
    -webkit-box-shadow: 0px 4px 44px 0px rgba(30, 108, 165, 0.10);
    box-shadow: 0px 4px 44px 0px rgba(30, 108, 165, 0.10);
    border-radius: 10px;
    border: 0;
}

.ntfctn_innrBox:hover {
    background: rgba(28, 72, 111, 0.08);
    border-color: rgba(28, 72, 111, 0.8);
}

.ntfctn_drpBox .hTwo {
    text-transform: uppercase;
    padding-bottom: 26px;
    margin-bottom: 21px;
    border-bottom: 1px solid rgba(96, 115, 132, 0.1);
    display: block;
}

.ntfctn_drpLstng>li:not(:last-child) {
    margin-bottom: 10px;
}

.ntfctn_drpLstng {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--alt-theme-color) transparent;
    scroll-behavior: smooth;
}

.ntfctn_drpLstng:-webkit-scrollbar {
    width: 4px;
    height: 4px;
    scrollbar-color: #CFF1F0 rgba(217, 217, 217, 0.2);
    border-radius: 50px;
    background-clip: padding-box;
}

.ntfctn_drpLstng:-webkit-scrollbar-track {
    background: transparent;
    background: transparent;
    height: 4px;
    width: 4px;
}

.ntfctn_drpLstng:-webkit-scrollbar-thumb {
    height: 4px;
    width: 4px;
    border-radius: 50px;
    background-clip: padding-box;
    border: 0;
    background: var(--alt-theme-color);
}

.ntfctn_drpLstng::-webkit-scrollbar-thumb {
    height: 4px;
    width: 4px;
    border-radius: 50px;
    background-clip: padding-box;
    border: 0;
    background: var(--alt-theme-color);
}

.ntfctn_drpLstng::-webkit-scrollbar {
    background-clip: padding-box;
    border: 0;
    background: transparent;
    border-radius: 50px;
    height: 4px;
    width: 4px;
}

.ntfctn_drpBox {
    margin-top: 5px !important;
}

/*11 august*/
.seting-job_bttmLftCol {
    width: 100%;
    padding-right: 0;
}

.setemail-infowrap {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(30, 108, 165, 0.1);
    padding: 14px 210px 14px 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

.setmail-icon {
    width: 47px;
    height: 47px;
    background-color: rgba(30, 108, 165, 0.05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    left: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.setmail-label {
    font-size: 13px;
    color: var(--alt-theme-color);
    font-family: var(--gotham-font);
    font-weight: normal;
    margin-bottom: 4px;
}

.set-updtebutn {
    padding: 8px 24px;
    font-family: var(--gotham-font);
    font-weight: 700;
    font-size: 16px;
    color: var(--bg-color);
    display: inline-block;
    border-radius: 40px;
    background-color: var(--theme-color);
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    min-width: 190px;
    text-align: center;
}

.set-updtebutn:hover {
    color: var(--bg-color);
    background-color: var(--alt-theme-color);
}

.setemail-infowrapr {
    margin-top: 34px;
}

.chngmaladrs-erpBox {
    padding: 100px 112px 100px 112px;
}

.seting-emailinrbx {
    min-height: 100vh;
}

/*11 august*/
.dshbrd_chrt .highcharts-legend-item>* {
    font-family: var(--europa-font) !important;
    font-size: 13px !important;
}

.dshbrd_chrt .highcharts-legend-item strong {
    font-weight: 400;
}

.logout_menu {
    margin-top: 15px;
}

/* PPC 14.08.23 */
.job-adminis-posttmebx span.jobpostedtext {
    display: inline-block;
}

/* PPC 14.08.23 */
/* AD 14/08/2023 */
.dshbrd_chrt .highcharts-legend.highcharts-no-tooltip {
    width: calc(100% - 22px);
}

.dshbrd_chrt .highcharts-legend.highcharts-no-tooltip>div,
.dshbrd_chrt .highcharts-legend.highcharts-no-tooltip>div>div {
    width: 100%;
}

.dshbrd_chrt .highcharts-legend.highcharts-no-tooltip .highcharts-legend-item.highcharts-pie-series {
    width: calc(100% - 14px);
}

.dshbrd_chrt .highcharts-legend.highcharts-no-tooltip .highcharts-legend-item.highcharts-pie-series>span {
    width: calc(100% - 24px);
    margin-top: -3px !important;
}

.dshbrd_chrt .highcharts-legend.highcharts-no-tooltip .highcharts-legend-item.highcharts-pie-series .legnd_value {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-right: 15px;
}

.dshbrd_chrt .highcharts-legend.highcharts-no-tooltip .highcharts-legend-item.highcharts-pie-series .legnd_value .left-data {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    padding-right: 10px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 90%;
    overflow: hidden;
    padding-bottom: 10px;
}

.dshbrd_chrt .highcharts-legend-item strong {
    font-weight: 700;
}

.chart-tooltip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text-color);
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(30, 108, 165, 0.1);
    box-shadow: 0px 3px 5px 0px rgba(30, 108, 165, 0.1);
}

.chart-tooltip .tooltip-color {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    border-radius: 2px;
    padding: 0;
}

.chart-tooltip .tooltip-name {
    white-space: nowrap;
    padding-right: 10px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 200px;
    overflow: hidden;
}

/* AD 14/08/2023 */
.dshbrd_pnlTop {
    position: relative;
    display: none;
    margin-bottom: 20px;
}

.dshbrdPnlLogo a {
    display: inline-block;
}

.dshbrdPnlLogo {
    padding-right: 34px;
}

.dshbrdPnlLogo a {
    width: 156px;
    min-width: 156px;
}

.sdePnl .ham_menuBttn {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.skll_tbleHldr table {
    table-layout: fixed;
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    vertical-align: middle;
}

.skll_tbleHldr table tbody td {
    width: 25%;
}

/*16th august*/
.solid-declinebutn {
    background-color: #DA4A51;
}

.solid-declinebutn:hover {
    background-color: #ac1e25;
    color: #ffffff;
}

.solid-acebtedbutn {
    background-color: #38DB79;
}

.solid-acebtedbutn:hover {
    background-color: #086c30;
    color: #ffffff;
}

.job-adminis-hd-lftbx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.solidpostbutn {
    min-width: 73px;
    text-align: center;
    padding: 7px 14px;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    border-radius: 40px;
}

.job-adminis-postbutn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 10px;
}

.job-adminis-postbutn-wrap .solidpostbutn:not(:last-child) {
    margin-right: 10px;
}

.apprved-ppupdesign .modal-dialog {
    max-width: 470px;
}

.popupcancelbutn {
    background-color: #DA4A51;
    min-width: 121px;
}

.popupcancelbutn:hover {
    background-color: #ac1e25;
}

.popupbutnfoter {
    margin-top: 38px;
}

.popupcancelbutn {
    margin-left: 10px;
}

.curnt_job_recrtBox .job_rcrtIndBox {
    padding: 10px 5px 10px 5px;
}

.prfle_addMdleBttn_hldr .basic_bttn {
    background-color: #607384;
}

.prfle_addMdleBttn_hldr .basic_bttn:hover {
    background-color: var(--alt-theme-color);
}

.dble-adminis-postbutn-wrp {
    min-width: 150px;
}

.jb-posttime-span {
    min-width: 150px;
}

/*16th august*/
.dashbrd-popup-wrpr.actn_ppup_wrpr input[type="submit"] {
    padding-top: 0;
    padding-bottom: 0;
}

.sdePnl .sdpnl_nav>li.has_submenu.has_submenu_open .sdpnl_sub_menu {
    display: block !important;
}

.prfle_docUpldBox {
    margin-top: 15px;
}

.select2-container--bootstrap-5 .prfle_info_drpDwn.select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
    display: none;
}

.alert_txt {
    display: block;
    text-align: right;
    text-transform: capitalize;
    font-size: 11px;
    margin-top: 5px;
    color: var(--alt-theme-color);
}

.prfle_invdlDtlsBlck .upld_docTxtBox {
    width: calc(100% - 39px);
    padding-left: 8px;
}

/* CSS Modification 28.08.23*/
.otp_inputRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 540px;
    margin: 0 auto;
}

.fixer-inputbx input[type="number"] {
    padding: 0;
    border: none;
    height: auto;
    line-height: normal;
    color: var(--alt-theme-color);
    font-size: 13px;
    border: 1px solid #D3D7DF;
    border-radius: 10px;
    padding: 29px 24px 12px 24px;
    width: 100%;
    height: 60px;
    font-weight: 400;
}

.fixer-inputbx input[type="number"]:focus {
    border-color: var(--theme-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.otp_inputRow.fixer-inputbx>input {
    padding: 0 10px;
    margin-right: 100px;
    width: calc(calc(100% / 4) - calc(300px / 4));
    text-align: center;
}

.otp_inputRow.fixer-inputbx>input:last-child {
    margin-right: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box-error {
    border: 1px solid red;
    border-radius: 10px;
}

.input-text-error {
    color: red;
    font-size: 12px;
}

/* CSS Modification 28.08.23*/
/* CSS Modification 05.09.23 */
.brifbio-wrap textarea {
    background: transparent;
    resize: none;
    border: 0 !important;
    color: var(--bg-color);
    height: 100px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.brifbio-wrap textarea::-webkit-input-placeholder {
    color: var(--bg-color);
}

.brifbio-wrap textarea::-moz-placeholder {
    color: var(--bg-color);
}

.brifbio-wrap textarea:-ms-input-placeholder {
    color: var(--bg-color);
}

.brifbio-wrap textarea::-ms-input-placeholder {
    color: var(--bg-color);
}

.brifbio-wrap textarea::placeholder {
    color: var(--bg-color);
}

/* CSS Modification 05.09.23 */
/* CSS Modification 12.09.23 */
.otp_inputRow.fixer-inputbx>input::-webkit-input-placeholder {
    opacity: 1;
    color: var(--text-color);
}

.otp_inputRow.fixer-inputbx>input::-moz-placeholder {
    opacity: 1;
    color: var(--text-color);
}

.otp_inputRow.fixer-inputbx>input:-ms-input-placeholder {
    opacity: 1;
    color: var(--text-color);
}

.otp_inputRow.fixer-inputbx>input::-ms-input-placeholder {
    opacity: 1;
    color: var(--text-color);
}

.otp_inputRow.fixer-inputbx>input::placeholder {
    opacity: 1;
    color: var(--text-color);
}

/* CSS Modification 12.09.23 */
/* CSS Modification 12.01.24 */
.loading_stte{
    height: 100%;
}
.gif-on-load{
    position: absolute;
    left: 50%;
    top: 65%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 20px;
}

/* CSS Modification 12.01.24 */
/* CSS Modification 18.01.24 */
.input-box-error.loading_stte{
    height: auto;
}

/* CSS Modification 18.01.24 */
/* 3.7.25 */
.slct_lstng { 
    height: 130px;
}
/* 3.7.25 */



/* ========== responsive css =========== */
@media(min-width:1025px) {

    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }

    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }

}

@media(max-width: 1599px) {
    .cstm_drpSubMenu {
        width: 485px;
    }

    .rghtPnl {
        margin-left: 220px;
        padding-left: 20px;
    }

    .sdePnl {
        width: 220px;
        padding: 19px 10px 32px;
        font-size: 13px;
    }

    .sdePnl .sdpnl_nav>li>a {
        padding: 8px 12px;
        padding-right: 36px;
    }

    .job_bttmLftCol {
        width: 71.5%;
        padding-right: 10px;
    }

    h2,
    .hTwo {
        font-size: 16px;
    }

    .sttus_prgrssBox .progress {
        width: 60px;
    }

    .erp_dashBrd {
        padding: 8px 15px 39px;
    }

    .lrge_pnlInnr_box {
        padding: 22px 15px;
    }

    .jb_rcrtIconBox {
        width: 38px;
        height: 38px;
    }

    .jb_rcrtIconBox img {
        max-width: 15px;
        max-height: 15px;
    }

    .jb_rcrtTxtBox {
        width: calc(100% - 38px);
    }

    .job_rcrtIndBox {
        padding: 6px 6px 6px 8px;
    }

    .indvdl_jobIcon_lft figure img {
        max-width: 32px;
        max-height: 32px;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .stus_tble_hldr table tbody td {
        padding: 15px 10px;
    }

    .stus_tble_hldr table thead th {
        padding: 10px 10px;
    }

    .job_id {
        width: 16.15%;
    }

    .jb_dte {
        width: 21%;
    }

    .jb_tme_zne {
        width: 29.50%;
    }

    .jb_rcrt_row>* {
        width: calc(100% / 2);
    }

    .jbdtls_rght_innr {
        padding: 24px 20px 28px;
    }

    .jbdtls_rght_innr strong {
        font-size: 24px;
    }

    .indvdl_jobDtls_rgt {
        font-size: 14px;
    }

    .indvdl_jobIcon_lft {
        width: 92px;
    }

    .indvdl_jobDtls_rgt {
        width: calc(100% - 92px);
    }

    .smal-pnlInnr_box {
        padding: 18px 10px;
    }

    .prof-skilbx {
        padding: 10px;
    }

    .dshbrdLogo {
        width: 220px;
        padding-left: 20px;
    }

    .dshbrd_hdr_rght {
        width: calc(100% - 220px);
    }

    .prof-skillst-ul {
        margin: 0 -5px;
    }

    .prof-skillst-ul li {
        padding: 0 5px;
    }

    .dshbrd-profimgbx {
        width: 50px;
        height: 50px;
    }

    h1,
    .hOne {
        font-size: 18px;
    }

    .dshbrd-prof-namewrp {
        width: calc(100% - 50px);
        padding-left: 10px;
    }

    .sdePnl .sdpnl_nav>li.has_submenu>a::after {
        right: 14px;
        width: 11px;
        font-size: 18px;
    }

    .cht_no {
        right: 7px;
    }

    /*10august*/
    .job_rcrt-arw {
        left: 4px;
    }

    .openjobtab-nav .nav-item {
        padding: 0 23px;
    }

    .openjobtab-nav .nav-tabs {
        margin: 0 -23px;
    }

    .iner-openjobtab-nav .nav-tabs .nav-link {
        padding: 14px 2px;
        font-size: 12px;
    }

    /*10august*/
    /*11 august*/
    .seting-job_bttmLftCol {
        width: 100%;
        padding-right: 0;
    }

    /*11 august*/
    .job_rcrt-arw {
        left: 2px;
    }

    .sdpnl_sub_menu {
        padding: 0 19px 26px;
    }

    .curnt_job_recrtBox .job_rcrtIndBox {
        padding: 6px 6px;
    }
}

@media(max-width: 1399px) {

    /*10august*/
    .iner-openjobtab-nav .nav-tabs .nav-link {
        padding: 10px 2px;
        font-size: 10px;
    }

    .ach-jobmsgicon {
        margin-right: 6px;
    }

    .aplydate {
        margin-left: 8px;
    }

    .openjobtab-nav .nav-item {
        padding: 0 18px;
    }

    .openjobtab-nav .nav-tabs {
        margin: 0 -18px;
    }

    /*10august*/
    .usr_prfleImg {
        width: 50px;
        height: 50px;
    }

    .usr_prfleDataRght {
        width: calc(100% - 50px);
        padding-left: 10px;
    }

    .usr_prfleDataRght .sttus_prgrssBox .progress {
        width: 50px;
    }

    .usr_prfleDataTop {
        padding: 0 13px;
    }

    .prfle_actnBttn_outr {
        padding: 0 13px;
    }

    .my_prfle_row .job_bttmLftCol {
        padding-left: 10px;
    }

    .prfle_infoRow>* {
        width: 50%;
    }

    .prfle_mduleLstng>li {
        padding-right: 15px;
    }

    .prfle_frms .fixer-form-rw .col-lg-4.fixer-frmcol {
        width: 50%;
    }

    /*16th august*/
    .indvdl_jobIcon_lft {
        width: 80px;
    }

    .indvdl_jobDtls_rgt {
        width: calc(100% - 80px);
    }

    .jbdtls_rght_innr {
        padding: 24px 12px 28px;
    }

    .job_row {
        --bs-gutter-x: 20px;
    }

    /*16th august*/
}

@media(max-width:1199px) {

    /*11 august*/
    .erpBox {
        padding: 36px 70px 60px;
    }

    .fixer-inputbx input[type="text"],
    .fixer-inputbx input[type="tel"],
    .fixer-inputbx input[type="password"],
    .fixer-inputbx input[type="email"],
    .fixer-inputbx input[type="url"],
    .fixer-inputbx select,
    .fixer-inputbx textarea {
        padding: 29px 15px 12px 15px;
    }

    .fixer-inputbx select {
        padding-right: 26px;
    }

    .fixer-inputbx label {
        left: 15px;
    }

    .fixer-inputbx select.has_value,
    .fixer-inputbx select:focus {
        padding: 12px 30px 12px 15px;
    }

    .fixer-inputbx input:focus+label,
    .fixer-inputbx select:focus+label,
    .fixer-inputbx textarea:focus+label,
    .fixer-inputbx input.has_value+label,
    .fixer-inputbx select.has_value+label,
    .fixer-inputbx textarea.has_value+label {
        left: 14px;
    }

    .fixer-inputbx input:focus,
    .fixer-inputbx textarea:focus,
    .fixer-inputbx input.has_value,
    .fixer-inputbx textarea.has_value {
        padding: 12px 15px 12px 15px;
    }

    .fixer-inputbx input[type="password"] {
        padding-right: 40px;
    }

    .psswrd_toggle_shw {
        right: 15px;
    }

    .multi-slct-inpt .select2-selection {
        padding: 25px 15px 10px 15px;
    }

    .hr-ratevalue {
        right: 15px;
    }

    .fixer-inputbx.hour-inptbx input[type="text"] {
        padding-right: 45px;
    }

    /*11 august*/
    /*11august*/
    .dashboardpopup .modal-content {
        padding: 58px 50px 55px 50px;
    }

    .dashboardpopup .modal-header .btn-close {
        top: 20px;
        right: 20px;
    }

    /*11august*/
    /*14 august*/
    .ach-job-hghlgt-listbx ul li {
        width: 50%;
    }

    .ach-jobmsg-lnkbx {
        width: 100%;
        display: inline-block;
        margin-top: 7px;
    }

    /*14 august*/
    .job_bttmRow>*:not(:last-child) {
        margin-bottom: 30px;
    }

    .job_bttmLftCol,
    .job_bttmRgtCol {
        width: 100%;
        padding: 0;
    }

    .job_row {
        --bs-gutter-x: 20px;
    }

    .dshbrd_appldBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -5px;
        margin-right: -5px;
    }

    .dshbrd_appldBox>* {
        width: calc(100% / 2);
        padding-left: 5px;
        padding-right: 5px;
    }

    .job-detlsmian-contbx {
        min-height: 60vh;
    }

    .openjobtab-nav .nav-tabs {
        margin: 0 -12px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .openjobtab-nav .nav-item {
        padding: 0 12px;
        min-width: 100px;
    }

    .apliedjob-listbx.apliedjob-itembx ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -5px;
        margin-right: -5px;
    }

    .apliedjob-listbx.apliedjob-itembx ul>li {
        width: calc(100% / 2);
        padding-left: 5px;
        padding-right: 5px;
    }

    .my_prfle_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .my_prfle_row .job_bttmLftCol,
    .my_prfle_row .job_bttmRgtCol {
        padding: 0;
    }

    .prfle_fxdTop {
        position: static !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    /*16th august*/
    .indvdl_jobIcon_lft {
        width: 90px;
    }

    .indvdl_jobDtls_rgt {
        width: calc(100% - 90px);
    }

    .jbdtls_rght_innr {
        padding: 24px 20px 28px;
    }

    .iner-openjobtab-nav .nav-tabs .nav-link {
        font-size: 12px;
    }

    /*16th august*/
    /* CSS Modification 28.08.23*/
    .otp_inputRow.fixer-inputbx>input {
        padding: 0 20px;
    }

    /* CSS Modification 28.08.23*/
}

@media(max-width:1024px) {

    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(../images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sub-menu>li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .sub-menu>li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }

    .sub-menu>li.menu-item-has-children>a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav>li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:after,
    .navbar-nav>li.menu-item-has-children>a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav>li.current-menu-item>a:after,
    .navbar-nav>li>a:hover:after,
    .navbar-nav>li.menu-item-has-children:hover>a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/

}

@media (max-width: 991px) {

    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        top: auto;
        -webkit-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        border-radius: 5px;
    }

    .stick:before {
        content: '';
        top: -10px;
        left: 0;
    }

    .stick:after {
        content: '';
        top: 10px;
        left: 0;
    }

    .stick.open {
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
        background: transparent;
    }

    .stick.open:before {
        -webkit-transform: rotate(45deg) translate(42px, -28px);
        -ms-transform: rotate(45deg) translate(42px, -28px);
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }

    .stick.open:after {
        -webkit-transform: rotate(-45deg) translate(42px, 28px);
        -ms-transform: rotate(-45deg) translate(42px, 28px);
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px !important;
        -webkit-transform: rotate(0) !important;
        -ms-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }

    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg) !important;
        -ms-transform: rotate(180deg) !important;
        transform: rotate(180deg) !important;
    }

    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }

    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }

    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }

    .navbar-nav li.menu-item-has-children>a {
        padding-right: 30px !important;
    }

    .navbar-nav>li>a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }

    .sub-menu>li>a {
        padding-left: 40px;
    }

    .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }

    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 80px;
    }

    .navbar-nav>li>a:after {
        bottom: 0;
    }

    /* navbar end*/
    /* push nav */
    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        -webkit-transition: inherit !important;
        -o-transition: inherit !important;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
        z-index: 100;
    }

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        -o-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    }

    .navbar-collapse .navbar-nav {
        margin: 80px 0 0 !important;
        padding: 0 0 40px 0;
    }

    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }

    #navoverlay.open {
        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        -o-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }

    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden !important;
    }

    /* push nav end */
    /*11 august*/
    .erpBox {
        padding: 36px 45px 36px 45px;
    }

    .shape1 {
        max-width: 40%;
    }

    .shape2 {
        max-width: 40%;
    }

    .shape4 {
        max-width: 50%;
    }

    .brifbio-wrap {
        padding: 16px;
    }

    /*11 august*/
    /*14 august*/
    .set-updtebutn {
        font-size: 15px;
        padding: 6px 16px;
        right: 14px;
    }

    .setemail-infowrap {
        padding: 14px 210px 14px 75px;
    }

    .job-adminis-col {
        width: 50%;
    }

    .job-adminis-row {
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left;
    }

    .job-adminis-duteshdbox {
        margin-bottom: 7px;
    }

    .openjob-detlsbx {
        max-width: 110px;
    }

    .arch-jbdtls-hd {
        margin-bottom: 25px;
    }

    .job-adminis-hdbx {
        margin-bottom: 25px;
    }

    /*14 august*/
    .erp_dashBrd {
        padding: 0px 15px 30px;
    }

    .dshbrdLogo {
        display: none;
    }

    .dshbrd_pnlTop {
        display: block;
    }

    .sdePnl {
        position: fixed;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: transform 0.2s ease-in-out;
        -webkit-transition: -webkit-transform 0.2s ease-in-out;
        transition: -webkit-transform 0.2s ease-in-out;
        -o-transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
        z-index: 100;
        -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
        justify-content: stretch;
    }

    .open_panel .sdePnl {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .ham_menuBttn {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-width: 30px;
        width: 30px;
        height: 30px;
        position: relative;
        padding: 3px 5px;
        background: var(--theme-color);
        border-radius: 5px;
        overflow: hidden;
    }

    .dshbrdLogo {
        width: auto;
        padding-left: 10px;
    }

    .ham_menu_dashed,
    .ham_menu_dashed:after,
    .ham_menu_dashed:before {
        width: 20px;
        height: 2px;
        background: var(--bg-color);
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: auto;
        -webkit-transition: all 0.6s;
        -o-transition: all 0.6s;
        transition: all 0.6s;
        border-radius: 50px;
    }

    .ham_menu_dashed:before {
        content: '';
        top: -7px;
    }

    .ham_menu_dashed:after {
        content: '';
        top: 7px;
    }

    .ham_menuBttn.open .ham_menu_dashed {
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
        background: transparent;
    }

    .ham_menuBttn.open .ham_menu_dashed:before {
        -webkit-transform: rotate(45deg) translate(35px, -22px);
        -ms-transform: rotate(45deg) translate(35px, -22px);
        transform: rotate(45deg) translate(35px, -22px);
        left: 0;
        top: -9px;
    }

    .ham_menuBttn.open .ham_menu_dashed:after {
        -webkit-transform: rotate(-45deg) translate(35px, 22px);
        -ms-transform: rotate(-45deg) translate(35px, 22px);
        transform: rotate(-45deg) translate(35px, 22px);
        left: 0;
        top: 9px;
    }

    .logout_menu {
        margin-top: auto;
    }

    .sdpnl_nav {
        margin-bottom: 10px;
    }

    .rghtPnl {
        margin-left: 0;
        padding-left: 0;
    }

    .dshbrdLogo a {
        min-width: 156px;
        width: 156px;
    }

    .dshbrd_hdr_rght {
        width: auto;
        padding-left: 15px;
    }

    .job_bttmRow {
        --bs-gutter-y: 30px;
    }

    .jbdtls_rght_innr strong {
        font-size: 20px;
    }

    .invdl_chtBox {
        width: 90%;
    }

    .cht_RoomPnl {
        min-height: 95vh;
    }

    .cstm_drpSubMenu {
        position: fixed !important;
        left: 20px !important;
        top: 20px !important;
        right: 20px !important;
        bottom: 20px !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        width: auto;
        margin: 0 !important;
        inset: 0 !important;
    }
    /* 3.7.25 */
    .slct_lstng {
    height: auto;
}
    /* 3.7.25 */
}

@media (max-width: 767px) {

    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    /*11 august*/
    p {
        margin-bottom: 15px;
    }

    .erp_section {
        padding: 30px 20px;
    }

    .gogle-lnkdin-butnwrpr {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .ggle-lnkdnbutn {
        width: 100%;
        padding: 14px 15px;
        font-size: 15px;
    }

    .ggle-lnkdnbutn:first-child {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .setp-outingbx {
        margin: 25px auto 19px auto;
    }

    .erpBox {
        padding: 30px 20px 30px 20px;
        -webkit-box-shadow: 0px 4px 19px 0px #D2E6F9;
        box-shadow: 0px 4px 19px 0px #D2E6F9;
    }

    .ggleimg {
        width: 182px;
        height: 22px;
        margin-right: 10px;
    }

    .basic_bttn {
        padding: 17px 20px;
        font-size: 15px;
    }

    .frm_bttm {
        margin-top: 25px;
    }

    .erp_logoBox {
        margin-bottom: 40px;
    }

    .fixer-inputbx select {
        background-size: 12px 10px;
    }

    input[type="submit"] {
        height: 49px;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 15px;
    }

    .nxt_prvusBttnHldr .nxtBttn_hldr {
        width: calc(100% - 50px);
        padding-left: 10px;
    }

    .prevBttn {
        width: 50px;
        height: 50px;
    }

    .upld_indvdlBox {
        padding: 12px 12px;
    }

    .upld_docBox {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .upld_docBox img {
        max-width: 22px;
        max-height: 22px;
    }

    .upld_docTxtBox {
        width: calc(100% - 40px);
        padding-left: 10px;
    }

    .app_img {
        padding: 22px;
    }

    .shape1 {
        max-width: 50%;
    }

    .shape2 {
        max-width: 50%;
    }

    .shape4 {
        max-width: 20%;
    }

    .erp_StepTwo .frm_bttm {
        margin-top: 28px;
    }

    .splztn_srch_innr input[type=text],
    .splztn_srch_innr input[type=search] {
        height: 55px;
        padding: 15px 80px 15px 15px;
    }

    .splztn_srchBox label {
        left: 9px;
    }

    .srch_boxHldr input[type=submit] {
        height: 100%;
    }

    .cstm_drpDwn .subTtle {
        font-size: 14px;
    }

    .sucesiconbx {
        width: 60px;
        height: 60px;
    }

    .fixer-pghdbx {
        margin-bottom: 15px;
    }

    .psswrd_toggle_shw {
        width: 20px;
        height: 47px;
    }

    .become-fixerlnkbx {
        margin-top: 20px;
    }

    .multi-slct-inpt .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
        margin-right: 6px;
    }

    .facingeror-wrap {
        margin-top: 20px;
    }

    .setp-outingbx.personldetls-stepbx {
        margin: 0px auto 36px auto;
    }

    .facingeror-wrap {
        padding: 8px 10px;
    }

    .brifbio-wrap {
        margin-top: 25px;
    }

    /*11 august*/
    .dshbrd_hdr {
        padding: 15px 0;
    }

    .dshbrdLogo a {
        min-width: 136px;
        width: 136px;
    }

    /*11august*/
    .dashboardpopup .modal-content {
        padding: 40px 30px 30px 30px;
    }

    .dashboardpopup .erp_logoBox {
        margin-bottom: 30px;
    }

    .dashboardpopup .modal-header .btn-close {
        top: 15px;
        right: 16px;
    }

    .basic_bttn.ftr-popup-clsbutn {
        padding-left: 23px;
        padding-right: 23px;
    }

    /*11august*/
    /*14 august*/
    .setemail-infowrapr {
        margin-top: 22px;
    }

    .job-contentbox {
        padding: 22px 0;
    }

    .job-adminis-col {
        width: 100%;
    }

    .ach-job-hghlgt-listbx ul li {
        width: 100%;
    }

    .apply-submitbutn input[type="submit"] {
        padding: 17px 20px;
        font-size: 15px;
    }

    .apply-form-blck {
        padding-top: 14px;
    }

    .aplyplanel-outrwrpr {
        width: 480px;
    }

    .aply-closebutn {
        width: 35px;
        height: 35px;
    }

    .aplyplanel-outrwrpr {
        padding-left: 35px;
    }

    .aplydate {
        width: 100%;
        display: inline-block;
        margin: 9px 0;
    }

    .arch-jbdtls-hd {
        margin-bottom: 18px;
    }

    .job-adminis-hdbx {
        margin-bottom: 22px;
    }

    .ach-jobdtls-ftrpart {
        padding: 20px 0;
    }

    .ach-job-hghlgt-listbx ul li:last-child {
        margin-bottom: 0;
    }

    .openjob-detlsbx {
        max-width: 99px;
        top: 57%;
    }

    .jb-adminis-posttm {
        padding: 9px 15px;
    }

    /*14 august*/
    .jbdtls_rght_innr {
        padding: 20px 20px 20px;
    }

    .ntf_innrIconBox {
        width: 38px;
        height: 38px;
    }

    .ntf_innrTxtBox {
        width: calc(100% - 38px);
    }

    .ntfctn_drpBox .hTwo {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .stus_tble_hldr_innr table {
        min-width: 780px;
        table-layout: unset;
    }

    .stus_tble_hldr_innr {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .see_bttn_hldr {
        margin-top: 10px;
    }

    .job_sttus_top {
        padding-bottom: 20px;
    }

    .jb_sttusTb_hldr .nav-tabs .nav-link::after {
        bottom: -21px;
    }

    .logout_menu a span {
        width: 38px;
        height: 38px;
        margin-right: 10px;
    }

    .dshbrdPnlLogo a {
        width: 136px;
        min-width: 136px;
    }

    .skll_tbleHldr {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .skll_tbleHldr table {
        table-layout: unset;
        min-width: 600px;
    }

    .jb_sttusTb_hldr .nav-tabs .nav-link {
        font-size: 15px;
        padding: 8px 20px;
    }

    .jb_sttusTb_hldr.openjobtab-nav .nav-tabs .nav-link {
        padding: 2px 0px;
    }

    .jb_sttusTb_hldr.openjobtab-nav .nav-link::after {
        bottom: -16px;
    }

    .cht_txtArea textarea {
        padding-top: 12px;
        padding-bottom: 12px;
        height: 44px;
        min-height: 44px;
    }

    .prfle_dtlsLft {
        width: 100%;
    }

    .prfle_dtlsRght {
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .prfle_invdlDtlsBlckWrppr {
        position: static !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    /*16th august*/
    .jb-adminis-posttm {
        margin-left: 9px;
    }

    /*16th august*/
    /* CSS Modification 28.08.23*/
    .otp_inputRow.fixer-inputbx>input {
        margin-right: 84px;
        width: calc(calc(100% / 4) - calc(252px / 4));
    }

    /* CSS Modification 28.08.23*/
    /* CSS Modification 18.01.24 */
    .fixer-form-mainbx .ggleimg{
        width: unset;
    }
    /* CSS Modification 18.01.24 */
}

@media (max-width: 575px) {

    /*11 august*/
    .app_imgCol {
        width: 100%;
        margin-bottom: 18px;
    }

    .upld_optnBox_hldr {
        width: 100%;
    }

    .upld_indvdlBox:not(:last-child) {
        margin-bottom: 18px;
    }

    .cstm_drpSubMenu {
        width: 100%;
    }

    .tooltip {
        inset: 0px auto auto 0px !important;
        width: 92%;
    }

    .erpBox.erp_StepTwo {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tooltip-inner {
        -webkit-box-shadow: 0px 4px 10px #D2E6F9;
        box-shadow: 0px 4px 10px #D2E6F9;
        padding: 10px 10px;
    }

    /*11 august*/
    /*14 august*/
    .setemail-infowrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        padding: 14px 14px 14px 60px;
    }

    .setmail-icon {
        width: 40px;
        height: 40px;
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
        top: 13px;
    }

    .set-updtebutn {
        position: static;
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
        margin-top: 8px;
        min-width: 170px;
    }

    .aplyplanel-outrwrpr {
        width: 400px;
    }

    /*14 august*/
    .jb_rcrt_row>* {
        width: 100%;
    }

    .dshbrd_appldBox>* {
        width: 100%;
    }

    .job_sttus_top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .job_sttus_top h2:not(:last-child) {
        margin-bottom: 10px;
    }

    .dshbrd-prof-namewrp .sttus_prgrssBox {
        margin-top: 5px;
    }

    .apliedjob-listbx.apliedjob-itembx ul>li {
        width: 100%;
    }

    .job-detlsmian-contbx {
        min-height: 40vh;
    }

    .openjob-detlsbx {
        max-width: 70px;
    }

    .job-adminis-hdbx {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .job-adminishd {
        margin-bottom: 10px;
    }

    .job-adminis-posttmebx {
        text-align: center;
    }

    .apply-form-blck .fixer-inputbx textarea {
        min-height: 175px;
    }

    .cht_usrTxt {
        padding: 15px;
    }

    .invdl_chtBox {
        width: 100%;
    }

    /*16th august*/
    .job-adminishd {
        width: 100%;
    }

    .job-adminis-hd-lftbx {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .job-adminis-postbutn-wrap {
        min-width: unset;
        padding-left: 0;
    }

    .jb-adminis-posttm {
        margin-left: 0;
    }

    .job-adminis-postbutn-wrap {
        margin-top: 15px;
    }

    .job-adminis-posttmebx span.jobpostedtext {
        margin-right: 10px;
    }

    .popupcancelbutn {
        margin-left: 5px;
    }

    .popupbutnfoter {
        margin-top: 25px;
    }

    .dble-adminis-postbutn-wrp,
    .jb-posttime-span {
        min-width: unset;
    }

    /*16th august*/
    /* CSS Modification 28.08.23*/
    .otp_inputRow.fixer-inputbx>input {
        margin-right: 50px;
        width: calc(calc(100% / 4) - calc(150px / 4));
    }

    /* CSS Modification 28.08.23*/
}

@media (max-width: 479px) {

    /*11 august*/
    .erpBox {
        padding: 25px 15px 25px 15px;
    }

    .erpBox.erp_StepTwo {
        padding-left: 15px;
        padding-right: 15px;
    }

    /*11 august*/
    /*11august*/
    .dashboardpopup .modal-content {
        padding: 40px 20px 30px 20px;
    }

    /*11august*/
    /*14 august*/
    .aplyplanel-outrwrpr {
        width: 360px;
    }

    /*14 august*/
    .dshbrd_ttle h1,
    .dshbrd_ttle .hOne {
        font-size: 13px;
    }

    .dshbrdHdrIconLstng>li>a {
        width: 28px;
        height: 28px;
    }

    .dshbrdHdrIconLstng>li>a img {
        max-width: 18px;
        max-height: 18px;
    }

    .usr_nme {
        margin-right: 10px;
        font-size: 13px;
    }

    .ntfctn_drpBox {
        width: 100%;
        padding: 20px 8px 14px;
    }

    .ntfctn_innrBox {
        padding: 12px 6px 12px 6px
    }

    .ntf_innrIconBox {
        width: 28px;
        height: 28px;
    }

    .ntf_innrTxtBox {
        width: calc(100% - 28px);
    }

    .ntf_innrIconBox img {
        max-width: 16px;
        max-height: 16px;
    }

    .dshbrdPnlLogo a {
        width: 116px;
        min-width: 116px;
    }

    .job_sttus_top {
        padding-bottom: 10px;
    }

    .jb_sttusTb_hldr .nav-tabs .nav-link::after {
        bottom: -11px;
    }

    .openjobtab-nav .nav-item {
        width: calc(100% / 3);
        min-width: unset;
    }

    .cht_tmeStmp {
        font-size: 11px;
        margin-left: 5px;
        min-width: 40px;
    }

    .cht_usrImg {
        width: 24px;
        height: 24px;
    }

    .cht_usrInfo {
        width: calc(100% - 24px);
    }

    .cht_usrInfo {
        position: relative;
    }

    .invdl_chtBox:nth-child(even) .cht_userBox .cht_usrImg {
        width: 24px;
        height: 24px;
    }

    .invdl_chtBox:nth-child(even) .cht_userBox .cht_usrInfo .cht_tmeStmp {
        margin-right: 5px;
        margin-right: 5px;
    }

    .smly_btn {
        width: 20px;
        min-width: 20px;
        height: 20px;
    }

    .smly_btn>img {
        max-width: 20px;
        max-height: 20px;
    }

    .attchng_btn {
        width: 18px;
        height: 18px;
    }

    .attchng_btn>img {
        max-width: 18px;
        max-height: 18px;
    }

    .admn_chtBox input[type=submit] {
        font-size: 0;
        padding: 0;
        border-radius: 100%;
        min-width: unset;
        width: 24px;
        height: 24px;
        background-position: center center;
        background-size: 10px;
    }

    .chtBttn_lstng>li:not(:last-child) {
        margin-right: 8px;
    }

    .chtBttn_Box {
        width: 80px;
    }

    .cht_txtArea {
        width: calc(100% - 80px);
    }

    .cht_txtArea textarea {
        height: 34px;
    }

    .prfle_frms .fixer-form-rw .col-lg-4.fixer-frmcol {
        width: 100%;
    }

    .dshbrd_ttle h1 {
        max-width: 100px;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    /* CSS Modification 28.08.23*/
    .otp_inputRow.fixer-inputbx>input {
        margin-right: 20px;
        width: calc(calc(100% / 4) - calc(60px / 4));
    }

    /* CSS Modification 28.08.23*/
}

@media(max-width: 374px) {

    /*11 august*/
    .setp-outingbx {
        max-width: 253px;
    }

    .step_bar {
        width: 60px;
        left: calc(100% + 7px);
    }

    .step-numbrbx {
        width: 30px;
        height: 30px;
    }

    .dshbrd_ttle h1 {
        max-width: 82px;
    }

    /*11 august*/
    /*14 august*/
    .aplyplanel-outrwrpr {
        width: 290px;
    }

    /*14 august*/
    .ham_menuBttn {
        min-width: 24px;
        width: 24px;
        height: 24px;
    }

    .ham_menu_dashed,
    .ham_menu_dashed:after,
    .ham_menu_dashed:before {
        width: 14px;
    }

    .ham_menu_dashed:before {
        top: -6px;
    }

    .ham_menu_dashed:after {
        top: 6px;
    }

    .dshbrdHdrIconLstng>li>a {
        width: 24px;
        height: 24px;
    }

    .dshbrdHdrIconLstng>li>a img {
        max-width: 16px;
        max-height: 16px;
    }

    .dshbrd_hdr_rght {
        padding-left: 10px;
    }

    .ham_menuBttn.open .ham_menu_dashed:before {
        -webkit-transform: rotate(45deg) translate(37px, -24px);
        -ms-transform: rotate(45deg) translate(37px, -24px);
        transform: rotate(45deg) translate(37px, -24px);
    }

    .ham_menuBttn.open .ham_menu_dashed:after {
        -webkit-transform: rotate(-45deg) translate(37px, 24px);
        -ms-transform: rotate(-45deg) translate(37px, 24px);
        transform: rotate(-45deg) translate(37px, 24px);
        left: 0;
    }

    .usrAcntBttn {
        width: 30px;
        height: 30px;
    }

    .dshbrd_ttle h1,
    .dshbrd_ttle .hOne {
        font-size: 12px;
    }

    .indvdl_jobHldr {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .indvdl_jobHldr>* {
        width: 100%;
    }

    .indvdl_jobIcon_lft figure {
        min-height: 80px;
    }

    .indvdl_jobDtls_rgt {
        padding-left: 0;
        margin-top: 15px;
    }

    .jbdtls_rght_innr {
        text-align: center;
    }

    .job_rcrtIndBox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .jb_rcrtTxtBox {
        width: 100%;
        padding-left: 0;
        margin-top: 5px;
    }

    .prfle_infoRow>* {
        width: 100%;
    }

    /* CSS Modification 28.08.23*/
    .otp_inputRow.fixer-inputbx>input {
        margin-right: 10px;
        width: calc(calc(100% / 4) - calc(30px / 4));
    }

    /* CSS Modification 28.08.23*/
}