@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-red: #E31F26;
    --dark-blue: #2d414d;
    --light-blue: #7D9AA5;
    --mid-grey: #d9d9d9;
    --light-grey: #f2f2f2;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --base-font-family: 'Roboto', sans-serif;
    --base-font-size: 18px;
    --base-font-weight: 400;
    --base-line-height: 1.6;
    --base-color: #333333;
    --base-background-color: #ffffff;

    /* Dashboard Specific Colors */
    --db-dark: #2D414D;
    --db-light-grey: #0000001A;
    --db-mid-grey: #E6E6E6;
    --db-accent-grey: #D9D9D9;
    --db-blue-grey: #AABEC6;
    --db-star-fill: #7D9AA5;
}

/* =========================================
   1. CSS RESET / NORMALIZE (Modern Base)
========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    font-size: var(--base-font-size);
}

body {
    margin: 0;
    font-family: var(--base-font-family);
    font-weight: var(--base-font-weight);
    color: var(--base-color);
    background-color: var(--base-background-color);
    line-height: var(--base-line-height);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


html,
body {
    width: 100%;
    height: 100%;
}

/* =========================================
   #Global / Base Refinement
========================================= */
body {
    background-color: #0000001A;
    color: #333333;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

h2 {
    color: #2d414d;
    font-weight: 400;
}

.link.link-blue {
    font-size: 22px;
    text-decoration: underline;
    color: #3D5E6A;
}

.text-center {
    text-align: center;
}

.mhi-section {
    padding: 60px 0;
}

.page>.entry-content {
    width: 100%;
    /* max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: calc(var(--gutter-x) / 2); */
}

span.mhi-search-msg {
    font-size: 12px;
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.mhi-admin-wrapper {
    padding: 0 20px;
}

.mhi-admin-wrapper .dataTables_wrapper .dataTables_length {
    margin-bottom: 30px;
}

.mhi-admin-wrapper .dataTables_wrapper .dataTables_length select {
    padding: 4px 10px;
    min-width: 90px;
}

#mhi-installers-table {
    margin-top: 30px;
}

#mhi-installers-table_wrapper {
    overflow-x: auto;
}

.mhi-admin .dataTables_wrapper label {
    font-size: 14px;
}

select.mhi-status-dropdown {
    padding-right: 50px !important;
    font-size: 12px;
    height: 40px;
    background-position: right 10px top 50%;
    background-size: auto 8px;
    border-color: #0000003d;
}

.btn.btn-sm {
    padding: 10px 10px;
    font-size: 14px;
}

.btn.btn-md,
.btn.btn-red.btn-md {
    padding: 10px 10px;
    font-size: 16px;
    line-height: 1;
}

.btn.btn-red.btn-outline-white {
    border: 2px solid #fff;

}

section.mhi-section.contact-section,
section.mhi-section.faqs-section,
.bg-white.mhi-steps {
    background: #FFFFFF;
}

.mhi-site-content:has(.mhi-profile-edit) {
    background: #fff;
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 100px;
    overflow-y: auto;
    background: #7d9aa5;
    border: none;
    border-radius: 0;
}

.custom-dropdown>div {
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    padding: 1px 12px;
}

.custom-dropdown>div:hover {
    background: #9ab4be;
}

.mhi-claim-wrapper .mhi-purchase-section select option {
    background: #7D9AA5CC;
    color: #fff;
}

.mhi-claim-wrapper .mhi-purchase-section input.mhi-supplier-input {
    padding-right: 40px;
    text-overflow: ellipsis;
}

.mhi-breadcrumb a, .mhi-breadcrumb span {
    font-size: 12px;
    color: #2D414D;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    #mhi-claim-modal-body>div {
        overflow-x: auto;
    }

    #mhi-claim-modal-body>div table {   
        width: 100%;
        min-width: 600px;
    }
}
@media (max-width: 375px) {
.mhi-breadcrumb a, .mhi-breadcrumb span {
    font-size: 11px;

}
}