@import url(variables.css);
@import url(font.css);

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    padding-bottom: 213px;
    position: relative;
    font-family: var(--font-BasisGrotesqueArabic);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    background: #F0F0F5;
    padding-top: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

a {
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}

ol,
ul {
    padding-left: 0;
}

.header {
    position: fixed;
    top: 0px;
    z-index: 999;
    width: 100%;
}

.navbar {
    border-bottom: 1px solid #E2E2E7;
    height: 72px;
    background: var(--light-text-inverse);
    padding: 0 10px;
}

.user-profile {
    position: relative;
}

.dropdown-menu.show {
    left: auto;
    right: 0;
}

.form-check {
    display: inline-flex;
    gap: 10px;
    align-items: center
}

.btn-primary {
    background: var(--primary-bg);
    border: 1px solid var(--primary-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 12px;
    height: 44px;
    font-weight: 700;
    transition: all 250ms ease-in-out;
}

.btn-upload {
    color: #D07D00;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    background: #FFF0CD;

    padding: 4px;
}

.show-result-btn {
    height: 56px;
}

.sidebar .btn-primary {
    font-size: 14px;
}

.bottom-section .btn-primary {
    max-width: 227px;
    width: 100%
}

.btn-primary:hover {
    background: var(--primary-bg);
    border: 1px solid var(--primary-bg);
    color: #fff;
    opacity: 0.8;
}

.btn:focus-visible,
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff;
    background-color: var(--primary-bg);
    ;
    border-color: var(--primary-bg);
    ;
    outline: 0;
    box-shadow: unset !important;
    opacity: 0.7;
}

.btn-secondary {
    background: none;
    color: var(--primary);
    border: none;
    font-size: 14px;
    font-weight: 700;
    height: 48px;
    border-radius: 12px;
}

.btn-secondary:hover {
    background-color: var(--light-orange);
    ;
    color: var(--primary);
}

.btn:disabled,
.btn.disabled {
    background: #E2E2E7;
    border: 1px solid #E2E2E7;
    color: rgba(2, 6, 12, .45);
}

.btn-primary span {
    background: rgba(2, 6, 12, 0.15);
    width: 16px;
    height: 16px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 8px;
}

.sidebar-navigation {
    text-align: center;
}

.sidebar {
    background: var(--light-text-inverse);
    width: 200px;
    height: calc(100vh - 72px);
    overflow-y: auto;
    position: fixed;
    top: 72px;
    border-right: 1px solid #E2E2E7;
    padding-bottom: 20px;
}

.sidebar .nav-head {
    background: #F0F0F5;
    display: flex;
    height: 60px;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.sidebar .nav-head .logo-box {
    background: #daeaf7;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;

}

.sidebar .nav-head .logo-box img {
    width: 100%;
}

.sidebar .nav-head a {
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.30000001192092896px;
    text-align: left;
    color: var(--black);
}

.sidebar .nav-head a span {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.30000001192092896px;
    text-align: left;
    color: var(--light-text);

}

.list-group {
    list-style: none;
}

.list-group li a {
    font-weight: 700;
    line-height: 17px;
    letter-spacing: -0.10000000149011612px;
    text-align: left;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.list-group li a.selected,
.list-group li a:hover {
    color: var(--black);
}

.list-group li a img {
    width: 20px;
    opacity: .55;
}

.list-group li a.selected img,
.list-group li a:hover img {
    opacity: 1;
}


.list-group li ul li a {
    font-size: 13px;
    font-weight: 700;
    padding: 15px 0 15px 44px;
}

.list-group li ul li a.active {
    background: #FFEEE5;
    position: relative;
    color: var(--black);
}

.list-group li ul li a.active::after {
    position: absolute;
    content: "";
    right: 0;
    width: 5px;
    height: 100%;
    background: #F15700;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.list-group li ul {
    padding-left: 0;
}

main {
    margin-left: 217px;
}

main * {
    font-family: var(--font-Gilroy);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1530px;
    }

}

/*---- Breadcrumb ----*/
.breadcrumb-container {
    background: var(--light-text-inverse);
    padding: 0 15px;
    height: 72px;
    align-content: center;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: -0.30000001192092896px;
    text-align: left;
    color: rgba(2, 6, 12, 0.6);
}

.breadcrumb-item.active {
    font-size: 16px;
    color: var(--black);
    font-weight: 700;
}

/* Timeline */

.cd-horizontal-timeline ol,
.cd-horizontal-timeline ul {
    list-style: none;
}

.cd-timeline-navigation a:hover,
.cd-timeline-navigation a:focus {
    border-color: #313740;

}

.cd-horizontal-timeline a,
.cd-horizontal-timeline a:hover,
.cd-horizontal-timeline a:focus {
    color: #313740;
}

.cd-horizontal-timeline blockquote,
.cd-horizontal-timeline q {
    quotes: none;
}

.cd-horizontal-timeline blockquote:before,
.cd-horizontal-timeline blockquote:after,
.cd-horizontal-timeline q:before,
.cd-horizontal-timeline q:after {
    content: '';
    content: none;
}

.cd-horizontal-timeline {
    opacity: 0;
    margin: 2em auto;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}

.cd-horizontal-timeline.loaded {
    /* show the timeline after events position has been set (using JavaScript) */
    opacity: 1;
}

.cd-horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.cd-horizontal-timeline ol {
    position: absolute;
    top: -34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cd-horizontal-timeline .events-wrapper {
    position: relative;
    height: 100%;
    margin: 0 40px;
    overflow: hidden;
}

.cd-horizontal-timeline .events-wrapper::after,
.cd-horizontal-timeline .events-wrapper::before {
    /* these are used to create a shadow effect at the sides of the timeline */
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}

.cd-horizontal-timeline .events-wrapper::before {
    left: 0;

}

.cd-horizontal-timeline .events-wrapper::after {
    right: 0;

}

.cd-horizontal-timeline .events {
    /* this is the grey line/timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50px;
    width: 100%;
    /* width will be set using JavaScript */
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}

.cd-horizontal-timeline .events a {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 15px;
    font-size: 16px;
    color: var(--light-text);
    cursor: default;
    font-weight: 500;

    /* fix bug on Safari - text flickering while timeline translates */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.cd-horizontal-timeline .events li {
    position: relative;
}

.cd-horizontal-timeline .events li::before {
    /* this is used to create the event spot */
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    bottom: -9px;
    height: 1px;
    width: 100%;
    border: 2px solid #dfdfdf;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}

.cd-horizontal-timeline .events li:last-child::before {
    display: none;
}



.events li.older-event.event-progress::before {
    border: 1px solid #dfdfdf;
}

.events li.selected a::after {
    background-color: #f8f8f8;
    border-color: #F15700;
}

.events .completed.older-event a::after {
    border-color: #1BA672;
    background: #1BA672;
}

.events .completed.older-event::before {
    border-color: #1BA672;
}

.events .selected.older-event::before {
    border-color: #F15700;
}


.cd-horizontal-timeline .events a::after {
    /* this is used to create the event spot */
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 4px solid #dfdfdf;
    background-color: #f8f8f8;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}

.no-touch .cd-horizontal-timeline .events a:hover::after {
    background-color: #313740;
    border-color: #313740;
}

.cd-horizontal-timeline .events li.selected a {
    pointer-events: none;
    color: var(--black);
    font-weight: 700;
}



@media only screen and (min-width: 1100px) {
    .cd-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}

@media only screen and (max-width: 767px) {

    .cd-horizontal-timeline.loaded {
        margin: 0;
    }

    .cd-horizontal-timeline .timeline {
        width: 100%;
    }

    .cd-horizontal-timeline ol,
    .cd-horizontal-timeline ul {
        padding: 0;
        margin: 0;
    }

}

.timeline:before {
    content: " ";
    display: none;
    bottom: 0;
    left: 0%;
    width: 0px;
    margin-left: -1.5px;
    background-color: #eeeeee;
}

.steps-body,
.upload-body {
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.left-card,
.right-card {
    box-shadow: var(--box-shadow);
    background: var(--light-text-inverse);
    border-radius: 16px;
    border: 1px solid #E2E2E7;
    padding: 60px 40px;
}

.right-card {
    background: #FFF0CD;
    border: 1px solid #D07D00;
    color: #D07D00;
    height: 100%;
    font-weight: 500;
}

.left-card p {
    color: var(--light-text);
    font-weight: 500;
}

.left-card .row {
    align-items: flex-start;
}

.upload-body .left-card .row {
    align-items: center;
}

.vertical-timeline ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 297px;
}


.floating-label-group:not(:last-child)::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 65px;
    transform: translateX(-50%);
    width: 10px;
    height: 40px;
    background: url(../images/line.svg) no-repeat center;
}

.bottom-section {
    background: var(--light-text-inverse);
    border-top: 1px solid #E2E2E7;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    height: 80px;
    padding: 0 20px;
    z-index: 99;
}

.header .user-profile .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: 0;
    content: "";
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    content: "\f107";
    font-family: 'FontAwesome';
    font-size: 20px;
}

.bottom-section.content-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

.content-footer label.form-check-label {
    font-weight: 700;
    font-size: 16px;
}

/*--- Download template---*/

.view-status {
    display: flex;
    flex-direction: column;
    padding: 12px 24px;
    align-items: flex-start;
    border-radius: 12px;
    background: rgba(2, 6, 12, 0.05);
}

.view-status h6 {
    margin-bottom: 0;
}

.download-box {
    display: flex;
    padding: 12px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid rgba(2, 6, 12, 0.15);
}

.download-box h4 {
    font-weight: 700;
    font-size: var(--large-size);
    width: 100%;
}

.download-box h4 img {
    padding-right: 2px;
}

.download-box h4 span {
    float: right;
    color: var(--primary);
}

.download-box p {
    color: rgba(2, 6, 12, 0.6);
    font-size: 13px;
    font-weight: 600;
}

.orenge-link {
    color: #FF5200;
    font-weight: 700;
}

/*---- Upload Template----*/
.upload-box {
    border-radius: 8px;
    border: 2px dashed #FF5200;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 24px 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.upload-box h6 {
    overflow: hidden;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.upload-box input[type=file] {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 99;
    cursor: pointer;
}

p.files-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 286px;
}

.download-box-file,
.upload-box-file {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 24px;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(2, 6, 12, 0.05);
    justify-content: space-between;
}

.download-box-file .progress-box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress {
    width: inherit;
    height: 6px;
}

.progress-bar {
    background: #1ba672;
}

.progress-value {
    font-size: 10px;
}

/*---- PopUp css -------*/
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 716px;
    }

}

.footer-box .btn-primary {
    height: 48px;
    max-width: 250px;
    width: 100%;
}

.footer-box .btn-primary img.genericchevron-right {
    margin-left: 10px;
}

.modal-content {
    border-radius: 16px;
}

.modal-body {
    padding: 30px 40px !important;
}

.view-npi-detail-status-popup .modal-content {
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.modal-body .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title img {
    position: relative;
    top: -4px;
}

.modal-body .modal-title {
    font-size: 32px;
    color: #02060C;
    font-weight: 800;
}

.modal-body .download-box-file,
.upload-box-file {
    display: inline-block;
    padding: 12px 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.btn-close {
    background: none;
    width: 30px;
    height: 30px;
    padding: 0px !important;
    opacity: 1;
    outline: none;
    display: flex;
}

.btn-close:focus {
    box-shadow: none;
}

.modal-box {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal {
    --bs-modal-width: 650px;
}

.msg-box {
    align-items: center;
    font-size: 16px;
    padding: 10px 16px;
    display: flex;
    gap: 20px;
}

.msg-box p {
    margin-bottom: 0;
}

.Success-msg,
.failed-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.Success-msg {
    color: #1ba672;
}

.failed-msg {
    color: #FA3C5A;
}

.failed-msg:not(:first-child) {
    padding-left: 10px;
    border-left: 1px solid rgba(2, 6, 12, .15);
}

.footer-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;

}


/* View NPI status dashboard page with grid */

.container-box {
    background: white;
    margin-top: 20px;
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(2, 6, 12, 0.15);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.title-bar h1 {
    font-size: 32px;
    font-weight: 800;
}

.title-bar p {
    color: rgba(2, 6, 12, 0.60);
    font-size: 16px;
    font-weight: 500;
}

.form-box {
    margin: 40px 0 30px 0;
}

.form-box form {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-box .form-group {
    min-width: 296px;
}

.form-control {
    border: 1px solid #E2E2E7;
    border-radius: var(--bdr-radius);
    width: 100%;
    height: 56px;
    outline: none;
    line-height: 28px;
    font-size: 16px;
    color: rgba(2, 6, 12, 0.75);
    font-weight: bold;
}


/* ------ Pop up -------- */
.modal-box .title-bar {
    width: 100%;
    border-top: 1px solid rgba(2, 6, 12, 0.1);
    border-bottom: 1px solid rgba(2, 6, 12, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.modal-body .modal-title.StatusComments {
    font-size: 20px;
}

.title-bar .lable {
    color: rgba(2, 6, 12, 0.30);
    font-size: 10px;
    font-weight: 700;
}

.title-bar h2 {
    color: rgba(2, 6, 12, 0.75);
    font-size: 16px;
    font-weight: 700;
}

.title-bar {
    margin-bottom: 20px;
}

.title-bar h4 {
    color: rgba(2, 6, 12, 0.60);
    font-size: 14px;
    font-weight: 600;
}

.title-bar p {
    color: rgba(2, 6, 12, 0.60);
    font-size: 16px;
    font-weight: 500;
}

.modal-box ul {
    list-style: none;
    margin-top: 16px;
    padding-left: 0;
}

.modal-box ul .card-container {
    border-radius: 20px;
    background: #F0F0F5;
    padding: 20px;
}

.modal-box ul .card-container:not(:last-child) {
    margin-bottom: 20px;
}

.modal-box .status-details {
    display: flex;
    gap: 16px;
    border-bottom: 1px dashed rgba(2, 6, 12, 0.1);
    margin: 0 0 20px;
    padding-bottom: 20px;
}

.status-details li .level {
    color: rgba(2, 6, 12, 0.60);
    font-family: var(--font-proxima-nova-condensed);
    font-size: var(--small-size);
    font-weight: 700;
    text-align: center;
}

.status-details li .value {
    width: 100%;
    color: rgba(2, 6, 12, 0.60);
    font-size: var(--small-size);
    font-weight: 700;
    border-radius: 4px;
    background: rgba(2, 6, 12, 0.05);
    display: flex;
    min-width: 120px;
    padding: 3px 12px;
    justify-content: center;
    align-items: center;
    gap: -5px;
}

.status-details .detail-box {
    display: block;
}

.detail-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: rgba(2, 6, 12, 0.60);
    margin-bottom: 6px;
}

.detail-box h4 span {
    font-weight: 500;
    color: rgba(2, 6, 12, 0.30);
}

.detail-box .time-date {
    color: rgba(2, 6, 12, 0.30);
    font-size: var(--small-size);
    font-weight: 500;
    margin-bottom: 16px;
}

.detail-box .comment {
    color: rgba(2, 6, 12, 0.75);
    font-family: var(--small-size);
    font-size: 14px;
    font-weight: 500;
}

.modal-box:has(.card-container) {
    margin-bottom: 30px;
}

p.short-desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.3px;
    color: #02060C;
    margin-top: 10px;
}

ul.short-desc-list li {
    color: #02060C;
    font-weight: 500;
}

/*custom search UI dropdown*/
.custom-search-ui-body {
    position: relative;
}

.form-search {
    display: block;
    width: 297px;
    min-width: 0;
    border-radius: 16px;
    height: 56px;
    padding: 15px 45px 15px 15px;
    border: 1px solid #E2E2E7;
    z-index: 1;
    position: relative;
    background: transparent;
    font-size: 16px;
    color: rgba(2, 6, 12, 0.75);
    font-weight: bold;
}

.ui.search.selection.dropdown>input.search {
    height: 100%;
}

.ui.search.dropdown>.text {
    padding: 5px 0;
}

.search-result-found {
    padding: 0 16px;
}

label.float-label {
    position: absolute;
    top: 16px;
    left: 20px;
}

.custom-serch-dropdown input:focus .float-label {
    top: 0;
}

.highlight .float-label,
.filled .float-label {
    top: -8px;
    left: 20px;
    font-size: 11px;
    opacity: 1;
    color: #FF5200;
    background: #fff;
    padding: 0 5px;
    transition: all 350ms ease-in-out;
    z-index: 9;
}

.highlight .form-search {
    border-color: #FF5200;
}

.search-result-found {
    background: #f6f6f6;
    height: 56px;
    border-radius: 16px 16px 0px 0px;
    display: flex;
    align-items: center;
    color: rgba(2, 6, 12, 0.60);
    font-size: 13px;
}

.search-dropdown-result-body {
    max-width: 297px;
    background-color: #fff;
    border-radius: 0px 0px 16px 16px;
    background: var(--Light-Text-Inverse-Highest-Emphasis, #FFF);
    box-shadow: 0px 8px 13px 1px rgba(0, 0, 0, 0.2);
    /* overflow: hidden; */
    position: absolute;
    width: 100%;
    z-index: 99;
}

.custom-serch-dropdown:after {
    background-image: url(../images/chevron-up-filled.svg);
    position: absolute;
    top: 12px;
    right: 10px;
    content: "";
    z-index: 1;
    height: 32px;
    width: 32px;
    text-align: center;
    transform: rotate(180deg);
    transition: all 350ms ease-in-out;
}

.highlight.custom-serch-dropdown:after {
    transform: rotate(0deg);
}

.custom-serch-dropdown {
    max-width: 297px;
    position: relative;
}



.search-dropdown-result-body .item strong {
    font-size: 16px;
    color: rgba(2, 6, 12, 0.75);
}

.search-dropdown-result-body .item {
    color: rgba(2, 6, 12, 0.45);
    padding: 7px 10px;
    height: 56px;
    cursor: pointer;
    font-size: 13px;
}

.search-dropdown-result-body .item:hover {
    background-color: #FFEEE5;
}

[type="search"]::-webkit-search-cancel-button {
    appearance: none;
}

/*End custom search UI dropdown*/

.divider {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 40px 0;
    color: rgba(2, 6, 12, 0.45);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.divider::after,
.divider::before {
    width: calc(50% - 20px);
    height: 1px;
    background: rgba(2, 6, 12, 0.30);
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.divider::after {
    left: 0;
}

.divider::before {
    right: 0;
}

/* switch button */
.switch-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(2, 6, 12, 0.45);
    font-size: 18px;
    font-weight: 600;
}

.switch-box:has(input:checked+.slider) {
    color: rgba(2, 6, 12, 0.92);
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-box .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 0 0 1px #ccc;
}

.switch-box .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-box input:checked+.slider {
    background-color: var(--primary);
}

.switch-box input:focus+.slider {
    box-shadow: 0 0 1px var(--primary);
}

.switch-box input:checked+.slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.switch-box .slider.round {
    border-radius: 24px;
}

.switch-box .slider.round:before {
    border-radius: 50%;
}

/* --------Grig class---------- */

.ascending {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    position: relative;
    top: -4px;
}

.ascending .chevron-bottom {
    position: relative;
    width: 8px;
    height: 8px;
}

.rounded-rectangle-title {
    border-radius: 16px;
    background: #F0F0F5;
    border: none;
}

/* Table class */
.table td,
.table th {
    background: transparent;
    border: none;
    color: rgba(2, 6, 12, 0.6);
    font-size: 14px;
    padding: 20px;
}

.rounded-rectangle-title th {
    background: transparent;
    border: none;
    height: 66px;
    align-content: center;
    color: rgba(2, 6, 12, 0.45);
    font-size: 14px;
    font-weight: 700;
}

.rounded-rectangle-title th:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.rounded-rectangle-title th:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.rounded-rectangle,
.rounded-rectangle-grey {
    border-radius: 16px;
    border-spacing: 0 0px;
    border: 1px solid rgba(2, 6, 12, 0.15);
}

tr.rounded-rectangle td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

tr.rounded-rectangle td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}


tr.rounded-rectangle td {
    border-top: 1px solid rgba(2, 6, 12, 0.15);
    border-bottom: 1px solid rgba(2, 6, 12, 0.15);
    white-space: nowrap;
}

tr.rounded-rectangle td:first-child {
    border-left: 1px solid rgba(2, 6, 12, 0.15);
}

tr.rounded-rectangle td:last-child {
    border-right: 1px solid rgba(2, 6, 12, 0.15);
}

.rounded-rectangle-grey td,
.rounded-rectangle td {
    padding: 20px;
    color: rgba(2, 6, 12, 0.60);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(2, 6, 12, 0.15);
    vertical-align: middle;
}

.rounded-rectangle-grey td {
    border: none;
}

.rounded-rectangle-grey {
    background: #FCFCFC;
    margin-bottom: 12px;
}

.rounded-rectangle td:has(.sub-table) {
    padding: 20px 20px 0;
}

.rounded-rectangle td img {
    width: 16px;
    height: 16px;
}

.rounded-rectangle td.strong-black {
    font-weight: 700;
    color: rgba(2, 6, 12, 0.92);
}

.rounded-rectangle h5 {
    font-weight: 700;
    color: rgba(2, 6, 12, 0.75);
    font-size: 16px;
    white-space: nowrap;
    margin-bottom: 0;
}

.rounded-rectangle h6 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(2, 6, 12, 0.6);
    margin-bottom: 0;
}

.sub-table {
    padding: 0;
    margin-bottom: 12px;
    border-spacing: 0 0px;
}

.sub-table:last-child {
    margin-bottom: 0px;
}

.sub-table td {
    background-color: white;
    border-top: 1px solid rgba(2, 6, 12, 0.1);
    border-bottom: 1px solid rgba(2, 6, 12, 0.1);
    padding: 10px;
    vertical-align: middle;
}

.sub-table td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border-left: 1px solid rgba(2, 6, 12, 0.1);

}

.table .sub-table .npi-id,
.date-created {
    width: 200px;
}

.table td.product,
.table th.product {
    width: 280px;
}

.table .npi-id {
    width: 210px;
}

.barcode,
.created-by {
    width: 210px;
}

.sub-table td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-right: 1px solid rgba(2, 6, 12, 0.1);
}

.status-box tr:first-child td:first-child {
    border-radius: 16px 0 0 0;
}

.status-box tr:first-child td:last-child {
    border-radius: 0 16px 0 0;
}

.status-box tr:first-child td {
    border-bottom: none;
}

.sub-table td.status {
    display: table-cell;
    border-radius: 0 0 16px 16px;
    height: 33px;
    padding: 0 27px;
    font-family: var(--font-proxima-nova-condensed);
    font-size: 13px;
    font-weight: 600;
}

.sub-table td.status-orange {
    border: 1px solid #D07D00;
    background: #FFF0CD;
    color: #D07D00;
    position: relative;
}

td.status-orange:after,
td.status-orange:before {
    bottom: 100%;
    left: 10%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

td.status-orange:after {
    border-color: rgba(255, 240, 205, 0);
    border-bottom-color: #FFF0CD;
    border-width: 7px;
    margin-left: -17px;
}

td.status-orange:before {
    border-color: rgba(208, 125, 0, 0);
    border-bottom-color: #D07D00;
    border-width: 9px;
    margin-left: -19px;
}

.sub-table td.status-red {
    border: 1px solid #FA3C5A;
    background: #FFECEF;
    color: #FA3C5A;
    text-align: center;
}

.status-green,
.status-red,
.status-orange,
.status-gray,
.status-history .status-green,
.status-history .status-red,
.status-history .status-orange {
    display: inline-block;
    border-radius: 20px;
    font-family: var(--font-proxima-nova-condensed);
    font-weight: 700;
    font-size: 10px;
    padding: 0 5px;
    white-space: nowrap;
}

.status-green img,
.status-red img,
.status-orange img {
    width: 10.51px;
    height: 9.25px;
}

.status-green,
.status-history .status-green {
    color: rgba(27, 166, 114, 1);
    background: linear-gradient(270deg, rgba(27, 166, 114, 0.20) -3.58%, rgba(255, 255, 255, 0.60) 34.54%);
}

.status-gray {
    color: rgba(2, 6, 12, 0.30);
}

.status-red,
.status-history .status-red {
    color: rgba(250, 60, 90, 1);
    background: linear-gradient(270deg, rgba(250, 60, 90, 0.20) -3.58%, rgba(255, 255, 255, 0.60) 34.54%);
}

.status-orange {
    color: rgba(208, 125, 0, 1);
    background: linear-gradient(270deg, #FFF0CD 11.62%, rgba(255, 255, 255, 0.60) 32.32%);
}

.status-history {
    background-color: rgba(2, 6, 12, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 321px;
    float: right;
}

.status-history ul {
    list-style: none;
    margin: 0;
    padding: 8px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-right: 1px solid rgba(2, 6, 12, 0.05);
}

.status-history ul li {
    position: relative;
}

.status-history ul li:not(:first-child)::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 1px;
    border-bottom: 1px solid #1BA672;
    top: 8px;
    right: calc(100% - 2px);
}

.status-history ul li.status-gray::after {
    border-bottom: 1px dotted rgba(2, 6, 12, 0.15);
}

.status-history .status-green,
.status-history .status-red {
    background: transparent;
}

.status.status-red img {
    width: 20px;
    height: 20px;
}

.status-history .status-orange {
    color: rgba(208, 125, 0, 1);
    background: transparent;
}

.stage {
    text-align: center;
}

.stage img {
    width: 18px;
    height: 18px;
}

.stage img:not(:first-child) {
    margin-left: -8px;
}

.magese {
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.magese img {
    width: 28px;
    height: 25px;
}

/* .rounded-rectangle-title .npi-id,
.rounded-rectangle-grey .npi-id {
    width: 180px;
}

.sub-table .npi-id {
    width: 160px;
}

.rounded-rectangle-title .product,
.rounded-rectangle-grey .product {
    width: 200px;
}

.rounded-rectangle-title .barcode,
.rounded-rectangle-grey .barcode {
    width: 150px;
}

.rounded-rectangle-title .created-by,
.rounded-rectangle-grey .created-by {
    width: 180px;
}

.rounded-rectangle-title .date-created,
.rounded-rectangle-grey .date-created {
    width: 150px;
} */

.rounded-rectangle-title .stage,
.rounded-rectangle .stage {
    width: auto;
    text-align: left;
}

/* Brand Dashboard */
table {
    border-spacing: 30px;
}

table th {
    color: rgba(2, 6, 12, 0.45);
    font-size: 14px;
    font-weight: 700;
}

.brand-banner {
    margin-top: 30px;
}



.feedback {
    width: 215px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feedback span {
    padding: 0 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 6px;
    color: rgba(2, 6, 12, 0.75);
    font-weight: 600;
}

.feedback .strong-black {
    padding-left: 0;
}

.feedback span:not(:last-child) {
    border-right: 1px dotted #02060C26;
}

.feedback span.error {
    color: #FA3C5A;
}

.feedback span.success {
    color: #1BA672;
}

a.show-more {
    color: var(--primary);
    text-align: center;
    font-size: 16px;
    font-weight: 700;

}

table {
    border-collapse: separate;
    border-spacing: 0 16px;
}

/*table header search bar*/
.table-head-search {
    cursor: pointer;
}

input.searchBar {
    position: relative;
    left: 0;
    border: 1px solid #f15700;
    border-radius: 5px;
    padding: 0 10px;
    height: 34px;
    width: 140px;
    display: block;
}

.ascending span {
    line-height: 7px;
}

.searchBar.active {
    display: block !important;
}

.grid-header-dropdown.floating-label-group:after,
.grid-header-input::after {
    display: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #FFEEE5;
    color: rgba(2, 6, 12, 0.75);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 48% !important;
    transform: translateY(-39%);
    right: 18px !important;
    height: 20px;
    width: 20px;
}

.select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: 0 none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
    background: url(../images/dw-chevron-down.svg);
    border: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    border: 0;
    transition: all 250ms ease-in-out;
    content: "";
    position: absolute;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {

    background-repeat: no-repeat;
    transform: rotate(-180deg);
    transition: all 250ms ease-in-out;
}

.select2-container--open .select2-dropdown--below {
    overflow: hidden;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    font-size: 16px;
    color: rgba(2, 6, 12, 0.75);
    font-weight: bold;
}

.floating-label-group .select2.select2-container--focus~.floating-label,
.floating-label-group .select2.select2-container--below~.floating-label {
    color: rgba(2, 6, 12, 0.60) !important;
}

.floating-label-group .select2.select2-container--focus.select2-container--open+.floating-label {
    color: #FF5200 !important;
}

.floating-label-group .floating-label {
    font-size: 13px;
    font-weight: 600;
}

.floating-label-group .form-group .form-control:focus+.floating-label,
.floating-label-group .filled .floating-label {
    top: 3px;
    bottom: 0px;
    left: 20px;
    font-size: 11px;
    opacity: 1;
    color: #FF5200;
    background: #fff;
    padding: 0 5px;
}

.form-control:focus {

    border-color: #FF5200;
    ;
    outline: 0;
    box-shadow: unset;
}

/*pagination design*/
.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    border-color: #d9dadb;
}

.page-link {
    color: rgba(2, 6, 12, 0.45);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.page-item:first-child .page-link {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.page-link:focus,
.page-link:hover {
    z-index: 3;
    color: #fff;
    background-color: #FF5200;
    color: rgba(2, 6, 12, 0.92);
    outline: 0;
    box-shadow: 0px 0px 0px 0.25rem rgba(255, 82, 0, 0.25);
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: rgba(2, 6, 12, 0.92);
    background-color: #FFEEE5;
    border-color: #dee2e6;
}

.page-item .fa {
    position: relative;
    top: 1px;
}

.pagination-custom.pagination button {
    padding: 0 10px;
}

.pagination-custom.pagination {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pagination-custom button[disabled] {
    opacity: 0.7;
    pointer-events: none;
}

.pagination-custom button.orenge-link {
    background: none;
    font-size: 18px;
}

/*create npi dashboard video section*/

.cre-npi-rq-panel {
    border: 1px solid #DE358F;
    border-radius: 16px;
    height: 368px;
    width: 100%;
    background-color: #EFE3FF;
    padding: 34px;
}

.dash-sm-title {
    color: rgba(2, 6, 12, 0.60);
    text-align: center;
    font-family: var(--font-BasisGrotesqueArabic);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
    display: inline-block;
}

.cre-npi-rq-panel h1 {
    color: #02060C;
    font-family: var(--font-Gilroy);
    font-size: var(--font-size-heading-xxl, 32px);
    font-style: normal;
    font-weight: 800;
    line-height: var(--font-line-height-xx-tall, 36px);
    /* 112.5% */
    letter-spacing: var(--font-letter-spacing-3x-tight, -0.8px);
}

.cre-npi-rq-panel h2 {
    color: var(--text-only-high-emphasis-black, rgba(2, 6, 12, 0.75));
    font-family: var(--font-Gilroy);
    font-size: var(--font-size-heading, 20px);
    font-style: normal;
    font-weight: 800;
    line-height: var(--font-line-height-tall, 26px);
    /* 130% */
    letter-spacing: var(--font-letter-spacing-x-tight, -0.5px);
    margin-bottom: 16px;
}

.pan-content ul li {
    color: var(--text-only-med-emphasis-black, rgba(2, 6, 12, 0.60));
    font-family: var(--font-Gilroy);
    font-size: var(--font-size-body, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: var(--font-line-height-x-short, 18px);
    /* 128.571% */
    letter-spacing: var(--font-letter-spacing-lose, -0.35px);
    margin-bottom: 8px;
}

.pane-header {
    margin-bottom: 25px;
}

.pan-image {
    position: relative;
    left: -34px;
}

.pan-left {
    display: flex;
}

.pane-body {
    display: flex;
    justify-content: space-between;
}

.pan-right {
    padding-right: 60px;
}

.pan-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.cre-dash-npi-button {
    border-radius: 12px;
    background: var(--Light-Generic-Primary, #F15700);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
    width: 328px;
    height: 54px;
    padding: 14px 16px;
    color: #fff;
    text-align: left;
    font-family: var(--font-Gilroy);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.3px;
    cursor: pointer;
    border: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    transition: all 250ms ease-in-out;
}

.cre-dash-npi-button span.start-text {
    font-size: 14px;
}

.cre-dash-npi-button span.start-text i {
    font-size: 20px;
    position: relative;
    top: 2px;
    right: -2px;
}

.cre-dash-npi-button:hover {
    background-color: #ff701a;
}

.dash-sm-title img {
    margin-right: 3px;
}

.vid-frame {
    width: 294px;
    height: 215px;
    flex-shrink: 0;
    border: 2px solid #9E1E62;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    top: -20px;

}

.vid-frame span {
    font-size: 12px;
    color: #fff;
    display: block;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
}

.vid-header {
    height: 36px;
    background-color: #9E1E62;
}

.video-container {
    width: 100%;
    text-align: center;
    padding: 10px;
}

.video-containervideo {
    border-radius: 12px;
    object-fit: cover;
}

/*End create npi dashboard video section*/
/* ------------Traking Dashboard & Imgage upload popup------------ */
.sidebar-navigation span.notification {
    border-radius: 12px;
    background: #FA3C5A;
    padding: 2px 8px;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-navigation .list-group ul li a {
    gap: 4px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.popup-form h6 {
    color: rgba(2, 6, 12, 0.75);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 26px;
}

.popup-form .form-control {
    border-radius: 16px;
    border: 1px solid rgba(2, 6, 12, 0.15);
    height: 56px;
    padding: 16px;
}

.popup-form .form-group:not(:first-child) {
    border-top: 1px dotted rgba(2, 6, 12, 0.75);
    padding-top: 32px;
}

.uploadIMG-popup .footer-box {
    justify-content: center;
}

/* Tsak Dashboard */
.summary-details {
    padding: 28px 0;
    border-top: 1px dotted rgba(2, 6, 12, 0.15);
}

.summary-details h4 {
    color: rgba(2, 6, 12, 0.75);
    font-size: 20px;
    font-weight: 800;
}

.summary-details h4 span {
    color: #FF5200;
    font-size: 16px;
    font-weight: 700;
    margin-left: 14px;
}

.summary-container {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.summary-card {
    display: flex;
    padding: 20px 40px 20px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    border-radius: 20px;
    border: 1px solid rgba(2, 6, 12, 0.15);
}

.summary-card.green {
    background: #C8F9E5;
    border: 1px solid #C8F9E5;
}

.summary-card.red {
    background: #FFECEF;
    border: 1px solid #FFECEF;
}

.summary-t1 {
    color: rgba(2, 6, 12, 0.45);
    font-size: 16px;
    font-weight: 600;
}

.summary-t2 {
    color: rgba(2, 6, 12, 0.92);
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

span.status-up {
    color: #1BA672;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

span.status-up img {
    width: 16px;
    height: 12px;
}

.summary-t2 .failed-icon {
    width: 20px;
    height: 20px;
}

.summary-text {
    color: rgba(2, 6, 12, 0.75);
    font-size: 14px;
    font-weight: 600;
}

/*Date picker css*/
.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #f15700;
    border-color: transparent;
    color: #fff;
}

.product-type-floating {
    list-style: none;
}

.product-type-floating .search-dropdown-result-body {
    max-width: 420px;
}

.product-type-h4 {
    position: relative;
    display: inline-block;
}
 
.product-download-div {
    position: absolute;
    right: -40px;
    top: 0;
}

.product-type-floating .custom-serch-dropdown,.product-type-floating .form-search{
    max-width: 370px;
    width: 370px;
    word-wrap: break-word;
    white-space: wrap;
}

.spin {
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.full-value-text{
    line-height: 15px;
    display: block;
    padding-top: 5px;
}

.product-type-floating .search-dropdown-result-body .item {
    height:auto !important;
    min-height:56px;
}
@media only screen and (max-width: 1600px) {

    .table td.product,
    .table th.product {
        width: 200px;
    }

    .barcode,
    .created-by {
        width: 150px;
        word-break: break-all;
    }
}

 /*upload feedback report 2025*/

.upload-report-feedback{
    box-shadow: var(--box-shadow);
    background: var(--light-text-inverse);
    border-radius: 16px;
    border: 1px solid #E2E2E7;
    padding: 60px 40px;
}

.upload-report-feedback .download-box-file {
    display: inline-block;
    padding: 12px 16px;
    margin-bottom: 10px;
    font-weight: 600;
}
.upload-report-feedback .modal-box{
    margin-bottom: 0;
}
.upload-report-feedback .modal-box ul{
        list-style: disc;
    padding-left: 2rem;
}
.modal-box-footer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: 100%;
}
.modal-box-footer .download-fb-report-btn{
    height: 48px;
    max-width: 250px;
    width: 100%;
}
.modal-box-footer .genericchevron-right{
    margin-left: 10px;
}
#error-popup4 .modal-dialog {
    max-width: 500px;
}
  /*End upload feedback report 2025*/