@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/*
    Indigo Dye #003B53 - primary dark
    Electric Indigo #6E2BF3 - text hyperlink
    Deep Saffron #FF9933 - call to action
    Lavendar Blue #D7C5FC
    Alabaster #E3E4DB
    Alabaster2 #F6F6F3
*/

.purple {
    color: #3C1F77;
}

html, body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--culture);
}

.btn-link {
    color: #0366d6;
}

.btn-success:active {
    color: #fff;
    background-color: red;
    border-color: black;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

#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;
    }



.logo {
    font-family: Russo One, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    color: #3C1F77;
    line-height: 1;
    /*    padding: .5rem .5rem .5rem 5rem;
    width: 17rem;
*/
    display: flex;
    align-items: center;
    float: left;
}


.student-header {
    height: 7rem;
    color: white;
    padding: 1rem;
    margin-left: 17rem;
    margin-right: .3rem;
    /*background-image: url("/images/student-header.jpg");*/
    background-color: #8C849D;
    border: none;
    border-radius: 0.625rem;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90, 97, 105, 0.1), 0 0.9375rem 1.40625rem rgba(90, 97, 105, 0.1), 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 0 0.125rem 0.1875rem rgba(90, 97, 105, 0.1);
}

    .student-header h1 {
        color: lightgray;
    }

.dialog-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    animation: dialog-container-entry 0.2s;
}

@keyframes dialog-container-entry {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dialog {
    background-color: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    z-index: 2000;
    align-self: center;
    margin: auto;
    width: 700px;
    max-height: calc(100% - 3rem);
    animation: dialog-entry 0.4s;
    animation-timing-function: cubic-bezier(0.075, 0.820, 0.165, 1.000);
}

@keyframes dialog-entry {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateX(0px) scale(1.0);
    }
}

.dialog-title {
    background-color: #444;
    color: #fff2cc;
    padding: 1.3rem 2rem;
}

    .dialog-title h2 {
        color: white;
        font-size: 1.4rem;
        margin: 0;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        line-height: 1.3rem;
    }

    .dialog-title h3 {
        color: white;
        font-size: 1.2rem;
        margin: 0;
        font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        line-height: 1.1rem;
    }

.dialog-body {
    flex-grow: 1;
    padding: 0.5rem 3rem 1rem 0;
}

.dialog-buttons {
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background-color: #eee;
    padding: 0 1rem;
}

.dialog-body > div {
    display: flex;
    margin-top: 1rem;
    align-items: center;
}

.dialog-body label {
    text-align: right;
    width: 200px;
    margin: 0 1.5rem;
}

.dialog-body input, .dialog-body select {
    flex-grow: 1;
    width: unset;
}

.dialog-body .size-label {
    min-width: 110px;
    text-align: right;
}

.dialog .toppings {
    text-align: center;
    display: block;
    padding-left: 4rem;
}

.dialog .topping {
    display: inline-block;
    background-color: #a04343;
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 2rem;
    margin: 0.4rem 0.3rem;
    font-weight: 700;
}

.dialog .topping-price {
    font-weight: 100;
    font-size: 0.8rem;
}

    .dialog .topping-price::before {
        content: '?';
    }

.k-textbox {
    width: 100% !important;
}

.k-floating-label-container {
    width: 100% !important;
}


.item-container {
    margin: 2rem 0;
    position: relative;
}

    .item-container .item-details-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.item-details-container > * .amount {
    display: block;
    font-size: 1.5rem;
}

.item-container .item-content-wrapper {
    border-radius: .5rem;
    background: #fff;
    color: rgba(0, 0, 0, .9);
    overflow: hidden;
}

.selected-item {
    border: 1px solid indigo;
}

.completed-item {
    color: darkgreen;
    font-weight: 700;
}

.badge {
    align-items: center;
    height: fit-content;
    padding: 0.3em 0.5em;
}

.widget-icon-title {
    font-size: 1.8em;
}

.widget-image-title {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

input[type=checkbox], input[type=radio] {
    padding: 7px;
    accent-color: var(--indigo-dye);
}

.k-radio-list.telerik-blazor.radio-option.k-list-horizontal {
    gap: 0;
}

.k-radio-item, .k-radio-list-item {
    gap: 0;
    padding: 0.15em 0;
}

.k-radio.k-valid.k-radio-md {
    margin-right: 0.3em;
}

.appointment-date {
    color: white;
    font-size: 0.8em;
    font-weight: normal;
}

    .appointment-date.big {
        font-size: 0.9em;
        font-weight: bold;
    }

.tip-icon {
    color: var(--deep-saffron);
    font-size: 2em;
    margin-right: 0.5em;
    font-weight: bold;
}

ul.no-style li.tip {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border: 1px dashed var(--indigo-dye);
    border-radius: 0.5em;
    padding: 0.5em;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.projected-money {
    font-size: 1em;
    margin: 0;
}

.text-green {
    color: var(--spanish-green);
}

.text-red {
    color: var(--custom-danger);
}

.text-gray {
    color: #9CA2A8;
}

.text-black {
    color: #424242;
}

.projected-money-value {
    font-size: 0.9em;
    font-weight: 400 !important;
    margin: 0;
}

.projected-money-icon {
    font-size: 0.6em;
    font-weight: 200 !important;
    margin: 0;
}

table.projections {
    border-radius: 10px;
}

    table.projections th, table.projections td {
        border: 1px solid var(--indigo-dye-60);
    }

    table.projections.no-lines th, table.projections.no-lines td {
        border: none;
    }

    table.projections td {
        padding: 0 0.6em;
        text-align: end;
        font-size: 1em;
        font-weight: 400;
    }



    table.projections.no-lines td {
        padding: 0 0.6em;
        text-align: start;
        font-size: 1em;
        font-weight: 400;
    }

        table.projections.no-lines td.r {
            text-align: end;
        }

    table.projections td.header {
        text-align: start;
        color: var(--indigo-dye);
        font-family: 'Oswald', sans-serif;
    }

    table.projections th {
        font-family: 'Oswald', sans-serif;
        padding: 0 0.6em;
        text-align: end;
        font-size: 1em;
        font-weight: 400;
    }

.delete-icon-container {
    position: absolute;
    top: 0;
    right: 0;
    margin: -10px -10px 0 0;
}

.delete-icon {
    cursor: pointer;
    padding: 0.4em;
    font-size: 1em;
    text-align: right;
}

.desc-details {
    font-size: 1.2em;
    cursor: pointer;
}

.desc-details-1 {
    font-size: 1em;
}

.overlay {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.slider-text {
    font-size: 0.8rem;
    color: var(--indigo-dye);
    transform: translateY(0.3rem);
}


.instructions {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--indigo-dye);
    transform: translateY(0.3rem);
}

.text-btn {
    font-style: italic;
    font-weight: 400;
    color: var(--electric-indigo) !important;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .text-btn:hover {
        color: var(--deep-saffron) !important;
    }

.ordered-list {
    padding-inline-start: 20px;
}

    .ordered-list li {
        margin-bottom: 0.3rem;
    }

.custom-notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 3px;
}

    .custom-notification div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .custom-notification p,
    .custom-notification i {
        color: white;
        margin: 0
    }

    .custom-notification div > i {
        margin-right: 1rem;
        font-size: 1.25rem;
    }

    .custom-notification div > p > a {
        text-decoration: underline !important;
        color: white !important;
    }

.pt-6 {
    padding-top: 4.2rem !important;
}

.paywall-fact {
    padding: 0.5em 0.2em;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .paywall-fact p {
        font-size: 1.2em;
        margin-bottom: 0;
    }

    .paywall-fact i {
        font-size: 1.4em;
    }

.paywall-subtitle {
    font-size: 1.1em;
    text-align: center;
    margin: 0;
}

.border-r-0 {
    border-radius: 0 !important;
}

.bg-selected {
    background-color: var(--indigo-dye-light) !important;
}

.border-selected {
    border-width: 2px !important;
    border-color: var(--indigo-dye-light) !important;
}

.payment-success-bg {
    background-color: #CFF5D3;
    border-radius: 8px;
}

.payment-success-badge {
    background-color: #64AB6C;
}

.payment-error-bg {
    background-color: #F9C2C1;
    border-radius: 8px;
}

.payment-error-badge {
    background-color: #D92925;
}

.grid-sep {
    height: 75%;
    width: 1px;
}

.grid-sep-success {
    background-color: #64AB6C
}

.grid-sep-error {
    background-color: #D92925
}

.payment-error-icon {
    color: #D92925;
    font-size: 1.5em;
}

.splash-img-container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-img {
    height: 100%;
    width: auto;
}

.f-400 {
    font-weight: 400;
}

.z-i {
    z-index: 1;
}



table.custom-grid {
    color: var(--indigo-dye);
}

    table.custom-grid.td-small th {
        padding: 0.2rem 0;
        height: auto;
        font-family: 'Oswald';
        font-size: 1em;
        font-weight: 400;
        text-align: start;
        vertical-align: top;
        border: none;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: var(--control-border);
    }

    table.custom-grid.td-small td {
        font-size: 0.75em;
        padding: 0.2rem 0;
    }

.custom-grid td {
    border: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--control-border);
}

.title-with-icon {
    margin: 0;
    display: inline;
    font-style: normal;
}

.mh-130 {
    max-height: 130px;
}

.cool-icon {
    animation: rotating 4s infinite ease-in-out;
}

.cool-box::before {
    content: "";
    filter: opacity(0.25);
    position: absolute;
    /*    top: -4px;
    left: -4px;*/
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    background-size: 400%;
    /*    width: calc(100% + 8px);
    height: calc(100% + 8px);*/
    width: 100%;
    height: 100%;
    border-radius: 3px;
    z-index: 0;
    animation: glowing 20s linear infinite;
}

.action-widget {
    background-color: transparent;
    border: 1px solid var(--deep-saffron);
    border-radius: 0.25rem;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.dropdown-menu {
    left: -15px;
}

.rounded-pill-left {
    border-radius: 50rem 0 0 50rem;
}

.rounded-pill-right {
    border-radius: 0 50rem 50rem 0;
}

.font-size-bg {
    font-size: 1.25em;
}

.font-size-095 {
    font-size: 0.95em;
}

.font-size-sm {
    font-size: 0.85em;
}

.font-size-smaller {
    font-size: 0.70em;
}

.teaser-value {
    width: 100%;
    text-align: center;
    border: 1px solid var(--indigo-dye);
    border-radius: 3px;
    padding: 0.2em 0.2em;
    background-color: var(--light-gray);
}

    .teaser-value span {
        font-size: 1.5em;
        color: var(--electric-indigo);
        font-weight: bold;
    }

.teaser-symbol {
    font-size: 4em;
    font-weight: 600;
    line-height: 0;
    margin-top: 0.85em;
}

.price-teaser {
    font-size: 1.1em;
}

.paypal-logo-container {
    width: 125px;
    height: auto;
}

.bolder {
    font-weight: bold;
    font-size: 1.1em
}

.img-splash {
    display: inline-block;
    height: 2rem;
    width: auto;
}

    .img-splash img {
        width: 100%;
        height: 100%;
    }

span.trademark {
    font-size: 0.6em;
    vertical-align: top;
}

.text-green {
    color: var(--spanish-green);
}

table.teaser-table {
    width: 100%;
}

    table.teaser-table tr th {
        text-align: center;
        border: 1px solid var(--electric-indigo);
        padding: 0.1em 0.5em;
    }

    table.teaser-table tr:first-child th {
        background-color: var(--electric-indigo);
        color: white;
        text-align: start;
        padding: 0.1em 0.5em;
    }

    table.teaser-table tr td {
        text-align: center;
        font-size: 1.4em;
        font-weight: bold;
        padding: 0.3em;
        color: var(--electric-indigo);
        border: 1px solid var(--electric-indigo);
    }

table.welcome-table {
}

    table.welcome-table tr th {
        text-align: start;
        border: 1px solid var(--indigo-dye);
        padding: 0.1em 0.5em;
        color: var(--indigo-dye);
    }

    table.welcome-table tr td {
        text-align: center;
        padding: 0.5em 0.1em;
        color: var(--electric-indigo);
        border: 1px solid var(--indigo-dye);
    }

.left-pane {
    position: sticky;
    top: 80px;
    height: fit-content;
}

@media (max-width: 400px) {
    .slider-text {
        font-size: 0.65em;
    }

    .brand-name {
        font-size: 0.9em;
    }

    .navbar img {
        height: 1.8rem;
    }

    .teaser-title {
        font-size: 1em;
    }

    .teaser-value {
        padding: 0.2em 0.2em;
    }

        .teaser-value span {
            font-size: 0.85em !important;
        }

    .teaser-symbol {
        line-height: 1;
        font-size: 3em !important;
        margin-top: 0;
    }
}

.pulse-btn {
    box-shadow: 0 0 0 0 #FF9933;
    transform: scale(1);
    animation: pulse 2s infinite;
}

    .pulse-btn:hover {
        animation: none;
    }

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 #FF993380;
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px #FF993300;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 #FF993300;
    }
}

.box-shadow {
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.10);
}

span.numbered {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 13px;
}

.font-small {
    font-size: 0.8em;
}

.font-smallish {
    font-size: 1em;
}

.line-height-8 {
    line-height: 1.8;
}

.mb-md-c3 {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .mb-md-c3, .my-md-c3 {
        margin-bottom: 2rem !important;
    }
}

.border-2 {
    border-width: 2px;
}


div.ribbon::after {
    content: 'Upgrade';
    text-align: center;
    font-size: 0.8em;
    display: block;
    background-color: var(--deep-saffron);
    color: #fff;
    font-weight: bold;
    font-style: italic;
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.border-dashed {
    border-style: dashed;
    border-width: 1px;
}

.refinance-icon {
    width: 3em;
    height: 3em;
    vertical-align: -0.125em;
    color: var(--indigo-dye);
}

.refinance-description {
    margin: 0;
    line-height: 20px;
}

.tcpa-container {
    height: 400px;
    max-height: 400px;
    overflow-y: scroll;
    border: 1px solid var(--control-border);
    border-radius: 0.25rem;
    padding: 0.75em;
}

    .tcpa-container.small {
        height: 100px;
        max-height: 100px;
    }

    .tcpa-container::-webkit-scrollbar {
        width: 7px;
    }

    .tcpa-container::-webkit-scrollbar-thumb {
        background: var(--control-border);
        border-radius: 0.2rem;
    }

.k-checkbox-wrap {
    vertical-align: bottom !important;
}

    .k-checkbox-wrap.baseline {
        vertical-align: baseline !important;
    }

.welcome-logo {
    width: 6.5em;
    height: 6.5em;
    overflow: hidden;
}

    .welcome-logo img {
        width: auto;
        height: 100%;
    }


    .welcome-logo.partner {
        width: auto;
        height: 6.5em;
    }

        .welcome-logo.partner img {
            width: auto;
            height: 100%;
            object-position: center;
            object-fit: contain;
        }

.auth-content {
    padding-top: 6em;
}

    .auth-content.partner {
        padding-top: 4em;
    }

div.tooltip div.tooltip-inner {
    background-color: var(--indigo-dye);
}

div.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: var(--indigo-dye);
}

div.grecaptcha-badge {
    bottom: 50px !important;
}

.responsive-modal {
    width: 60%;
}

    .responsive-modal .k-window-content {
        padding: 0.5em;
    }

@media (max-width: 768px) {
    .responsive-modal {
        width: 95%;
    }
}
