/* 
        Font-weights:
        100 - Thin
        200 - Extra Light (Ultra Light)
        300 - Light
        400 - Normal
        500 - Medium
        600 - Semi Bold (Demi Bold)
        700 - Bold
        800 - Extra Bold (Ultra Bold)
        900 - Black (Heavy)
        */

@font-face {
    font-family: "Titillium";
    font-style: normal;
    font-weight: 200;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-ExtraLight.ttf") format("truetype");
}
@font-face {
    font-family: "Titillium";
    font-style: italic;
    font-weight: 200;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-ExtraLightItalic.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: normal;
    font-weight: 300;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: italic;
    font-weight: 300;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-LightItalic.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: normal;
    font-weight: 400;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: italic;
    font-weight: 400;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-Italic.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: normal;
    font-weight: 600;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: italic;
    font-weight: 600;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-SemiBoldItalic.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: normal;
    font-weight: 700;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: italic;
    font-weight: 700;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-BoldItalic.ttf") format("truetype");
}

@font-face {
    font-family: "Titillium";
    font-style: normal;
    font-weight: 900;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-Black.ttf") format("truetype");
}
@font-face {
    font-family: "Titillium";
    font-style: italic;
    font-weight: 900;
    src: url("/_content/FitPlans.Website.Components/assets/font/TitilliumWeb-Black.ttf") format("truetype");
}


:root {
    /* Original website */
    --text-color: #2A2A36;
    --button-color: #ED6A06;
    --orange-color: #ED6A06;
    --orange-transparent-color: #fefcfa;
    --orange-color-rgb: 237, 106, 6;
    --orange-highlight-color: #ff7706;
    --orange-highlight-rgb: 255, 119, 6;
    --orange-secondary-color: #FFF4EC;
    --orange-secondary-rgb: 255, 244, 236;
    --button-text-color: white;
    --logo-text-color: #FF6900;
    --dark-background-color: #2A2A36;
    --light-text-color: white;
    --light-text-color-rgb: 255, 255, 255;
    --gray-background: #F7F5F1;
    --gray-button-color: #F0F0F0;
    --gray-separator-color: #D0D0D0;
    
    /* My-Fit Plans*/
    --menu-border: rgba(153, 149, 146, 0.1);
    --gray-text-color: #888F97;
    --menu-avatar-background: #BEBAB7;
    --menu-avatar-color: white;
    --menu-icon-color: #BEBAB7;
    --menu-main-button-shadow-color: #E2CECE;
    --white-color: white;
    --orange-light-color: #FEF4EC;
    
    --mud-typography-default-family: 'Titillium';
}

html, body {
    font-family: 'Titillium', Helvetica, Arial, sans-serif;
    font-weight: 400;
    /*color: var(--text-color);*/
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

body.static-dialog-open {
    overflow: hidden;
}

h1:focus {
    outline: none;
}


/*       MOBILE        */
@media(max-width: 959.98px)
{
    .desktop { display: none!important; }
}
@media(min-width: 960px)
{
    .mobile { display: none!important; }
}


/*       HELPERS       */
.no-padding {
    padding: 0!important;
}
.no-padding > a {
    padding: 0!important;
}
.scroll {
    overflow-y: scroll !important;
}
.bg-orange {
    background: var(--orange-color);
}
.fg-orange {
    color: var(--orange-color);
}
.orange-chart {
    background: linear-gradient(60deg, rgb(255, 119, 6), rgb(236, 106, 6));
    height: 100%;
}
.chart-rounded {
    border-radius: 8px;
}
.text-color {
    color: var(--text-color);
}
.gray {
    color: var(--gray-text-color);
}
.blur {
    filter: blur(3px);
}
.d-block {
    display: block !important;
}
/*        TRANSITIONS       */
.fade {
    transition: opacity 0.5s ease-in-out;
}
.appear {
    transition: opacity 0.1s ease-in-out;
}
.delay-100 {
    transition-delay: 100ms!important;
}
.delay-200 {
    transition-delay: 200ms!important;;
}
.delay-300 {
    transition-delay: 300ms!important;;
}
.delay-400 {
    transition-delay: 400ms!important;;
}
.delay-500 {
    transition-delay: 500ms!important;;
}
.delay-600 {
    transition-delay: 600ms!important;;
}
.delay-700 {
    transition-delay: 700ms!important;;
}
.delay-800 {
    transition-delay: 800ms!important;;
}
.delay-900 {
    transition-delay: 900ms!important;;
}
.opaque {
    opacity: 1;
}
.transparent {
    opacity: 0;
    overflow: hidden;
}

/*         TEXT        */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-normal {
    text-transform: none;
}
.bold {
    font-weight: bold;
}
.semibold {
    font-weight: 600;
}
.italic {
    font-style: italic;
}
.nowrap {
    text-wrap: nowrap;
}

/*          GRID         */
.d-grid {
    display: grid;
}
.row-1 {
    grid-row: 1;
}
.row-2 {
    grid-row: 2;
}
.row-3 {
    grid-row: 3;
}
.row-4 {
    grid-row: 4;
}

.col-1 {
    grid-column: 1;
}
.col-2 {
    grid-column: 2;
}
.col-3 {
    grid-column: 3;
}
.col-4 {
    grid-column: 4;
}

/*          SIZING          */
.flex-1 > *{
    flex: 1;
}
.flex-basis-0{
    flex-basis: 0;
}
.w-100 {
    width: 100%;
}
.br-10 {
    border-radius: 10px;
}
/*       MUDBLAZOR      */
body {
    --mud-palette-action-default-hover: #FFF4EC;
}
/* Buttons */
.mud-button {
    padding: 6px 24px;
    box-shadow: none;
}
.mud-button:hover {
    box-shadow: none;
}
.mud-button-filled {
    box-shadow: none;
}
.mud-button-text {
    padding: 6px 24px;
}
.mud-button-outlined {
    border: 1px solid var(--menu-icon-color);
}
.mud-button-filled-secondary,.mud-button-outlined-primary {
    font-weight: 600;
}
.mud-button-icon-size-small>*:first-child {
    font-size: 12px;
}
.mud-button-date:hover {
    background: var(--orange-highlight-color);
}
.mud-button-year:hover {
    background: var(--orange-highlight-color);
}
/* Input labels */
.mud-input-label-inputcontrol{
    color: var(--gray-text-color)!important;
}
/* Date picker */
.mud-picker-calendar-header-day .mud-day-label {
    color: var(--gray-text-color);
}

/* Mobile dialogs */
@media(max-width: 767.98px)
{
    .mud-dialog {
        height: 100%;
        max-height: 100vh;
        width: 100vw;
        max-width: 100vw;
        justify-items: center;
        justify-content: center;
    }
}
.rounded-lg {
    border-radius: 0!important;
}


/*       SECTIONS      */
/*section:nth-of-type(2n) {
    background: var(--gray-background);
}
.section-image-divider {
    margin-top: 21%;
}
.image-divider {
    margin-top: -21%;
}
.space-top {
    padding-top: 60px;
}
.space-bottom {
    padding-bottom: 60px;
}
.separator {
    content: "Separator";
    color: transparent;
    display: block;
    width: 100%;
    padding: 20px;
}
@media(min-width: 576px) {
    .section-image-divider {
        margin-top: 111px;
    }
    .image-divider {
        margin-top: -111px;
    }
}
@media(min-width: 768px) {
    .space-top {
        padding-top: 80px;
    }

    .space-bottom {
        padding-bottom: 80px;
    }
    .section-image-divider {
        margin-top: 170px;
    }
    .image-divider {
        margin-top: -150px;
    }
}
@media(min-width: 992px) {
    .section-image-divider {
        margin-top: 254px;
    }
    .image-divider {
        margin-top: -204px;
    }
}

@media(min-width: 1200px) {
    .section-image-divider {
        margin-top: 301px;
    }
    .image-divider {
        margin-top: -241px;
    }
}
@media(min-width: 1400px) {
    .section-image-divider {
        margin-top: 348px;
    }

    .image-divider {
        margin-top: -278px;
    }
}


/*     FONTS     */
/*html {
    font-size: 14px;
}

html {
    position: relative;
    min-height: 100%;
}

h1 {
    font-size: 60px;
    line-height: 67px;
    font-family: 'Titillium';
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-color);
}

h2 {
    font-size: 55px;
    line-height: 60px;
    font-family: 'Titillium';
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-color);
    padding-bottom: 0.5rem;
}
h3 {
    font-family: 'Titillium';
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 20px;
}
h5 {
    font-family: 'Titillium';
    font-weight: 900;
    font-size: 20px;
}

h6 {
    font-family: 'Titillium';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    padding-bottom: 0.8rem;
}
.text-right {
    text-align: right;
}
.micro {
    font-size: 12px;
}
span {
    white-space: nowrap;
}

.titilium {
    font-family: 'Titillium';
    font-weight: bold;
    text-transform: uppercase;
}

@media(min-width: 768px) {
    h2 {
        padding-bottom: 2.5rem;
    }
    body {
        font-size: 16px;
    }
    .micro {
        font-size: 14px;
    }
}

/* Custom bullets */
ul.custom-bullet {
    list-style: none;
    font-size: 12px;
}
ul.custom-bullet > li {
    clear: left;
    margin-top: 5px;
}
ul.custom-bullet > li:before {
    content: "";
    height: 1em;
    width: 1em;
    display: block;
    float: left;
    margin-left: -1.5em;
    margin-top: 0.35rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 16 17'><path d='M10.8212 16.7174H1.03389C0.876939 16.7233 0.720819 16.6918 0.578271 16.6256C0.435723 16.5594 0.310777 16.4604 0.213615 16.3365C0.116453 16.2126 0.0498212 16.0674 0.0191658 15.9127C-0.0114896 15.7581 -0.00529738 15.5983 0.0372176 15.4465L3.49566 0.876565C3.54429 0.64898 3.6704 0.445541 3.85232 0.301251C4.03423 0.156962 4.26056 0.080869 4.49233 0.0860469H14.2796C14.4355 0.0806371 14.5904 0.112011 14.732 0.177662C14.8735 0.243314 14.9978 0.341383 15.0947 0.464021C15.1917 0.58666 15.2586 0.730437 15.2901 0.883772C15.3217 1.03711 15.3169 1.19573 15.2763 1.34689L11.8178 15.9269C11.7692 16.1544 11.6431 16.3579 11.4612 16.5022C11.2793 16.6465 11.0529 16.7226 10.8212 16.7174Z' fill='%23ED6A06'/></svg>");
    background-size: 90%;
    background-position: center;
}
@media(min-width: 800px) {
    ul.custom-bullet {
        font-size: 14px;
    }
}
@media(min-width: 992px) {
    ul.custom-bullet {
        font-size: 16px;
    }
}


/* BLAZOR CORE */
.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    color: black;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 4000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}