﻿/* 
    fp core design
    Last Updated 1/24/2025
*/

/****************** OVERRIDE BOOTSTRAP *********/
:root {
    --blue: #3257C9; /* color-blue-50 */
    --indigo: #6610f2; /*  */
    --purple: #643CC7; /* color-purple-50 */
    --pink: #e83e8c; /*  */
    --red: #B80A1D; /* color-red-50 */
    --orange: #BD3C00; /* color-orange-50 */
    --yellow: #7B581B; /* color-yellow-50 */
    --green: #007C58; /* color-green-50 */
    --teal: #097387; /* color-teal-50 */
    --cyan: #17a2b8; /*  */
    --white: #fff; /*  */
    --gray: #6c757d; /*  */
    --gray-dark: #343a40; /*  */
    --primary: #121212; /* color-neutral-80 */
    --secondary: #424243; /* color-neutral-60 */
    --success: #007C58; /* color-green-50 */
    --info: #3257C9; /* color-blue-50 */
    --warning: #7B581B; /* color-yellow-50 */
    --danger: #B80A1D; /* color-red-50 */
    --light: #f8f9fa; /*  */
    --dark: #343a40; /*  */
    --breakpoint-xs: 0; /*  */
    --breakpoint-sm: 576px; /*  */
    --breakpoint-md: 768px; /*  */
    --breakpoint-lg: 992px; /*  */
    --breakpoint-xl: 1200px; /*  */
}

@font-face {
    font-family: 'Overpass';
    src: url('../fonts/Overpass/Overpass-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/material-symbols/MaterialSymbolsRounded.woff2') format('woff2'), 
         url('../fonts/material-symbols/MaterialSymbolsRounded.woff') format('woff'), 
         url('../fonts/material-symbols/MaterialSymbolsRounded.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Material Symbols Fill';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/material-symbols/MaterialSymbolsRoundedFilled.woff2') format('woff2'), 
         url('../fonts/material-symbols/MaterialSymbolsRoundedFilled.woff') format('woff'), 
         url('../fonts/material-symbols/MaterialSymbolsRoundedFilled.ttf') format('truetype');
    font-display: swap;
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded', sans-serif;
    display: inline-block;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    font-size: 24px;
}
.material-symbols-fill {
    font-family: 'Material Symbols Fill', sans-serif;
    display: inline-block;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    font-size: 24px;
}

html, body {
    height: auto;
}

body {
    font-family: 'Overpass';
    color: var(--primary);
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #F7F7F7;
}

::selection, ::-moz-selection {
    background-color: var(--blue);
    color: #ffffff;
}

.container {
    margin: 80px auto 0;
    max-width: none !important;
    padding: 0 25px !important;
}

#page-header {
    padding: 10px 0;
}

.labelM {
    line-height: inherit !important;
}

/* Table Styling */
.dt-length.custom-select-wrapper .dt-length-icon {
    top: 50%;
}
.dt-length.custom-select-wrapper .custom-select-sm {
    padding-right: 30px;
    padding-top: 5px;
    margin-left: 5px;
    background: #fff;
    font-weight: 700;
    color: #3257C8;
    margin-right: 0;
}

.page-link, .page-item.disabled .page-link {
    background-color: transparent;
}

.dt-orderable-asc .dt-column-order,
.dt-orderable-desc .dt-column-order {
    right: 1em;
    font-family: 'Material Symbols Rounded';
    content: 'unfold_more'; /* Default sorting icon */
    font-size: 1.8em;
}

.dt-info {
    
}

table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead {
    background-color: #F7F7F7;
}

table.dataTable thead > tr > th:first-child {
    border-top-left-radius: 10px;
}

table.dataTable thead > tr > th:last-child {
    border-top-right-radius: 10px;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
    content: 'keyboard_arrow_up';
}

table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
    content: 'keyboard_arrow_down';
}

table.clickable-table {

}

table.clickable-table tbody tr {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

table.clickable-table tbody tr:hover {
    background-color: #E6E6E6;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
    border-bottom: none !important;
}

table.dataTable > tbody > tr.child span.dtr-title {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
}

table.dataTable.table > tbody > tr.selected > * {
    box-shadow: inset 0 0 0 9999px #EBEFFF;
    color: var(--primary);
}

.table {
    background-color: #fff !important;
    border-radius: 10px !important;
    border-collapse: separate !important;
    /*overflow: hidden !important;*/
    border: 1px solid #dee2e6 !important;
}

.table-action-btn {
    padding: 0.375rem 0.30rem !important;
}

.table td, .table th {
    vertical-align: middle !important;
}

.table th {
    border-top: none !important;
    border-bottom: none !important;
}

.page-item.active .page-link {
    background-color: var(--blue);
    border-color: var(--blue);
}
.page-link {
    color: var(--blue);
}

/* Side Panel Styling */
.side-panel {
    position: fixed;
    top: 0;
    right: -582px;
    width: 582px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1042;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .side-panel {
        top: 100%;
        right: 0;
        width: 100%;
        height: auto;
        min-height: 100vh;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
        border-radius: 15px;
        overflow-y: auto;
        overflow-x: hidden;
        margin-bottom: 40px;
    }

    .side-panel.open {
        position: absolute;
        top: 65px;
    }
}

/* Open State */
.side-panel.open {
    right: 0;
    transform: translateY(0);
}

.panel-body {
    flex-grow: 1;
    background-color: white;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
}

#custom-overlay {
    z-index: 1041;
}

/* Panel header */
.panel-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 50px;
    margin-top: 10px;
    overflow: hidden;
}

.panel-title {
    display: flex;
    align-items: center;
    text-align: left;
    height: 40px;
    width: 100%;
    padding-left: 15px;
}

.panel-body {
    padding: 15px;
}

.panel-close-symbol {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    height: 40px;
    width: 100%;
    font-size: 1.5rem;
    padding-right: 15px;
    cursor: pointer;
}

.side-panel .form-group {
    margin-bottom: 1rem;
}

#validationValue {
    display: block;
}

/* Forms */
.form-control.invalid, .form-control.invalid:active {
    border: solid 1px var(--red) !important;
}

.error-message {
    color: var(--red);
    display: none;
    width:100%;
}

.error-message::before {
    content: 'error';
    font-family: 'Material Symbols Fill';
    margin-right: 0.5rem;
    color: var(--red);
    display: inline-block;
    vertical-align: middle;
}

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
    color: var(--primary) !important;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select {
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    width: 100%;
}

.dropdown-arrow {
    position: absolute;
    top: 70%;
    right: 0.75rem;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1.5rem;
    color: #6c757d;
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #ced4da !important;
    background-image: none;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #3257C8;
    border-width: 2px;
    outline: 0;
    box-shadow: none;
}

/* Checkboxes */
.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-top: 0;
    margin-right: 0.5rem;
}

.form-check-label {
    padding-top: 2px;
}

input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid var(--blue);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

input[type=checkbox]:checked {
    background-color: var(--blue);
    border-color: var(--blue);
}

input[type=checkbox]:checked::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    box-sizing: border-box;
}

    input[type=checkbox]:focus {
        outline: 2px solid var(--blue);
        outline-offset: 1px;
    }

/* Disabled state */
input[type=checkbox]:disabled {
    background-color: #e9ecef;
    border-color: #ced4da;
    cursor: not-allowed;
    opacity: 0.65;
}

input[type=checkbox]:disabled:checked::before {
    border-color: #d6d8db;
}

/* Radio Radio Radio */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #6c757d;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}


input[type="radio"]:checked {
    background-color: #fff;
}

input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--blue);
    border-radius: 50%;
}

input[type="radio"]:focus {
    outline: 2px solid var(--blue);
    outline-offset: 1px;
}

input[type="radio"]:disabled {
    background-color: #AEAFB2;
    border-color: #8C8C8C;
    cursor: not-allowed;
    opacity: 0.65;
}

input[type="radio"]:disabled:checked::before {
    background-color: #d6d8db;
}

.custom-control-label::before {

}

.custom-control-input ~ .custom-control-label::before, .custom-control-input ~ .custom-control-label::after {
    cursor: pointer;
}

.custom-control-input ~ .custom-control-label::after {
    border-color: var(--blue);
}
.custom-control-input:target ~ .custom-control-label::before, .custom-control-input:target ~ .custom-control-label::after {
    background-color: var(--blue) !important;
    border-color: var(--blue) !important;
    box-shadow: none !important;
}

.custom-control-input:active ~ .custom-control-label::before, .custom-control-input:active ~ .custom-control-label::after {
    background-color: var(--blue) !important;
    border-color: var(--blue) !important;
    box-shadow: none !important;
}
.custom-control-input:not(:checked):focus ~ .custom-control-label::before {
    border-color: var(--blue);
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--blue);
    background-color: var(--blue);
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: unset;
    border-color: var(--blue);
}

.position-relative {
    position: relative;
}

/* Tabs */
ul.instruction-list li {
    list-style-type: disc !important;
    padding-left: 20px;
}

.instruction-list ul li {
    list-style-type: circle !important;
    padding-left: 20px;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: #6c757d;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
}

.nav-tabs .nav-link.active {
    border: none;
    color: #3257C8 !important;
    border-bottom: 4px solid #3257C8 !important;
    background-color: transparent !important;
}

.nav-tabs .nav-link:hover {
    color: #3257C8;
}

.tab-content {
    padding-top: 20px;
}

.nav-tabs {
    border-bottom: #AEAFB2 1px solid;
}

.nav-tabs .nav-link {
    background-color: transparent; 
    color: #6c757d;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
}

.nav-tabs .nav-link.active {
    border: none;
    color: #3257C8 !important; 
    border-bottom: 4px solid #3257C8 !important;
    background-color: transparent !important;
}

.nav-tabs .nav-link:hover {
    color: #3257C8; 
}

.tab-content {
    padding-top: 20px;
}
/* Remove default Bootstrap dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Dropdown for Mobile */
.tab-dropdown {
    position: relative;
}

.nav-tabs.d-md-none .dropdown-tab .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
}

.nav-tabs.d-md-none .dropdown-tab .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.nav-tabs.d-md-none .dropdown-tab.show .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 10px 15px;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Responsive Behavior */
@media (min-width: 768px) {
    .nav-tabs.d-md-none {
        display: none;
    }
}
@media (max-width: 576px) {
    .add-plan-wrapper {
        padding: 0 15px 15px 15px;
    }
}

.action-dropdown-arrow {
    transition: transform 0.2s;
}

.action-dropdown.show .action-dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown .dropdown-menu {
    cursor: pointer;
}
/* Hide the native dropdown arrow */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    padding-right: 2.5rem;
    width: 100%;
}

/* Custom dropdown icon */
.dropdown-icon {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1.5rem;
    color: #6c757d;
    z-index: 1;
}

select.form-control:focus + .dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
    color: #000;
}

.input-group:focus-within .input-group-prepend .input-group-text {
    border-color: #3257C8;
    border-width: 2px;
    border-right: none;
    padding: .275rem .75rem;
}

.input-group-prepend .input-group-text {
    border-color: #ced4da;
    border-right: none;
    color: #6c757d;
    background-color: transparent;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.form-action-delete {
    order: 1;
}

.form-actions-edit {
    order: 2;
}

.form-action-cancel {
    order: 3;
}

.form-action-save {
    order: 4;
}

@media (max-width: 576px) {
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions-edit {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .form-actions-edit .form-action-cancel {
        display:none;
    }

    .form-action-delete {
        margin-top: 15px;
        order: 3;
    }

    .form-action-cancel {
        order: 2;
    }

    .form-action-save {
        margin-top: 10px;
        order: 1;
    }

    .form-actions-edit .form-action-save {
        width: 100%;
    }

}

.action-btn {
    width: 32px !important;
    height: 32px !important;
    padding: 3px !important;
}

.action-btns {
    cursor: pointer;
}

/* Badges */

.badge.badge-success {
    background-color: #DFFBE4 !important;
    color: #121212 !important;
    padding: 4px 8px !important;
}

.badge.badge-secondary {
    background-color: #fff !important;
    color: #121212 !important;
    padding: 4px 8px !important;
    border-radius: 4px;
    border: solid 1px #D1D1D1;
}

.filter-badge {
    background-color: #fff;
    color: #121212;
    padding: 2px 6px;
    border-radius: 50%;
}

@media (max-width: 576px) {
    .side-panel {
        width: 100vw;
    }
    .modal-dialog {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        margin: 0;
        pointer-events: auto;
    }
}

/* Table */
.name-column {
    width: 100%;
    white-space: nowrap;
}

.auto-column {
    width: auto;
    padding: 0 25px !important;
    white-space: nowrap;
}

.table-wrapper table.dataTable thead > tr > th:last-child {
    border-top-right-radius: unset !important;
}

.table-wrapper table.dataTable thead > tr > th:first-child {
    border-top-left-radius: unset !important;
}

.table-wrapper table.table.clickable-table.dataTable {
    border-radius: 0 !important;
}

.table-wrapper .dt-length.custom-select-wrapper, .dt-paging {
    padding: 8px;
}

.table-wrapper .filter-form {
    border: 1px solid #dee2e6;
    border-bottom: none;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
}

@media (max-width: 576px) {
    div.dt-container div.dt-layout-table > div, .mobile-pad-remove {
        padding: 0 !important;
    }

    .clickable-table.dataTable {
        border-top: none !important;
    }

    body div.container {
        padding: 0 !important;
    }

    table.dataTable tr:first-of-type td:first-of-type {
        border-top: none !important;
    }

    .clickable-table.dataTable thead {
        display: none;
    }

    .material-symbols-rounded.row-icon {
        position: absolute;
        right: 16px;
        top: 12px;
        font-size: 24px;
        color: #6c757d;
    }

    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mobile-row {
        position: relative;
        padding-right: 40px;
        margin-bottom: 8px;
        min-height: 35px;
    }
}

.modal-backdrop.show {
    display: block;
    opacity: 0.3;
}

a {
    color: var(--blue);
}

a:hover {
    color: #617DE0; /* color-blue-40 */
    text-decoration: underline;
}

a:focus {
    color: var(--blue); /* color-blue-50 */
}

a:active {
    color: #1C33BA; /* color-blue-60 */
    text-decoration: underline;
}

label {
    margin-bottom: 0;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--blue); /* color-blue-50 */
}

input[type="text"], input[type="password"] {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #D1D1D1;
}

/* for legacy pages */

body #countdown-container ~ div, body div#pnlCriteria > div {
    left: 250px !important;
    padding: 0 30px;
}

body.collapsed #countdown-container ~ div, body.collapsed div#pnlCriteria > div {
    left: 30px !important;
    padding: 0 30px;
}

/* buttons */
.btn:focus, .btn.focus, .btn:hover {
    box-shadow: unset !important;
    border: 1px;
}

.btn:disabled, .btn.disabled {
    color: #8C8C8C;
    background-color: #D1D1D1;
    border: 1px solid #D1D1D1;
    box-shadow: unset !important;
    pointer-events: none;
    cursor: default;
}

.btn-primary, .btn-primary:focus, .show > .btn-primary.dropdown-toggle {
    color: var(--white);
    background-color: var(--blue);
    border-radius: 8px;
    border: 1px solid var(--blue);
}

.btn-primary:hover {
    background-color: #1C34BA;
    border: 1px solid #1C34BA;
    box-shadow: unset !important;
}

.btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active {
    background-color: #0D1477;
    border: 1px solid #0D1477;
    box-shadow: unset !important;
}

.btn-secondary, .show > .btn-secondary.dropdown-toggle {
    color: var(--primary);
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid #8C8C8C;
}

.btn-secondary:hover {
    color: #1C34BA;
    background-color: #E6E6E6;
    border: 1px solid #1C34BA;
    box-shadow: unset !important;
}

.btn-secondary:focus, .btn-secondary.focus {
    color: #1C34BA;
    background-color: #EBEFFF;
    border: 1px solid #3257C8;
    box-shadow: unset !important;
}

.btn-secondary:active, .btn-secondary:not(:disabled):not(.disabled):active {
    color: #1C34BA;
    background-color: #D1D1D1;
    border: 1px solid #1C34BA;
    box-shadow: unset !important;
}

.btn-danger, .show > .btn-danger.dropdown-toggle, .btn-danger:focus {
    color: var(--white);
    background-color: var(--red);
    border-radius: 8px;
    border: 1px solid var(--red);
}

.btn-danger:hover, .btn-danger:active, .btn-danger:not(:disabled):not(.disabled):active {
    background-color: #950019;
    border: 1px solid #950019;
    box-shadow: unset !important;
}

.delete-item-btn {
    color: var(--red);
    cursor: pointer;
}


/* Toast */
.toast {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 100%;
    max-width: 350px;
    padding: 0.75rem;
    z-index: 99999;
    border-radius: .50rem;
    background-color: #fff !important;
    border-width: 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

.toast-header {
    background-color: #fff;
    background-clip: padding-box;
    border-bottom: none;
    border-top-left-radius: calc(.50rem - 1px);
    border-top-right-radius: calc(.50rem - 1px);
}

.toast-body {
    padding: 0;
    color: var(--primary);
}

@media (max-width: 576px) {
    .toast {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 400px;
    }
}

/* Toast Success */
.toast.bg-success {
    border-color: #00C288;
}

.toast.bg-success .toast-header, .toast.bg-success .toast-header .close {
    color: var(--green) !important;
}

.toast.bg-success .toast-header #toast-icon {
    color: #00A375 !important;
}

/* Toast Error */
.toast.bg-danger {
    border-color: #E04A62 !important;
}

.toast.bg-danger .toast-header, .toast.bg-danger .toast-header .close {
    color: var(--red) !important;
}

.toast.bg-danger .toast-header #toast-icon {
    color: #E04A62 !important;
}

/* Toast Warning */
.toast.bg-warning {
    border-color: var(--orange) !important;
}

.toast.bg-warning .toast-header, .toast.bg-warning .toast-header .close {
    color: var(--orange) !important;
}

.toast.bg-warning .toast-header #toast-icon {
    color: var(--orange) !important;
}

/* Toast Error */
.toast.bg-info {
    border-color: #007bff !important;
}

.toast.bg-info .toast-header, .toast.bg-info .toast-header .close {
    color: var(--blue) !important;
}

.toast.bg-info .toast-header #toast-icon {
    color: #007bff !important;
}


@media screen and (max-width: 812px) and (orientation: landscape) {
    html, body {
        min-height: -webkit-fill-available;
        overflow-x: hidden;
    }
}
/* text */
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-success {
    color: var(--success) !important;
}
.text-info {
    color: var(--info) !important;
}
.text-warning {
    color: var(--warning) !important;
}
.text-danger {
    color: var(--danger) !important;
}
.text-light {
    color: var(--light) !important;
}
.text-dark {
    color: var(--dark) !important;
}

/****************** COLORS *********************/

/* Neutral */
.color-neutral-00 {
    color: #ffffff;
}

.color-neutral-05 {
    color: #F7F7F7;
}

.color-neutral-10 {
    color: #E6E6E6;
}

.color-neutral-20 {
    color: #D1D1D1;
}

.color-neutral-30 {
    color: #ADAEB2;
}

.color-neutral-40 {
    color: #8C8C8C;
}

.color-neutral-50 {
    color: #606062;
}

.color-neutral-60 {
    color: #424243;
}

.color-neutral-70 {
    color: #2E2E2D;
}

.color-neutral-80 {
    color: #121212;
}

/* Red */
.color-red-00 {
    color: #FFF5F8;
}

.color-red-10 {
    color: #F5C8CA;
}

.color-red-20 {
    color: #F2A2A4;
}

.color-red-30 {
    color: #E66E73;
}

.color-red-40 {
    color: #F04F5A;
}

.color-red-50 {
    color: #B80A1D;
}

.color-red-60 {
    color: #9C0018;
}

.color-red-70 {
    color: #770019;
}

.color-red-80 {
    color: #500016;
}

/* Coral */
.color-coral-00 {
    color: #FFEEEB;
}

.color-coral-10 {
    color: #FACDCC;
}

.color-coral-20 {
    color: #F7ABAB;
}

.color-coral-30 {
    color: #EF8087;
}

.color-coral-40 {
    color: #F0515C;
}

.color-coral-50 {
    color: #B03034;
}

.color-coral-60 {
    color: #8B191F;
}

.color-coral-70 {
    color: #63090E;
}

.color-coral-80 {
    color: #3D0004;
}

/* Orange */
.color-orange-00 {
    color: #FFF3EB;
}

.color-orange-10 {
    color: #FFDAAD;
}

.color-orange-20 {
    color: #FFBC75;
}

.color-orange-30 {
    color: #FF913D;
}

.color-orange-40 {
    color: #E95C20;
}

.color-orange-50 {
    color: #BD3C00;
}

.color-orange-60 {
    color: #8E230B;
}

.color-orange-70 {
    color: #681808;
}

.color-orange-80 {
    color: #43110A;
}

/* Yellow */
.color-yellow-00 {
    color: #FFF8DB;
}

.color-yellow-10 {
    color: #FFE6A5;
}

.color-yellow-20 {
    color: #FBCD59;
}

.color-yellow-30 {
    color: #E3A22D;
}

.color-yellow-40 {
    color: #AE8520;
}

.color-yellow-50 {
    color: #7B581B;
}

.color-yellow-60 {
    color: #4F3514;
}

.color-yellow-70 {
    color: #301F0E;
}

.color-yellow-80 {
    color: #1C120A;
}

/* Green */
.color-green-00 {
    color: #DAFFE0;
}

.color-green-10 {
    color: #A8F1C2;
}

.color-green-20 {
    color: #5BDDA2;
}

.color-green-30 {
    color: #00C188;
}

.color-green-40 {
    color: #00A576;
}

.color-green-50 {
    color: #007C58;
}

.color-green-60 {
    color: #015035;
}

.color-green-70 {
    color: #073C27;
}

.color-green-80 {
    color: #0D261D;
}
/* Teal */
.color-teal-00 {
    color: #E3F9FA;
}

.color-teal-10 {
    color: #A3F6FB;
}

.color-teal-20 {
    color: #69E2EA;
}

.color-teal-30 {
    color: #43D0DE;
}

.color-teal-40 {
    color: #009AB3;
}

.color-teal-50 {
    color: #097387;
}

.color-teal-60 {
    color: #0D4D5B;
}

.color-teal-70 {
    color: #0E333C;
}

.color-teal-80 {
    color: #0D2227;
}
/* BP BLue */
.color-bpblue-00 {
    color: #E5F3FA;
}

.color-bpblue-10 {
    color: #A2DDFB;
}

.color-bpblue-20 {
    color: #67BEE9;
}

.color-bpblue-30 {
    color: #45ABDE;
}

.color-bpblue-40 {
    color: #1C96D4;
}

.color-bpblue-50 {
    color: #1574A3;
}

.color-bpblue-60 {
    color: #085175;
}

.color-bpblue-70 {
    color: #00273B;
}

.color-bpblue-80 {
    color: #0D1E26;
}

/* Blue */
.color-blue-00 {
    color: #EBEFFF;
}

.color-blue-10 {
    color: #D4DCFC;
}

.color-blue-20 {
    color: #B1BFF6;
}

.color-blue-30 {
    color: #8C9EE8;
}

.color-blue-40 {
    color: #617DE0;
}

.color-blue-50 {
    color: #3257C9;
}

.color-blue-60 {
    color: #1C33BA;
}

.color-blue-70 {
    color: #0D1476;
}

.color-blue-80 {
    color: #0A0C3D;
}

/* Purple */
.color-purple-00 {
    color: #F3F0FF;
}

.color-purple-10 {
    color: #D4C7FF;
}

.color-purple-20 {
    color: #B49BFF;
}

.color-purple-30 {
    color: #9B7AFF;
}

.color-purple-40 {
    color: #815AF0;
}

.color-purple-50 {
    color: #643CC7;
}

.color-purple-60 {
    color: #513790;
}

.color-purple-70 {
    color: #342754;
}

.color-purple-80 {
    color: #120D1F;
}



/****************** Product Typography ************************/

/* Font Size */
.fp-size-100 {
    font-size: 0.75rem;
}

.fp-size-200 {
    font-size: 0.875rem;
}

.fp-size-300 {
    font-size: 1rem;
}

.fp-size-400 {
    font-size: 1.25rem;
}

.fp-size-500 {
    font-size: 1.5rem;
}

.fp-size-600 {
    font-size: 1.75rem;
}

.fp-size-700 {
    font-size: 2rem;
}

.fp-size-800 {
    font-size: 2.5rem;
}

.fp-size-900 {
    font-size: 3rem;
}

/* Font Weight */
.fp-weight-regular {
    font-weight: 400;
}

.fp-weight-medium {
    font-weight: 500;
}

.fp-weight-semibold {
    font-weight: 600;
}

.fp-weight-bold {
    font-weight: 700 !important;
}

/* Font Line Height */
.fp-line-height-0 {
    line-height: 0.75rem;
}

.fp-line-height-1 {
    line-height: 1rem;
}

.fp-line-height-2 {
    line-height: 1.25rem;
}

.fp-line-height-3 {
    line-height: 1.5rem;
}

.fp-line-height-4 {
    line-height: 1.75rem;
}

.fp-line-height-5 {
    line-height: 2rem;
}

.fp-line-height-6 {
    line-height: 2.5rem;
}

.fp-line-height-7 {
    line-height: 2.75rem;
}

.fp-line-height-8 {
    line-height: 3rem;
}

/* Variants */

/* Heading */
.headingXs {
    font-size: 0.75rem; /* fp-size-100 */
    line-height: 1rem; /* .fp-line-height-1 */
    font-weight: 700; /* fp-weight-bold */
}

.headingS {
    font-size: 0.875rem; /* fp-size-200 */
    line-height: 1rem; /* .fp-line-height-1 */
    font-weight: 700; /* fp-weight-bold */
}

.headingM {
    font-size: 1rem; /* fp-size-300 */
    line-height: 1rem; /* .fp-line-height-1 */
    font-weight: 700; /* fp-weight-bold */
}

.headingL {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 1.25rem; /* .fp-line-height-2 */
    font-weight: 700; /* fp-weight-bold */
}

.headingXl {
    font-size: 1.5rem; /* fp-size-500 */
    line-height: 1.5rem; /* fp-line-height-3 */
    font-weight: 700; /* fp-weight-bold */
}

.headingXl2 {
    font-size: 2rem; /* fp-size-700 */
    line-height: 2rem; /* fp-line-height-5 */
    font-weight: 700; /* fp-weight-bold */
}

.headingXl3 {
    font-size: 2rem; /* fp-size-700 */
    line-height: 2.5rem; /* fp-line-height-6 */
    font-weight: 700; /* fp-weight-bold */
}

.headingXl4 {
    font-size: 2.5rem; /* fp-size-800 */
    line-height: 2.75rem; /* fp-line-height-7 */
    font-weight: 700; /* fp-weight-bold */
}

/* Body */
.bodyXs {
    font-size: 0.75rem; /* fp-size-100 */
    line-height: 1.25rem; /* .fp-line-height-2 */
    font-weight: 400; /* fp-weight-regular */
}

.bodyS {
    font-size: 0.875rem; /* fp-size-200 */
    line-height: 1.25rem; /* .fp-line-height-2 */
    font-weight: 400; /* fp-weight-regular */
}

.bodyM {
    font-size: 1rem; /* fp-size-300 */
    line-height: 1.5rem; /* fp-line-height-3 */
    font-weight: 400; /* fp-weight-regular */
}

.bodyL {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 1.75rem; /* fp-line-height-4 */
    font-weight: 400; /* fp-weight-regular */
}

/* Label */
.labelXs {
    font-size: 0.75rem; /* fp-size-100 */
    line-height: 0.75rem; /* fp-line-height-0 */
    font-weight: 400; /* fp-weight-regular */
}

.labelS {
    font-size: 0.875rem; /* fp-size-200 */
    line-height: 1rem; /* .fp-line-height-1 */
    font-weight: 500; /* fp-weight-medium */
}

.labelM {
    font-size: 1rem; /* fp-size-300 */
    line-height: 1rem; /* .fp-line-height-1 */
    font-weight: 500; /* fp-weight-medium */
}

.labelL {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 1.25rem; /* .fp-line-height-2 */
    font-weight: 500; /* fp-weight-medium */
}

/* Display */
.displayXs {
    font-size: 0.75rem; /* fp-size-100 */
    line-height: 0.75rem; /* fp-line-height-0 */
    font-weight: 600; /* fp-weight-semibold */
}

.displayS {
    font-size: 0.875rem; /* fp-size-200 */
    line-height: 1rem; /* .fp-line-height-1 */
    font-weight: 600; /* fp-weight-semibold */
}

.displayM {
    font-size: 1rem; /* fp-size-300 */
    line-height: 1rem; /* .fp-line-height-1 */
    font-weight: 600; /* fp-weight-semibold */
}

.displayL {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 1.25rem; /* .fp-line-height-2 */
    font-weight: 700; /* fp-weight-bold */
}

.displayXl {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 1.5rem; /* fp-line-height-3 */
    font-weight: 700; /* fp-weight-bold */
}

.displayXl2 {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 1.75rem; /* fp-line-height-4 */
    font-weight: 700; /* fp-weight-bold */
}

.displayXl3 {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 2rem; /* fp-line-height-5 */
    font-weight: 700; /* fp-weight-bold */
}

.displayXl4 {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 2.5rem; /* fp-line-height-6 */
    font-weight: 700; /* fp-weight-bold */
}

.displayXl5 {
    font-size: 1.25rem; /* fp-size-400 */
    line-height: 3rem; /* fp-line-height-8 */
    font-weight: 700; /* fp-weight-bold */
}