﻿/*Custom file upload*/
.input-file {
    display: none !important
}


.drop-file {
    border: 2px dashed #d8d8d8;
    background-color: #fcfbfb;
    padding: 25px;
    width: 100%;
    height: 190px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.drop-file span {
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block
}

.drop-file .btn {
    margin-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .drop-file {
        border: none;
        background-color: transparent;
        padding: 0px;
        width: auto;
        height: auto;
    }

    #txtdragDrop {
        display: none !important
    }
}

.upload_dragdrop {
    border: 2px dashed #6053A8;
}

.upload-box_success {
    border: 2px solid #2B9C62
}

.upload-box_error {
    border: 2px solid #E54B4B
}

.upload-box_processing {
    border: 2px solid #AEB2C1
}

/*Css From External Dev*/
:root {
    --text-primary: #140F35;
    --text-secondary: #6A717E;
    --text-disabled: #9CA3AF;
    --primary-100: #E5E4EF;
    --primary-300: #8278B9;
    --primary-500: #382C79;
    --primary-700: #241F61;
    --primary-900: #1C163A;
    --neutral-50: #FAFAFC;
    --neutral-100: #F5F6F9;
    --neutral-150: #F6F6F6;
    --neutral-200: #ECEEF3;
    --neutral-300: #D3D6E1;
    --neutral-400: #C9CCD7;
    --neutral-500: #AEB2C1;
    --neutral-600: #8D91A3;
    --neutral-700: #6D7085;
    --neutral-800: #494B61;
    --neutral-900: #2C2D3E;
    --success-100: #EAF9F0;
    --success-300: #83D9A8;
    --success-500: #3DBD78;
    --success-700: #2B9C62;
    --success-900: #186E45;
    --error-100: #FDEDED;
    --error-300: #F58B8B;
    --error-500: #E54B4B;
    --error-700: #C13232;
    --error-900: #8F2323;
    --warning-100: #FFF8E5;
    --warning-300: #FBD97B;
    --warning-500: #F4C045;
    --warning-700: #C49729;
    --warning-900: #866B14;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif !important;
}

header,
section,
footer {
    overflow: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 !important;
}

.btn-primary {
    border: 1px solid var(--neutral-50) !important;
    background-color: var(--primary-500) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.btn-secondary {
    border: 1px solid var(--primary-500) !important;
    background-color: var(--neutral-50) !important;
    color: var(--primary-500) !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.btn-sm {
    font-size: 14px !important;
}

.btn-primary,
.btn-secondary {
    transition: all 0.3s ease-in-out !important;
}

.btn-primary:hover {
    background-color: var(--primary-300) !important;
}

.btn-secondary:hover {
    background-color: #ffffff !important;
    box-shadow: inset 0px 0px 0px 1px var(--primary-500);
}

.btn-primary:active {
    background-color: var(--primary-700) !important;
    box-shadow: none !important;
}

.btn-secondary:active {
    background-color: var(--primary-100) !important;
    box-shadow: none !important;
    border: 1px solid var(--primary-500);
}

.btn:disabled {
    border: 1px solid var(--neutral-50) !important;
    background-color: var(--primary-100) !important;
    color: var(--text-disabled) !important;
}

.btn.small {
    font-size: 14px !important;
}

/* header css start */
header {
    background-color: var(--primary-500);
}

.navbar-logo img {
    width: 240px;
    height: 40px;
}

/* header css end */


/* hero css start */
.hero-section {
    padding-top: 56px !important;
    position: relative;
}

.hero-section::before {
    content: "";
    height: 686px;
    background: linear-gradient(180deg, #382C79 0%, #537DA7 100%);
    position: absolute;
    inset: 0;
}

.hero-description {
    font-size: 24px;
    font-weight: 500;
}

.video-section {
    margin-top: 80px;
}

/* hero css end */

/* Modal css start */
.modal-body::-webkit-scrollbar-thumb {
    background-color: #241F61 !important;
    border-radius: 1000px;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}

.modal-dialog {
    max-width: 770px !important;
}

.modal-top {
    text-align: left;
}

.modal-title {
    line-height: 140% !important;
    text-align: left;
}

.modal-body {
    padding: 0 !important;
}

.modal-dialog-scrollable .modal-content {
    overflow: visible !important;
    border-radius: 8px;
}

.btn-close {
    position: absolute;
    top: 0;
    right: -48px;
    font-size: 13px !important;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    opacity: 1 !important;
}

.upload-box {
    width: 100%;
    height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ECEEF3;
}

.browse-file {
    color: var(--primary-300);
    cursor: pointer;
}

.file-description {
    max-width: 347px;
    font-size: 14px;
    line-height: 140%;
}

.modal-description {
    text-align: left;
}

.modal-description,
.modal-description a {
    color: var(--text-primary) !important;
    line-height: 180%;
}

.reports-list-item {
    background-color: var(--error-100);
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    margin-bottom: 8px;
}

.reports-list-item:last-child {
    margin-bottom: 0;
}

.report-item {
    background-color: var(--neutral-150);
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 16px;
}

.report-details {
    text-align: left;
}

.report-item span {
    color: var(--primary-500);
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
}

.report-item p {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 12px;
    line-height: 140%;
}

.upload-modal .report-type,
.processing-modal .report-type {
    color: var(--text-primary);
    max-width: 100%;
}

.report-logo {
    width: 32px;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 50%;
}

.delete-logo {
    cursor: pointer;
}

.report-error-wrap {
    border-top: none;
    border-radius: 0px 0px 8px 8px;
    padding: 8px 16px;
}

.report-error-msg {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

input[type="checkbox" i] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-500);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

input[type="checkbox" i]:hover,
input[type="checkbox"]:hover {
    border: 2px solid var(--primary-300) !important;
}

input[type="checkbox" i]:focus,
input[type="checkbox"]:focus {
    border: 2px solid var(--primary-700) !important;
}

input[type="checkbox" i]:disabled,
input[type="checkbox"]:disabled {
    border: 2px solid var(--neutral-500) !important;
}

input[type="checkbox" i]:checked,
input[type="checkbox"]:checked {
    background-color: var(--primary-500) !important;
}

input[type="checkbox" i]:checked:hover,
input[type="checkbox"]:checked:hover {
    background-color: var(--primary-300) !important;
}

input[type="checkbox" i]:checked:focus,
input[type="checkbox"]:checked:focus {
    background-color: var(--primary-700) !important;
}

input[type="checkbox" i]:checked:disabled,
input[type="checkbox"]:checked:disabled {
    background-color: var(--neutral-500) !important;
}


input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border-color: white;
    border-style: solid;
}

.term-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 140%;
}

.term-label a {
    color: var(--text-primary);
}

/* Modal css end */

/* get started css start*/
.get-started-section {
    background-color: #ffffff;
    padding: 120px 0px 60px 0px;
}


.section-title {
    font-size: 48px;
    font-weight: 800 !important;
    color: var(--primary-500);
    text-align: center;
    margin-bottom: 40px !important;
}

.steps-list {
    padding: 0px 160px;
}

.step-body {
    background-color: var(--neutral-200);
    padding: 24px;
    border-radius: 16px;
}

.step-count {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: var(--primary-500);
}

.step-title {
    color: var(--primary-500);
}

.step-text {
    color: var(--primary-500);
    line-height: 180%;
}

/* get started css end*/

/* simplified-credit css start */

.simplified-credit-section {
    background-color: #ffffff;
    padding: 60px 0px 130px 0px;
}

.credit-card-body {
    padding: 0px 112px;
}

.credit-card {
    background-color: var(--neutral-200);
    padding: 118px 88px;
    margin-bottom: 80px;
    border-radius: 16px;
}

.credit-card:last-child {
    margin-bottom: 0px;
}

.credit-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 60px;
    color: var(--primary-500);
}

.credit-description {
    font-size: 20px;
    color: var(--primary-500);
    line-height: 180%;
}

.credit-image {
    height: 296px;
}

/* simplified-credit css end */


/* clarity section css start */
.clarity-section {
    background: linear-gradient(180deg, #537DA7 19.81%, #382C79 99.72%);
    padding: 120px 0px 168px 0px;
}

.clarity-list {
    max-width: 932px;
    margin: 0 auto !important;
}

.clarity-list-text {
    font-size: 20px;
    line-height: 180%;
}

.clarity-list-icon {
    min-width: 35px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--neutral-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarity-section .credit-report-btn {
    background-color: var(--neutral-50);
    border: 1px solid var(--primary-500);
    color: var(--primary-500);
}

/* clarity section css end */

/* footer css start */
footer {
    background-color: var(--primary-500);
}

.footer-logo img {
    width: 178px;
    height: 29px;
}

.footer-link {
    font-size: 12px;
    line-height: 140%;
}

.footer-link:hover {
    text-decoration: underline !important;
}

.footer-list {
    max-width: 610px;
    font-size: 12px;
    line-height: 140%;
}

.social-icon a img {
    transition: all 0.3s ease-in-out;
}

.social-icon a img:hover {
    scale: 1.2;
}

/* footer css end */


/* report table css start */

/* overlay start */
.report-overlay {
    position: fixed;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    height: 100vh;
    opacity: 0.8;
    inset: 0;
}

.overlay-loader {
    width: 258px;
    aspect-ratio: 1/1;
    position: relative;
}

.overlay-loader #one {
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: one 2s infinite;
    -o-animation: one 2s infinite;
    -webkit-animation: one 2s infinite;
    -ms-animation: one 2s infinite;
    -moz-animation: one 2s infinite;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    background-color: #393939;
}

.overlay-loader #two {
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: two 2s infinite;
    -o-animation: two 2s infinite;
    -moz-animation: two 2s infinite;
    -webkit-animation: two 2s infinite;
    -ms-animation: two 2s infinite;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    background-color: #393939;
}


@keyframes one {
    0% {
        width: 0px;
        height: 0px;
        opacity: 1;
    }


    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

@keyframes two {
    0% {
        width: 0px;
        height: 0px;
        opacity: 1;
    }

    50% {
        width: 0px;
        height: 0px;
        opacity: 1;
    }

    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

.progress {
    width: 300px;
    border: 1px solid var(--neutral-300);
    border-radius: 1000px;
}

.progress-bar {
    background-color: var(--primary-500) !important;
    border-radius: 1000px;
    animation: progress 5s ease-out infinite !important;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}


/* overlay end */

.report-header,
.terms-header {
    background-color: var(--primary-500);
}

.nav-tabs {
    width: fit-content;
}

.glider {
    position: absolute;
    bottom: 0;
    height: 4px;
    background-color: #ffffff;
    z-index: 1;
    transition: 0.25s ease-out;
}

.nav-item {
    position: relative;
}

.nav-tabs .nav-link {
    color: #ffffff;
    border: none;
    transition: none;
    border-bottom: 4px solid transparent !important;
    position: relative;
    transition: all 0.3s ease-in-out;
    padding-left: 0;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link:hover {
    color: #ffffff !important;
    border-color: transparent !important;
}

.nav-tabs .nav-link.active {
    background-color: transparent !important;
    font-weight: 600;
}

.report-body {
    padding: 24px 0px 80px 0px;
    background-color: var(--neutral-200);
}

.report-body .container,
.terms-body .container {
    background-color: var(--neutral-50);
}

.report-title {
    font-size: 24px;
    color: var(--text-primary);
    line-height: 140%;
}

.dropdown-label {
    font-size: 14px;
    line-height: 140%;
    font-weight: 600;
    margin: 16px 0px 10px 0px;
    color: var(--text-secondary);
}

.dropdown-menu>.dropdown-label:first-child {
    margin-top: 0;
}

.btn-group ul:last-child {
    margin-bottom: 0px !important;
}

.filter-dropdown .dropdown-menu {
    border: 1px solid #C9C9C966;
    background-color: var(--neutral-200);
    box-shadow: 0px 4px 15px 0px #0000001A;
    min-width: 275px;
    top: 8px !important;
    right: 0px !important;
    left: auto !important;
}

input[type="radio" i] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="radio" i]:checked {
    background-color: var(--primary-500) !important;
}

input[type="radio"]:checked::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.filter-dropdown .dropdown-toggle,
.filter-dropdown .dropdown-toggle:active {
    border: 1px solid var(--primary-500);
    background-color: var(--neutral-50) !important;
    color: var(--primary-500) !important;
}

.filter-dropdown .dropdown-toggle.show {
    background-color: var(--primary-100) !important;
    color: var(--primary-500);
    font-weight: 600;
}

.dropdown-toggle::after {
    content: "\F282" !important;
    font-family: 'bootstrap-icons';
    border: none !important;
    vertical-align: middle !important;
    margin: 0 0 0 11px !important;
    color: var(--text-primary) !important;
}

.show.dropdown-toggle::after {
    transform: rotate(180deg);
}

.filter-dropdown .dropdown-toggle:hover {
    background-color: var(--primary-50);
    color: var(--primary-500);
    font-weight: 600;
}

.filter-dropdown .dropdown-menu .menu-item {
    padding: 12px;
    border-bottom: 1px solid var(--neutral-300);
    background-color: var(--neutral-50);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-dropdown .dropdown-menu .menu-item:last-child {
    border-bottom: none;
}

.dropdown-divider {
    border-top: 1px solid #D3D6E1 !important;
}

.filter-dropdown .dropdown-menu .menu-item label,
.filter-dropdown .dropdown-menu-mobile .menu-item label {
    color: var(--text-primary);
}

.custom-checkbox {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.selected-filter {
    background-color: var(--primary-100);
    color: var(--primary-500) !important;
    border: 1px solid var(--primary-500);
}

#filter-list-wrap #clear-all {
    border: 1px solid transparent;
}


.selected-filter img {
    cursor: pointer;
}

#filter-list-wrap button {
    color: var(--primary-500);
    cursor: pointer;
}


.table-responsive th,
.table-responsive td {
    width: 25%;
}

.table {
    border: 1px solid #D3D6E1;
    background-color: var(--neutral-300);
    border-radius: 12px;
    overflow: hidden;
}

tbody td {
    border-left: 1px solid #D3D6E1;
    border-right: 1px solid #D3D6E1;
}

.table:last-child {
    margin-bottom: 0px;
}

.table p {
    word-break: break-word;
}

.report-body th,
.report-body td {
    background-color: var(--neutral-150) !important;
    color: var(--text-primary) !important;
    word-break: break-word;
    padding: 12px 24px;
    font-weight: 600;
    line-height: 180%;
}

.table-secondary {
    border-color: #D3D6E1 !important;
}

.trilogy-note-row th,
.trilogy-note-row td {
    background-color: var(--neutral-400) !important;
    text-align: left;
    padding: 22px 24px !important;
    font-size: 14px;
}

.report-body thead th,
.table-secondary>td {
    background-color: var(--neutral-200) !important;
    padding: 16px 24px;
    vertical-align: middle;
}

.report-body thead:first-child tr:first-child th {
    padding: 13px 24px;
}

.table-secondary td:first-child {
    font-size: 14px;
}

thead th:first-child {
    font-size: 14px !important;
    text-align: left;
}

tbody tr th:first-child {
    text-align: left;
    padding: 12px 24px;
    color: var(--text-secondary) !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 140%;
}

.placeholder {
    width: 100%;
    max-width: 85px;
    height: 21px;
    overflow: hidden;
    border-radius: 4px;
}

/* report table css end */

/* terms/privacy css start */
.terms-body {
    padding: 24px 0px 80px 0px;
    background-color: #DEE4EA;
    min-height: calc(100vh - 105px);
}

.terms-body tr.table-secondary p {
    font-size: 14px;
    color: var(--text-primary);
}

.terms-body tbody td {
    text-align: left;
    padding: 16px 24px !important;
}


/* terms/privacy css end */

@media screen and (max-width: 1025px) {
    .container {
        max-width: 100% !important;
    }

    /* header css start */
    .navbar-logo img {
        width: 192px;
        height: 32px;
    }

    .navbar .btn-primary,
    .navbar .btn-secondary {
        font-size: 14px !important;
        padding: 4px 8px !important;
    }


    /* header css end */


    /* hero css start */
    .hero-section {
        padding-top: 33px !important;
    }

    .hero-section::before {
        height: 505px;
    }

    .hero-title {
        font-size: 24px !important;
        font-weight: 700 !important;
        line-height: 140% !important;
    }

    .hero-description {
        max-width: 463px;
        margin: 0 auto !important;
        font-size: 19px;
        line-height: 140%;
    }

    .video-section {
        margin-top: 68px;
    }

    /* hero css end */


    /* get started css start*/
    .get-started-section {
        padding: 80px 0px 40px 0px;
    }

    .steps-list {
        padding: 0px 126px;
    }


    /* get started css end*/

    /* simplified-credit css start */
    .simplified-credit-section {
        padding: 40px 0px 80px 0px;
    }

    .section-title {
        font-size: 28px;
    }

    .credit-card-body {
        padding: 0px 55px;
    }

    .credit-card {
        padding: 32px;
        margin-bottom: 32px;
        border-radius: 8px;
    }

    .credit-title {
        font-size: 28px;
        line-height: 130%;
    }

    .credit-description {
        font-size: 16px;
        line-height: 180%;
    }

    /* simplified-credit css end */

    /* clarity section css start */

    .clarity-list {
        max-width: 370px;
    }

    .clarity-section {
        padding: 80px 0px 91px 0px;
    }

    .clarity-list-text {
        font-size: 16px;
    }

    /* clarity section css end */


    /* Modal css start */
    .btn-close {
        top: -48px;
        right: 16px;
    }

    .status-image {
        width: 58px;
        aspect-ratio: 1/1;
    }

    .upload-box {
        height: 180px;
    }

    .file-description {
        font-size: 12px;
    }

    .modal-description {
        font-size: 14px;
        line-height: 150%;
    }

    .browse-file {
        color: var(--primary-900);
    }

    /* Modal css end */

    /* report table css start */
    .tab-pane .container {
        border-radius: 0px !important;
    }

    tbody tr th:first-child {
        padding: 12px 16px;
    }

    /* report table css end */
}

@media screen and (max-width: 769px) {

    /* hero css start */
    .hero-section .section-title {
        font-size: 24px;
        font-weight: 700 !important;
    }

    /* hero css end */

    /* footer css start */
    .footer-list {
        font-size: 10px;
    }

    .report-body thead:first-child tr:first-child th:first-child {
        padding: 11px 16px !important;
    }

    .report-body thead:first-child tr:first-child th {
        padding: 11px !important;
    }

    .report-body th,
    .report-body td {
        font-size: 12px !important;
        padding: 12px 16px !important;
    }

    /* footer css end */
}

@media screen and (max-width: 575px) {

    /* hero css start */
    .hero-section::before {
        height: 403px;
    }

    .video-section {
        margin-top: 60px;
    }

    /* hero css end */

    /* Modal css start */
    .modal-dialog {
        align-items: flex-end !important;
        margin: 0 !important;
        min-height: 100% !important;
    }

    .modal-dialog-scrollable .modal-content {
        max-height: 600px !important;
    }

    .report-type {
        max-width: 77px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .report-logo {
        width: 24px;
    }

    .report-item span {
        font-size: 12px;
    }

    .report-item,
    .report-error-wrap {
        padding: 8px 12px;
    }

    .submit-btn {
        width: 100%;
    }

    .term-label {
        font-size: 12px;
        font-weight: 400;
    }

    /* Modal css end */

    /* get started css start*/
    .steps-list {
        padding: 0px 26px;
    }

    /* get started css end*/

    /* simplified-credit css end */
    .credit-card-body {
        padding: 0px;
    }

    .credit-card {
        padding: 24px;
    }

    /* simplified-credit css end */


    /* clarity section css start */
    .clarity-list {
        max-width: 100%;
    }

    /* clarity section css end */


    /* report table css start */
    .report-header .container,
    .term-header {
        padding: 0px;
    }

    .nav-tabs .nav-link {
        padding-left: 16px !important;
    }

    .filter-dropdown .dropdown-menu-mobile {
        border: 1px solid #C9C9C966;
        background-color: var(--neutral-200);
        box-shadow: 0px 4px 15px 0px #0000001A;
        min-width: 275px;
        bottom: 0px;
    }


    .filter-dropdown .dropdown-menu-mobile .menu-item {
        padding: 12px;
        border-bottom: 1px solid var(--neutral-300);
        background-color: var(--neutral-50);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .filter-dropdown .dropdown-menu-mobile .menu-item:last-child {
        border-bottom: none;
    }

    .report-body {
        padding: 16px 0px 40px 0px;
    }

    .nav-tabs {
        width: 100%;
    }



    .filter-dropdown button {
        padding: 4px 8px !important;
        font-size: 14px !important;
    }

    button.btn-close {
        padding: 0 !important;
    }


    .table {
        border-radius: 0px;
    }

    .table p {
        line-height: 140%;
    }

    .table-secondary>td {
        font-size: 14px !important;
    }

    thead th img {
        width: 100%;
    }

    tbody tr td {
        line-height: 140%;
    }

    .modal {
        background-color: #00000083;
    }

    .glider {
        margin: 0 !important;
    }

    /* report table css end */
}


.truncateText {
    width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media screen and (max-width: 575px) {
    .truncateText {
        width: 100px;
    }

}

@media screen and (max-width: 395px) {
    .report-item .report-name {
        font-size: 14px !important;
    }

    .report-item p {
        font-size: 10px;
    }

    .report-logo {
        width: 18px;
    }

    .upload-modal .report-type.truncateText,
    .processing-modal .report-type.truncateText {
        color: var(--text-primary);
        max-width: 80%;
    }

}

.report-header,.terms-header {
    background-color: var(--primary-500)
}
