/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
.menu .app-brand.demo {
    height: 64px;
    margin-top: 12px;
}

.app-brand-logo.demo svg {
    width: 22px;
    height: 38px;
}

.app-brand-text.demo {
    letter-spacing: -0.5px;
    text-transform: capitalize;
    font-size: 23px;
}

.avatar img {
    width: 35px !important;
    object-fit: cover;
    height: 35px !important;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 76px !important;
}

/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 62px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
    z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks>* {
    display: block !important;
}

.demo-inline-spacing>* {
    margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing>* {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.switches-container {
    width: 10rem;
    position: relative;
    height: 30px;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--bs-primary);
    line-height: 26px;
    border-radius: 20px;
    padding: 2px;
    transition: 0.3s ease-in-out;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container input {
    visibility: hidden;
    position: absolute;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container div {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 20px;
}

.switches-container label {
    width: 100%;
    cursor: pointer;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.switches-container input:checked label {}

.switches-container input:checked~label {
    transition: 0.3s ease-in-out;
    background: #fff;
    color: var(--bs-primary);
}

input.disabled,
textarea.disabled {
    cursor: not-allowed;
    pointer-events: none;
    background: #eceef1;
}

.demo-vertical-spacing-lg>* {
    margin-top: 1.875rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.rtl-only {
    display: none !important;
    text-align: left !important;
    direction: ltr !important;
}

[dir='rtl'] .rtl-only {
    display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
    #dropdown-variation-demo .btn-group .text-truncate {
        width: 231px;
        position: relative;
    }

    #dropdown-variation-demo .btn-group .text-truncate::after {
        position: absolute;
        top: 45%;
        right: 0.65rem;
    }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1rem;
}

.layout-demo-placeholder img {
    width: 900px;
}

.layout-demo-info {
    text-align: center;
    margin-top: 1rem;
}

.select-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

/* Custom */
.btn-primary.disabled
{
background: #696cff !important;
opacity: 0.75 !important;
}
.btn .bx-trash {
    color: #fb1414;
}

.edit-action .bx-edit {
    color: #696cfe;
}

.view_registation .title {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.view_registation .data {
    font-size: 18px;
    color: #000;
}

/* .print-only{
  @media print {
  .print-only {
    display: none;
  }
}
}  */
/* user_style_page chandan*/
.user_style_page .py-3.mb-4 {
    font-size: 24px;
    font-family: 'Raleway';
    font-weight: 600;
}

.user_style_page .card-header {
    padding: 6px;
    /* text-align: center; */
}

.user_style_page .card-header.fixed_top {
    top: 0;
    position: sticky;
    background: #fff;
    z-index: 9;

    border-bottom: 1px solid var(--bs-primary);
}

.user_style_page .card-header h4 {
    margin: 0;
    /* text-align: center; */
    width: fit-content;
    padding: 11px 17px 9px 17px;
    border-radius: 5px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    position: relative;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.user_style_page .card-header h4::after {
    /* content: '';
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--bs-primary);
    position: absolute; */
}

.user_style_page .card-header h4 i:first-child {
    margin-left: 5px;
    font-size: 21px;
    border: 1px solid var(--bs-primary);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    color: var(--bs-primary);
    margin-right: 10px;
}

.user_style_page .card-header .banner {
    max-width: 100%;
    width: calc(100% - 40px);
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
}

.user_style_page .content-header h6 {
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
}

.user_style_page .bs-stepper-header {
    justify-content: center;
}

.user_style_page .bs-stepper-header .step-trigger {
    display: grid;
}

.user_style_page .bs-stepper-header .step-trigger .bs-stepper-circle {
    margin-left: auto;
    margin-right: auto;
}

.user_style_page .bs-stepper-header .step-trigger p {
    margin-bottom: 0;
    font-size: 12.5px;
    opacity: 1;
    width: 130px;
    text-align: center;
}

.user_style_page .bs-stepper-header .big .step-trigger p {
    line-height: 14px;
}

.user_style_page .bs-stepper .bs-stepper-header .step .step-trigger {
    padding: 0 0.3rem;
}

.user_style_page .bs-stepper-header .active .step-trigger p {
    color: var(--bs-primary);

}

.user_style_page .info {
    color: #999;
    font-size: 12px;
    margin-bottom: 0;
    padding-left: 10px
}

.user_style_page .border-top {
    border-color: var(--bs-primary) !important;
    border-width: 2px !important;
}

.user_style_page .border_bottom {
    border-bottom: 1px solid;
    border-color: var(--bs-primary) !important;
    border-width: 2px !important;
}

.user_style_page .sub_title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    /* text-align: center; */
    font-family: 'Raleway', sans-serif;
}

.user_style_page .sub_title::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #707070;
}

.user_style_page .content input[type=text] {
    font-size: 17px;
}

.user_style_page .content .form-label {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 600;

}

.user_style_page .content .fv-plugins-icon-container {
    margin-bottom: 10px;
}

.user_style_page .content .check_box {
    word-break: break-word;
    display: flex;
    font-size: 16px;
}

.user_style_page .content .check_box input {
    width: 19px;
    max-width: 19px;
    min-width: 19px;
}

.user_style_page .step.active button .bs-stepper-circle {
    background: var(--bs-primary) !important;
    background-color: var(--bs-primary) !important;
}

.user_style_page .step.active button .bs-stepper-circle i {
    color: #fff;
}

.user_style_page .form-control.hide-arrow::-webkit-inner-spin-button {
    display: none;
}

.user_style_page .form-control.hide-arrow::-webkit-outer-spin-button {
    display: none;
}

.user_style_page .divider_title {
    position: relative;
}

.user_style_page .divider_title::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 0;
}

.user_style_page .divider_title h4 {
    text-transform: uppercase;
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin-top: 13px;
    margin-bottom: 13px;
    background: #fff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 9px;
}

.user_style_page .divider_title h4.color {
    color: var(--bs-primary);
}

.user_style_page.new_design .border_all {
    border: 2px solid var(--bs-primary);
    border-radius: 4px;
}

.user_style_page.new_design .border_all .header_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user_style_page.new_design .border_all .header_title h4 {
    position: relative;
    color: #000;
    margin: 0;
    font-family: 'Public-sans';
    margin-top: 10px;
    margin-left: 15px;
}

.user_style_page.new_design .border_all .header_title h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 2px;
    background: #000;
}

.user_style_page.new_design .border_all .header_title i {
    display: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 15px;
    margin-top: 10px;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(105, 108, 255, 0.4);
    ;
}

.user_style_page.new_design .border_all.finish .header_title i {
    display: block;
}

.user_style_page.new_design .border_all.finish .addrow_btn {
    display: none;
}

.user_style_page.new_design .border_all.finish .disabled {
    pointer-events: none;
    cursor: not-allowed;
}

/* .dropdown.bootstrap-select:focus, */
html[class] .bootstrap-select.form-select button:focus,
html[class] .bootstrap-select.form-select button:hover,
.light-style .bootstrap-select .dropdown-toggle:focus,
.light-style .bootstrap-select .dropdown-toggle:hover,
.bootstrap-select .dropdown-toggle:hover,
.bootstrap-select .dropdown-toggle:focus {
    border: 1px solid var(--bs-primary) !important
}

.dropdown.bootstrap-select .dropdown-toggle {
    box-shadow: none !important;
    max-width: 100%;
    display: inline-grid;
    min-width: 100%;
}

.dropdown.bootstrap-select .dropdown-menu li a {
    word-wrap: break-word !important;
}

.dropdown.bootstrap-select+.dropdown-menu.show {
    min-width: calc(100% - 2px) !important;
    width: auto !important;
    max-width: none !important;
}

/* .dropdown.bootstrap-select .dropdown-toggle *
{
    max-width: 100%;
    overflow: hidden;
} */
.dropdown.bootstrap-select .dropdown-menu,
.dropdown.bootstrap-select .dropdown-menu.show {
    max-width: 100% !important;

}

.dropdown.bootstrap-select .dropdown-menu.show ul.inner.show {
    /* overflow-x: auto !important; */
}

.dropdown.bootstrap-select .dropdown-menu.show ul.inner.show li {
    width: 100% !important;
}

.bootstrap-select .dropdown-menu li a span.text {
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
    text-wrap: wrap;
    width: 100%;
    /* word-wrap: break-word; */
    overflow: hidden;
}

.dropdown.bootstrap-select .dropdown-toggle:hover {
    border: 1px solid #c7cdd4 !important;
}

.bootstrap-select .filter-option-inner-inner {
    color: #000 !important;
}

.user_style_page .showOnverify {
    display: none;
}

@media screen and (max-width:991px) {
    .user_style_page .bs-stepper .bs-stepper-header {
        flex-direction: row;
        align-items: center;
    }

    .user_style_page .bs-stepper:not(.vertical) .bs-stepper-header .line i {
        display: block;
    }
}

@media screen and (max-width:920px) {
    .user_style_page .bs-stepper-header .step-trigger p {
        display: none;
    }
}

@media screen and (max-width:710px) {
    .user_style_page .bs-stepper .bs-stepper-header {
        flex-direction: row;
        align-items: center;
    }

    .user_style_page .bs-stepper-header .step-trigger p {
        display: none;
    }

    .user_style_page .bs-stepper-header .bs-stepper .line {
        flex: 1;
    }

    .user_style_page .bs-stepper:not(.vertical) .bs-stepper-header .line i {
        display: block;
    }
}

@media screen and (max-width:420px) {
    .user_style_page .bs-stepper .bs-stepper-header .step .bs-stepper-circle {
        border: none;
        width: 27px;
        font-size: 15px;
        height: 27px;
        background: transparent;
        color: #696cff;
        box-shadow: none;
    }

    .user_style_page .bs-stepper:not(.vertical) .bs-stepper-header .line i {
        display: block;
        font-size: 22px;
    }
}

/* user_style_page end */
/* user_style_page_new */
.user_style_page_new .showOnverify {
    display: none;
}

.user_style_page_new .hide_t_menu button {}

.user_style_page_new .card-header {
    padding: 6px;
    /* text-align: center; */
}

.user_style_page_new .card-header.fixed_top {
    top: 0;
    position: sticky;
    background: #fff;
    z-index: 9;

    border-bottom: 1px solid var(--bs-primary);
}

.user_style_page_new .card-header h4 {
    margin: 0;
    /* text-align: center; */
    width: fit-content;
    padding: 11px 17px 9px 17px;
    border-radius: 5px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    position: relative;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.user_style_page_new .card-header h4 i:first-child {
    margin-left: 5px;
    font-size: 21px;
    border: 1px solid var(--bs-primary);
    width: 35px;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    color: var(--bs-primary);
    margin-right: 10px;
}

.user_style_page_new .content .form-label {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 600;

}

.user_style_page_new .bs-stepper {
    position: relative;
}

.user_style_page_new .bs-stepper-header .step .step-trigger {
    justify-content: start;
    width: 100%;
}

/* .user_style_page_new .bs-stepper-header
{
    top: 0;
    position: sticky;
} */
.user_style_page_new .form-control.hide-arrow::-webkit-inner-spin-button {
    display: none;
}

.user_style_page_new .form-control.hide-arrow::-webkit-outer-spin-button {
    display: none;
}

.user_style_page_new .sub_title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    /* text-align: center; */
    font-family: 'Raleway', sans-serif;
}

.user_style_page_new .sub_title::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #707070;
}

.user_style_page_new .how_to_title {
    /* display: flex;
    align-items: center; */
}

.user_style_page_new .how_to_title h5 {
    font-weight: 600;
    font-family: 'Public Sans';
    color: var(--bs-blue);
    margin: 0;
    margin-right: 3px;

}

.user_style_page_new #how_to .pdf_dow_btn {
    background: var(--bs-primary);
    color: #fff;
    border-radius: 30px;
    padding-left: 7px;
    padding-top: 2px;
    padding-right: 3px;
    height: 33px;
    line-height: 30px;
    display: block;
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.user_style_page_new #how_to .pdf_dow_btn i {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 15px;
    border-radius: 50%;
    background: #fff;
    margin-left: 3px;
    color: var(--bs-pinterest);
}

.user_style_page_new iframe {
    border: 2px solid var(--bs-primary) !important
}

@media screen and (max-width:425px) {
    .user_style_page_new .bs-stepper.vertical .bs-stepper-content {
        /* padding-left: 10px;
        padding-right: 10px; */
        padding-bottom: 10px;
    }
}

.user_style_page_new .divider_title {
    position: relative;
}

.user_style_page_new .divider_title::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 0;
}

.user_style_page_new .divider_title h4 {
    text-transform: uppercase;
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin-top: 13px;
    margin-bottom: 13px;
    background: #fff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 9px;
}

.user_style_page_new .image_upload {
    text-align: center;
}

.user_style_page_new .image_upload .profile_image_box {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    position: relative;
}

.user_style_page_new .image_upload .profile_image_box img {
    height: 100px;
    width: 100px;
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
}

.user_style_page_new .image_upload .profile_image_box i {
    position: absolute;
    right: 12px;
    bottom: 15px;
    background: #fff;
    width: 25px;
    border: 1px solid #ccc;
    height: 25px;
    border-radius: 50%;
    line-height: 25px;
    font-size: 13px;
    text-align: center;
    color: #000;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.user_style_page_new .image_upload input {
    position: absolute;
    visibility: hidden;
}

.user_style_page_new .form-label.text-danger.custom_margin {
    margin-top: 23px;
}

.user_style_page_new .dropdown.bootstrap-select .dropdown-toggle {
    box-shadow: none !important;
}

.user_style_page_new .bootstrap-select .filter-option-inner-inner {
    color: #000;
}

.user_style_page_new .border.container {
    border-radius: 5px;
    border-color: var(--bs-primary) !important;
    border-width: 2px !important;
}

.user_style_page_new .border.container .border-bottom {
    border-color: #71dd37 !important;
}

.user_style_page_new .info_message {
    font-size: 12px;
    color: var(--bs-primary);
    font-family: 'Public Sans';
    margin-top: 7px;
}

.user_style_page_new .location_wise .border-bold {
    border: 2px solid var(--bs-primary);
    border-radius: 5px;
    padding-bottom: 8px;
    padding-top: 15px;
    position: relative;
    border-top-left-radius: 0;
    margin-bottom: 34px;
}

.user_style_page_new .location_wise .border-bold .item_num {
    position: absolute;
    border-radius: 3px;
    height: 27px;
    width: fit-content;

    background: var(--bs-primary);
    color: #fff;
    line-height: 27px;
    font-weight: 600;
    font-size: 14px;
    padding: 0;
    padding-left: 4px;
    padding-right: 4px;
    text-align: center;
    top: -27px;
    left: -2px;
    font-family: 'Public Sans';
    border-bottom-left-radius: 0;
}

.user_style_page_new .location_wise .border-bold .col-md-6:last-child {
    padding-top: 7px;
}

.user_style_page_new .candidate_registrtion .hindi_text {
    font-size: 15px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 40px;
}

@media screen and (max-width:767px) {
    .user_style_page_new .candidate_registrtion .bs-stepper-header {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        max-width: 460px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger {
        display: grid;
        padding: 0 !important;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger .bs-stepper-circle {
        margin: auto;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger .step {
        margin-left: 15px;
        margin-right: 15px;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger .step:first-child {
        margin-left: 0;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger .step:last-child {
        margin-right: 0;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger .bs-stepper-label {
        margin: 0 !important;
        margin-top: 8px !important;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger .bs-stepper-label .break {
        display: block;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step:not(:first-child) {
        margin-bottom: 15px;
    }

    .user_style_page_new .candidate_registrtion #otp_btn {
        margin-top: 10px;
    }
}

@media screen and (max-width:450px) {
    .user_style_page_new .candidate_registrtion .bs-stepper-header .step-trigger .bs-stepper-label {
        display: none;
    }

    .user_style_page_new .candidate_registrtion .bs-stepper-header .step {
        margin-bottom: 0 !important;
    }
}



/*  */
/* authentication-cover new chandan*/
/* .authentication-cover */
.authentication-cover.height_fixed {
    height: 100vh;
    overflow: hidden;
}

.authentication-cover.height_fixed .d-flex.justify-content-center a.btn-icon {
    display: none !important;
}

.authentication-cover.height_fixed .cover_img {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
}

.authentication-cover.height_fixed .z-index {
    z-index: 1;
}

.authentication-cover.height_fixed .on_height {
    height: auto;
    width: 100%;
    height: auto;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    max-height: 100vh;
    object-fit: contain;
}

.authentication-cover.height_fixed .border-left {
    border-left: 1px solid #ccc;
}

.authentication-cover.height_fixed .authentication-bg {
    position: relative;
    background: transparent !important;
}

.authentication-cover.height_fixed .right_fixed {
    height: 100vh;
}
.long
{
    display: block;
}
.short
{
    display: none;
}
.show_on .short
{
    display: block;
}
.show_on .long
{
    display: none;
}
.authentication-cover.height_fixed .right_fixed.show_on {
    display: none;
}
.authentication-cover.height_fixed .bg_yellow {
    background: #f26842;
    border: none;
    border-radius: 20px;
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
    padding-top: 12px;
    padding-bottom: 10px;
    text-transform: uppercase;

}

.authentication-cover.height_fixed .bg_yellow:hover {
    background: #b13917 !important;
}

.authentication-cover.height_fixed .bg_blue {
    background: #362d90;
    border: none;
    border-radius: 20px;
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
    padding-top: 12px;
    padding-bottom: 10px;
    text-transform: uppercase;


}

.authentication-cover.height_fixed .bg_blue:hover {
    background: #241e67 !important;
}

.authentication-cover.height_fixed .fixed_design {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;

}

.authentication-cover.height_fixed .fixed_design.login_field {
    bottom: 30px;
}

.authentication-cover.height_fixed.with_title .fixed_design.login_field {
    bottom: 20px;
}

.authentication-cover.height_fixed .fixed_design.login_field .form-label {
    margin-bottom: 5px;
}

.authentication-cover.height_fixed .fixed_design.login_field input.form-control {
    border-color: #000;
    background: #fff !important;
}

/* .fixed_design .login_field .form-control:focus,.fixed_design .login_field .form-select:focus
{
    border-color: #ed6e4b !important;
} */
.authentication-cover.height_fixed .fixed_design.login_field .input-group-text.cursor-pointer {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}

.authentication-cover.height_fixed .fixed_design .title {
    font-size: 18px;
    color: #000;
    /* font-family: 'Raleway', sans-serif; */
    font-family: system-ui;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 6px;
    text-align: center;
    position: relative;
    /* width: fit-content; */
}

.authentication-cover.height_fixed .fixed_design .title::after {
    /* content: ''; */
    position: absolute;
    bottom: -5px;
    left: 0;
    /* transform: translateX(-50%); */
    background: #000;
    height: 2px;
    width: 100px;
}

.authentication-cover.height_fixed .on_mobile,
.authentication-cover.height_fixed .on_tab {
    display: none;
}

.authentication-cover.height_fixed .btn-yellow {
    background: #ed6e4b !important;
    border-color: #ed6e4b !important;
    color: #fff;
}

/* listing style */
.dt-button.add-new {
    height: 40px;
}

.card .card-header.border-bottom .card-title {
    font-size: 20px;
    color: var(--bs-primary);
    color: #000;
    font-family: 'Public Sans';
    font-weight: 600;
}

/* listing style end*/
@media screen and (max-width:991px) {
    .authentication-cover.height_fixed .border-left {
        border-left: none;
        border-top: 1px solid #ccc;
    }

    .authentication-cover.height_fixed {
        overflow: visible;
    }
}

@media screen and (max-width:768px) {

    .authentication-cover.height_fixed .on_tab
    {
        display: block;
    }
    .authentication-cover.height_fixed .on_desktop {
        display: none;
    }

    .authentication-cover.height_fixed .fixed_design.login_field {
        bottom: 6px !important;
    }
}
@media screen and (max-width:426px) {
    .authentication-cover.height_fixed .on_mobile {
        display: block;
    }

    .authentication-cover.height_fixed .on_desktop,
    .authentication-cover.height_fixed .on_tab {
        display: none;
    }

    .authentication-cover.height_fixed .fixed_design.login_field {
        bottom: 6px !important;
    }
}

/* @media screen and (max-width:1600px)
{
    .authentication-cover.height_fixed .fixed_design.login_field
    {
        bottom: 100px;
    }
} */
@media screen and (min-height:655px) {
    .authentication-cover.height_fixed .fixed_design.login_field {
        bottom: 5%;
    }

    .authentication-cover.height_fixed.with_title .fixed_design.login_field {
        bottom: 6%;
    }
}

@media screen and (min-height:917px) {
    .authentication-cover.height_fixed .fixed_design.login_field {
        bottom: 20%;
    }

    .authentication-cover.height_fixed.with_title .fixed_design.login_field {
        bottom: 16%;
    }
}

/* authentication-cover end */
/* for_print chandan*/
.for_print .datebox {
    text-align: right;
    font-size: 13px;
    color: #000;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.for_print .datebox .regNo {
    font-size: 20px;
    line-height: 28px;
}

.for_print .c_name {
    font-size: 20px;
    /* text-align: center; */
    color: #000;
    margin-bottom: 10px;
    line-height: 20px;
    margin-bottom: 10px;
}

.for_print table.info {
    width: 100%;
}

.for_print table.info tr {
    vertical-align: top;
}

.for_print .info tr td:first-child {
    color: #000;
    font-weight: 600;
    padding-right: 5px;
}

.for_print .text-right .info tr {
    text-align: right;
}

.for_print .table-responsive thead th {
    background: var(--bs-primary);
    color: #fff;
}

.for_print .table-responsive tbody td {
    font-size: 14px;
    color: #000;
}

.for_print .signature {
    text-align: right;
    margin-top: 10px;
    color: var(--bs-primary);
    margin-bottom: 0;
    font-weight: 500;
}

.for_print .barcode {
    height: 85px;
    margin-top: -12px;
}

/* dashboard */
.dash_home_collapse .accordion-button {
    font-family: 'Public Sans';
    text-transform: uppercase;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    color: var(--bs-primary) !important;
}

.dash_home_collapse .card.accordion-item.active {
    /* background: transparent !important;
    box-shadow: none !important; */
}

.dash_home_collapse .card.accordion-item .accordion-body {
    /* padding: 0;
    padding-top: 20px; */
}

.dash_home_collapse .card.accordion-item.active .accordion-button {
    /* background: transparent !important;
    padding: 0;
    color: #000 !important; */
}

.dash_home_collapse .accordion-button i.fas {
    font-size: 20px;
    color: #fff;
    background-color: var(--bs-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dash_home_collapse .accordion-button.no_icon::after {
    content: none !important;

}

.dash_home_collapse .card.accordion-item .accordion-button .fa-chevron-down {
    display: none;
}

.dash_home_collapse .card.accordion-item.active .accordion-button .fa-chevron-right {
    display: none;
}

.dash_home_collapse .card.accordion-item.active .accordion-button .fa-chevron-down {
    display: block;
    /* border-bottom-right-radius: 4px; */
}

.dashboard_title {
    font-size: 20px;
    font-family: 'Public Sans';
    color: #000 !important;
}

.dash_home_collapse .card-header.dash h5 {
    font-size: 19px;
    font-weight: 600;
    color: #000;
    font-family: 'Public Sans';
    margin-bottom: 0;
}

.dash_date_filter {
    width: 36px;
    height: 36px;
    background: #ffb826;
    margin: 10px;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 32px !important;
    color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
}

.dash_date_filter.w {

    background: #28dac6 !important;
}

.dash_shadow {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: fit-content;
    border-radius: 5px;
}

.dash_shadow .selectpicker {
    width: 100px;
    font-size: 13px;
}

.dash_shadow .dropdown-toggle {
    background: #ffb826;
    color: #fff !important;
    font-size: 13px;
    padding-left: 9px !important;
    padding-right: 4px !important;
    width: 154px !important;
    border-radius: 5px !important;
    border: none !important;
    transform: none !important;
}

.dash_shadow .dropdown-toggle .filter-option-inner-inner {
    color: #fff !important;
    border-radius: 5px !important;
    border: none !important;
}

.dash_shadow .dropdown-toggle:hover,
.dash_shadow .dropdown-toggle.btn-light.show,
.dash_shadow .dropdown-toggle .filter-option-inner-inner:hover {
    background: #ffb826 !important;
    border: none !important;
    color: #fff !important;
    transform: none !important;

}

.dash_shadow .dropdown-toggle .filter-option-inner-inner:hover {
    /* padding-top: 6px !important; */
    /* padding-bottom: 6px !important; */
}

.dash_shadow .bootstrap-select {
    background: #ffb826 !important;
    border: none !important;
    color: #fff !important;
    border-radius: 5px;
}

.text-sm.dash_text {
    font-size: 12px;
    color: #000;
}

.dash_modal h3,
.dash_modal p,
.dash_modal div,
.dash_modal input,
.dash_modal td,
.dash_modal th {
    font-family: var(--bs-body-font-family);
}

.dash_modal .modal-simple .btn-close {
    right: 11px !important;
    top: 11px !important;
}

.dash_modal table th {
    background: var(--bs-primary);
    color: #fff !important;
}

.dash_modal table th:first-child {
    min-width: 50px;
}

.dash_modal table th:nth-child(2) {
    min-width: 150px;
}

.dash_modal table th:nth-child(3) {
    min-width: 150px;
}

.dash_modal table th:last-child {
    min-width: 150px;
}

/* for_print end  */
/* custom_cards_dash */
.custom_cards_dash .card {
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
}

.custom_cards_dash .card {}

.custom_cards_dash .card-body.blue {
    background: linear-gradient(45deg, #19e5d9, #3faae2, #5c7be9);
}

.custom_cards_dash .card-body.dark {
    background: linear-gradient(45deg, #35495f, #2f4354);
}

.custom_cards_dash .card-body.pink {
    background: linear-gradient(45deg, #f54fa0, #f95e8f, #fe7378);
}

.custom_cards_dash .card-body.green {
    background: linear-gradient(45deg, #41e495, #3fd2a2, #3bb3b6);
}

.custom_cards_dash .card-body.yellow {
    background: linear-gradient(45deg, #ffdb3f, #ffb54b, #ff8457);
}

.custom_cards_dash .card-body.purple {
    background: linear-gradient(45deg, #9f6adc, #864ee3, #47279d);
}

.custom_cards_dash .card-body.red {
    background: linear-gradient(45deg, #dc6a6a, #e34e4e, #9d2727);
}

.custom_cards_dash .card-body {
    color: #fff;
    font-family: var(--bs-body-font-family) !important;
    font-family: 'Public Sans' !important;
    padding: 20px 10px 20px 20px;
}

.custom_cards_dash .card.card-sm .card-body {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bs-indigo);
}

.custom_cards_dash .card.card-sm .card-body .card-title {
    margin: 0;
}

.custom_cards_dash .card.card-sm .card-body .fw-medium {
    font-size: 18px;
    margin: 0 !important;
}

.custom_cards_dash .new_des .row {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid var(--bs-cyan);
    border-radius: 5px;
}

.custom_cards_dash .large_title {
    border: 2px solid var(--bs-border-color);
    /* padding: 15px 10px 15px 20px; */
    height: 60px;
}

.custom_cards_dash .large_title .card-body {
    padding-top: 19px;
}

.custom_cards_dash .large_title .card-body .card-title {
    color: var(--bs-pinterest);
    font-weight: 600;
    height: 15px;
    margin-bottom: 0 !important;
}

.r {
    background: #593bad;
    background: #864ee3;
    background: #884ad1;

}

.dash_shadow .btn-check:focus+.btn-light,
.dash_shadow .btn-light:focus,
.dash_shadow .btn-light.focus {
    background: #ffb826 !important;
}

.custom_cards_dash .card-body .card-title {
    font-family: 'Public Sans' !important;
    font-size: 30px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom_cards_dash .card-body .card-title i {
    margin-right: 10px;
}

.custom_cards_dash .card-body span {
    font-family: 'Public Sans' !important;
}

.dash_home_collapse_new {
    /* display: none; */
}

.dash_home_collapse_new .card.accordion-item .accordion-button {
    font-size: 14px;
    color: var(--bs-pinterest) !important;
}

.dash_home_collapse_new .card.accordion-item.active .accordion-button {
    color: var(--bs-primary) !important;
}

.selected_items.new a {
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.selected_items.new a .count {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 18px;
    text-align: center;
    padding-bottom: 2px;
}

.selected_items.new a .course {
    position: relative;
    color: var(--bs-pinterest);
}

.selected_items.new a .course::before {
    content: '';
    height: 1px;
    width: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #ccc;
    background: var(--bs-blue);
}

/* .card-body.overflow_mobile
    {
        overflow: auto;
    }
    .card-body.overflow_mobile #barChart2
    {
        min-width: 500px !important;
        min-height: 500px !important;
    } */
@media screen and (max-width:600px) {
    .card.responsive_mobile .card-header .card-action-element {
        width: 100%;
    }

    .card-body.overflow_mobile {
        padding: 0;
    }

    .card.responsive_mobile .card-header .card-action-element .position-relative {
        text-align: right;
    }

    .card.responsive_mobile .card-header .card-action-element .position-relative label {
        margin: 0;
    }

    /* .card-body.overflow_mobile
    {
        overflow: auto;
    } */
    /* .card-body.overflow_mobile canvas
    {
        min-width: 690px !important;
        min-height: 430px !important;
    } */

}

@media screen and (max-width: 600px) {
    #barChart .chartjs-axis-x .tick {
        display: none !important;
    }
}

/* custom_cards_dash chandan */
.candidats-feedback {
    margin-bottom: 30px;
}

.candidats-feedback .card-header h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Public Sans';
    color: #000;
    position: relative;
}

.candidats-feedback .card-header {
    padding-bottom: 0;
}

.candidats-feedback .search_for {}

.candidats-feedback .date {
    text-align: right;
    color: #000;
}

.candidats-feedback .card-header h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background: var(--bs-primary);
    height: 2px;
    width: 100%;

}

.candidats-feedback .search_box {
    width: fit-content;
    position: relative;
    border-radius: 30px;
    /* margin-left: auto;
    margin-right: auto; */
}

.candidats-feedback .search_box input {
    height: 40px;
    background: #fff;
    color: #000;
    font-size: 21px;
    letter-spacing: 0.6px;
    font-family: var(--bs-body-font-family) !important;
    font-family: 'Public Sans' !important;
    border-radius: 20px;
    width: 350px;
    outline: none;
    border: 2px solid var(--bs-pinterest);
    padding: 0 11px;
    transition: 0.2s ease-in-out;
}

.candidats-feedback .search_box input:focus {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.candidats-feedback .search_box i {
    cursor: pointer;
    position: absolute;
    right: 0px;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #cb2027;
    top: 50%;
    transform: translateY(-50%);
    /* margin-left: auto;
    margin-right: auto; */
}

.candidats-feedback .dtl_card .card-header {
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.candidats-feedback .dtl_card .card-header h4 {
    margin: 0;
}

.candidats-feedback .dtl_card .card-header h4::after {
    content: none;
}

.candidats-feedback .dtl_card .item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #000;
    font-size: 15px;
}

.candidats-feedback .dtl_card .item.reg_no {
    font-weight: 500;
    font-size: 22px;
    color: var(--bs-primary);
}

.candidats-feedback .dtl_card .item .data {
    color: #566a7f;
}

.candidats-feedback .dtl_card .item:not(.reg_no) .title {
    font-weight: 700;
}

.candidats-feedback .dtl_card .item.reg_no .data {
    color: #000;
}

.candidats-feedback .dtl_card .form-label {
    margin-bottom: 0px;
}

.selected_items a {
    padding: 6px 10px;
    min-width: 50px;
    background: var(--bs-primary);
    color: #fff !important;
    margin-right: 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

@media screen and (max-width:667px) {
    .candidats-feedback .dtl_card .card-header {
        display: grid;
    }

    .candidats-feedback .dtl_card .card-header .search_box {
        margin-top: 20px;
    }

    .candidats-feedback .dtl_card .item.reg_no {
        /* font-size: 18px; */
        display: grid;
    }
}

@media screen and (max-width:420px) {
    .candidats-feedback .search_box {
        width: 100%;
    }

    .candidats-feedback .search_box input {
        width: 100%;
    }
}

/* sidebar edit */
.menu-vertical .menu-sub .menu-link {
    padding-left: 2rem !important;
}

.menu-vertical .menu-sub .menu-link::before {
    content: none !important;
}

.menu-vertical .menu-sub .menu-link .sub-icon {
    margin-right: 7px;
    font-size: 18px;
    width: 20px;
}

.validation-error {
    color: red;
    margin-top: 5px;
    /* Optional: Adjust the margin for better spacing */
}

.has-error {
    border: 1px solid red;
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>td.sorting:before,
table.dataTable thead>tr>td.sorting_asc:before,
table.dataTable thead>tr>td.sorting_desc:before,
table.dataTable thead>tr>td.sorting_asc_disabled:before,
table.dataTable thead>tr>td.sorting_desc_disabled:before {
    top: 43% !important;
    content: "▲";
    content: "▲" /"";
    transform: translateY(-50%);
}

/* candidate_collaps */
.dash_home_collapse.candidate_collaps,
.dash_home_collapse.candidate_collaps .accordion-body,
.dash_home_collapse.candidate_collaps div,
.dash_home_collapse.candidate_collaps p,
.dash_home_collapse.candidate_collaps h4,
.dash_home_collapse.candidate_collaps h3,
.dash_home_collapse.candidate_collaps h2 {
    font-family: 'Public sans' !important;
}

.dash_home_collapse.candidate_collaps .accordion-button {
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;

}

.dash_home_collapse.candidate_collaps .accordion-button .m-div {
    display: flex;
    justify-content: space-between;
    width: 93%;
}

.dash_home_collapse.candidate_collaps .accordion-button i.fas {
    font-size: 11px;
    color: #fff;
    background-color: var(--bs-primary);
    width: 23px;
    height: 23px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
}

.dash_home_collapse.candidate_collaps .accordion-button .total_v {
    font-weight: 800;
    color: orange;
}

.dash_home_collapse.candidate_collaps .accordion-button .position {
    color: #dc3545;
}

.dash_home_collapse.candidate_collaps.option2 .accordion-button .position div:first-child {
    font-weight: 800;
    font-size: 17px;

}

.dash_home_collapse.candidate_collaps .accordion-body .card_title {
    font-size: 15px;
    font-weight: 800;
    color: #2c2828;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: calc(100% - 14px);
    margin-bottom: 4px;
}

.dash_home_collapse.candidate_collaps .accordion-body .card_title::after {
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #000;
    position: absolute;
}

.dash_home_collapse.candidate_collaps .accordion-body .brand {
    background: var(--bs-primary);
    font-size: 17px;
    color: #fff;
    width: 100%;
    width: calc(100% - 14px);
    font-weight: 500;
    line-height: 30px;
    margin-top: 4px;
    margin-left: auto;
    height: 30px;
    margin-right: auto;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box {
    width: calc(100% - 14px);
    border: 2px solid var(--bs-primary);
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding-top: 5px;
    padding-bottom: 5px;

}

.dash_home_collapse.candidate_collaps .accordion-body .info_box table tr {
    vertical-align: top;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box table tr td {
    padding-top: 3px;
    padding-bottom: 3px;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box table tr td:first-child {
    width: 40%;
    color: #000;
    font-weight: 500;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box table tr td div {
    display: flex;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .total {
    font-size: 20px;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .flex {
    display: flex;
    align-items: center;
    color: var(--bs-primary);
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .flex span {
    color: #000;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .total {
    font-size: 18px;
    color: #000;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .total span {
    font-weight: 600;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .apply_btn {
    cursor: pointer;
    text-align: center;
    margin-left: auto;
    margin-right: 7px;
    margin-bottom: 10px;
    width: fit-content;
    height: 40px;
    color: #fff;
    line-height: 40px;
    display: flex;
    align-items: center;
    background: var(--bs-code-color);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .apply_btn input {
    margin: 0;
    margin-right: 3px;
}

.dash_home_collapse.candidate_collaps .accordion-body .info_box .apply_btn .form-check-label {
    font-weight: 600;
}

#apply_for_post .selected_items p {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin-bottom: 7px;
    width: 10em;
}

@media screen and (max-width:500px) {

    .dash_home_collapse.candidate_collaps .accordion-body .info_box,
    .dash_home_collapse.candidate_collaps .accordion-body .brand {
        width: 100%;
    }

    .dash_home_collapse.candidate_collaps .accordion-button .total_v {
        padding-left: 2px;
    }
}

/* candidate_collaps end */
/* Public-sans */

/* event_attendance */
.event_attendance .main_title {
    font-size: 24px;
    font-family: 'Public Sans';
    text-transform: uppercase;
    font-weight: 800;
    color: var(--bs-danger);
    padding-bottom: 20px;
    border-bottom: 1px solid;

}

.event_attendance .bar_code_box {
    width: 20em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 10px;
}

.event_attendance .bar_code_box .title {
    font-size: 27px;
    margin: 0;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.event_attendance .bar_code_box input {
    height: 40px;
    width: 100%;
    transition: 0.3s ease-in-out;
    border-radius: 4px;
    border: 2px solid var(--bs-indigo);
    padding-left: 3px;
    padding-right: 3px;
    /* pointer-events: none; */
    /* cursor: default; */
    font-size: 32px;
    color: red;
    text-align: center;
}

.event_attendance .bar_code_box .reg_title {
    font-size: 17px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
}

.event_attendance .bar_code_box .reg_number {
    font-size: 36px;
    color: var(--bs-blue);
}

.event_attendance .namebox {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
    width: 100%;
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.event_attendance .namebox.last {
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.event_attendance .namebox p {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--bs-primary);
    line-height: 20px;
    margin-bottom: 3px;
}

.event_attendance .namebox .name {
    color: #000;
    text-align: left;
    font-size: 38px;
    display: inline;
    line-height: 31px;
}

.event_attendance .info .text-center {
    font-size: 20px;
    color: #000;
    text-align: center;
}

.event_attendance .table-responsive table {
    min-width: 700px;
}

.event_attendance .table-responsive thead th {
    background: var(--bs-primary);
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

.event_attendance .table-responsive tbody td {
    font-size: 13px;
    color: #000;
}

@media screen and (max-width:767px) {
    .event_attendance .bar_code_box .title {
        font-size: 25px;
    }

    .event_attendance .namebox .name {
        font-size: 27px;
    }
}

@media screen and (max-width:600px) {
    .event_attendance .bar_code_box .title {
        font-size: 24px;
    }

    .event_attendance .namebox .name {
        font-size: 24px;
        display: flex;
    }
}

@media screen and (max-width:426px) {
    .event_attendance .bar_code_box {
        width: 100%;
    }

    .event_attendance .bar_code_box .title {
        font-size: 24px;
    }

    .event_attendance .namebox .name {
        font-size: 22px;
        line-height: 24px;
    }
}

/* event_attendance end */
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
    /* background: #000 !important; */
    color: #000 !important;
    font-weight: 600;
}

.apexcharts-tooltip.apexcharts-theme-light {
    /* background: rgba(0, 0, 0, 0.7) !important; */
    color: #000 !important;

}

/* cand_search start */
.cand_search .search_panal {
    width: fit-content;
    position: relative;
    /* width: 100%; */
    min-height: 45px;
}

.cand_search .search_panal .search_button {
    position: absolute;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.3s ease-in-out;
    right: 0;
    /* margin-right: 7px; */
}

.cand_search .search_panal .search_box {
    width: fit-content;
    position: relative;
    height: 40px;
    visibility: hidden;
    position: absolute;
    width: 0;
    overflow: hidden;
    margin-right: 32px;
}

.cand_search .search_panal .search_button.fa-arrow-right {
    visibility: hidden;
    position: absolute;
}

.cand_search .search_panal.open .search_button {
    background: var(--bs-warning);
}

.cand_search .search_panal.open .search_button.fa-search {
    visibility: hidden;
    width: 0;
    height: 0;
}

.cand_search .search_panal.open .search_button.fa-arrow-right {
    visibility: visible;
    width: 40px;
    height: 40px;
}

.cand_search .search_panal.open .search_box {
    visibility: visible;
    position: relative;
    width: fit-content;
    overflow: visible;
}

.cand_search .search_panal .search_box select {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 14px;
    height: 36px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    outline: none;
}

.cand_search .search_panal .search_box input {
    height: 40px;
    background: #fff;
    color: #000;
    font-size: 21px;
    letter-spacing: 0.6px;
    font-family: var(--bs-body-font-family) !important;
    font-family: 'Public Sans' !important;
    border-radius: 20px;
    width: 350px;
    outline: none;
    border: 2px solid var(--bs-pinterest);
    padding-right: 10px;
    transition: 0.3s ease-in-out;
    line-height: 40px;
    padding-left: 10px;
    padding-bottom: 1px;
}

.cand_search .search_panal .search_box input:focus {
    border: 2px solid var(--bs-blue);
}

.cand_search .search_panal .search_box input::placeholder {
    font-size: 16px;
    line-height: 20px;
}

.cand_search .search_panal .info_message {
    display: none;
}

.cand_search .search_panal.open .info_message {
    font-size: 12px;
    color: var(--bs-primary);
    display: block;
    margin-left: 4px;
    margin-top: 4px;
}

.cand_search .data_card h5 {
    font-size: 23px;
    text-align: center;
    color: var(--bs-info);
    font-family: 'Raleway';
    font-family: 'Public sans';
    font-weight: 300;
    margin-bottom: 25px;
}

.cand_search .data_card .nodatatitle {
    display: none;
}

.cand_search .data_card h5 .fa-search {
    display: block;
    font-size: 50px;
    margin-bottom: 7px;
    color: #ccc;
}

.cand_search .data_card .card-datatable {
    /* visibility: hidden;
    overflow: hidden;
    position: absolute; */
    display: none;
}

.cand_search .data_card.isdata .card-datatable {
    /* visibility: visible;
    overflow: auto;
    position: relative; */
    display: block;
}

.cand_search .data_card.isdata .noformation,
.cand_search .data_card.isdata .nodata,
.cand_search .data_card.nodata .noformation {
    display: none;
}

.cand_search .data_card.nodata .nodatatitle {
    display: block;
}

.cand_search table .btn-icon {
    width: 68px !important;
    height: 25px !important;
    line-height: 25px;
    font-weight: 500;
    display: flex !important;
    align-items: center;
}

.cand_search table .btn-icon.edit-action {
    background: #71dd37 !important;
    color: #fff !important;
}

.cand_search table .btn-icon.delete-record {
    background: #ffc107 !important;
    color: #fff !important;
    margin-left: 7px;
}

@media screen and (max-width:500px) {
    .cand_search .search_panal .search_box input {
        width: 100%;
    }
}

/* cand_search end */

/* notification_page */
.notification_page .card-title {
    color: var(--bs-primary) !important;
}

.notification_page .card-title i {
    color: gold !important;
}

.notification_page .form-label {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

.notification_page .form-label.lg {
    font-size: 20px;
}

.notification_page .input-group input,
.notification_page textarea {
    border-color: #666;
}

.notification_page .border {
    border: 2px solid var(--bs-primary) !important;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    margin-top: 17px;
    border-radius: 5px;
    position: relative;
}

.notification_page .border .start {
    text-align: center;
    position: absolute;
    top: -15px;
    left: 6px;
    width: 50px;
    height: 25px;
    background: var(--bs-primary);
    color: #fff;
    line-height: 24px;
    text-transform: capitalize;
    border-radius: 3px;
}

/* notification_page end */
.template-customizer-open-btn {
    left: 10px !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    opacity: 1;
}

.template-customizer-open-btn::before {
    content: '';
    width: 22px;
    height: 22px;
    display: block;
    background-size: 100% 100%;
    position: absolute;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAABClJREFUaEPtmY1RFEEQhbsjUCIQIhAiUCNQIxAiECIQIxAiECIAIpAMhAiECIQI2vquZqnZvp6fhb3SK5mqq6Ju92b69bzXf6is+dI1t1+eAfztG5z1BsxsU0S+ici2iPB3vm5E5EpEDlSVv2dZswFIxv8UkZcNy+5EZGcuEHMCOBeR951uvVDVD53vVl+bE8DvDu8Pxtyo6ta/BsByg1R15Bwzqz5/LJgn34CZwfnPInI4BUB6/1hV0cSjVxcAM4PbcBZjL0XklIPN7Is3fLCkdQPpPYw/VNXj5IhPIvJWRIhSl6p60ULWBGBm30Vk123EwRxCuIzWkkjNrCZywith10ewE1Xdq4GoAjCz/RTXW44Ynt+LyBEfT43kYfbj86J3w5Q32DNcRQDpwF+dkQXDMey8xem0L3TEqB4g3PZWad8agBMRgZPeu96D1/C2Zbh3X0p80Op1xxloztN48bMQQNoc7+eLEuAoPSPiIDY4Ooo+E6ixeNXM+D3GERz2U3CIqMstLJUgJQDe+7eq6mub0NYEkLAKwEHkiBQDCZtddZCZ8d6r7JDwFkoARklHRPZUFVDVZWbwGuNrC4EfdOzFrRABh3Wnqhv+d70AEBLGFROPmeHlnM81G69UdSd6IUuM0GgUVn1uqWmg5EmMfBeEyB7Pe3txBkY+rGT8j0J+WXq/BgDkUCaqLgEAnwcRog0veMIqFAAwCy2wnw+bI2GaGboBgF9k5N0o0rUSGUb4eO0BeO9j/GYhkSHMHMTIqwGARX6p6a+nlPBl8kZuXMD9j6pKfF9aZuaFOdJCEL5D4eYb9wCYVCanrBmGyii/tIq+SLj/HQBCaM5bLzwfPqdQ6FpVHyra4IbuVbXaY7dETC2ESPNNWiIOi69CcdgSMXsh4tNSUiklMgwmC0aNd08Y5WAES6HHehM4gu97wyhBgWpgqXsrASglprDy7CwhehMZOSbK6JMSma+Fio1KltCmlBIj7gfZOGx8ppQSXrhzFnOhJ/31BDkjFHRvOd09x0mRBA9SFgxUgHpQg0q0t5ymPMlL+EnldFTfDA0NAmf+OTQ0X0sRouf7NNkYGhrOYNrxtIaGg83MNzVDSe3LXLhP7O/yrCsCz1zlWTpjWkuZAOBpX3yVnLqI1yLCOKU6qMrmP7SSrUEw54XF4WBIK5FxCMOr3lVsfGqNSmPzBXUnJTIX1jyVBq9wO6UObOpgC5GjO98vFKnTdQMZXxEsWZlDiCZMIxAbNxQOqlpVZtobejBaZNoBnRDzMFpkxvTQOD36BlrcySZuI6p1ACB6LU3wWuf5581+oHfD1vi89bz3nFUC8Nm7ZlP3nKkFbM4bWPt/MSFwklprYItwt6cmvpWJ2IVcQBCz6bLysSCv3SaANCiTsnaNRrNRqMXVVT1/BrAqz/buu/Y38Ad3KC5PARej0QAAAABJRU5ErkJggg==');
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
    top: 50% !important;
    left: 50% !important;
}

.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }

  .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;
    border-radius: 34px;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
  }

  input:checked + .slider {
    background-color: #2196F3;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
.m-status{
    margin: 24px;
    margin-bottom: 0;
}

.custom_cards .card-body
{
    padding-top: 5px;
    padding-bottom: 0px;
    padding-left: 10px;
    padding-right: 0px;
}
.custom_cards .card-body .sm_title
{
    font-size: 20px;
}