﻿@inject BemoStyles bemoStyles 

* {
    font-family: mud-typography-default-family;
}

:root {
    --BemoPrimaryColor: #3978d3;
    --BemoContrastTextColor: #969FB7;
    --BemoHighlightTextColor: #001d4f;
    --BemoLightBlue: #abc9f4;
    --BemoMidBlue: #76a7ee;
    --BemoRed: #c1272d;
    --BemoLightRed: #ff8888;
    --BemoCoolGray: #748aa3;
    --BemoDiamond: #b9f2ff;
    --BemoGold: #FFD700;
    --BemoSilver: #c0c0c0;
    --BemoBronze: #Cd7f32;
    --BemoTextWhite: #ffffff;
    --BemoTextGray: #EFEFEF;
    --BemoGreen: #88DB95;
    --BemoDarkNavy: #090F1D;
    --BemoButtonGray: #EFEFEF;
    --BemoBorderGray: #CCCCCC;
}

body {
    font-family: Segoe UI Variable Text;
    background: #FFFFFF;
    color: #333333;
}

.bemo-layout {
    display: flex;
    flex-direction: column;
}

.font-bold {
    font-weight: 700 !important;
}

.text-light {
    color: var(--BemoContrastTextColor) !important;
}

.text-white {
    color: var(--BemoTextWhite) !important;
}

.text-underline {
    text-decoration: underline !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.btn-Primary-filled {
    /* Auto layout */

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    /* Primary */

    background: #3978D3;
    border-radius: 4px;
    text-align: center;
    /* Text White */

    color: #FFFFFF;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
}

    .btn-Primary-filled:hover {
        animation-timing-function: ease-out;
        animation-duration: 300ms;
    }

.btn-Primary {
    box-sizing: border-box;
    /* Auto layout */

    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    /* Primary */

    border: 1.0px solid var(--BemoPrimaryColor);
    border-radius: 4px;
    text-align: center;
    /* Text White */

    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
}

    .btn-Primary:disabled {
        box-sizing: border-box;
        /* Auto layout */

        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 8px 5px;
        gap: 10px;
        /* Primary */
        background: var(--BemoContrastTextColor);
        border: 0.5px solid var(--BemoPrimaryColor);
        border-radius: 4px;
        text-align: center;
        /* Text White */

        font-weight: 600;
        font-size: 12px;
        line-height: 20px;
    }

    .btn-Primary:hover {
        animation-timing-function: ease-out;
        animation-duration: 300ms;
    }

.iframe[Attributes Style] {
    width: 960px;
    height: 720px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
}

.hero {
    background-image: url("_content/Bemo.UI.Assets/assets/images/milky-way-starfield-1920px.webp");
    padding-top: 10em;
    padding-bottom: 10em;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}

html, body {
    width: 100%;
    height: 100vh;
    font-family: "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

.teams {
    margin: 0;
    width: 100vw;
    height: calc(100vh - 1.6rem);
    min-width: calc(80vw - 10em);
    font-size: 12px;
    color: black;
}

.bemocardbutton {
    text-align: center;
    height: 30px;
    position: absolute;
    width: 70%;
    background-color: var(--BemoMidBlue);
    color: var(--BemoHighlightTextColor);
}

.narrow {
    max-width: 900px;
    margin: 0 auto;
}

.page-padding {
    padding: 4rem;
}

.welcome.page > .narrow > img {
    margin: 0 auto;
    display: block;
    width: 200px;
}

.welcome.page > .narrow > .menu {
    width: 80%;
    justify-content: space-between;
    margin: 4rem auto;
    border-bottom: none;
}

    .welcome.page > .narrow > .menu > .menu-item {
        background-color: inherit;
        margin: auto;
        font-size: 14px;
        min-height: 32px;
        border-bottom-color: rgb(98, 100, 167);
    }

.center {
    text-align: center;
}

.sections > * {
    margin: 4rem auto;
}

.error {
    color: red;
}

@keyframes spinning {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.spin {
    animation-name: spinning;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    /* linear | ease | ease-in | ease-out | ease-in-out */
    animation-timing-function: linear;
}

.btn-card-close {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 25px !important;
    margin: 10px;
}

.req-created-date {
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    color: var(--BemoCoolGray);
}

.font-text {
    font-family: var(--mud-typography-default-family);
}

.font-color {
    color: #001D4F;
}


/*Blazor Carousel Component CSS*/

﻿.blazor-carousel {
    width: 100%;
    min-height: 100%;
    background-color: black;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
}

.blazor-carousel-inner {
    display:inline-flex;
    padding: 0;
    margin: 0;
}

.hidden {
    display: none;
}

.blazor-carousel-image {
    padding: 0;
    margin: 0;
}

    .blazor-carousel-image img {
        width: 100%;
        height: 100%;
    }

.blazor-carousel-indicators-container, .blazor-carousel-arrow-container {
    display: inline-block;
    height: 30px;
}

.blazor-carousel-indicator {
    vertical-align: middle;
    height: 28px;
}

.blazor-carousel-indicator {
    list-style: none;
    width: 20px;
    height: 5px;
    background-color: #0203034d;
    margin-right: 5px;
    float: left;
    cursor: pointer;
}

.blazor-carousel-indicator-active {
    background-color: cornflowerblue;
}

.blazor-carousel-nav-container {
    display: inline-block;
    width: 100%;
    height: 30px;
    text-align: center;
    position: relative;
    top: 50%;
    left: 0;
}

.blazor-carousel-control-next {
    padding-left: 10px;
}

.blazor-carousel-control-prev {
    padding-right: 10px;
}

.blazor-carousel-control-nav {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.blazor-carousel-pointer {
    cursor: pointer;
}

/*Request details*/
.card {
    width: 170px;
    height: 244px;
    background: rgba(255,255,255,1);
    padding: 20px 20px;
    margin: 8px;
    opacity: 1;
    position: relative;
    top: 0px;
    left: 0px;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    box-shadow: 0px 0px 32px rgb(1 1 1 / 25%);
    overflow: hidden;
}
.card-title {
    width: 135px;
    color: rgba(57,120,211,1);
    top: 60px;
    left: 0px;
    font-family: var(--mud-typography-default-family);
    font-weight: Semibold;
    font-size: 14px;
    opacity: 1;
    text-align: left;
}
.card-detail {
    color: rgba(0,29,79,1);
    top: 112px;
    left: 0px;
    font-family: var(--mud-typography-default-family);
    font-weight: Regular;
    font-size: 10px;
    opacity: 1;
    text-align: left;
}
.config-title {
    color: rgba(57,120,211,1);
    font-family: var(--mud-typography-default-family);
    font-weight: bold;
    font-size: 14px;
    opacity: 1;
    text-align: left;
}

.config-detail {
    color: rgba(0,29,79,1);
    font-family: var(--mud-typography-default-family);
    font-weight: normal;
    font-size: 12px;
    opacity: 1;
    text-align: left;
}
.req-detail-card-img {
    width: 48px;
    height: 48px;
    background: rgba(57,120,211,0.10000000149011612);
    padding: 5px 5px;
    /*margin: 10px;*/
    opacity: 1;
    position: relative;
    top: 0px;
    left: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}
.req-card {
    padding: 20px;
    margin: 12px;
    border: 0.5px solid #c0c0c0;
    border-radius: 4px;
}

.req-card-row {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    margin: 12px;
    padding: 20px;
    width: 265px;
    height: 20px;
}

.req-card-title {
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    font-variant: small-caps;
    width: 80px;
    color: #748AA3;
    padding: 6px;
}


.req-card-value {
    width: 173px;
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    /* identical to box height, or 200% */
    /* Highlight Text */
    padding: 6px;
    color: #001D4F;
}

.req-created-date {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    color: #748AA3;
}

.req-desc {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.ql-container {
    height: 148px !important;
}
.comment-box {
    margin: 12px 24px 0px 24px;
}
.input-guide {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    /* or 150% */
    /* Eerie Black */
    margin: 8px 24px 0px 24px;
    color: #252423;
}

.kb-card-img {
    width: 48px;
    height: 48px;
    background: rgba(57,120,211,0.10000000149011612);
    padding: 12px 12px;
    /*margin: 10px;*/
    opacity: 1;
    position: relative;
    top: 0px;
    left: 0px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
}

.kb-card-btn {
    /* Bold/H6 */
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    /* identical to box height, or 200% */
    /* Primary */
    color: #3978D3;
    position: absolute;
    bottom: 20px;
    /* Primary */
    border: 0.5px solid #3978D3;
    border-radius: 4px;
}

.cat-detail-card {
/* Article */

box-sizing: border-box;
/* Auto layout */
padding: 24px;
        gap: 16px;
        height: 155px;
        left: 0px;
        top: 60px;
/* Text White */
 background: #FFFFFF;
        border: 1px solid #F2F2F2;
        box-shadow: 0px 0px 32px rgba(57, 120, 211, 0.05);
        border-radius: 12px;
    }
.prom-art-card {
    /* Article */

    box-sizing: border-box;
    /* Auto layout */
    padding: 24px;
    gap: 16px;
    width: 415px;
    height: 155px;
    left: 0px;
    top: 60px;
    /* Text White */
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    box-shadow: 0px 0px 32px rgba(57, 120, 211, 0.05);
    border-radius: 12px;
}
.prom-art-cap {
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    color: #76A7EE;
}
.prom-art-title {
    Color: var(--BemoPrimaryColor);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px
}

.prom-art-des {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
}
.rcnt-art-card {
    padding: 20px 0px;
    gap: 24px;
    /*width: 622px;*/
    height: 100px;
    /* Silver */
    border-bottom: 0.5px solid #C0C0C0;
}
.cat-detail-head {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    /* identical to box height, or 140% */
    /* Primary */

    color: #3978D3;
}

.screen-title {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 28px;
    display: inline;
}
.request-btn {
    display: inline-block;
    float: right;
    margin-right: 25px !important;
    Color: var(--BemoContrastTextColor);
    background-color: var(--BemoPrimaryColor);
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    padding: 8px 16px;
}
.status-dd {
    /* Auto layout */

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    width: 195px;
    height: 36px;
    /* Text White */

    background: #FFFFFF;
    border: 1px solid #727171;
    border-radius: 30px;
}
.searchbar {
    height: 3em;
    top: 0px;
    border: solid 1px #837f7f;
    border-radius: 20px;
    margin: 0px;
    /* padding: 8px 12px 8px 12px;*/
    color: var(--BemoHighlightTextColor);
    box-shadow: none;
}

.badge {
    padding: 4px 12px;
    color: white;
    border-radius: 4px;
}

.badge-new {
    background-color: #f9b057;
}

.badge-open {
    background-color: #cb2a1c;
}

.badge-pending {
    background-color: #3590eb;
}

.badge-hold {
    background-color: #2d3642;
}

.badge-solved {
    background-color: #87919c;
}

.badge-closed {
    background-color: #87919c;
}
.cyberPlans {
    padding: 25px;
    margin-bottom: 25px;
}

/*Security plan store*/
    .cyberPlans h1 {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 28px;
        text-align: center;
        color: var(--BemoHighlightTextColor);
        padding-bottom: 25px;
        border: none;
    }


.cyberPlans p {
    font-family: var(--mud-typography-default-family);
    font-style:normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #252423;
}

.compare {
    padding: 25px;
}

    .compare h3 {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 28px;
        text-align: center;
        color: var(--BemoHighlightTextColor);
        padding-bottom: 15px;
    }

    .compare p {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        color: #252423;
    }

.offerTitle {
    text-align: center;
    color: #001D4F;
    font-size: 32px;
    font-family: Segoe UI Variable Text;
    font-weight: 700;
    line-height: 28px;
    word-wrap: break-word;
    margin: 1em 0;
}

.menuDescription {
    text-align: center;
    color: #001D4F;
    font-size: 1rem;
    font-family: Segoe UI Variable Text;
    font-weight: 700;
    line-height: 28px;
    word-wrap: break-word;
    margin-bottom: 1em
}

.filter-chip {
    border-radius: 6px !important;
    font-weight: 700;
    padding: 16px;
    background-color: var(--BemoButtonGray) !important;
}

    .filter-chip.mud-chip-selected {
        background-color: var(--BemoGreen) !important;
    }

    .filter-chip .mud-link {
        font-weight: 700;
    }

.card-carousel-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
}

.cardBemo {
    outline: 1px solid #C0C0C0;
    border-radius: 8px;
    padding: 20px;
    min-height: 550px;
    max-width: 394px;
}

.card-head-space {
    padding: 5px 10px 0 10px !important
}

.cardBemoHead {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.cardBemoTitle {
    min-height: 50px;
}

.cardBemoOffer {
    color: var(--BemoCoolGray) !important;
}

.cardBemoTag {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    background: #76A7EE;
    border-radius: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    display: inline-flex
}

.cardBemoTagText {
    color: white;
    font-size: 10px;
    font-family: Segoe UI Variable Text;
    font-weight: 600;
    line-height: 20px;
    word-wrap: break-word
}

.cardBemo .card-body {
    min-height: 140px;
    color: var(--BemoHighlightTextColor);
    word-wrap: break-word;
}

.cardBemo .card-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
}

    .cardBemo .card-footer .button {
        padding-top: 4px;
        padding-bottom: 4px;
    }

.cardBemoPrice {
    width: 265px;
    justify-content: flex-start;
    align-items: center;
    display: inline-flex
}
    .cardBemoPrice .Text {
        flex: 1 1 0;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 2px;
        display: inline-flex
    }
        .cardBemoPrice .Text .amount {
            color: #001D4F;
            font-size: 20px;
            font-family: Segoe UI Variable Text;
            font-weight: 700;
            line-height: 28px;
            word-wrap: break-word
        }
        .cardBemoPrice .Text .plan {
            color: #748AA3;
            font-size: 8px;
            font-family: Segoe UI Variable Text;
            font-weight: 400;
            line-height: 12px;
            word-wrap: break-word
        }
    .cardBemoPrice .InputAndButton {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 6px;
        display: flex
    }





.cardBemo .card-foter {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    display: flex
}

    .cardBemo .card-foter h5 {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 14px;
        color: #001D4F;
        /*width:30%;*/
        /*text-align:end*/
    }

        .cardBemo .card-foter h5 span {
            font-family: var(--mud-typography-default-family);
            font-style: normal;
            font-weight: 400;
            font-size: 8px;
            line-height: 12px;
            color: #748AA3;
        }

    .cardBemo .card-foter .btn-white {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 16px;
        align-items: center;
        color: #959595;
        background: #FFFFFF;
        border: 1px solid #DDDDDD;
        border-radius: 4px;
        padding: 5px 12px;
        margin-right: 4px;
        width: 25%;
        height: 32px;
    }

    .cardBemo .card-foter .btn-blue {
        font-style: normal;
        font-weight: 600;
        font-size: 10px;
        line-height: 20px;
        text-align: center;
        color: #FFFFFF;
        background: #3978D3;
        border-radius: 4px;
        border: none;
        padding: 0;
        width: 62px;
    }

    .cardBemo .card-foter .btn-whiteX {
        font-style: normal;
        font-weight: 600;
        font-size: 10px;
        line-height: 20px;
        text-align: center;
        color: #959595;
        background: #FFFFFF;
        border-radius: 4px;
        border: #3978D3;
        padding: 0;
        width: 62px;
    }

    .cardBemo .card-foter .btn-disabled {
        font-style: normal;
        font-weight: 600;
        font-size: 10px;
        line-height: 20px;
        text-align: center;
        color: #FFFFFF;
        background: #c5c5c5;
        border-radius: 4px;
        border: none;
        padding: 0;
        width: 62px;
    }

    .cardBemo .card-foter button {
        max-height: 2rem;
    }



.cardBemo .card-head a {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    color: #FFFFFF;
    background: #76A7EE;
    border-radius: 30px;
    padding: 6px 10px;
    border: none;
    margin-bottom: 10px;
}

.cardBemo .card-head {
    height: 8rem;
}

.cardBemo .mud-elevation-1 {
    box-shadow: none;
}

.cardBemo .mud-card-actions {
    display: unset !important;
}

.cardBemo .card-foter h6 {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 14px;
    color: #001D4F;
    padding:0 5%;
}

    .cardBemo .card-foter h6 span {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 400;
        font-size: 8px;
        line-height: 12px;
        color: #748AA3;
    }

.placeOrder {
    text-align: center;
    padding: 25px;
}

    .placeOrder h1 {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 700;
        font-size: 32px;
        line-height: 28px;
        text-align: center;
        color: #001D4F;
        padding: 25px;
    }

    .placeOrder a {
        font-family: var(--mud-typography-default-family);
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        text-align: center !important;
        text-decoration-line: underline;
        color: #C1272D;
    }

.textRed p {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #C1272D;
    margin-top: 50px;
}

.placText p {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #252423;
    margin-top: 30px;
}

.btnPlace {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: black;
    padding: 8px 24px;
    border: 1px solid #C0C0C0;
    border-radius: 4px;
}

.progress-container {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.progress-container-inner {
    width: 100%;
}

.score-title {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    /* identical to box height, or 133% */

    font-variant: small-caps;
    /* Cool Gray */

    color: #748AA3;
}

.score-value {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    /* identical to box height, or 114% */
    /* Highlight Text */
    padding-left: 10px;
    color: #001D4F;
}

.score-per {
    float: right;
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 16px;
    /* identical to box height, or 80% */
    /* Highlight Text */

    color: #001D4F;
}
.config-heading {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #252423;
}
.configPageContainer button {
    border: 0.5px solid #C0C0C0;
    border-radius: 4px;
    text-align: center;
    font-variant: small-caps;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #252423;
    padding: 8px 16px;
    margin: 5px 5px;
}

.configPageContainer .mud-radio-group label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    color: #252423;
}

.configPageContainer .LunchBtn {
    background: #FFFFFF;
    border-radius: 4px;
    align-items: center;
    padding: 10px 15px;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    min-width: 16.5rem;
    color: #3978D3;
}
.mud-table-dense * .mud-table-row .mud-table-cell {
    padding: 6px 2px 6px 2px;

}
    .configPageContainer .LunchBtn:disabled {
        color: #FFFFFF;
    }

.configTableRow .mud-table-row {
    vertical-align: text-top;
}

.configPageContainer .mud-radio-button {
    color: #748AA3 !important;
    border-color: #748AA3 !important;
}
.configPageContainer {
    margin: 0 auto;
    width: 90%;
}
.texttitle {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    /* identical to box height, or 133% */

    font-variant: all-small-caps;
    /* Cool Gray */
    padding-bottom: 5px;
    color: #748AA3;
}

.linktext {
    display: block;
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* identical to box height, or 143% */
    /* Primary */

    color: var(--BemoPrimaryColor);
}

.infoBtn {
    font-family: var(--mud-typography-default-family);
    border-radius: 24px;
    text-transform: capitalize;
    font-size: 12px;
    line-height: 20px;
}

.align-right {
    align-items: end;
    /* padding: 0; */
    display: inline-flex;
    flex-direction: column;
}

.align-left {
    align-items: start;
    /* padding: 0; */
    display: inline-flex;
    flex-direction: column;
}

.card-text {
    /* Bold/H4 */

    font-family: var(--mud-typography-default-family);
    ;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    /* identical to box height, or 143% */
    /* Primary */

    color: #3978D3;
}
.card-btn-blue {
    padding: 8px 16px;
    width: 128px;
    height: 36px;
    /* Primary */
    margin: 6px;
    background: #3978D3;
    border-radius: 4px;
    color: white;
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    align-items: center;
    text-align: center;
}

.card-btn-white {
    margin: 6px;
    padding: 8px 16px;
    width: 128px;
    height: 36px;
    /* Primary */
    background: white;
    border: 0.5px solid #3978D3;
    border-radius: 4px;
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    align-items: center;
    text-align: center;

}



.header-text {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.inner-text {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #252423;
}

.inner-button {
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    text-transform: capitalize;
    padding: 6px 35px;
}

.shop-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 36px;
    gap: 10px;
}

.footer-card-btn-white {
    margin: 0;
    padding: 0;
    width: 62px;
    height: 36px;
    /* Primary */
    background: white;
    border: 1px solid #3978D3;
    border-radius: 4px;
    font-family: var(--mud-typography-default-family);
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    align-items: center;
    text-align: center;
    color: #3978D3;
}

#reconnect-modal {
    position: fixed;
    width: 100vw;
    height: 2em;
    top: -2em;
    background-color: black;
    color: white;
    transition: top 0.3s;
}

#reconnect-modal.visible {
    top: 0;
}

#reconnect-modal button {
    background-color: gray;
}

/* WARNING: Will not work on Firefox */
body:has(> #reconnect-modal.visible) {
    margin-top: 2em;
    transition: top 0.3s;
}

.mud-button-label {
    text-transform: capitalize !important;
}

.mud-divider.mud-divider-bottom {
    border-style: none none solid none;
}

@media screen and (max-width: 959px) {
    .card-carousel-grid {
        justify-content: center;
    }
}