﻿.content_table {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    min-width: 350px;
    height: 100%;
    border-collapse: collapse;
    font-family: Poppins, sans-serif;
}

    .content_table .header-l {
        width: 50%;
        vertical-align: bottom;
        text-align: right;
        padding-right: .8rem;
        padding-bottom: 0;
        border-bottom: solid 2px #ff751a;
    }

        .content_table .header-l h2 {
            font-size: 1.5rem;
        }

        .content_table .header-l h3 {
            font-size: 1.3rem;
        }

    .content_table .header-r {
        width: 50%;
        color: white;
        vertical-align: bottom;
        padding-bottom: 0;
        border-bottom: solid 2px #148fb8;
    }

        .content_table .header-r h2 {
            font-style: italic;
            font-size: 1.5rem;
        }

        .content_table .header-r h3 {
            font-style: italic;
            font-size: 1.3rem;
        }

    .content_table td {
        vertical-align: top;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

        .content_table td.left {
            text-align: right;
            /*background-color: #FFA500;*/
            background: linear-gradient(0.25turn, #ff751a, #ffb833);
            border-right: solid 6px black;
        }

        .content_table td.right {
            /*deepskyblue (#00bfff https://encycolorpedia.nl/00bfff) #148fb8 #99ffff #5aeded*/
            background: linear-gradient(0.25turn, deepskyblue, #148fb8);
            color: white;
        }

        .content_table td img.qr {
            object-fit: contain;
            width: 80%;
            max-width: 400px;
        }

    .content_table label.sublabel {
        font-style: italic;
        font-size: 0.9rem;
        color: brown;
    }

    .content_table .footer-l {
        border-top: solid 2px #ff751a;
        padding: .5rem;
    }

    .content_table .footer-r {
        border-top: solid 2px #148fb8;
        padding: .5rem;
    }

.btn-white {
    width: 100%;
    max-width: 200px;
    color: #148fb8;
    background-color: white;
}

.btn-trans {
    background-color: transparent;
    width: 100%;
    max-width: 200px;
}

span.nobreak {
    white-space: nowrap;
}

/*
    Blazor bootstrap Modal backdrop is dynamically generated on the root, which causes a z-index scope/context issue where the backdrop is always over the dialog window.
*/
.modal-backdrop {
    display: none;
}

.carousel-inner {
    position: unset;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.carousel-indicators [type=button]{
    background-color: black;
}
.carousel-control-next-icon {
    filter: invert(100%);
}
.carousel-control-prev-icon {
    filter: invert(100%);
}