
:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}

body{
    overflow-x: hidden;
    font-size: 16px;
}

body, h1, h2, h3, h4, h5, h6, p, a, label, form, input, button, span, i, b, small, strong{
    font-family: Arial, Helvetica, sans-serif;
}

h1.spl-border{
    position: relative;
}
h1.spl-border span.border-short::after{
    content: '';
    border-bottom: 3px solid #212529;
    width: 120px;
    position: absolute;
    bottom: -9px;
    left: 0;
}

p{
    font-size: 16px;
}

table.dataTable tbody th, table.dataTable tbody td, table.dataTable thead th, table.dataTable thead td{
    font-size: 14px;
    padding: 8px 16px 8px 4px !important;
    vertical-align: middle;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.fw-500{
    font-weight: 500 !important;
}
.fw-400{
    font-weight: 400 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

a{
    color: #295aa7 !important;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

.btn.btn-primary,
.btn.btn-secondary 
a.btn.btn-primary{
    color: #fff !important;
    background: #295aa7;
    border: 1px solid #133d81;
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover,
a.btn.btn-primary:hover{
    background: #2787c8;
    text-decoration: none;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

i
, i.text-primary{
    color: #295aa7 !important;
}
.btn.btn-primary i,
.btn.btn-secondary i{
    color: #fff !important;
}

/*** Navbar ***/
.top-bar {
    height: 75px;
    padding: 0 4rem;
}

.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 2;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.nav-bar.sticky-top > nav{
    padding-right: 10px !important;
    padding-top: 5px;
    padding-bottom: 5px;

}

.navbar-brand img{
    width: 140px;
    margin-top: 0;
}

.nav-bar.sticky-top nav a.d-lg-none{
    display: inline-block !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 40px;
    padding: 30px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    /*color: #0078ff !important;*/
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 1;
        visibility: hidden;
        transition: .5s;
        margin-left: -97px !important;
        -webkit-box-shadow: 0px 0px 2px 0px rgba(166,166,166,1);
        -moz-box-shadow: 0px 0px 2px 0px rgba(166,166,166,1);
        box-shadow: 0px 0px 2px 0px rgba(166,166,166,1);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.appeal-link a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}
.appeal-link .dropdown-menu a{
    font-size: 16px;
    font-weight: normal;
}
.appeal-link a:hover
, .appeal-link a:active{
    text-decoration: none;
    color: #000;
    background-color: inherit;
    background: none;
}
.appeal-link a i{ 
    margin-right: 5px;
}

.owl-carousel .owl-item img{
    /*height: 520px;*/
    height: auto;
}

.owl-carousel a.animated{
    font-size: 18px;
}

/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.owl-nav i{
    color: #fff !important;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}



.btn-tertiary {
    color: #555;
    padding: 0;
    line-height: 40px;
    width: 300px;
    margin: auto;
    display: block;
    border: 2px solid #555;
  }
  .btn-tertiary:hover, .btn-tertiary:focus {
    color: #888888;
    border-color: #888888;
  }
  
  /* input file style */
  .input-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  .input-file + .js-labelFile {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    cursor: pointer;
  }
  .input-file + .js-labelFile .icon:before {
    content: "";
  }
  .input-file + .js-labelFile.has-file .icon:before {
    content: "";
    color: #5aac7b;
  }


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 8rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 1)), url(../img/carousel-1.png) center -97px no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

/*.welcome-block{
    background-color: #dadada !important;
}*/

.job-search-block{
    margin-top: 2rem;
    /*-webkit-box-shadow: 0px 0px 5px 0px rgba(166,166,166,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(166,166,166,1);
    box-shadow: 0px 0px 5px 0px rgba(166,166,166,1);*/

}
.job-search-block .search-bucket{
    position: relative;
    top: -45px;
}
.job-search-block form#srchfrm{
    position: relative;
}

.job-search-block form#srchfrm .input-group-append{
    position: absolute;
    right: 0;
    top: 0;
}

.no-job-msg{
    text-align: center;
    margin: 50px;
    font-size: 20px;
    color: #ff7800;
}
.no-job-msg svg{
    color: #2787c8;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/** Job Search Toggle**/
#sidebar {
  min-width: 280px;
  max-width: 280px;
  background: #f7f7f7;
  border: 1px solid #cfcfcf;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative; 
}
#sidebar button#sidebarCollapse{
    background: none;
    border: none;
    color: #000;
    position: relative;
    z-index: 9999;
}
#sidebar.active {
    margin-left: -295px; 
}
#sidebar.active #sidebarCollapse{
    margin-right: -50px
}

.bootstrap-select button.dropdown-toggle{
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    min-width: 252px;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/** Job Content **/
.job-content{
    padding-top: 0 !important;
    padding-right: 0 !important;
    position: relative;
    width: 100%;
}
.at-a-glance{
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    text-align: right;
}
.at-a-glance .sort-by{
    display: inline-block;
    margin-right: 15px;
}
.at-a-glance form{
    width: 350px;
    float: left;
}
.at-a-glance .nav-tabs button{
    border: none !important;
    box-shadow: none;
}

.job-summary{
    border-bottom:  1px solid #c1c1c1;
    padding-bottom: 1.5rem;;
    margin-bottom: 1.5rem;
}
.job-summary:last-child{
    border-bottom:  none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.find-type{
    color: #295aa7 !important;
    border: 1px solid #133d81;
    border-radius: 0.375rem;
    padding: 3px 8px;
    top: 0;
    right: 0;
    font-weight: 500;
    width: 150px;
    text-align: center;
}
.find-type.featured{
    position: absolute;
    right: 162px;
    top: 5px;
    color: #fff !important;
    background: #295aa7;
    border: 1px solid #133d81;
}
.share-block a:hover .find-type{
    background: #2787c8;
    color: #fff !important;
    text-decoration: none;
    border: 1px solid #133d81;
}
.share-block{
    position: absolute;
    right: 0;
    top: 5px;
}
.job-summary.with-details .find-type{
    position: inherit !important;
    top: inherit;
    right: inherit;
}
.job-summary.with-details .col-8{
    padding-right: 25px !important;
}
.selection-type{
    color: #000 !important;
    text-decoration: none !important;
    padding: 4px 11px;
    font-weight: 400;
    margin-right: 25px;
    margin-top: 5px;
    float: left;
    font-size: 15px;
}
a.selection-type:hover{
    color: #000 !important;
    text-decoration: none !important;
}
span.selection-type.job-location{
    position: absolute;
    left: 0;
    bottom: 68px;
    font-size: 12px;
    color: #9b9b9b !important;
    padding: 4px 11px;
    font-weight: 400;
}
span.selection-type.job-location i{
    color: #9b9b9b !important;
}

.job-summary h5 a{
    color: #000;
    text-decoration: none;
    font-weight: 400;
}
.job-summary h5 a:hover{
    text-decoration: underline;
}
.selection-type i{
    margin-right: 4px;
    color: #000;
}

.job-listing ul.pagination{
    margin-top: 15px;
}

.job-listing ul.pagination li.active span.page-link
, .job-listing ul.pagination li a:hover{
    background: #295aa7;
    color: #fff !important;
    text-decoration: none;
}
.job-listing ul.pagination li span.page-link{
    border: none;
    margin-top: 1px;
}


@media (min-width: 1400px){
    .job-content > nav{
        max-width: 1320px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
    }
}

/*** Footer ***/
.footer-module{
    background-color: #ebebeb !important;
}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid var(--primary);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    background-color: #295aa7;
}

.footer .btn.btn-social i{
    color: #295aa7 !important
}
.footer .btn.btn-social:hover i{
    color: #fff !important; 
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}


.register-step li{
    padding: 0;
    height: 35px;
}
.register-step li:first-child i{    
    border-radius: 5px 0 0 0;
}
.register-step li:last-child i{    
    border-radius: 0 0 0 5px;
}
.register-step i{
    width: 35px;
    height: 34px;
    text-align: center;
    position: relative;
    top: -4px;
}
.register-step i::before{
    position: relative;
    top: 8px;
}

.register-step span{
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: 4px;
    font-weight: 500;
}

.register-step li.completed i{
    background-color: #46ff90;
    border-right: 1px solid #32db32;
    color: #00910a;
}
.register-step li.completed{
    color: #00910a;
    background-color: #a9ffcc;
}

.register-step li.pending i{
    background-color: #ffd45a;
    border-right: 1px solid #ffa012;
    color: #914d00;
}
.register-step li.pending{
    color: #914d00;
    background-color: #ffe9ad
}

.register-step li.waiting i{
    background-color: #ff9f9f;
    border-right: 1px solid #ff7839;
    color: #e92222;
}
.register-step li.waiting{
    color: #e92222;
    background-color: #ffb9b9;
}


.file-upload
, .personal-details
, .login-with-signup
, .peferences{
    padding: 4rem 5rem;
    width: 80%;
    
}
.file-upload{
    border: 1px solid #8793c3;
}
.personal-details
, .peferences{
    padding: 2rem 3rem;
    border: 1px solid #8793c3;
}


.login-with-signup{
    padding: 0;
    background: url(../img/login.png) right 37px no-repeat;
    background-size: contain;
}

.login-with-signup .login{
    padding: 4rem 5rem 2.5rem;
}
.login-with-signup input{
    /*border-radius: 0 8px 0 8px;*/
    border-color: #0d6efd;
}

.login-with-signup .signup{
    background: rgb(13,110,253);
background: linear-gradient(0deg, rgba(13,110,253,1) 0%, rgba(0,74,182,1) 100%);
    padding: 4rem 5rem 2.5rem;
    color: #fff;
}

.personal-profile-wrapper{
    margin-top: 2rem;
}

.profile-face i{
    font-size: 145pt;
    color: #000000;
    padding: 15px;
}

.my-profile .col-profile{
    margin: 10px;
}
.my-profile .col-profile label{
    font-weight: 500;
    margin-bottom: 0;
}


.user-highlight{
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 15px;
}

.assist-box{
    background: #fff;
    padding: 10px;
}

.user-highlight .font-14{
    font-size: 14px;
}

.user-highlight p.user-glance{
    text-align: left;
    font-size: 16px;
    font-weight: 500;
}
.user-highlight p.user-glance span{
    width: 115px;
    text-align: left;
    font-weight: 600;
    display: inline-block;
    color: #2a489a;
}
.user-details{
    border: 1px solid #ddd;
    padding: 15px;
}

.user-details > h4{
    width: calc(100% - 180px);
}

.user-details .location p span{
    font-size: 16px;
    display: inline-block;
    margin-right: 16px;
}
.seperator{
    margin-right: 12px;
    font-weight: bold;
    color: #2a489a;
}

.user-tag p b{
    display: inline-block;
    width: 200px;
}


.top-apply{
    position: absolute;
    right: 15px;
    top: 15px;
}


.cv-link i{
    color: #e92222 !important;
    text-decoration: none !important;
}
.cv-link a{
    color: #fff !important;
    text-decoration: none;
    background: #295aa7;
    padding: 5px 10px;
    color: #fff;
}

.job-profile{
    position: relative;
    top: -15px;
}

.applied{
    background: #19ff00;
    display: inline-block;
    line-height: 22px;
    border: 1px solid #0eb902;
    color: #000;
    font-weight: 500;
    padding: 3px 8px;
    min-width: 70px;
    font-size: 13px;
    text-align: center;
}
.on-hold{
    background: #b3ae00;
    display: inline-block;
    line-height: 22px;
    border: 1px solid #d5a702;
    color: #000;
    font-weight: 500;
    padding: 3px 8px;
    min-width: 70px;
    font-size: 13px;
    text-align: center;
}
.not-applied{
    background: #b34400;
    display: inline-block;
    line-height: 22px;
    border: 1px solid #761b00;
    color: #fff;
    font-weight: 500;
    padding: 3px 8px;
    min-width: 70px;
    font-size: 13px;
    text-align: center;
}

p.status-report{
    position: absolute;
    right: 0;
    top: 3px;
}

#irdatatable_wrapper #irdatatable_filter{    
    position: relative;
    top: -5px;
}

thead.table-dark th{
    background: #002154;
}
table.dataTable.no-footer{
    border-bottom: none !important;
}

.country-input input.country-index{
    display: inline-block;
    width: 80px;
    border-radius: 0.375rem 0 0 0.375rem;
}
.country-input input.country-no{
    width: calc(100% - 85px);
    display: inline-block;
    position: relative;
    left: -5px;
    border-radius: 0 0.375rem 0.375rem 0;
}


.job-full-listing .label-div .individual{
    background: #f3f3f3;
    margin-right: 10px;    
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 0;
    -webkit-box-shadow: 0px 0px 3px 0px rgb(202 202 202);
    -moz-box-shadow: 0px 0px 3px 0px rgb(202 202 202);
    box-shadow: 0px 0px 3px 0px rgb(202 202 202);
}
.job-full-listing .label-div .col-lg-3.individual{
    width: calc(25% - 10px);
}

.job-full-listing .label-div .col-lg-6.individual{
    width: calc(50% - 10px);
}
.job-full-listing label{
    color: #000;
    font-weight: 500;
    border-radius: 2px 2px 0 0;
    /* display: block; */
    position: relative;
}

ul.desc_listing {
    list-style: none;
    padding: 0;
}



#msg{
    font-weight: 400;
    margin: 5px 0;
}

.cv-download {
    position: relative;
}
.cv-download  p{
    position: absolute;
    right: 0;
    top: -50px;
}
.cv-download p a{
    text-decoration: none;
    color: black;
}
.cv-download p a:hover{
    text-decoration: underline;
}
.cv-download i{
    color: #e92222 !important;
}


.forgot-password-module{
    float: left;
    width: 100%;
}
.forgot-password-module .accordion-item{
    border: none;
    position: relative;
}

.forgot-password-module .accordion-item h2.accordion-header{
    position: absolute;
    right: 0;
    z-index: 1;
}

.forgot-password-module .accordion-item button.accordion-button{
    padding: 0 10px 0 0;
    font-size: 15px;
    background: #ffc591;
    border: 1px solid #ff9f5b;
    border-radius: 0 !important;
    height: 30px;
}
.forgot-password-module .accordion-item button:after{
    display: none;
}
.forgot-password-module .accordion-item button.accordion-button span{
    background: #ff9f5b;
    padding: 6px;
    margin-right: 10px;
}

.forgot-password-module .accordion-collapse{
    border: 1px solid #cacaca;
    border-radius: 0 !important;
}

.forgot-password-module .lock-ico i{
    font-size: 100pt;
    color: #d58484;
    margin-top: 29px;
}

.privacy-content ul{
    list-style: none;
    margin: 0 0 20px 5px;
    padding: 0;
    float: left;
    width: 100%;
}
.privacy-content ul li{
    list-style: none;
    margin-bottom: 5px;
}
.privacy-content ul li i{
    color: black !important;
    font-size: 8px;
    position: relative;
    top: -3px;
}

.search-glance form#fltrform select.form-select{
    float: left;
    width: 100%;
}




@media (max-width: 1023px) {

    button.navbar-toggler{
        margin-right: 10px;
    }

    .navbar-collapse{
        padding: 0 10px;
    }

    .navbar-light .navbar-nav a{
        border-bottom: 1px solid #EEEEEE;
    }

    .job-content{
        padding-left: 0 !important;
    }
    .at-a-glance{
        position: inherit;
        float: left !important;
        width: 100%;
        top: inherit;
        right: inherit;
        text-align: left;
    }

    .login-with-signup{
        background: none;
    }

    .login-with-signup .login{
        padding: 25px;
    }

    .appeal-link > a:first-child{
        margin-left: 0 !important;
    }

    .appeal-link > label{
        display: block;
        margin: 10px 0 !important;
    }

    .job-search-block{
        padding: 20px !important;
    }

    .job-search-block .search-bucket{
        top: inherit;
    }

    .search-glance form{
        padding-bottom: 15px;
        border-bottom: 1px solid #cacaca;
    }    

    .job-listing > h2{
        text-align: center;
    }

    .search-glance form .row > div{
        width: 100%;
        margin-bottom:20px;
        flex: inherit;
    }

    .search-glance form .row.mt-4{
        margin-top: 0 !important;
    }

    .tab-content{
        margin: 20px;
        width: calc( 100% - 42px);
        padding: 10px !important;
    }

    .job-summary{
        right: 0;
    }

    .job-summary .col{
        padding-bottom: 40px;
    }

    .share-block{
        position: absolute;
        right: inherit;
        bottom: 5px;
        left: 10px;
        top: inherit;
    }

    .find-type.featured{
        right: 0;
        width: 80px;
    }

    .share-block .find-type{
        position: inherit !important;
    }

    span.selection-type.job-location{
        top: 0;
        bottom: inherit;
        width: 100%;
        float: left;
        margin: 8px 0 0 0;
    }

    .search-glance > .row{
        padding: 0 !important;
    }

    .job-summary h5{
        margin-top: 50px;
        margin-bottom: 10px !important;

    }
    
    .tab-content + nav{
        margin: 0 20px;
    }

    .job-full-listing .pe-0{
        padding-right: 1rem !important;
    }

    .cv-download p{
        position: inherit;
        top: inherit;
    }

    .cv-download p span{
        display: block;
    }
    

    .file-upload, .personal-details, .peferences{
        width: 100%;
        padding: 10px;
    }

    .file-upload small{
        display: block !important;
        line-height: 15px;
        margin-bottom: 10px;
    }
    .file-upload small input{
        margin: 0 !important;
    }

    .personal-details .row.mb-4{
        margin-bottom: 0 !important;
    }

    .personal-details .row.mb-4 .col-12{
        margin-bottom: 15px;
    }

    .personal-details .bootstrap-select button{
        min-width: 231px;
    }

    .profile-listing{
        margin-top: 15px;
    }

    .job-profile{
        margin-top: 50px;
        border-top: 1px solid #cacaca;
        padding-top: 15px !important;
    }

    .job-profile #irdatatable_wrapper{
        overflow: auto;
    }

    .dataTables_wrapper .dataTables_length
    , .dataTables_wrapper .dataTables_filter
    , .dataTables_wrapper .dataTables_info
    , .dataTables_wrapper .dataTables_paginate{
        text-align: left !important;
    }

    .welcome-block .col-lg-9{
        margin-top: 15px;
    }

    .user-details > h4{
        width: 100%;
    }

    .user-details a.top-apply
    , .user-details button#apply_button_top{
        position: inherit;
        top: inherit;
        right: inherit;
        margin-bottom: 15px;
    }

    .user-details .apply-area a{
        margin-bottom: 10px;
    }

    .user-tag p{
        margin-bottom: 15px !important;
        word-wrap: break-word;
    }

    .user-tag p b{
        width: 100%;
    }

    ul.pagination{
        display: inherit;
    }
    ul.pagination li{
        margin-bottom: 15px;
        display: inline-block;
    }
    ul.pagination li span.page-link{
        display: inline-block;
    }
}


