@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #5E5669;
    background: #F4F7FA;
    position: relative;
}

.pcoded-navbar .header-logo div.w-100 {
    background: #045184;
}

.pcoded-navbar .header-logo {
    height: 120px;
}

/*
    GAL 20230621: TXA-36: for some reason the navbar logo is set to disappear in two different ways
    when the nav bar is collapsed.  This happens in the CodedThemes "Datta Able" CSS
    https://codedthemes.com/demos/admin-templates/datta-able/ (theme_admin/assets/css/style.css).
    I think it's a bug because their current live demos do not exhibit this symptom.  So here
    I'm overriding the two rules that cause this.
*/
.pcoded-navbar.navbar-collapsed .header-logo img {
    transform: none;
    opacity: 1;
}

.card .card-header h5,
h5 {
    line-height: 20px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .25px;
    color: #5E5669;
    opacity: .87;
}

.spg-accent-color {
    color: #FF4B83;
}

.nav-tabs .nav-link:hover {
    color: #EB4B83;
}

/* Alternate buttons */
.btn-primary {
    background-color: #EB4B83;
    border-color: #EB4B83;
}

.btn-primary:hover {
    background-color: #FF4B83;
    border-color: #FF4B83;
}

.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem #FF4B83;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #EB4B83;
    border-color: #EB4B83;
    pointer-events: none;
}

.theme-bg {
    background: linear-gradient(-135deg, #28A745 0%, #28A745 100%);
}

.theme-bg:hover {
    background: linear-gradient(-135deg, #28B745 0%, #28B745 100%);
}

.theme-bg2 {
    background: linear-gradient(-135deg, #EB4B83 0%, #EB4B83 100%);
}

.theme-bg2:hover {
    background: linear-gradient(-135deg, #FF4B83 0%, #FF4B83 100%);
}

/* In table delete btn style*/
.theme-bg3,
.in_row_ajax_delete_button {
    background: linear-gradient(-135deg, #DC3545 0%, #DC3545 100%);
}

.theme-bg3:hover,
.in_row_ajax_delete_button:hover {
    background: linear-gradient(-135deg, #EC3545 0%, #EC3545 100%);
}

/* outline buttons */
.btn-outline-primary {
    color: #EB4B83;
    border-color: #EB4B83;
}

.btn-outline-primary:hover {
    background-color: #EB4B83;
    border-color: #EB4B83;
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #EB4B83;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    background-color: #EB4B83;
    border-color: #EB4B83;
}

/* links */
a {
    color: #EB4B83;
}

th a {
    color: #5E5669;
}

a:hover {
    color: #FF4B83;
}

/* Data Tables */
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th:first-child:before {
    background-color: #EB4B83;
}

th {
    color: #5E5669;
}

.page-link {
    color: #EB4B83;
}

.page-link:hover {
    color: #FF4B83;
}

.page-item.active .page-link {
    background-color: #EB4B83;
    border-color: #EB4B83;
}

table.billing-table th {
    text-align: center;
}

table.billing-table td {
    text-align: center;
    padding: 2px;
}

table.billing-table .form-group {
    margin: 0px;
}

table.billing-table div {
    padding-left: 2px;
    padding-right: 2px;
}

table.billing-table input {
    padding-left: 2px;
    padding-right: 2px;
}

table.billing-table select {
    padding-left: 2px;
    padding-right: 2px;
}

table.billing-table td i {
    color: #0d0e0f;
}

tr.supervisor-review-row {
    background-color: rgba(4, 169, 245, 0.05);
    border-bottom-color: #045184;
    border-bottom-width: 10px;
}

tr.subordinate-review-row {}

.facesheet-carousel-controls,
.attachment-carousel-controls {
    height: 20px;
}

.facesheet-carousel-controls .carousel-control-prev-icon,
.attachment-carousel-controls .carousel-control-prev-icon {
    position: absolute;
    bottom: 10px;
}

.facesheet-carousel-controls .carousel-control-next-icon,
.attachment-carousel-controls .carousel-control-next-icon {
    position: absolute;
    bottom: 10px;
}

.invert-colors {
    filter: invert(100%);
}

#facesheetCarousel .carousel-caption,
#attachmentCarousel .carousel-caption {
    padding-top: 0px;
    padding-bottom: 0px;
    bottom: 0px;
}

#facesheetCarousel .carousel-item-title,
#attachmentCarousel .carousel-item-title {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

#facesheetCarousel .carousel-item-content,
#attachmentCarousel .carousel-item-content {
    display: block;
    position: relative;
    z-index: 2;
    height: 800px;
    max-height: 64vh;
    width: auto;
    margin: 0 auto;
}

#facesheetCarousel .carousel-item-pdf,
#attachmentCarousel .carousel-item-pdf {
    width: 100%;
    text-align: center;
}

#facesheetCarousel .carousel-item-pdf-error,
#attachmentCarousel .carousel-item-pdf-error {
    color: red;
    line-height: 300px;
}

/* view action style */
tr.strikeout td:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #111;
    width: 100%;
}

.card-body table.view-action th {
    font-weight: bold;
    padding-right: 20px;
    padding-bottom: 5px;
}

.card-body table.view-action th::after {
    content: ':';
}

.card-body table.view-action td {
    padding-bottom: 5px;
}

td.multiple-files {
    /*color: #00ac9f;*/
}

.required>label:after {
    content: ' *';
    color: #C3232D;
}

.pcoded-header .navbar-nav>li {
    line-height: inherit;
}

.pcoded-content {
    padding-top: 0px;
}

.pcoded-main-container .breadcrumb {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Admin Controls */
@media (max-width: 767px) {
    .pcoded-main-container .form-control[type="date"] {
        height: calc(2.25rem + 2px);
    }
}

.horizontal-top-level-link {
    display: block;
}

.vertical-top-level-link {
    display: none;
}

@media (max-width: 1130px) {
    .horizontal-top-level-link {
        display: none;
    }

    .vertical-top-level-link {
        display: block;
    }
}

/**
Admin breadcrumb
 */
.pcoded-main-container .breadcrumb>li {
    margin-right: 10px;
}

.pcoded-main-container .breadcrumb {
    padding-left: 0;
}

.in_row_ajax_edit_button,
.in_row_ajax_view_button,
.in_row_ajax_delete_button {
    white-space: nowrap;
    margin-bottom: 4px;
    display: inline-block;
}

.edit_view_button {
    display: inline-flex;
}

span.select2-container .select2-selection--single {
    height: calc(2.55rem + 2px);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 41px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    line-height: 41px;
}

/* round corner in table button*/
.dq-round-btn.label {
    border-radius: 15px;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

/* CSS for Footer */
html {
    position: relative;
    min-height: 100%;
}


.edit_view_button .fa {
    margin-right: 2px;
    line-height: unset;
}

.verify_highlight {
    border-color: #f44236;
}

.verify_block_highlight {
    border: 1px solid #f44236;
}


@media only screen and (max-width: 576px) {
    section.breadcrumbs .container .breadcrumb .breadcrumb-item a {
        font-size: 12px;
        line-height: 14px;
        margin-top: 1.5vw;
        margin-bottom: 1.5vw;
    }
}

section.breadcrumbs .container .breadcrumb .breadcrumb-item:before {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14.5px;
    padding-right: 0;
    color: #031a30;
}

section.breadcrumbs .container .breadcrumb:last-child {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    color: #031a30;
    font-size: 14.5px;
}

@media (min-width: 576px) {
    section.breadcrumbs .container .breadcrumb:last-child {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    section.breadcrumbs .container .breadcrumb:last-child {
        font-size: 14px;
    }
}

@media only screen and (max-width: 576px) {
    section.breadcrumbs .container .breadcrumb:last-child {
        font-size: 1rem;
        line-height: 18px;
        margin-top: 1.5vw;
        margin-bottom: 1.5vw;
    }
}

.row {
    margin-bottom: 1rem;
}


div.no-padding {
    padding-left: unset;
    padding-right: unset;
}


.pagination-front-end {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    border: 2px solid #b0c0c6;
}

.pagination-front-end li.active {
    position: relative;
    display: block;
    /*padding: 0.25rem 0.75rem;*/
    /*margin-left: -1px;*/
    /*line-height: 1.25;*/
    color: #7b8b91;
    background-color: #fff;
    /*border: 1px solid #b0c0c6; */
}


.pagination-front-end li.disabled {
    position: relative;
    display: block;
    /*padding: 0.25rem 0.75rem;*/
    /*margin-left: -1px;*/
    line-height: 1.15 !important;
    color: #7b8b91;
    background-color: #fff;
    border-left: 3px solid #b0c0c6;
}

.pagination-front-end li.next.disabled {
    /*margin-left: 0.5rem;*/
    /*border-radius: 0.25rem;*/

}

.pagination-front-end .fa-angle-double-left {
    font-size: 12px;
}

.pagination-front-end .fa-angle-double-right {
    font-size: 12px;
}

.pagination-front-end .page-link {
    position: relative;
    display: block;
    /*padding: 0.25rem 0.75rem;*/
    margin-left: -1px;
    color: #2e84a5;
    background-color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.15 !important;
    font-size: 19px;
    border: none;
    border-left: 3px solid #b0c0c6;
    border-color: #b0c0c6;
}

.pagination-front-end .page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #7b8b91;
    border-color: #b0c0c6;
}

.pagination-front-end .page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(249, 142, 43, 0.25);
}

.pagination-front-end .page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.pagination-front-end .page-item:first-child .page-link {
    margin-left: 0;
    margin-right: 1px;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.pagination-front-end .previous.active.page-item .page-link {
    color: #2e84a5 !important;
    border-left: none;
}

.pagination-front-end .previous.disabled.page-item {
    border-left: none;
}

.pagination-front-end .page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.pagination-front-end .next.active.page-item .page-link {
    color: #2e84a5 !important;
}

.pagination-front-end .page-item.active .page-link {
    z-index: 1;
    font-family: "Montserrat";
    color: #7b8b91 !important;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.118;
    font-size: 19px;
    border: none;
    background-color: #fff !important;
    border-color: #b0c0c6 !important;
    border-left: 2px solid #b0c0c6;
}


.pagination-front-end .page-item.disabled .page-link {
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #fff !important;
    font-family: "Montserrat";
    color: #7b8b91;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1 !important;
    font-size: 19px;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

.pagination-lg .page-item.active:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item.active:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

.pcoded-navbar {
    background: #045184;
}

.pcoded-navbar .navbar-brand {
    background: #045184;
}

@media (max-width: 768px) {
    .pcoded-header {
        background: #045184;
    }
}

@media only screen and (max-width: 600px) {}

@media (max-width: 576px) {

    #view-policy .policy-details table tr th,
    #view-policy .policy-details table tr td {
        text-align: left;
        display: block;
        width: 100%;
        word-wrap: break-word;
    }
}

@media only screen and (min-width: 577px) {
    main.main-container {
        min-height: 250px;
        background: #fff;
        padding-top: 50px;
        margin-top: 0;
        padding-bottom: 1rem;
    }

    body.internal-page {
        background-color: #045184;
    }
}


/* Ensure fluid images are always fluid */
.img-fluid {
    height: auto !important;
}

strong {
    font-weight: bold;
}

.collapse.navbar-collapse.d-none {
    background-color: #045184;
}

.main-nav-breadcrumbs {
    color: #a9b7d0;
    background-color: #045184;
    margin-bottom: 0;
}

.navbar.pcoded-header.navbar-expand-lg {
    background-color: #045184;
}

.pcoded-header {
    z-index: 1028;
}

.login-user-horizontal {
    display: none;
}

@media screen and (max-width: 991px) {
    .login-user-horizontal {
        display: block;
    }
}

.form-group-checkbox .custom-control-label {
    padding-top: 3px;
}

.hidden {
    display: none !important;
}

.col-1p5,
.col-2p5,
.col-3p5,
.col-4p5,
.col-5p5,
.col-6p5,
.col-7p5,
.col-8p5,
.col-9p5,
.col-10p5 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-1p5 {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.col-2p5 {
    -ms-flex: 0 0 20.833333%;
    flex: 0 0 20.833333%;
    max-width: 20.833333%;
}

.col-3p5 {
    -ms-flex: 0 0 29.166667%;
    flex: 0 0 29.166667%;
    max-width: 29.166667%;
}

.col-4p5 {
    -ms-flex: 0 0 37.5%;
    flex: 0 0 37.5%;
    max-width: 37.5%;
}

.col-5p5 {
    -ms-flex: 0 0 45.833333%;
    flex: 0 0 45.833333%;
    max-width: 45.833333%;
}

.col-6p5 {
    -ms-flex: 0 0 54.166667%;
    flex: 0 0 54.166667%;
    max-width: 54.166667%;
}

.col-7p5 {
    -ms-flex: 0 0 62.5%;
    flex: 0 0 62.5%;
    max-width: 62.5%;
}

.col-8p5 {
    -ms-flex: 0 0 70.833333%;
    flex: 0 0 70.833333%;
    max-width: 70.833333%;
}

.col-9p5 {
    -ms-flex: 0 0 79.166667%;
    flex: 0 0 79.166667%;
    max-width: 79.166667%;
}

.col-10p5 {
    -ms-flex: 0 0 87.5%;
    flex: 0 0 87.5%;
    max-width: 87.5%;
}