/* ----------------------------------
    Add '<breakpoint abbreviation>' to either the center or end
    denoting the class for the Small Breakpoint as defined by MudBlazor.
    Refer to MudBlazor CSS and Website for reference.

    These provided breakpoints are not the only breakpoints. Please include
    comment on the breakpoint that you define.
*/

/* ********************************************************
    Color Utility Classes
    As discussed, please follow the naming convetions found here:
    - https://getbootstrap.com/docs/5.3/utilities/background/
    - https://getbootstrap.com/docs/5.3/utilities/colors/
*/
.bg-light {
    background-color: var(--mud-palette-background-gray);
}

.bg-primary {
    background-color: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
}

.no-margin {
    margin: 0 !important;
}

/* ********************************************************
    Font utlilty classes
*/
.fw-normal {
    font-weight: normal;
}

.fw-bold {
    font-weight: bold;
}

.text-white {
    color: var(--mud-palette-white);
}

.text-black {
    color: var(--mud-palette-black);
}

.text-action {
    color: var(--mud-palette-info);
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.align-items-start {
    align-items: flex-start !important;
}
/* ********************************************************
    Brands
*/
.brands h1 {
    font-size: 1rem
}

.brands .dentcare {
    width: auto;
    height: 80px;
}

.brands .solstice {
    width: auto;
    height: 100px;
}

.user-is-tabbing .brands a:focus-visible {
    outline-style: solid;
    outline-width: 2px;
    outline-color: #46433E;
    outline-offset: 10px;
}

/* ********************************************************
    Remove Bullets from unordered lists
*/
ul.list-unstyled {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

/* ********************************************************
    Nav-link
*/
.nav-link .icon {
    font-size: 1.25rem;
}

.nav-link.active {
    font-weight: bold;
    color: var(--mud-palette-secondary);
}

.stepper {
    display: flex;
    flex: 1 1 0%;
    justify-content: space-around;
    gap: 8px;
    transition: all .25s;
}

    .stepper li {
        flex-basis: 33.33%;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .stepper .indicator {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        min-width: 2rem;
        height: 2rem;
        min-height: 2rem;
        padding-top: 1px;
        border-radius: 1rem;
        color: var(--mud-palette-secondary-text);
        background-color: var(--mud-palette-secondary);
    }

    .stepper .step .indicator svg {
        display: inline-block;
    }

    .stepper .step .indicator span {
        display: none;
    }

    .stepper .step.current .indicator {
        color: var(--mud-palette-secondary-text);
        background-color: var(--mud-palette-secondary);
    }

    .stepper .step.current ~ .step .indicator {
        color: var(--mud-palette-primary-text);
        background-color: var(--mud-palette-primary);
    }

        .stepper .step.current .indicator span,
        .stepper .step.current ~ .step .indicator span {
            display: inline-block;
        }

        .stepper .step.current .indicator svg,
        .stepper .step.current ~ .step .indicator svg {
            display: none;
        }

    .stepper .step.completed .indicator span {
        display: none;
    }

    .stepper .step .label {
        display: none;
        margin-left: 1rem;
        padding-left: .5rem;
        padding-right: .5rem;
        background-color: var(--mud-palette-white);
    }

    .stepper .step.current .label {
        display: inline-block;
    }

    .stepper li:after {
        content: '';
        background-color: var(--mud-palette-primary);
        position: relative;
        top: -2rem;
        left: 2.5rem;
        height: 1px;
        width: calc(100% - (2.5rem));
        display: inline-block;
        z-index: -1;
    }

    .stepper li a.active ~ .label {
        display: block;
    }

.manual-docking-footer {
    max-width: 100vw;
    background-color: #46433E;
    color: var(--mud-palette-white);
    font-size: .875rem;
    margin-top: 1rem;
    max-height: 390px;
    bottom: 0;
}

    .manual-docking-footer h5 {
        font-size: 1.125rem;
        font-weight: normal;
    }

    .manual-docking-footer a[type=button] {
        background-color: var(--mud-palette-white);
        text-transform: capitalize;
        color: var(--mud-palette-black);
        font-weight: bold;
        border-radius: 999px;
        width: 10rem;
    }

.user-is-tabbing .manual-docking-footer a[type=button]:focus-visible {
    outline-color: var(--mud-palette-white);
    outline-style: solid;
    outline-width: 2px;
    outline-offset: 5px;
}

    .manual-docking-footer .nav a {
        font-size: 1rem;
    }

    .manual-docking-footer .nav li:not(:last-child) {
        border-right: 1px solid var(--mud-palette-white);
    }

    .manual-docking-footer a {
        color: var(--mud-palette-white);
        white-space: nowrap;
    }

.user-is-tabbing .manual-docking-footer a:focus-visible {
    outline-color: var(--mud-palette-white);
    outline-style: solid;
    outline-width: 2px;
    outline-offset: 2px;
}

@media (max-width: 380px) {
    .manual-docking-footer {
        max-height: 405px;
    }
}

@media (min-width: 960px) {
    .unavailable-page {
        padding-top: 70px;
    }
}

@media (max-width: 960px) {
    .unavailable-page {
        padding-top: 60px;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #46433E;
    color: var(--mud-palette-white);
    font-size: .875rem;
    max-height: 170px;
    overflow-y: auto;
}

    .footer h5 {
        font-size: 1.125rem;
        font-weight: normal;
    }

    .footer a[type=button] {
        background-color: var(--mud-palette-white);
        text-transform: capitalize;
        color: var(--mud-palette-black);
        font-weight: bold;
        border-radius: 999px;
        width: 10rem;
    }

    .footer .nav a {
        font-size: 1rem;
    }

    .footer .nav li:not(:last-child) {
        border-right: 1px solid var(--mud-palette-white);
    }

    .footer a {
        color: var(--mud-palette-white);
        white-space: nowrap;
    }

.manual-footer-text-white-space {
    white-space: pre-line;
}

/* Mudblazor XS media query*/
@media (max-width: 600px) {
    /*
        Example:
            font-xs-bold
        Example:
            container-max-width-xs
    */
    .fw-xs-bold {
        font-weight: 300;
    }

    /* ********************************************************
        Brands
    */

    .brands .pyp-divider {
        margin: 50px 0;
    }

    .pyp-divider {
        border-top-width: 2px;
        border-left-width: 0px;
    }
}
/* Mudblazor SM media query*/
@media (min-width: 600px) {
    /*
        Example:
            font-sm-bold
        Example:
            container-max-width-sm
    */
    .fw-sm-bold {
        font-weight: 300;
    }

    /* ********************************************************
        Brands
    */

    .brands .pyp-divider {
        margin: 50px 0;
    }

    .pyp-divider {
        border-top-width: 2px;
        border-left-width: 0px;
    }
}

/* Mudblazor md media query*/
@media (min-width: 960px) {
    /* ********************************************************
        Font utlilty classes
    */
    .fw-md-normal {
        font-weight: normal;
    }

    .fw-md-bold {
        font-weight: bold;
    }

    .text-md-left {
        text-align: left !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .text-md-right {
        text-align: right !important;
    }
    /* ********************************************************
        Nav-link
    */
    .nav-link {
        text-align: center;
        width: 90px;
    }

        .nav-link .icon {
            font-size: 2rem;
        }

        .nav-link .icon-background {
            margin-top: 4px;
            border-radius: 3rem;
            width: 76px;
            height: 76px;
        }

            .nav-link .icon-background .mud-svg-icon {
                color: var(--mud-palette-white);
            }

    /* ********************************************************
        Brands
    */
    .brands h1 {
        font-size: 1.5rem
    }

    .brands .pyp-divider {
        margin: 0 50px;
    }

    .pyp-divider {
        border-top-width: 0px;
        border-left-width: 2px;
    }
}

/* ********************************************************
   OOPS Page
*/

@media (min-width: 600px) {
    .oops {
        background: url(/images/oops-background.svg);        
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;        
    }
}

@media (min-width: 973px) {
    .oops h1 {
        font-weight: bolder;
        font-size: 93px;
        line-height: 1.3em;
        margin-bottom: 30px;
    }

    .oops h2 {
        font-weight: normal;
        font-size: 33px;
        line-height: 1.3em;
        margin-bottom: 25px;
    }

    .oops p {
        font-size: 18px;
        font-weight: normal;
        margin-block-start: 0em;
        margin-block-end: 0em;
    }
}

@media (max-width: 972px) {
    .oops h1 {
        font-weight: bolder;
        font-size: 50px;
        line-height: 1.5em;
    }

    .oops h2 {
        font-weight: normal;
        line-height: 1em;
        font-size: 20px;
    }

    .oops p {
        font-size: 10px;
        font-weight: normal;
        margin-block-start: 0em;
        margin-block-end: 0em;
    }
}

/***********************************************************************************/
/* Dashboard */

.user-is-tabbing .dashboard-action-card:focus-visible {
    outline-style: solid;
    outline-width: 2px;
    outline-color: #46433E;
    outline-offset: 5px;
}

.user-is-tabbing .dashboard-tool-tip:focus-visible {
    outline-style: solid;
    outline-width: 2px;
    outline-color: var(--dashboard-button-focus-visible-color);
    outline-offset: 2px;
}

/* Find your account */

.user-is-tabbing .find-your-account-tool-tip:focus-visible {
    outline-style: solid;
    outline-width: 2px;
    outline-color: #000000;
    outline-offset: 2px;
}
#divicw .main-chat-cont {
    position: fixed !important;
    right: 80px !important;
}

#divicw iframe.chatbutton {
    position: fixed !important;
    bottom: 200px !important;
}

@media only screen and (max-device-width: 720px), (max-width: 703px) {
    #divicw .main-chat-cont {
        position: fixed !important;
        right: 0px !important;
    }

    #divicw iframe.chatbutton {
        position: fixed !important;
        bottom: 0px !important;
    }
}

.mud-input-mask-wrapper {
    position: relative;
    display: inline-block;
}

.mask-overlay {
    position: absolute;
    top: 20px;
    left: 16px;
    color: gray;
    pointer-events: none;
    z-index: 1;
    font-family: var(--mud-typography-body1-family);
    white-space: pre;
}

.mud-txt-dob input {
    position: relative;
    z-index: 2 !important;
    background: transparent !important;
}