:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* background: #f6f9ff; */
    color: #444444;
    height: calc(100vh);
    width: 100%;
}

a {
    color: #b41309;
    text-decoration: none;
    cursor: pointer;
}

.text-primary {
    --bs-text-opacity: none;
    font-size: 0.7rem;
    font-weight: 600;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

#main {
    margin-top: 60px;
    padding: 20px 30px 0px 30px;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    #main {
        padding: 10px;
    }
}


/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/

.pagetitle {
    margin-bottom: 10px;
}

.pagetitle h1 {
    font-size: 20px;
    margin-bottom: 0;
    /* text-align: center; */
    font-weight: 700;
    color: #CA5752;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 35px;
    z-index: 99999;
    background: #b41309;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/


/* Dropdown menus */

.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
    color: #444444;
    text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f6f9ff;
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}

@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}


/* Light Backgrounds */

.bg-primary-light {
    background-color: #cfe2ff !important;
    border-color: #cfe2ff !important;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd !important;
    border-color: #d1e7dd !important;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd !important;
    border-color: #fff3cd !important;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}


/* Card */

.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.job-card,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 10px 0 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: #b41309;
    font-family: "Poppins", sans-serif;
}

.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}

.card-body {
    padding: 0 20px 20px 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}


/* Alerts */

.alert-heading {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}


/* Close Button */

.btn-close {
    background-size: 25%;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}


/* Accordion */

.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #CA5752;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #b41309;
}

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}


/* Breadcrumbs */

.breadcrumb {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #899bbd;
    font-weight: 600;
}

.breadcrumb a {
    color: #899bbd;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
    color: #899bbd;
}

.breadcrumb .active {
    color: #51678f;
    font-weight: 600;
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}


/* Bordered Tabs */


/* .active {
    background-color: #b41309;
    color: #ffff!important;
} */

.nav-link {
    color: #b41309;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: #b41309;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: #ffffff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
    color: #b41309;
}

.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: #b41309;
    border-bottom: 2px solid #b41309;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.logo {
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo {
        width: 155px;
    }
}

.logo img {
    max-height: 40px;
    margin-right: 6px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #CA5752;
    font-family: 'Montserrat', sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #ffffff;
    padding-left: 20px;
    /* Toggle Sidebar Button */
    /* Search Bar */
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 20px;
    cursor: pointer;
    color: #111719;
}

/* .search-bar {
    min-width: 360px;
    padding: 0 20px;
} */

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.search-form {
    width: 100%;
}

.search-form input {
    border: 0;
    font-size: 14px;
    color: #CA5752;
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

.search-form input:focus,
.search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}

.search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}

.search-form button i {
    color: #CA5752;
}

.coins {
    float: right;
    /* align-items: end; */
}

.coins img {
    width: 30px;
}

.conins-num {
    font-weight: 700 !important;
    color: #b41309;
    font-size: 1.5rem;
}

.widget-header .widget-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}

.rj-dropdown {
    position: absolute;
    inset: 0px 0px auto auto;
    margin: 0px;
    transform: translate3d(-16.1875px, 54px, 0px);
}

.rj-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.rj-card {
    border: none;
    padding: 5px 10px;
    box-shadow: 0px 0 30px rgb(1 41 112 / 10%);
    /* border-left: 4px solid #b41309; */
    margin-bottom: 10px;
}

/* .rj-body {
    padding: 7px 5px;
} */

.job-detls {
    /* margin: 0.5rem 0rem; */
    margin: 0.8rem 0rem;
    background-color: #f5f4f4;
    /* padding: 0.2rem 0.3rem; */
    border-radius: 0.2rem;
}

.job-detls .job-title {
    text-align: center;
}

.rj-border {
    border-left: 1px solid #e3e0df;
    height: 50px;
}

.job-detls .job-title h4 {
    text-transform: capitalize;
    cursor: pointer;
    /* margin-bottom: 0px; */
    font-weight: 600;
    font-size: 11px;
}

.job-detls .job-title span {
    font-size: 12px;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/

.header-nav ul {
    list-style: none;
}

.header-nav>ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 20px;
    color: #111719;
}

.header-nav .nav-profile {
    color: #111719;
}

.header-nav .nav-profile img {
    max-height: 36px;
}

.header-nav .nav-profile span {
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
}

.header-nav .badge-number {
    position: absolute;
    inset: 4px 6px auto auto;
    font-weight: normal;
    font-size: 11px;
    padding: 3px 6px;
}

.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .notifications .notification-item:hover {
    background-color: #f6f9ff;
}

.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .messages .message-item a {
    display: flex;
}

.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}

.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444444;
}

.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}

.header-nav .messages .message-item:hover {
    background-color: #f6f9ff;
}

.header-nav .profile {
    /* min-width: 240px; */
    padding-bottom: 0;
}

.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
    border-radius: 0.2rem;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    /* background-color: #f6f9ff; */
    background-color: #b41309;
    color: aliceblue;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 210px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #b41309;
}

@media (max-width: 1199px) {
    .sidebar {
        left: -210px;
    }
}

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {
    #main {
        margin-left: 210px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {

    .toggle-sidebar #main,
    .toggle-sidebar #footer {
        margin-left: 0;
    }

    .toggle-sidebar .sidebar {
        left: -210px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-item {
    margin-bottom: 10px;
}

.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    transition: 0.3;
    /* background: #ffffff; */
    padding: 6px 5px;
    border-radius: 4px;
}

.sidebar-nav .nav-link svg {
    width: 16px !important;
    margin-right: 8px;
}

.sidebar-nav .nav-link i {
    font-size: 14px;
    margin-right: 10px;
    /* color: #b41309; */
}

.sidebar-nav .nav-link.collapsed {
    color: #ffffff;
    /* background: #fff; */
}

.sidebar-nav .nav-link.collapsed i {
    color: #ffffff;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    color: #b41309;
    background: #ffffff;
}

.sidebar-nav .nav-link:hover i,
.sidebar-nav .nav-link.active i {
    color: #b41309;
}

.sidebar-nav .nav-link .bi-chevron-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
}

.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
}

.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
    color: #ffffff;
}

.sidebar-nav .nav-content a.active i {
    background-color: #ffffff;
}


/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/


/* Filter dropdown */

.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

.dashboard .filter .icon {
    color: #aab7cf;
    padding-right: 20px;
    padding-bottom: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
    color: #b41309;
}

.dashboard .filter .dropdown-header {
    padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #aab7cf;
    margin-bottom: 0;
    padding: 0;
}

.dashboard .filter .dropdown-item {
    padding: 8px 15px;
}


/* Info Cards */

.dashboard .info-card {
    padding-bottom: 10px;
}

.dashboard .info-card h6 {
    font-size: 28px;
    color: #CA5752;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #b41309;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}


/* Activity */

.dashboard .activity {
    font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
    color: #888;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
    content: "";
    position: absolute;
    right: -11px;
    width: 4px;
    top: 0;
    bottom: 0;
    background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
    margin-top: 3px;
    z-index: 1;
    font-size: 11px;
    line-height: 0;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid #fff;
    flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
    padding-left: 10px;
    padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
    top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
    padding-bottom: 0;
}


/* News & Updates */

.dashboard .news .post-item+.post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

.dashboard .news h4 a {
    color: #CA5752;
    transition: 0.3s;
}

.dashboard .news h4 a:hover {
    color: #b41309;
}

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}


/* Recent Sales */

.dashboard .recent-sales {
    font-size: 14px;
}

.dashboard .recent-sales .table thead {
    background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
    border: 1;
}

.dashboard .recent-sales .dataTable-top {
    padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
    padding: 10px 0 0 0;
}


/* Top Selling */

.dashboard .top-selling {
    font-size: 14px;
}

.dashboard .top-selling .table thead {
    background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
    border: 0;
}

.dashboard .top-selling .table tbody td {
    vertical-align: middle;
}

.dashboard .top-selling img {
    border-radius: 5px;
    max-width: 60px;
}


/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/

.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

.iconslist .icon {
    background-color: #fff;
    border-radius: 0.25rem;
    text-align: center;
    color: #CA5752;
    padding: 15px 0;
}

.iconslist i {
    margin: 0.25rem;
    font-size: 2.5rem;
}

.iconslist .label {
    font-family: var(--bs-font-monospace);
    display: inline-block;
    width: 100%;
    overflow: hidden;
    padding: 0.25rem;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
}


/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/

.profile .profile-card img {
    /* max-width: 120px; */
    width: 100px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
    color: #CA5752;
}

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: #CA5752;
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgb(17 23 25);
    font-size: 0.8rem;
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgb(17 23 25);
}

.profile .profile-edit img {
    max-width: 120px;
}


/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/

.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: #b41309;
}

.faq .basic p {
    color: #6980aa;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
    padding: 28px 30px;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #b41309;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #CA5752;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #b41309;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #b41309;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #5969f3;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/


/* .error-404 {
  padding: 30px;
} */

.error-404 h1 {
    font-size: 180px;
    font-weight: 700;
    color: #b41309;
    margin-bottom: 0;
    line-height: 150px;
}

.error-404 h2 {
    font-size: 24px;
    font-weight: 700;
    color: #CA5752;
    margin-bottom: 30px;
}

.error-404 .btn {
    background: #51678f;
    color: #fff;
    padding: 8px 30px;
}

.error-404 .btn:hover {
    background: #3e4f6f;
}

@media (min-width: 992px) {
    .error-404 img {
        max-width: 30%;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    font-size: 8px;
    transition: all 0.3s;
    /* border-top: 1px solid #cddfff; */
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99999;
}

.skin-secondary {
    background-color: #121b1fe8;
    color: #fff;
}

.footer .copyright {
    color: #ffffff;
    padding: 5px 11px;
    font-size: 7px;
}

.footer .copyright h6 {
    font-size: 0.6rem;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #CA5752;
}

.head-line {
    font-size: 13px;
    font-weight: 700;
    margin-left: 2rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb {
    background-color: #f0f4fc00;
}

label {
    color: #1e2026;
    font-weight: 600;
    font-size: 0.7rem;
}

.form-control {
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.form-control-sm {
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
}

.table-default thead th {
    color: #1e2026;
    background-color: #f6f6fe;
}

.table-primary thead th {
    color: #1e2026;
    background-color: #f6f6fe;
}

.table th,
.table td,
table th,
table td {
    padding: 0.3rem;
    font-size: 0.7rem;
    color: #1e2026;
    vertical-align: middle;
    /* border: 1; */
}

.input-group-text {
    padding: 0.1rem 0.75rem;
}

.col-form-label {
    font-size: 0.7rem !important;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 2px 0;
    white-space: nowrap;
    justify-content: flex-end;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #b41309;
    border-color: #b41309;
}

.ft-primary {
    color: #b41309;
}

.ft-secondary {
    color: #111719;
}

.ft-light {
    color: #fff;
}

.block {
    border-radius: 5px;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
    border-radius: 34.5rem rem;
}

.block-header {
    background-color: #b41309;
    border-radius: 0.2rem;
}

.p-2 {
    padding: 0.5rem !important;
}


/*---------signup-step-------------*/

.bg-color {
    background-color: #333;
}

.signup-step-container {
    padding: 20px 0px 0px 0px;
}

.wizard .nav-tabs {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
}

.wizard>div.wizard-inner {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: -7px;
    right: 0;
    top: 15px;
    z-index: 1;
}

.wizard .nav-tabs>li.active>a,
.wizard .nav-tabs>li.active>a:hover,
.wizard .nav-tabs>li.active>a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 27px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: inherit;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 400;
    border: 1px solid #ddd;
}

span.round-tab i {
    color: #555555;
}

.wizard li.active span.round-tab {
    background: #111719;
    color: #fff;
    border-color: #111719;
}

.wizard li.active span.round-tab i {
    color: #5bc0de;
}

.wizard .nav-tabs>li.active>a i {
    color: #111719;
}

.wizard .nav-tabs>li {
    width: 16%;
}

.wizard li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: red;
    transition: 0.1s ease-in-out;
}

.wizard .nav-tabs>li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}

.wizard .nav-tabs>li a i {
    position: absolute;
    top: -15px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #353434;
}

.wizard .nav-tabs>li a:hover {
    background: transparent;
}

.wizard .tab-pane {
    position: relative;
    /* padding-top: 20px; */
}

.wizard h3 {
    margin-top: 0;
}

.prev-step,
.next-step {
    font-size: 13px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
}

.next-step {
    background-color: #0db02b;
}

.skip-btn {
    background-color: #cec12d;
}

.step-head {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.term-check {
    font-size: 14px;
    font-weight: 400;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    margin: 0;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 2;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 38px;
    padding: .375rem .75rem;
    line-height: 2;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}

.footer-link {
    margin-top: 30px;
}

.list-content {
    margin-bottom: 10px;
}

.list-content a {
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    background-color: #f5f5f5;
    position: relative;
    color: #565656;
    font-weight: 400;
    border-radius: 4px;
}

.list-content a[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.list-content a i {
    text-align: right;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: 0.5s;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #fdfdfd;
}

.list-box {
    padding: 10px;
}

.signup-logo-header .logo_area {
    width: 200px;
}

.signup-logo-header .nav>li {
    padding: 0;
}

.signup-logo-header .header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-inline li {
    display: inline-block;
}

.pull-right {
    float: right;
}

@media (max-width: 767px) {
    .sign-content h3 {
        font-size: 40px;
    }

    .wizard .nav-tabs>li a i {
        display: none;
    }

    .signup-logo-header .navbar-toggle {
        margin: 0;
        margin-top: 8px;
    }

    .signup-logo-header .logo_area {
        margin-top: 0;
    }

    .signup-logo-header .header-flex {
        display: block;
    }
}


/* agency complete profile end  */

.btn.btn-base {
    background-color: #dfe3e8;
    color: #252525;
}

.display-4 {
    font-size: 16px;
    font-weight: 600;
    /* margin-bottom: 0.5rem; */
    line-height: 1.2;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
}

.mccormick-page-title {
    padding: 1rem 0;
    margin-bottom: 0;
}

.ft-dark {
    color: #353434;
}

.fw-600 {
    font-weight: 600;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.btn.btn-secondary {
    background-color: #2b2d42;
    color: #fff;
}

.row>* {
    flex-shrink: 1;
}


/* input button new design */


/* input[type=text] {
  width: 100%;
  padding: 12px 20px;
  border-radius: inherit;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #ced4da;
}
input[type=number] {
  width: 100%;
  padding: 12px 20px;
  border-radius: inherit;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #ced4da;
}
input[type=email] {
  width: 100%;
  padding: 12px 20px;
  border-radius: inherit;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #ced4da;
}
input[type=date] {
  width: 100%;
  padding: 12px 20px;
  border-radius: inherit;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #ced4da;
}
input[type=textarea] {
  width: 100%;
  padding: 12px 20px;
  border-radius: inherit;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #ced4da;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #ced4da;
  outline: invert;
  box-shadow: none;
}

.input-group-text {
  border: none;
} */

.btn {
    font-size: 0.8rem;
}

div.dataTables_wrapper div.dataTables_info {
    font-size: 0.8rem;
    padding-top: 0.85em;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    font-size: 0.7rem;
}

.bg-sky {
    height: 100vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: url(../img/bg-admin.jpg);
}




.r-btn.r-btn-primary {
    background-color: #b41309;
    color: #fff;
}

.btn-primary {
    color: #fff;
    background-color: #b41309;
    border-color: #b41309;
}

.btn-primary:hover {
    color: #fff;
    background-color: #b41309;
    border-color: #b41309;
}

.r-btn.btn-block {
    text-align: center;
}

.r-btn {
    display: inline-block;
    color: #b41309;
    padding: 0 1rem;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    white-space: nowrap;
    border-radius: 3px;
    /* font-weight: 600; */
    outline: none;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    line-height: 35px;
    border: 1px solid transparent;
}

.ft-uppercase {
    text-transform: uppercase;
}

.ft-clock {
    font-size: 0.8rem;
    font-weight: 700;
}

.ft-sm {
    font-size: 1rem;
}

.ft-md {
    font-size: 1.3rem;
}

.ft-lg {
    font-size: 2rem;
}


/* For charts */

#chartdiv {
    width: 100%;
    height: 300px;
}

#chartdiv1 {
    width: 100%;
    height: 300px;
}

#chartdiv2 {
    width: 100%;
    height: 400px;
}

#chartdiv3 {
    width: 100%;
    height: 400px;
}

.icon.icon-sm {
    width: 25px;
    height: 25px;
    font-size: 10px;
    line-height: 25px;
}

.icon {
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}

.icon.icon-primary {
    background-color: #b41309;
    color: #fff;
}

.icon.icon-secondary {
    background-color: #198655;
    color: #fff;
}

.content,
.block .footer {
    padding: 1rem;
}

.form-heading {
    font-size: 1.2rem;
    /* margin-bottom: 0.5rem; */
    font-weight: 400;
    color: #353434;
    font-family: montserrat;
}

.bg-project {
    background-color: #b41309;
    color: #f8f9fb;
    padding: 0.3rem;
    font-size: 0.8rem;
    border-radius: 0.2rem;
    margin-top: 0.4rem;
}

.table-bordered-white {
    border: 1px solid #fdfdfe;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #fdfdfd;
}

.table-active-blue {
    background-color: #D0E0E3 !important;
}

.table-active-fill {
    background-color: #45818E !important;
    color: #fdfdfe !important;
}

.table thead th {
    vertical-align: bottom;
    background-color: #b41309;
    color: #ffff;
    font-weight: 500;
    /* border-bottom: 2px solid #dee2e6; */
}

.timer {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    border: 1px solid #a9a5a5;
    border-radius: 0.2rem;
    justify-content: space-evenly;
    margin: 10px;
    box-shadow: 0px 0 30px rgb(1 41 112 / 10%);
    /* box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 6%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 8%), 0 0.25rem 0.53125rem rgb(4 9 20 / 15%), 0 0.125rem 0.1875rem rgb(4 9 20 / 13%); */
}

.day-timer {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    color: #777;
}

.time-minute,
.time-second {
    display: flex !important;
    flex-direction: column;
}

.AM_PM {
    background-color: #444444;
    padding: 0.5rem;
    border-radius: 0.2rem;
    color: #ffff;
}

.main-heading {
    font-size: 20px;
    font-weight: 700;
    color: #CA5752;
}

.job-card {
    margin-bottom: 13px;
    padding: 5px 10px;
    position: relative;
    /* cursor: pointer; */
    /* background-color: #fff; */
    border-left: 4px solid #b41309;
    background: #ecebeb87;
    box-shadow: 0 0 2px #aaa;
    /* box-shadow: 0px 2px 20px rgb(1 41 112 / 10%); */
}

.job-card.bg-white {
    background: #fff;
    box-shadow: none !important;
}

.job-card .job-title {
    position: relative;
}

.job-card .job-title h4 {
    text-transform: capitalize;
    cursor: pointer;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.915rem;
    color: #444444;
    /* width: 80%; */
}

.job-card.bg-white>h4 {
    cursor: none !important;
}

.job-actions {
    text-align: right;
}

.job-actions .job-icon {

    font-weight: 600;
    font-size: 15px;
    margin-left: 6px;
}

.job-actions .job-icon.reject {
    color: #b41309;
}

.job-actions .job-icon.approve {
    color: #b41309;
}

.job-actions .job-icon.comment {
    color: #666;
}

.job-actions .job-icon.attachment {
    color: #666;
}

.job-card .job-title .close-job-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    font-weight: 600;
    font-size: 15px;
    color: #b41309;
}

.job-card .job-details ul {
    margin: 0;
    padding: 0;
    display: block !important;
}

.job-card .job-details ul li {
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    color: #666;
    border-right: 1px solid #c1c1c1;
    padding: 0 10px;
}

.job-card .job-details ul li:first-child {
    padding-left: 0;
}

.job-card .job-details ul li:last-child {
    border-right: none;
}

.job-card .job-details ul li svg {
    width: 15px !important;
}

.job-card .job-details ul li span {
    vertical-align: middle;
    padding-left: 2px;
}

.job-content {
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    margin-top: -10px;
    margin-bottom: 10px;
    padding: 15px 0;
}

.job-content h4 {
    font-size: 18px;
}

.job-content h6 {
    font-size: 14px;
    font-weight: 600;
}

.job-content p {
    font-size: 13px;
}

.job-action span {
    cursor: pointer;
    margin-left: 15px;
}

.pagination {
    margin: 15px auto;
    display: flex;
    list-style: none;
    outline: none;
}

.pagination>.active>a {
    background-color: #b41309;
    border-color: #b41309;
    color: #fff;
}

.pagination>li>a {
    border: 1px solid #b41309;
    padding: 3px 10px 5px;
    outline: none;
    cursor: pointer;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    background-color: #b41309;
    border-color: #b41309;
    outline: none;
}

.pagination>li>a,
.pagination>li>span {
    color: #b41309
}

.pagination>li:first-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-radius: unset
}



/* loader css start */
.wrapper {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
}

.loader {
    display: flex;
    position: relative;
    width: 250px;
    height: 88px;
}

.wave {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    perspective: 100px;
}

.wave>div {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 100%;
}

.wave>div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #aaaaaa;
    border-radius: 50%;
}

.top-wave>div::before {
    background-color: #ca0018;
}

.top-wave>div {
    animation: move 3s ease-in-out infinite reverse;

}

.top-wave>div::before {
    animation: grow 3s linear infinite reverse;
}

.bottom-wave>div {
    animation: move 3s ease-in-out infinite;
}

.bottom-wave>div::before {
    animation: grow 3s linear infinite;
}

.wave>div:nth-child(10) {
    animation-delay: 0s;
}

.wave>div:nth-child(9) {
    animation-delay: -0.1s;
}

.wave>div:nth-child(8) {
    animation-delay: -0.2s;
}

.wave>div:nth-child(7) {
    animation-delay: -0.3s;
}

.wave>div:nth-child(6) {
    animation-delay: -0.4s;
}

.wave>div:nth-child(5) {
    animation-delay: -0.5s;
}

.wave>div:nth-child(4) {
    animation-delay: -0.6s;
}

.wave>div:nth-child(3) {
    animation-delay: -0.7s;
}

.wave>div:nth-child(2) {
    animation-delay: -0.8s;
}

.wave>div:nth-child(1) {
    animation-delay: -0.9s;
}


.bottom-wave>div:nth-child(10) {
    animation-delay: 0.75s;
}

.bottom-wave>div:nth-child(9) {
    animation-delay: 0.65s;
}

.bottom-wave>div:nth-child(8) {
    animation-delay: 0.55s;
}

.bottom-wave>div:nth-child(7) {
    animation-delay: 0.45s;
}

.bottom-wave>div:nth-child(6) {
    animation-delay: 0.35s;
}

.bottom-wave>div:nth-child(5) {
    animation-delay: 0.25s;
}

.bottom-wave>div:nth-child(4) {
    animation-delay: 0.15s;
}

.bottom-wave>div:nth-child(3) {
    animation-delay: 0.05s;
}

.bottom-wave>div:nth-child(2) {
    animation-delay: -0.05s;
}

.bottom-wave>div:nth-child(1) {
    animation-delay: -0.15s;
}

.username_cls {
    font-size: 11px;
    color: black;
    /* padding-right: 10px; */
    float: right;
    padding-top: 5px;
}

@keyframes move {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(88px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(88px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes grow {

    0%,
    50%,
    75%,
    100% {
        transform: scaleX(0.7) scaleY(0.7);
    }

    10%,
    60% {
        transform: scaleX(1) scaleY(1);
    }

    35%,
    85% {
        transform: scaleX(0.4) scaleY(0.4);
    }
}

/* loader css end */

/* -------------------
autocomplete
---------------------- */
/* input {
    border: 1px solid #999;
    padding: 8px;
    width: 300px;
  } */
.no-autocomplete {
    color: #999;
    padding: 8px;
}

.autocomplete {
    border: 1px solid #999;
    border-top-width: 0;
    list-style: none;
    margin-top: 0;
    max-height: 143px;
    overflow-y: auto;
    padding-left: 0;
    /* width: calc(300px + 1rem); */
    width: 100%;
}

.autocomplete li {
    padding: 8px;
}

.autocomplete>.active,
.autocomplete li:hover {
    background-color: darkgray;
    cursor: pointer;
    font-weight: 700;
}

.autocomplete li:not(:last-of-type) {
    border-bottom: 1px solid #999;
}

.error-message {
    font-size: 13px;
}

.alert {
    position: relative;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.ft-xs {
    font-size: 0.7rem;
}

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.formobile {
    position: absolute;
    inset: 0px 0px auto auto;
    margin: 0px;
    transform: translate3d(-15.2708px, 54px, 0px);
}

@media (max-width: 767px) {
    .form-control {
        padding: 0.275rem;
        font-size: 0.5rem;
    }

    .rj-flex {
        flex-direction: row;
        /* align-items: normal; */
        justify-content: space-evenly;
    }

    .main-heading {
        font-size: 10px;
        margin-top: 7px;
    }

    .search-bar {
        width: auto;
    }

    .rj-border {
        border-left: 1px solid #e3e0df;
        height: 30px;
    }

    .icon-center {
        text-align: center !important;
    }

    .bg-gray .rj-body {
        text-align: center;
        display: none;
    }

    .job-detls .job-title h4 {
        font-size: 8px;
    }

    .job-detls .job-title {
        text-align: center;
    }

    .job-detls .job-title span {
        font-size: 9px;
        font-weight: 500;
    }

    .custom-flex-style .flex-row {
        flex-direction: column !important;
    }

    .job-card .job-title h4 {
        margin-bottom: 0px;
        font-size: 10px;
    }

    .job-actions {
        text-align: end;
    }

    .job-actions .job-icon {
        font-weight: 600;
    }

    .username_cls {
        font-size: 8px;
        display: none;
        color: #b41309;
        font-weight: 600;
        padding-top: 5px;
    }

    .job-card .job-details ul li {
        display: inline-block;
        font-size: 8px;
        font-weight: 600;
        color: #666;
        border-right: 1px solid #c1c1c1;
        padding: 0 2px;
    }

    .verify-none {
        display: none;
    }

    .job-card .job-details ul li svg {
        width: 12px !important;
        height: 12px;
    }

    .job-card .job-details ul li span {
        padding-left: 1px;
    }

    .job-card {
        padding: 5px;
        text-align: left;
    }

    .alert {
        font-size: 10px;
    }

    .rj-card {
        border-radius: 5px;
        padding: 5px;
        margin-bottom: 5px;
    }

    .job-detls {
        margin: 0.5rem 0rem;
    }
}



/* Toggle button start here */



.tgl {
    display: none;
}

.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl+.tgl-btn {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tgl::-moz-selection,
.tgl:after::-moz-selection,
.tgl:before::-moz-selection,
.tgl *::-moz-selection,
.tgl *:after::-moz-selection,
.tgl *:before::-moz-selection,
.tgl+.tgl-btn::-moz-selection {
    background: none;
}

.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl *::selection,
.tgl *:after::selection,
.tgl *:before::selection,
.tgl+.tgl-btn::selection {
    background: none;
}

.tgl+.tgl-btn {
    outline: 0;
    display: block;
    width: 3em;
    height: 1.4em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tgl+.tgl-btn:after,
.tgl+.tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}

.tgl+.tgl-btn:after {
    left: 0;
}

.tgl+.tgl-btn:before {
    display: none;
}

.tgl:checked+.tgl-btn:after {
    left: 50%;
}

.tgl-light+.tgl-btn {
    background: #f0f0f0;
    border-radius: 2em;
    padding: 2px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tgl-light+.tgl-btn:after {
    border-radius: 50%;
    background: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.tgl-light:checked+.tgl-btn {
    background: #2aa24c;
}


.css-16awh2u-MuiAutocomplete-root .MuiFilledInput-root {
    padding-top: 0px !important;
    padding-left: 0px!important;
    background-color: transparent!important;
}

.css-sl80c4-MuiInputBase-root-MuiFilledInput-root {

    font-size: 0.9rem !important;
    background-color: rgb(0 0 0 / 0%) !important;

}

.css-16awh2u-MuiAutocomplete-root .MuiFilledInput-root .MuiFilledInput-input {
    padding: 9px 4px!important;
    text-align: center;
}

/* star marked */
.star {
    visibility:hidden;
    font-size:30px;
    cursor:pointer;
    color:#ffc107;
    margin-right: 10px;
}
.star:before {
    content: "\2606";
    position: absolute;
    visibility:visible;
    top: -8px;
    /* left: 25px; */
}
.star:checked:before {
   content: "\2605";
   position: absolute;
}
/* star marked end*/

.swal2-container.swal2-center.swal2-backdrop-show{
    z-index: 9999;
  }

  /* toggle */
  .switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 20px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #b41309;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  /* paginations  */
.para-spacing{
    margin: 5px;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.page-item.active .page-link {
    background-color: #b41309;
    border-color: #b41309;
    color: #fff!important;
}
.pagination {
    margin-bottom: 0px;
}
.ss-select-input{
    max-width: 80px;
}
.page-link:hover {
    color: #fff!important;
    background-color: #b41309;
    border-color: #b41309;
}
.pagination-font {
    font-size: 13px;
    color: #000;
}
  /* paginations end */


.refresh-border{
    padding: 4px 4px 7px 4px;
}
.trash-icon{
    padding: 7px 9px;
    cursor: pointer;
}
/* category filter */
.css-1hb7zxy-IndicatorsContainer {
    height: 28px;
}
.css-1nmdiq5-menu {
    font-size: 10px;
    font-weight: 600;
}
.css-jtaw72-group {
    font-weight: 600;
}
.css-1xc3v61-indicatorContainer {
    padding: 0px;
}
.css-1fdsijx-ValueContainer {
    padding: 0px;
}
.css-15lsz6c-indicatorContainer svg{
    width: 15px!important;
    height: 15px!important;
}
.css-3w2yfm-ValueContainer {
    font-size: 10px;
}
.css-1xc3v61-indicatorContainer svg{
    width: 15px!important;
    height: 15px!important;
}
.css-1nmdiq5-menu {
    z-index: 5!important;
}
.css-1wy0on6{
    align-self: baseline!important;
}
.css-1dyz3mf{
    font-size: 9px!important;
}
.css-3w2yfm-ValueContainer{
    overflow: hidden;
    text-wrap: nowrap;
    padding: 0px 8px!important;
    margin: -3px 2px -2px 2px;
    /* height: 20px; */
}
.css-qbdosj-Input{
    font-size: 1px;
    margin: 0px!important;
    padding-bottom: 0px!important;
    padding-top: 0px!important;
}
.css-gjbq6i-MuiInputBase-root-MuiFilledInput-root{
    font-size: 12px!important;
}
.css-16awh2u-MuiAutocomplete-root .MuiFilledInput-root .MuiFilledInput-input{
    text-align: start!important;
}
.css-wb57ya-MuiFormControl-root-MuiTextField-root{
    /* border: 1px solid #cccccc!important;
    border-radius: 4px!important;
    height: 37px!important;
    top: 4px!important; */
}
.css-gjbq6i-MuiInputBase-root-MuiFilledInput-root:hover:not(.Mui-disabled):before {
    /* border-bottom: 1px solid #cccccc!important; */
    border-bottom: none!important;
}
.css-11v1qwh-MuiInputBase-root-MuiFilledInput-root:before{
    border-bottom: none!important;
}
.css-gjbq6i-MuiInputBase-root-MuiFilledInput-root:before {
    /* border-bottom: 1px solid #cccccc!important; */
    border-bottom: none!important;
}
.css-11v1qwh-MuiInputBase-root-MuiFilledInput-root:after{
    border-bottom: none!important;
}
.css-gjbq6i-MuiInputBase-root-MuiFilledInput-root:after {
    /* border-bottom: 1px solid #cccccc!important; */
    /* border-bottom: 2px solid #b41309!important; */
    border-bottom: none!important;
}
.css-16awh2u-MuiAutocomplete-root{
    border-bottom: 1px solid #b41309!important;
}
.css-ptiqhd-MuiSvgIcon-root{
    font-size: 15px!important;
}
.css-16awh2u-MuiAutocomplete-root .MuiFilledInput-root .MuiAutocomplete-endAdornment{
    right: 6px!important;
}
.css-1q60rmi-MuiAutocomplete-endAdornment{
    top: calc(50% - 12px)!important;
}
/* category filter end */
/* sandeep css */
@media (min-width:320px) and (max-width: 375px){
    
    .header{
        padding-left: 0px;
    }
    .toggle-sidebar-btn{
        padding-left: 0px!important;
    }
    .main-heading{
        font-size: 12px;
    }
    /* .ss-main-heading{
        margin-left: 8px;
    } */
    .ss-font{
        font-size: 0.6rem!important;
    }
    /* .ss-col-1{
        margin-left: 8px!important;
    }
    .ss-col-2{
        margin-left: 26px!important;
    } */
    /* .ss-form-control{
        margin-bottom: 10px!important;
        margin-right: 0px!important;
    } */
    .ss-form-control .form-control{
        font-size: 0.6rem!important;
    }
    .ss-text-center{
        text-align: center!important;
    }
    .ss-d-flex .page-link{
        padding: 6px;
    }
    .ss-d-flex .pagination{
        justify-content: center!important;
    }
    .ss-d-flex .d-flex{
        display: initial!important;
    }
    .ss-align .form-control{
        height: 20px!important;
        font-size: 0.5rem!important;
    }
    .pagination-font{
        font-size: 12px!important;
    }
    .ss-normal-btn{
        display: none!important;
    }
    .ss-border-radius{
        border-top-left-radius: 0.25rem!important;
        border-bottom-left-radius: 0.25rem!important;
    }
    .css-wb57ya-MuiFormControl-root-MuiTextField-root{
        /* height: 33px!important;
        top: 0px!important; */
    }
    .ss-font-color span{
        color: #000!important;
        font-size: 11px!important;
    }
}
@media  (min-width: 376px) and (max-width: 425px){
    .header{
        padding-left: 0px;
    }
    .toggle-sidebar-btn{
        padding-left: 0px!important;
    }
    /* .ss-col-1{
        margin-left: 11px!important;
    }
    .ss-col-2{
        margin-left: 12px!important;
    } */
    .main-heading{
        font-size: 12px;
    }
    /* .ss-main-heading{
        margin-left: 8px;
    } */
    .ss-form-control .form-control{
        font-size: 0.6rem!important;
    }
    .ss-font{
        font-size: 0.6rem!important;
    }
    .ss-text-center{
        text-align: center!important;
    }
    .ss-d-flex .page-link{
        padding: 10px;
    }
    .ss-d-flex .pagination{
        justify-content: center!important;
    }
    .ss-d-flex .d-flex{
        display: initial!important;
    }
    .ss-align .form-control{
        height: 20px!important;
        font-size: 0.5rem!important;
    }
    .pagination-font{
        font-size: 12px!important;
    }
    .ss-normal-btn{
        display: none!important;
    }
    .ss-border-radius{
        border-top-left-radius: 0.25rem!important;
        border-bottom-left-radius: 0.25rem!important;
    }
    .css-wb57ya-MuiFormControl-root-MuiTextField-root{
        /* height: 33px!important;
        top: 0px!important; */
    }
    .ss-font-color span{
        color: #000!important;
        font-size: 11px!important;
    }
}
@media (min-width: 425px) and (max-width: 575px){
    .header{
        padding-left: 0px;
    }
    .toggle-sidebar-btn{
        padding-left: 0px!important;
    }
    .main-heading{
        font-size: 12px;
    }
    /* .ss-main-heading{
        margin-left: 8px;
    } */
    /* .ss-col-1{
        margin-left: 9px!important;
    }
    .ss-col-2{
        margin-left: 22px!important;
    } */
    /* .ss-form-control{
        margin-bottom: 10px!important;
        margin-right: 0px!important;
    } */
    .ss-form-control .form-control{
        font-size: 0.6rem!important;
    }
    .ss-font{
        font-size: 0.6rem!important;
    }
    .ss-text-center{
        text-align: center!important;
    }
    .ss-d-flex .page-link{
        font-size: 13px;
    }
    .ss-d-flex .pagination{
        justify-content: center!important;
    }
    .ss-d-flex .d-flex{
        display: initial!important;
    }
    .ss-align .form-control{
        height: 23px!important;
        font-size: 0.6rem!important;
    }
    .pagination-font{
        font-size: 12px!important;
    }
    .ss-normal-btn{
        display: none!important;
    }
    .ss-border-radius{
        border-top-left-radius: 0.25rem!important;
        border-bottom-left-radius: 0.25rem!important;
    }
    .css-wb57ya-MuiFormControl-root-MuiTextField-root{
        /* height: 33px!important;
        top: 0px!important; */
    }
    .ss-font-color span{
        color: #000!important;
        font-size: 11px!important;
    }
}
@media  (min-width: 576px) and (max-width: 767px){
    .header{
        padding-left: 0px;
    }
    .toggle-sidebar-btn{
        padding-left: 0px!important;
    }
    .main-heading{
        font-size: 16px;
    }
    /* .ss-main-heading{
        margin-left: 8px;
    } */
    /* .ss-col-1{
        margin-left: 7px!important;
    }
    .ss-col-2{
        margin-left: 28px!important;
    } */
    /* .ss-form-control{
        margin-bottom: 10px!important;
        margin-right: 0px!important;
    } */
    .ss-form-control .form-control{
        font-size: 0.6rem!important;
    }
    .ss-text-center{
        text-align: center!important;
    }
    .ss-font{
        font-size: 0.7rem!important;
    }
    .ss-d-flex .pagination{
        justify-content: center!important;
    }
    .ss-d-flex .d-flex{
        display: initial!important;
    }
    .ss-align .form-control{
        height: 23px!important;
        font-size: 0.6rem!important;
    }
    .ss-normal-btn{
        display: none!important;
    }
    .ss-border-radius{
        border-top-left-radius: 0.25rem!important;
        border-bottom-left-radius: 0.25rem!important;
    }
    .css-wb57ya-MuiFormControl-root-MuiTextField-root{
        /* height: 33px!important;
        top: 0px!important; */
    }
    .ss-font-color span{
        color: #000!important;
        font-size: 11px!important;
    }
}
@media  (min-width: 768px) and (max-width: 990px){
    .main-heading{
        font-size: 18px;
    }
    /* .ss-main-heading{
        margin-left: 8px;
    } */
    .ss-form-control .form-control{
        font-size: 0.6rem!important;
    }
    /* .ss-col-1{
        margin-left: 0px!important;
    }
    .ss-col-2{
        margin-left: 10px!important;
    } */
    .ss-font{
        font-size: 0.7rem!important;
    }
    .ss-d-flex .page-link{
        padding: 7px;
    }
    .ss-normal-btn{
        display: none!important;
    }
    .ss-border-radius{
        border-top-left-radius: 0.25rem!important;
        border-bottom-left-radius: 0.25rem!important;
    }
    .css-wb57ya-MuiFormControl-root-MuiTextField-root{
        /* height: 33px!important;
        top: 0px!important; */
    }
    .ss-font-color span{
        color: #000!important;
        font-size: 11px!important;
    }
}
@media (min-width: 991px){
    .ss-icon-btn{
        display: none!important;
    }
    .ss-border-radius{
        border-top-right-radius: 0.25rem!important;
        border-bottom-right-radius: 0.25rem!important;
    }
    .ss-font-color span{
        color: #000!important;
    }
}
.ss-align .form-control{
    height: 23px!important;
    padding: 2px 8px;
    margin-left: 5px;
}
.css-iqd1hh-MuiButtonBase-root-MuiChip-root{
    height: 25px!important;
}
.css-iqd1hh-MuiButtonBase-root-MuiChip-root .MuiChip-deleteIcon{
    font-size: 15px!important;
}
.css-11v1qwh-MuiInputBase-root-MuiFilledInput-root{
    /* height: 32px!important; */
    font-size: 12px!important;
}
.css-16awh2u-MuiAutocomplete-root .MuiAutocomplete-inputRoot{
    /* flex-wrap: inherit!important; */
    /* overflow: hidden!important; */
}

.css-i4bv87-MuiSvgIcon-root{
    width: 20px!important;
    height: 20px!important;
}
.task:before,
.task:after {
    position: absolute;
    top: 0;
    line-height: 50px;
    text-align: center;
    color: #fff!important;
}

.task:before {
    content: "";
    left: -50px;
    background-color: #198754;
}

.task:after {
    content: "";
    right: -50px;
    /* background-color: red; */
}



.task.completing {
    background-color: #198754;
}
.task.completed {
    opacity: 0.5;
    background-color: #198754;
}

.task.completed:before {
    content: "";
    background-color: #198754;
}

.task.deleting {
    background-color: #b41309;
}
.ttt{
    background-color: pink;
}

.job-card-container {
    position: relative;
  }
  
  .loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: none;
    z-index: 1000;
  }
  
  .loader {
    font-size: 16px;
    font-weight: bold;
    color: #b41309;
    display: flex;
    align-items: center;
  }

  /* shweta */

    .job-viewed-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .icon-button-active-viewed {
        background-color: rgb(25 135 84) !important;
        color: white !important;
        padding: 3px !important;
        border-radius: 50%;
    }

    .icon-button-active-boosted {
        /* background-color: rgb(33, 100, 187) !important; */
        color: rgb(33, 100, 187) !important;
        padding: 0px !important;
        /* color: white !important; */
        /* padding: 3px !important;
        border-radius: 50%; */
    }

    .icon-button-default {
        /* background-color: grey !important; */
        color: #80808042 !important;
        padding: 0px !important;
        /* color: white !important; */
        /* border-radius: 50%; */
        /* padding: 3px !important; */
    }
    .icon-button-active {
        color: #56b557 !important;
        padding: 0px !important;
    }

    .icon-button-active-wireframe {
        color: rgb(219, 216, 219) !important;
        padding: 0px !important;
    }

    .icon-button-active-inputNeeded {
        color: rgb(232, 179, 20) !important;
        padding: 0px !important;
    }

    .cursor-pointer{
        cursor: pointer;
    }

    .modal .btn-close {
        background-color: #f2f2f0;
        border-radius: 0.5rem;
        opacity: 1;
        box-shadow: 0 0.125rem 0.25rem rgba(161, 172, 184, 0.4);
        transition: all 0.23s ease 0.1s;
        padding: 0.4rem !important;
        /* transform: translate(23px, -25px); */
        transform: translate(-6px, -12px);
        border-radius: 50%;
    } 
    
    .modal .btn-close:hover,
    .modal .btn-close:focus
    /* .modal .btn-close:active */
     {
        opacity: 1;
        outline: none;
        transform: translate(-11px, -7px);
    }

    .modal .modal-header .btn-close {
        margin-top: 0.75rem;
    }
    
    .loader-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .spinner {
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-left-color: #b41309; 
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .submenu {
        list-style: none;
        padding-left: 20px; 
    }
    
    .submenu li {
        margin-top: 5px;
    }

    .submenu li .nav-link{
        font-size: 0.75rem !important;
    }
    
  /* shweta end */

  .job-points{
    width: 30px;
    height: 19px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background-color: #b41309;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
  }

.ss-switch {
    position: relative;
    display: inline-block;
    width: 50px; /* reduced from 70px */
    height: 26px; /* reduced from 34px */
}

.ss-switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #a19f9f;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

/* When checked, move the knob */
input:checked + .slider:before {
    transform: translateX(24px); /* 50 - 20 (knob width) - margin */
}

/* Change background color when checked */
input:checked + .slider {
    background-color: #2ab934;
}

/* Label text styling */
.slider .on,
.slider .off {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 600;
    color: white;
    user-select: none;
    pointer-events: none;
}

/* Position "On" and "Off" within the slider */
.slider .on {
    left: 6px;
}

.slider .off {
    right: 6px;
}

/* Toggle visibility */
input:checked + .slider .on {
    display: block;
}

input:checked + .slider .off {
    display: none;
}

input:not(:checked) + .slider .on {
    display: none;
}

input:not(:checked) + .slider .off {
    display: block;
}
