@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
}

html, body {
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: normal;
    background: #fff;
    color: #000;
}

img {
    max-width: 100%;
}

a {
    color: #0473cc;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

.text-primary {
    color: #0473cc !important;
}

.btn-primary {
    background-color: #0473cc !important;
    border-color: #0473cc !important;
    border-radius: 6px;
    /* font-weight: 600; */
    min-width: 120px;
}

.btn-outline-primary {
    border-color: #0473cc !important;
    color: #0473cc;
    min-width: 120px;
    border-radius: 6px;
}

    .btn-primary:hover, .btn-outline-primary:hover {
        background-color: #005192 !important;
        border-color: #005192 !important;
    }

.custom-field {
    margin-bottom: 16px;
}

.add-truncate {
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 280px;
}

.drop-list {
    max-height: 260px;
    overflow-y: auto;
}

.form-check-input[type=radio] {
    background-color: #FFF;
    width: 22px;
    height: 22px;
    cursor: pointer;
    border: solid 1px #DBE7F0;
    box-shadow: 0px 4px 4px rgba(0, 43, 78, 0.1);
}

.form-check-input:checked {
    background-color: #0473cc !important;
    border-color: #002B4E !important;
}

.custom-radio .form-check-label {
    margin-top: 6px;
    margin-left: 8px;
}

.custom-radio .mb-1 {
    margin-bottom: 2px !important;
}

.form-check-label {
    cursor: pointer;
    margin-top: 3px;
}

.form-label {
    font-size: 12px;
    margin-bottom: 4px;
}

.form-control, .form-select {
    border-radius: 6px;
    border-color: #DBE7F0 !important;
    box-shadow: 0px 4px 4px rgba(0, 43, 78, 0.05) !important;
    font-size: 14px;
    min-height: 42px;
}

    .form-control:focus, .form-select:focus {
        box-shadow: none;
        border-color: #0473cc;
        box-shadow: 0px 4px 12px rgba(0, 96, 156, 0.10) !important;
    }

.form-control-icon {
    position: relative;
}

    .form-control-icon i {
        position: absolute;
        right: 1px;
        top: 25px;
        width: 41px;
        height: 41px;
        border-left: 1px solid #DBE7F0;
        background: #F4F8FC;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(51, 51, 51, 0.5);
        cursor: pointer;
        font-size: 18px;
    }

.address-filed.form-control-icon i {
    top: 23px;
    height: 40px;
}

.yn-switch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    border: solid 1px #DBE7F0 !important;
    box-shadow: 0px 4px 4px rgba(0, 43, 78, 0.05) !important;
    border-radius: 8px;
    padding: 0 12px;
    min-height: 42px;
}

    .yn-switch-container.yn-api {
        padding: 6.5px 12px;
    }

.llc-check {
    vertical-align: middle;
}

.form-switch {
    position: relative;
    margin: 0;
    min-height: auto;
    cursor: pointer;
}

    .form-switch .form-check-input {
        width: 52px;
        height: 25px;
        margin-top: 0;
    }

    .form-switch .form-check-label {
        position: absolute;
        right: 10px;
        font-weight: 600;
        font-size: 12px;
        margin-top: 2px;
    }

.form-check-label.active {
    right: 44%;
    color: #fff !important
}

.form-check-input:checked {
    background-color: #0C3C60;
    border-color: #0C3C60;
}

.form-check-input:focus {
    box-shadow: none;
}

.black-color {
    color: #000;
}
/* Login */
.login-wrapper {
    background: url(../images/login-bg.png) no-repeat left top #033b68;
    background-size: cover;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

    .login-wrapper .left {
        min-width: 520px;
        max-width: 720px;
        color: #FFF;
        font-size: 24px;
    }

        .login-wrapper .left h1 {
            font-size: 48px;
            margin-bottom: 30px;
            font-weight: bold;
        }

    .login-wrapper .right {
        min-width: 520px;
        max-width: 560px;
        padding: 60px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
        background: rgba(255, 255, 255, 1);
        border-radius: 16px;
    }

        .login-wrapper .right img {
            max-height: 60px;
            margin: auto;
        }

.login-form .form-control {
    min-height: 72px;
    padding: 24px 24px 24px 54px;
    border-radius: 12px;
}

.login-form .form-control-icon i {
    left: 24px;
    right: auto;
    top: 21px;
    width: auto;
    height: auto;
    border-left: 0;
    background: transparent;
    border-radius: 0;
    font-size: 20px;
}

.login-form .btn-lg {
    font-size: 18px;
    min-height: 60px;
    min-width: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
/* Login End */
/* Layout */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: #FFF;
    box-shadow: 0px 4px 12px rgba(0, 64, 93, 0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

    header .logo img {
        max-width: 180px;
    }

.user-dropdown {
    align-items: center;
    gap: 8px;
}

    .user-dropdown .dropdown-toggle span {
        width: 38px;
        height: 38px;
        border: solid 1px #0473cc;
        font-size: 16px;
        font-weight: 500;
        display: inline-block;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
        background-color: #0473cc;
    }

.custom-field .dropdown-menu {
    z-index: 1166;
}

.dropdown-menu {
    font-size: 14px;
    box-shadow: 0px 4px 12px rgba(0, 43, 78, 0.10);
    padding: 10px;
    border: none !important;
}

.address-input {
    height: 42px;
}

.user-dropdown .dropdown-item {
    padding-left: 30px;
    position: relative;
}

    .user-dropdown .dropdown-item i {
        position: absolute;
        left: 8px;
        top: 4px;
    }

.dropdown-item.active, .dropdown-item:active {
    background-color: #002B4E !important;
}

.user-dropdown .btn {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}

    .user-dropdown .btn:active, .btn-group > .btn:focus {
        border-color: #EBEBEB !important;
    }

.top-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 36px;
}

    .top-nav a {
        text-decoration: none;
        padding: 6px 12px;
        color: rgba(51, 51, 51, 0.65);
    }

        .top-nav a.active, .top-nav a:hover {
            box-shadow: 0 2px 4px rgba(71, 79, 114, 0.10);
            color: #0473cc;
        }

        .top-nav a i {
            margin-right: 4px;
        }

    .top-nav span {
        border-right: solid 1px rgba(51, 51, 51, 0.15);
        height: 18px;
    }

main {
    width: calc(100% - 32px);
    margin: 16px auto 0px auto;
}

footer {
    padding: 12px 0px 12px 0px;
    font-size: 13px;
    text-align: center;
    width: 100%;
}

.card {
    box-shadow: 4px 0px 20px rgba(0, 43, 78, 0.15);
    border: none !important;
    color: #022d4f !important;
}

.card, .card-header:first-child, .card-footer:last-child {
    background-color: #FFF;
    border-radius: 0;
}

.card-header .form-control, .card-header .form-select {
    min-height: 37.6px;
}

.card-header:first-child, .card-footer:last-child {
    border-color: #E2E8F1;
}

.card-header {
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 12px 16px;
}

.card-sub-header, .card-sub-header.text-dark {
    font-size: 16px;
    border-bottom: solid 1px #E2E8F1;
    color: #0473cc !important;
    padding-bottom: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

.card-footer {
    align-items: flex-end;
    text-align: end;
    justify-content: flex-end;
    display: flex;
    gap: 16px;
}

@media (min-width: 1400px) {
    .search-box {
        min-width: 420px;
    }
}

.search-box .btn, .search-box .btn:hover {
    background: #0473cc;
    -bs-btn-border-color: #0473cc;
}

.quotevault-table {
    max-height: calc(100vh - 284px);
    min-height: calc(100vh - 284px);
}

.pagination-block .page-item .page-link {
    margin: 0px 4px 0px 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    color: #002B4E;
    border: none;
}

.pagination-block .form-select {
    display: inline-block;
    width: 60px;
    border: solid 1px #D1DBE7;
    min-height: 28px !important;
    padding: 0 0px 0 4px;
}

.pagination-block .active > .page-link, .pagination-block .page-link.active {
    background: linear-gradient(45deg, #6dbcfc, #0473cc);
    border-color: transparent !important;
    color: #FFF;
}

.heading {
    font-size: 18px;
    font-weight: 600;
    color: #033b68;
}

.table thead th, .tbl-header {
    background-color: #E2F2FF;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 8px;
    white-space: nowrap;
    color: #333333;
}

.quotevault-table .table {
    border-collapse: separate;
    border-spacing: 0 10px;
    border-color: #dee2e6 !important;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: #dee2e6;
}

.quotevault-table .table thead {
    position: sticky;
    top: 0;
    z-index: 9;
}

.quotevault-table .table tbody tr {
    /* box-shadow: 0px 2px 1px rgba(91, 146, 190, 0.12); */
    box-shadow: 0px 4px 7px 2px rgba(91, 146, 190, 0.12);
}

    .quotevault-table .table tbody tr td {
        border: none;
        padding: 10px 8px;
        border-top: 1px solid #D9EEFF;
        border-bottom: 1px solid #D9EEFF;
    }

.quotevault-table .table tbody td:first-child:not(.agencies-table .table tbody td:first-child, .users-table .table tbody td:first-child) {
    padding-left: 30px;
    background: url(../images/dots.svg) no-repeat 12px 16px;
}

.quotevault-table .table thead th:first-child:not(.agencies-table .table thead th:first-child, .users-table .table thead th:first-child) {
    border-left: 2px solid #ECF6FF;
    padding-left: 30px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pac-container {
    z-index: 1165;
}

.address-input i {
    z-index: 1165;
    top: 1px !important;
}

.quotevault-table thead th:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.agencies-table .table thead th:first-child, .users-table .table thead th:first-child {
    border-left: 2px solid #EBF3F9 !important;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.quoted td:first-child {
    border-left: 2px solid #0473cc;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table.rating-factor-table tbody tr td:first-child {
    border-left: 2px solid #0473cc !important;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.quoted .text-quoted {
    color: #007BFF !important;
}

.quotevault-table tbody tr td:first-child {
    border-left: 1px solid #D9EEFF;
}

.quotevault-table tbody tr td:last-child {
    border-right: 1px solid #D9EEFF;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.quotevault-table tbody tr.bind td:first-child {
    border-left: 2px solid #28A745 !important;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.bind .text-bind {
    color: #28A745 !important;
}

.quotevault-table tbody tr.bound td:first-child {
    border-left: 2px solid #28A745;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.bound .text-bound {
    color: #28A745 !important;
}

.quotevault-table tbody tr.declined td:first-child {
    border-left: 2px solid #EF5466;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.declined .text-declined {
    color: #EF5466 !important;
}

.quotevault-table tbody tr.referred td:first-child {
    border-left: 2px solid #FFC107;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.referred .text-referred {
    color: #FFC107 !important;
}

.quotevault-table tbody tr.incomplete td:first-child {
    border-left: 2px solid #A0A0A0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.incomplete .text-incomplete {
    color: #A0A0A0 !important;
}

.quotevault-table tbody tr.indication td:first-child {
    border-left: 2px solid #6F42C1;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.indication .text-indication {
    color: #6F42C1 !important;
}

.quotevault-table tbody tr.submitted td:first-child {
    border-left: 2px solid #20C997;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.quotevault-table tbody tr.submitted .text-submitted {
    color: #20C997 !important;
}

.td-link-btn {
    width: auto;
    display: inline-block;
    font-size: 12px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(1, 113, 164, 0.1);
    font-weight: bold;
    padding: 2px 8px;
    min-width: 102px;
}

.link-text {
    color: #135E9B !important;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}

.action-btns a:not(.dropdown-menu .dropdown-item, .action-btns a.work-flow-icon) {
    /* display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  border: solid 1px rgba(10, 64, 104, 0.15);
  line-height: 24px;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(10, 64, 104, 0.1); */
    color: #0473CC;
    font-size: 17px;
}

.add-btn {
    position: relative;
    border: 1px solid #0473cc;
    padding: 5px 12px 5px 30px;
    border-radius: 6px;
    font-size: 15px;
    color: #0473cc;
    cursor: pointer;
}

    .add-btn:hover {
        background: #F4FBFF;
        box-shadow: 0 0 6px #0a3f683b;
    }

    .add-btn i {
        position: absolute;
        left: 10px !important;
        right: unset;
        font-weight: 900;
    }

.sidebar {
    background: #022d4f;
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 1041;
    transition: all 0.3s;
    height: 100%;
}

.menu-expand .sidebar {
    width: 4rem;
    /* transition: all .3s; */
}

.menu-expand .page {
    padding-left: 4rem;
    /* transition: all .3s; */
}

.menu-expand.active .sidebar {
    width: 16rem;
}

.menu-expand .sidebar li a span, .menu-expand .sidebar .new-quote-btn span {
    display: none;
    white-space: nowrap;
    opacity: 0;
    transition-delay: 1s;
}

.menu-expand .sidebar li {
    position: relative;
    text-align: left;
    margin: 0 12px;
}

.sidebar ul {
    list-style: none;
    /* margin: 0 12px; */
    margin: 0 0;
    padding: 0;
}

.sidebar li a {
    display: block;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    transition: all 0.5s;
    font-size: 15px;
    font-weight: 500;
    gap: 8px;
}

.sidebar li.menu a {
    margin-bottom: 0 !important;
}

.sidebar li a i {
    padding: 0;
    width: 36px;
    height: 36px;
    line-height: 35px;
    text-align: center;
    border-radius: 100%;
    font-size: 20px;
    border: 1px solid rgb(255 255 255 / 15%);
}

.sidebar li.active a i {
    background: linear-gradient(45deg, #6dbcfc, #0473cc);
    color: #fff;
    border: none;
}

.menu-expand.active .sidebar .nav-list span, .menu-expand.active .sidebar .new-quote-btn span {
    display: block;
    opacity: 1;
    transition: opacity 0.5s;
    transition-delay: 1s;
}

.menu-expand.active .sidebar + .page {
    padding-left: 16rem;
}

.sidebar ul li.nav-list.menu {
    margin-top: 0;
    margin-bottom: 52px;
    margin-left: 0;
    margin-right: 0;
}

    .sidebar ul li.nav-list.menu i {
        color: #FFF;
        border-radius: 0;
    }

.sidebar li.complete:after {
    content: "";
    height: 24px;
    position: absolute;
    width: 1px;
    background: #ffffff3f;
    top: 100%;
    left: 18px;
}

.sidebar li.complete a i {
    color: #FFF;
}

.insured-details {
    min-width: 900px;
}

/*.mailingAddress {
    display: none;
}*/

.construction-dropdown .dropdown-menu, .occupation-dropdown .dropdown-menu {
    max-height: 460px;
    overflow-y: auto;
}

.dropdown-option, .occupation-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 12px;
    cursor: pointer;
    border-bottom: 1px solid #edf1f5;
    transition: all .2s ease;
    background: #fff;
}

    .dropdown-option:hover, .occupation-option:hover {
        background: #f8fbff;
    }

.retailer .dropdown-option:hover {
    background: #fff;
}

.dropdown-option input, .occupation-option input {
    /* margin-top: 4px; */
    margin-top: 0;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
    /*    max-width: 450px;*/
    overflow: visible;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-word;
}

.option-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.5;
}

#constructionDropdown, #occupancyDropdown, #coapplicantOccupationDropdown, #coapplicantOccupationDropdown1 {
    padding-left: 16px;
}

    #constructionDropdown:focus, #occupancyDropdown:focus, #coapplicantOccupationDropdown:focus, #coapplicantOccupationDropdown1:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, .08);
    }

.selected-text, .selected-occupation {
    color: #000;
    font-size: 14px;
}

.new-quote-pages .card-body {
    min-height: calc(100vh - 260px);
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    color: #022d4f !important;
}

.alert-danger {
    --bs-alert-bg: #fff4f5;
    --bs-alert-border-color: #f7cbd0;
}

.alert-success {
    --bs-alert-bg: #effff8;
    --bs-alert-border-color: #b2dbc8;
}

.uw-container {
    /* border: solid 2px #04A6E1 !important; */
    position: relative;
}

.table-vehicle td {
    background: rgba(247, 247, 247, 1);
    color: rgba(16, 32, 55, 1);
    border: 0;
}

.w50p {
    width: 50px;
}

.drag-area {
    border: 2px dashed rgba(0, 151, 250, 0.25);
    background: #fff;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    color: rgba(16, 32, 55, 0.5);
    height: 60px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-shadow: 0px 0px 14px 0px #3669E82E;
    margin: 0px 0px 10px 0px;
    gap: 16px;
}

    .drag-area [type="file"] {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: 0;
        cursor: pointer;
    }

.btn-browse {
    text-decoration: underline;
    color: #00609C;
}

.fs-14 {
    font-size: 14px;
}

.file-block {
    /* display: flex; */
    width: 100%;
    /* justify-content: space-between;
  align-items: center; */
    padding: 4px 16px;
    border: solid 1px rgba(162, 182, 197, 0.35);
    margin-bottom: 8px;
}

    .file-block strong {
        min-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 150px;
    }

    .file-block i {
        color: #DE4549;
        cursor: pointer;
    }

.custom-check {
    display: flex;
    align-items: center;
}

    .custom-check input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        border-color: #a1bfd0;
        border-radius: 0;
        box-shadow: 0 4px 4px 0 rgba(0, 43, 78, 0.15);
        background: #F4FBFF;
    }

    .custom-check .form-check-input {
        background-image: none;
        position: relative;
    }

        .custom-check .form-check-input:checked {
            background-color: #fff !important;
        }

            .custom-check .form-check-input:checked::before {
                content: '';
                position: absolute;
                left: 9px;
                top: 3px;
                width: 6px;
                height: 11px;
                border: solid #002b4e;
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }

.includes-card, .details-card {
    box-shadow: 0px 4px 20px 0px rgba(0, 64, 93, 15%);
    border-radius: 12px;
    padding: 1rem;
}

    .includes-card .card-header {
        color: #022d4f;
        background: #ECF6FF;
        border-radius: 0;
        padding: 10px 20px;
        font-weight: 600;
    }

.medium-font {
    font-weight: 600;
}

.row-coverages {
    padding: 12px 1rem;
    border-bottom: 1px solid #BCD1EC;
}

.edit-id {
    position: absolute;
    right: 16px;
    top: 0;
}

.recommendations .neon {
    border-top: 2px solid;
    border-image-source: linear-gradient(90deg, rgba(199, 199, 199, 0) 0%, rgba(199, 199, 199, 0.5) 50%, rgba(199, 199, 199, 0) 100%);
    border-image-slice: 1;
}

.btn-check + .btn {
    color: #033b68;
    font-size: 14px;
    border-radius: 5px;
    background: none;
    border: 1px solid #cdddf1;
    min-width: 65px;
}

    .btn-check:checked + .btn, .btn-check + .btn:hover {
        background-color: #033b68;
        border-color: #033b68;
    }

footer img {
    max-height: 18px;
}

.insured-details .icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #ECF6FF;
    color: #005192;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.premium-summary-card {
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 43, 78, 0.08);
    border: 1px solid #E5EDF5;
}

    .premium-summary-card .table > :not(caption) > * > * {
        padding: 12px 16px;
    }

.fw-medium {
    font-weight: 500 !important;
}

.premium-left {
    width: 65%;
    padding: 24px;
    position: relative;
    color: #fff;
    background: linear-gradient(45deg, #6dbcfc, #0473cc);
}

.shield-bg {
    position: absolute;
    right: 45px;
    bottom: 0;
    opacity: 0.08;
    font-size: 160px;
    line-height: 1;
}

.premium-label {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.premium-left h2 {
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.premium-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 22px;
}

.premium-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.premium-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.premium-note .p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.premium-right {
    width: 58%;
    background: #fff;
}

.total-row {
    border-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}

    .total-row span, .total-row strong {
        color: #0473cc;
        font-size: 16px;
        font-weight: 700;
    }

@media (max-width: 991px) {
    .premium-summary-card {
        flex-direction: column;
    }

    .premium-left, .premium-right {
        width: 100%;
    }

        .premium-left h2 {
            font-size: 42px;
        }
}

i.ri-information-line {
    color: #0473cc;
}

.add-insured-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 8px;
    background: #ECF6FF;
    color: #005192;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

    .add-insured-btn i {
        font-size: 12px;
    }

.table-vehicle-wrapper .quotevault-table {
    max-height: unset;
    min-height: unset;
}

.disabled-link {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* .new-quote-btn {
  background: linear-gradient(45deg, #6dbcfc, #0473cc);
  font-size: 14px;
  margin: auto;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
  padding: 8px 12px !important;
  display: flex;
  align-items: center;
  padding: 8px 12px;

  position: absolute;
  bottom: 30px;
  left: 12px;
}

.menu-expand .sidebar .new-quote-btn {
    left: 6px;
    width: 82%;
    border-radius: 100px;
} */
.address-truncate {
    max-width: 100px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-expand.active .sidebar .new-quote-btn {
    border-radius: 8px;
}

.new-quote-btn:hover {
    color: #fff;
}

.new-quote-btn i {
    padding: 0;
    width: 36px;
    height: 36px;
    line-height: 35px;
    text-align: center;
    border-radius: 100%;
    font-size: 20px;
}

.new-quote-btn span {
    font-weight: 600;
}

.mw-220 {
    max-width: 220px;
}

.mw-200 {
    max-width: 200px;
}

.offcanvas.offcanvas-end {
    width: 540px;
}

.state-menu, .underwriter-menu {
    max-height: 320px;
    overflow-y: auto;
}

    .underwriter-menu, .state-menu li {
        list-style: none;
    }

.dropdown-menu.state-menu {
    max-height: 320px !important;
    overflow-y: auto !important;
    overflow-x: hidden;
}

.dropdown-menu.underwriter-menu {
    max-height: 320px !important;
    overflow-y: auto !important;
    overflow-x: hidden;
}

.all-agencies .dropdown-menu {
    min-width: 250px;
}

.status-dropdown {
    min-width: 120px;
}

.form-control:has(+ i),
.form-select:has(+ i) {
    padding-right: 52px !important;
}

.fab-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    position: fixed;
    bottom: 0px;
    /* right: 0; */
    z-index: 2030;
    left: 13px;
}

.fab-container-right {
    right: 10px;
}

.fab-container-left {
    left: 10px;
}
/* .fab-container:hover {
    height: 100%;
} */
.fab-container:hover .sub-button:nth-child(2) {
    transform: translateY(-50px);
}

.fab-container:hover .sub-button:nth-child(3) {
    transform: translateY(-100px);
}

.fab-container:hover .sub-button:nth-child(4) {
    transform: translateY(-150px);
}

.fab-container:hover .sub-button:nth-child(5) {
    transform: translateY(-260px);
}

.fab-container:hover .sub-button:nth-child(6) {
    transform: translateY(-320px);
}

.fab-container .fab {
    position: relative;
    height: 40px;
    width: 40px;
    background: linear-gradient(45deg, #6dbcfc, #0473cc);
    border-radius: 50%;
    z-index: 2;
    bottom: 25px;
    /* right: 5px; */
}

    .fab-container .fab .fab-content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        border-radius: 50%;
    }

        .fab-container .fab .fab-content i {
            color: white;
            font-size: 20px;
        }

.fab-container .sub-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 25px;
    /* right: 5px; */
    height: 40px;
    width: 40px;
    background: linear-gradient(45deg, #6dbcfc, #0473cc);
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .fab-container .sub-button a {
        height: 40px;
        width: 40px;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        font-size: 20px;
    }

.fab-content i::before {
    content: "\ef35"; /* ri-menu-4-line */
    transition: 0.3s ease;
}

.fab:hover .fab-content i::before {
    /* content: "\ef3a"; */
    content: "\ea12";
}

.fab-container .sub-button:hover {
    cursor: pointer;
}

.fab-container .sub-button i {
    color: white;
    padding-top: 6px;
}

.fab-container:hover {
    height: 30%;
}

.menu-toggle-icon i {
    font-size: 21px;
}

.menu-toggle-icon {
    background: white;
    width: 26px;
    height: 26px;
    text-align: center;
    box-shadow: 2px 2px 15px #e2e2e2;
    line-height: 26px;
    z-index: 1156;
    border-radius: 100%;
    position: absolute;
    top: 26px;
    cursor: pointer;
    /* left: 0; */
    z-index: 2;
    z-index: 1074;
    right: -13px;
}

.menu-expand.active .logo-small {
    display: none;
}

.menu-expand .logo-main {
    display: none;
}

.menu-expand .logo-small {
    display: block;
    max-width: 30px;
}

.menu-toggle-icon i::before {
    content: "\ea6e";
}

.menu-expand.active .menu-toggle-icon i::before {
    content: "\ea64"; /* left arrow */
}

.menu-expand.active .logo-main {
    display: block;
    max-width: 210px;
}

.menu {
    padding: 4px;
    background-color: #fff;
    margin-left: 0;
    margin-right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    border-right: 1px solid #dee2e6;
    justify-content: center;
}

.logo-title {
    font-weight: bold;
    font-size: 18px;
    color: #0473cc;
    padding-left: 20px;
}

.ri-delete-bin-7-line {
    color: #DC2626;
}

.success-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00A769;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* default visible ring */
    box-shadow: 0 0 0 10px rgba(0,167,105,.25);
    animation: pulse 2s infinite;
}

    .success-badge i {
        font-size: 30px;
        border: 4px;
        color: #fff;
        position: absolute;
        top: 9px;
        left: 15px;
        animation: tickPop .5s ease;
    }


/* pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 10px rgba(0,167,105,.25), 0 0 0 10px rgba(0,167,105,.35);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0,167,105,.25), 0 0 0 22px rgba(0,167,105,0);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(0,167,105,.25), 0 0 0 10px rgba(0,167,105,0);
    }
}

/* icon animation */
@keyframes tickPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-xl {
    --bs-modal-width: 1500px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    border-radius: 4px;
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    /*box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
    background-color: #c1c1c1;
    border-radius: 6px;
}

.shadow {
    box-shadow: 0px 4px 7px 2px rgba(91, 146, 190, 0.12) !important;
}

.agencies-table td:nth-child(2), .agencies-table td:nth-child(4), .text-truncate-td {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-autocomplete {
    position: absolute !important;
    width: auto !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 9999 !important;
    min-width: 225px !important;
}

.custom-autocomplete-menu {
    position: relative;
    align-items: flex-start;
}

.custom-autocomplete-menu {
    position: relative;
}

    .custom-autocomplete-menu ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 0 0 6px 6px;
        max-height: 200px;
        overflow-y: auto;
        list-style: none;
        margin: 0;
        padding: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,.1);
    }

        .custom-autocomplete-menu ul li {
            padding: 8px 12px;
            cursor: pointer;
        }

            .custom-autocomplete-menu ul li:hover {
                background: #f8f9fa;
            }

.custom-multi-selection .form-check-input[type=checkbox] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border-color: #a1bfd0;
    border-radius: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 43, 78, 0.15);
}

.custom-multi-selection .option-title {
    font-size: 14px;
}

.custom-multi-selection .dropdown-option {
    padding: 12px 18px;
}

.chip {
    background: #e9efff;
    padding: 3px 30px 3px 10px;
    border-radius: 25px;
    position: relative;
    font-size: 12px;
    line-height: 23px;
}

.remove-chip {
    width: 20px;
    display: inline-block;
    text-align: center;
    position: absolute;
    right: 6px;
    top: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.custom-multi-selection button {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.custom-multi-selection .search-input, .construction-dropdown .search-input, [data-name="AgencyExcelmodal"] .search-input {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px 0 18px;
}

[data-name="AgencyExcelmodal"] .selected-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100px;
}

.modal-footer {
    justify-content: center;
}

.underwriteriad-dropdown .dropdown-menu {
    min-width: 250px;
}

.sidebar li.complete:last-child:after {
    display: none
}

/*.quotevault-table .table tbody tr td {
    text-wrap: nowrap;
}*/

.file-block .link-text, .file-block .ri-file-text-line {
    color: #0473cc !important;
    text-decoration: none !important;
}

.file-block .ri-file-text-line {
    font-size: 18px;
}

.file-block .form-select {
    min-height: auto;
}

.view-mode {
    display: flex;
    align-items: center;
    gap: 10px;
    /* flex-wrap: wrap; */
}

.input-group-custom {
    position: relative;
}

.view-mode .form-control {
    width: 160px;
    height: 20px;
    min-height: 20px;
    padding: 0 10px;
    border: none;
    outline: none;
    background: none;
    border-radius: 0;
    font-weight: 700;
    box-shadow: none !important;
}

    .view-mode .form-control:focus {
        box-shadow: none;
        border-color: none;
        box-shadow: none !important;
    }

.view-mode .form-control {
    border: none;
    border-bottom: 0;
    background: none;
    box-shadow: none !important;
}

    .view-mode .form-control.active {
        border-bottom: 2px solid #0473cc;
    }

#displayText {
    white-space: nowrap;
}

.icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer !important;
    pointer-events: auto !important;
    font-size: 18px;
    background: transparent;
    color: #0473cc;
    border: 1px solid #fff;
}

.success {
    background: #d1fae5;
    color: #059669;
}

.danger {
    background: #fee2e2;
    color: #dc2626;
}

.action-icons {
    display: flex;
    gap: 6px;
}

.view-mode,
.action-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mas-label {
    font-size: 10px;
    vertical-align: middle;
    margin-top: 0;
}

.action-icons {
    margin-left: 6px;
}

#amountInput::placeholder {
    color: #fff;
    font-weight: 700;
    opacity: 1;
}

@media (max-width: 1024px) {
    .status-dropdown {
        min-width: 150px;
    }

    .user-accounts-section .search-box {
        min-width: 300px;
    }

    header .insured-details {
        min-width: auto;
    }
}

@media (max-width: 1023px) {
    header .insured-details {
        display: none !important;
    }
}

@media(max-width:767px) {
    header .insured-details, header .menu-icon {
        display: none !important;
    }

    .card-footer {
        display: flex;
        flex-direction: column;
    }

        .card-footer .btn {
            width: 100%;
        }

    .menu-expand.active .sidebar + .page {
        padding: 0;
    }

    main {
        width: 100%;
        margin: 16px auto 0px auto;
    }

    .logo-title {
        font-size: 12px;
        padding-left: 12px;
    }

    .action-btns .me-2 {
        margin-right: 0 !important;
    }

    .filtersection {
        width: 100%;
    }

    .mw-200 {
        max-width: 100%;
    }

    .pagination-block .page-item .page-link {
        margin: 0px 1px 0px 1px;
        width: 24px;
        height: 25px;
        font-size: 12px;
    }

    .user-accounts-section .search-box {
        min-width: auto;
    }

    .card-footer.loss-history-pagination {
        padding-right: 0;
        justify-content: center !important;
        text-align: center !important;
        align-items: center !important;
    }

        .card-footer.loss-history-pagination .pagination-block {
            flex-direction: column !important;
            justify-content: center !important;
        }

    .thank-you-card h4 {
        text-align: center;
        margin-top: 10px;
    }

    .thank-you-card .gap-3 {
        gap: 8px !important;
    }

    .thank-you-card .pt-3 {
        padding-top: 0 !important;
    }

    .thank-you-card .mt-5 {
        margin-top: 25px !important;
    }

    .fs-14 {
        font-size: 12px;
    }

    .drag-area {
        gap: 9px;
        padding: 6px 10px;
        font-size: 14px;
    }

    .quotevault-table .table thead th, td {
        text-align: center;
    }

    .file-block {
        font-size: 12px;
    }

    .premium-label {
        font-size: 14px;
    }

    .premium-left h2 {
        font-size: 26px !important;
    }

    .premium-summary-card .table > :not(caption) > * > * {
        text-wrap: nowrap;
    }

    .total-row span, .total-row strong {
        font-size: 14px;
    }

    .regenerate-buttons {
        flex-direction: column;
        gap: 6px;
    }

        .regenerate-buttons .btn {
            font-size: 13px;
        }

    .file-block strong {
        min-width: 100px;
        width: 100px;
    }
}

@media only screen and (min-width:768px) and (max-width:1023px) {

    .filtersection {
        flex-wrap: wrap !important;
    }

        .filtersection .add-btn {
            width: auto !important;
            flex: 0 0 auto;
        }

        .filtersection .custom-field {
            width: auto !important;
            flex: 0 0 auto;
        }

    .search-box {
        flex: 1 1 100%;
    }

    .pagination-block .gap-2 {
        gap: 3px !important;
    }
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.json-data pre {
    border: 0;
    background: none;
}

.json-data.active {
    display: block;
    width: 137%;
}

.json-data pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



.scroll {
    max-height: 320px !important;
    overflow-y: auto !important;
}

.ri-spin {
    display: inline-block;
    animation: ri-spin 1.5s linear infinite;
}

@keyframes ri-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.login-form .btn-lg .ri-loader-2-fill {
    font-size: 26px;
}

.profile-icon {
    font-size: 20px;
    background: #0473cc;
    width: 35px;
    text-align: center;
    border-radius: 50%;
    height: 35px;
    line-height: 35px;
    color: #fff;
}

.center-message {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: red;
    white-space: nowrap;
}


.address-input:has(.field-validation-error) {
    min-height: 60px;
}

.address-input:has(.field-validation-error) {
    min-height: 60px;
}

.address-input .field-validation-error {
    z-index: 1165;
    position: relative;
    bottom: -46px;
}

.json-list ul {
    padding-left: 5px;
}

a.json-btn {
    display: block;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 4px;
}

    a.json-btn.selected-json {
        color: #0473cc;
        font-weight: 600;
        background-color: #e2f2ff;
    }


.json-data {
    padding: 10px;
    flex-grow: 1;
    background: #f9f9f9;
    border-radius: 10px;
    height: calc(100vh - 15rem);
    max-height: calc(100vh - 15rem);
    overflow: auto;
    display: none;
}
    /*.json-data {
    padding: 10px;
    flex-grow: 1;
    background: #f9f9f9;
    border-radius: 10px;
    height: calc(100vh - 3rem);
    max-height: calc(100vh - 15rem);
    overflow: auto;
    display: none;
    z-index: 12;
}*/

    .json-data.active {
        display: block;
    }


.json-list li a {
    text-decoration: none;
    color: #333;
    padding: 5px;
    display: block;
}

.copy-json-btn {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #6b7280;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
    z-index: 10;
}

    .copy-json-btn.skeleton-active {
        z-index: -1;
    }

    .copy-json-btn i {
        font-size: 20px;
    }

    .copy-json-btn:hover {
        background: #e8e8e8;
        color: #111827;
    }

    .copy-json-btn.copied i {
        color: #6b7280;
    }

        .copy-json-btn.copied i::before {
            content: "\eb7b";
        }

        .copy-json-btn.copied i::before {
            content: "\eb7b";
            font-size: 24px;
        }

.json-skeleton {
    padding: 20px;
    height: 100%
}

.control-overflow {
    overflow: hidden;
}

.info-icon {
    cursor: pointer;
    vertical-align: middle;
    font-size: 14px;
}

.table-scroll thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #E2F2FF;
}

.table-scroll {
    max-height: 110px;
    overflow-y: auto;
}

.skeleton-line {
    height: 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    background: linear-gradient( 90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75% );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.w-100 {
    width: 100%
}

.w-95 {
    width: 95%
}

.actions-card {
    border: solid 1px #0473cc !important;
    box-shadow: 0px 4px 4px rgba(0, 43, 78, 0.05) !important;
    border-radius: 8px;
    padding: 12px 12px;
}

.quotevault-table.table-scroll {
    max-height: 170px;
    min-height: 170px;
    overflow-y: auto;
    padding-right: 6px;
}

.submission {
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    margin-bottom: 12px;
}

.dropdown.premiumdropdown .drop-options {
    background: #3e9ae4;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    display: inline-block
}

.readonly-section {
    pointer-events: none;
    opacity: 1;
    background: #e9ecef;
}

    .readonly-section input,
    .readonly-section select,
    .readonly-section textarea,
    .readonly-section button {
        background: #e9ecef !important;
    }

.modal-content {
    margin-top: 80px;
}

.enhancement-card .table-responsive {
    min-height: 200px;
}

.btn.btn-primary.btn-template {
    min-width: unset !important;
}

.view-mode:has(.field-validation-error:not(:empty)) {
    align-items: flex-start;
}

.view-mode .input-group-custom .field-validation-error {
    font-size: 13px;
}

.view-mode .form-control.input-validation-error {
    border: none !important;
    border-bottom: 1px solid #dc3545 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.trigger-email-modal {
    max-width: 600px;
    /*transition: max-width .25s ease;*/
}

    .trigger-email-modal.trigger-email-expanded {
        max-width: 1160px;
    }

.text-truncate-td.mw-400 {
    max-width: 400px;
}

.agency-item {
    cursor: pointer;
    padding: 6px 8px 6px 28px;
    position: relative;
}

    .agency-item .form-check-input {
        margin-left: -1.25rem;
    }

    .agency-item.active-agency {
        background: #d7ebfb;
        color: #0d6efd;
        font-weight: 600;
    }

.agency-list, .pending-users-table {
    /* height: 420px;*/
    min-height: calc(100vh - 418px) !important;
    max-height: calc(100vh - 418px) !important;
    overflow-y: auto;
    overflow-x: hidden;
}

[data-name="InvitationSelectionStep"] {
    min-height: 478px;
}
/* .agency-list{
        height:calc(100vh - 418px) !important;
    }*/
.review-email-modal .modal-content {
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.review-email-modal .modal-body {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.review-users-table {
    width: 100%;
    table-layout: fixed;
}

    .review-users-table th:first-child,
    .review-users-table td:first-child {
        width: 300px;
    }

    .review-users-table th:last-child,
    .review-users-table td:last-child {
        width: auto;
    }

    .review-users-table th,
    .review-users-table td {
        vertical-align: middle;
    }

.invitation-header {
    display: flex;
    flex-wrap: wrap;
    /*  align-items: flex-start;*/
    align-items: center;
}

.invitation-user-scope {
    width: auto;
    margin-top: 0;
    margin-left: auto;
    order: 0;
}

.invitation-header .btn-close {
    margin-left: auto;
}

.trigger-email-expanded .invitation-header {
    flex-wrap: nowrap;
    align-items: center;
}

.trigger-email-expanded .invitation-user-scope {
    width: auto;
    margin-top: 0;
    margin-left: auto;
    order: 0;
}

.invitation-user-scope .form-check-label {
    white-space: nowrap;
}

/*#TriggerUserInvitationModal.modal {
    overflow-y: hidden;
}*/
.invitation-user-scope {
    font-size: 13px;
    gap: 16px;
}

    .invitation-user-scope .form-check {
        margin-bottom: 0;
    }

    .invitation-user-scope .form-check-input {
        transform: scale(.7);
        margin-top: .15rem;
    }

    .invitation-user-scope .form-check-label {
        font-size: 13px;
        white-space: nowrap;
        margin-left: 2px;
    }

.email-automation-modal {
    max-width: 600px;
    transition: max-width .25s ease;
}

    .email-automation-modal.email-automation-expanded {
        max-width: 850px;
    }

.automation-btn.form-check-input {
    transform: scale(.7);
    margin-top: .15rem;
}

.users-card .header-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.users-card .search-box {
    width: 280px;
}

.users-card .all-agencies {
    width: 220px;
}

.users-card .status-dropdown {
    width: 160px;
}

    .users-card .all-agencies .form-select,
    .users-card .status-dropdown .form-select {
        width: 100%;
        min-width: unset !important;
    }


@media (max-width:1024px) {

    .users-card.card-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

        .users-card.card-header > div:last-child {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 10px;
        }

    .users-card .search-box {
        width: 260px;
    }

    .users-card .all-agencies {
        width: 220px;
    }

    .users-card .status-dropdown {
        width: 160px;
    }

    .users-card .add-btn,
    .users-card .btn-template {
        white-space: nowrap;
    }
}


@media (max-width:768px) {

    .users-card .card-header {
        gap: 15px;
    }

        .users-card .card-header > div:last-child {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

    .users-card .search-box {
        width: 100%;
    }

    .users-card .all-agencies,
    .users-card .status-dropdown {
        width: calc(50% - 5px);
    }

    .users-card .add-btn,
    .users-card .btn-template {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    [data-name="InvitationSelectionStep"] {
        min-height: 400px;
    }

    .trigger-email-modal .modal-body {
        overflow-y: auto;
        height: 450px;
    }

    .agency-list, .pending-users-table {
        overflow-x: auto;
    }

    .review-users-table {
        width: 100%;
        table-layout: auto;
    }

        .review-users-table th:first-child, .review-users-table td:first-child {
            width: auto;
            text-align: left;
        }

    .quotevault-table .table {
        white-space: nowrap !important;
    }

        .quotevault-table .table tbody tr td {
            text-align: left;
        }
}


@media (max-width:576px) {

    .users-card.card-header {
        gap: 15px;
    }

        .users-card.card-header > div:last-child {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 10px;
        }

    .users-card .search-box,
    .users-card .all-agencies,
    .users-card .status-dropdown,
    .users-card .add-btn,
    .users-card .btn-template {
        width: 100%;
    }

    .users-card .add-btn,
    .users-card .btn-template {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .users-card .btn-text {
        display: inline;
    }

    .users-card .search-box .form-control,
    .users-card .search-box .btn {
        height: 42px;
    }
}
