@import url('open.iconic/font/css/open-iconic-bootstrap.min.css');
@import url("bootstrap-icons/bootstrap-icons.min.css");

html, body {
    font-family: Asap !important;
}

.menuText {
    font-family: Asap !important;
}

html, body {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.fillParent {
    height: 100% !important;
}

.validation-message {
    font-size: .9em;
    color: red;
    font-style: italic;
}

.button-link {
    text-decoration: unset;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.625rem;
}

    .title.title-secondary {
        padding-top: 0.313rem;
        padding-bottom: 0;
        color: var(--bs-secondary-color);
    }

.title-header-text {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
    letter-spacing: 0rem;
}

.title-content-text {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0rem;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.block-content {
    width: 31.25rem;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: 100%;
}

.message-box-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: 0rem;
}

.tab-header {
    font-weight: bold;
    font-family: 'Asap';
    font-style: normal;
}

@font-face {
    font-family: 'Asap';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(/fonts/Asap_Font.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.mx-card {
    border-radius: 0.5rem;
    box-shadow: 0px 6px 16px 2px rgba(200, 200, 200, 0.09);
    border: 0;
    color: black;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 500;
    display: inline-block;
    text-transform: capitalize;
    min-width: fit-content;
    text-align: center;
}

.mx-card-dashboard {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    flex: 1 0 400px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mx-row-disabled {
    text-decoration: line-through;
    font-weight: lighter;
    color: #ff1144;
}

.mx-details-pane-card {
    border-radius: 5px;
    box-shadow: 6px 5px 5px #cccccc;
}


.actionButton {
    height: 12vh;
    font-size: 7vh;
    width: 100%;
    font-weight: bold;
    font-family: Asap;
}

.actionButton-med {
    height: 6vh;
    font-size: 4vh;
    width: 100%;
    font-weight: bold;
    font-family: Asap;
}

.mx-pill {
    justify-content: center;
    border-radius: 13px;
    font-weight: 600;
    line-height: 1.2rem;
    width: 74%;
    padding: 0.25rem 0.35rem 0.25rem 0.125rem;
}

.mx-icon-link {
    font-weight: 600;
    cursor: pointer;
}

.dxbl-modal-body {
    display: flex;
    overflow: auto;
    flex-direction: column;
}

.dxbl-modal-body > * {
        flex: 1; /* Makes child component stretch to fill */
    }

.mx-pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.mx-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

