﻿.Tranarc-center-text {
    text-align: center !important;
}

/*.mud-button-filled {
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 30%), 0 2px 2px 0 rgb(0 0 0 / 0), 0 1px 5px 0 rgb(0 0 0 / 10%) !important;
}
*/
/* .mud-dialog {
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 10%), 0 2px 2px 0 rgb(0 0 0 / 0), 0 10px 10px 0 rgb(0 0 0 / 5%) !important;
} */

.mud-nav-link {
    white-space: normal !important;
    padding: 12px 16px 12px 15px !important;
}

.mud-nav-link.active:not(.mud-nav-link-disabled) {
    border-right: 3px solid var(--mud-palette-primary);
    background-color: rgba(var(--mud-palette-primary-rgb), 0.1);
}

/* .mud-table {
    padding: 20px !important;
    margin-bottom: 20px !important;
} */

/* .mud-card {
    margin-bottom: 20px !important;
} */

#blazor-error-ui {
    color: var(--mud-palette-drawer-text);
    background: var(--mud-palette-drawer-background);
}

.mud-overlay-dark {
    backdrop-filter: blur(2px);
}

.mud-card-header .mud-card-header-avatar {
    margin-inline-end: 10px !important;
}

/* .mud-dialog-content {
    max-height: 75vh !important;
    overflow: auto !important;
} */

.mud-grid-spacing-xs-3 {
    margin: 0px !important;
    margin-left: -12px !important;
}

.mud-table-toolbar {
    flex-wrap: wrap;
    margin-bottom: 20px !important;
}

::-webkit-scrollbar {
    width: 2px !important;
    height: 6px !important;
}

.Tranarc-nav-child {
    padding-left: 10px !important;
}


/*
  Customer style for the pricing module
*/

:root {
    --darkBlue: rgb(10, 41, 155);
    --textColorLightBlue100: rgb(57, 96, 237);
    --textColorLightBlue500: rgb(19, 62, 216);
    --textColorBlack: rgb(11, 10, 10);
    --tableRowColor1: rgb(217, 232, 244);
    --tableRowColor2: white;
}

.p-card-container {
    width: 90%;
    margin: auto;
    margin-top: 0px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.p-card {
    padding-top: 20px;
    min-height: 20px;
    overflow-y: auto;
    background-color: white;
    width: 100%;
}

.m-card {
    display: flex;
    flex-flow: column wrap;
    cursor: pointer;
}


.p-card-body-m div:nth-child(odd) {
    height: 50px;
    background-color: var(--tableRowColor1);
}

.p-card-body-m div:nth-child(even) {
    height: 50px;
    background-color: var(--tableRowColor2);
}

.p-card-body div.m-card-row:nth-child(odd) {
    height: 50px;
    background-color: var(--tableRowColor1);
}

.p-card-body div.m-card-row:nth-child(even) {
    height: 50px;
    background-color: var(--tableRowColor2);
}

.title-body > div.m-card-row {
    font-size: 11px;
}

.m-card-label {
    width: 0px;
    background-color: transparent;
    float: left;
    visibility: hidden;
}

.m-card-value {
    width: 100%;
    background-color: transparent;
    float: left;
    margin-left: -40px;
}


.p-card-body {
    min-height: 10px;
}

.m-card:hover {
    border: solid 2px var(--darkBlue);
    border-radius: 5px;
}

.title-text-mm {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

/** for iPad **/
@media screen and (min-width: 501px) and (max-width: 900px) {
    .m-card {
        margin-top: 20px;
        margin-bottom: 20px;
    }


    .p-card-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-flow: column nowrap;
    }

    .p-card:first-child {
        visibility: hidden;
        height: 0px;
    }

    .m-card-label {
        width: 40%;
        visibility: visible;
    }

    .m-card-value {
        width: 60%;
    }

    .title-text-mm {
        font-size: 16px;
        font-weight: bold;
        margin: 0 auto;
    }
}


/** For Phones */
@media screen and (max-width: 500px) {

    .m-card {
        margin-top: 20px;
        margin-bottom: 20px;
    }


    .p-card-container {
        width: 100%;
        margin: auto;
        display: flex;
        flex-flow: column nowrap;
    }

    .p-card:first-child {
        visibility: hidden;
        height: 0px;
    }

    .p-card-body div.m-card-row:nth-child(odd) {
        height: 40px;
        background-color: var(--tableRowColor1);
    }

    .p-card-body div.m-card-row:nth-child(even) {
        height: 40px;
        background-color: var(--tableRowColor2);
    }

    .m-card-label {
        width: 40%;
        visibility: visible;
    }

    .m-card-value {
        width: 60%;
    }

    .title-text-mm {
        font-size: 16px;
        font-weight: bold;
        margin: 0 auto;
    }
}

.p-card-header {
    height: 180px;
    border: solid 1px red;
}


.m-card-logo {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: var(--darkBlue);
    margin: 0 auto;
}

.m-card-plan-name {
    color: var(--textColorLightBlue100);
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.m-card-plan-price {
    color: var(--textColorBlack);
    text-align: center;
    font-size: 31px;
    margin-top: 10px;
    font-weight: bold;
}

.m-card-plan-description {
    color: var(--textColorLightBlue100);
    text-align: center;
    font-size: 11px;
    margin-top: 10px;
}

.m-card-plan-btn {
    background-color: var(--textColorLightBlue500);
    color: var(--tableRowColor1);
    text-align: center;
    margin: 0 auto;
    font-size: 12px;
    margin-top: 10px;
    width: 70%;
    border-radius: 3px;
    padding: 7px;
}


.title-body {
    font-size: 14px;
}

.title-body div {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
    padding-left: 20px;
}

.price-body {
    font-size: 13px;
}

.price-body div {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
