/* _content/SeatingChart/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-g4br3ucsq9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-g4br3ucsq9] {
    flex: 1;
}

.sidebar[b-g4br3ucsq9] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-g4br3ucsq9] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-g4br3ucsq9]  a, .top-row .btn-link[b-g4br3ucsq9] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-g4br3ucsq9] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-g4br3ucsq9] {
        display: none;
    }

    .top-row.auth[b-g4br3ucsq9] {
        justify-content: space-between;
    }

    .top-row a[b-g4br3ucsq9], .top-row .btn-link[b-g4br3ucsq9] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-g4br3ucsq9] {
        flex-direction: row;
    }

    .sidebar[b-g4br3ucsq9] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-g4br3ucsq9] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-g4br3ucsq9], article[b-g4br3ucsq9] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/SeatingChart/Components/Pages/Login.razor.rz.scp.css */
fieldset[b-wkb0i005q5] {
    width: 100%;
    margin: .8em 0;
    padding: 1em;
    border: 1px #ccc solid;
    border-radius: 5px;
}
/* _content/SeatingChart/Components/Pages/View/Index.razor.rz.scp.css */
#map[b-xjmmhodydh] {
    height: 100%;
    width: 100%;
}

[b-xjmmhodydh] .map-title {
    padding: 5px 10px;
    background-color: rgba(200, 200, 200, 0.7);
}

[b-xjmmhodydh] .date-control-container {
    transform: scale(1.3);
}

[b-xjmmhodydh] .marker-icon > div {
    position: relative;
    height: 100%;
    width: 100%;
}

    [b-xjmmhodydh] .marker-icon > div > img {
        width: 100%;
        height: 100%;
    }

    [b-xjmmhodydh] .marker-icon div.schedules {
            position: absolute;
            bottom: 0;
            left: 0;
    }

        [b-xjmmhodydh] .marker-icon div.schedules > span {
            display: inline-block;
            width: 100%;
            white-space: nowrap;
            background: rgb(73, 66, 66);
            border: solid 1px grey;
            padding: .2em;
            color: white;
            font-size: 1.1em;
            box-shadow: 0 .1em .4em rgba(0,0,0,0.65);
            -webkit-border-radius: .4em;
            border-radius: .4em;
            opacity: 0.8;
        }

        [b-xjmmhodydh] .marker-icon div.schedules > span.marker-type-free-seat-empty {
            background-color: green;
        }

        [b-xjmmhodydh] .marker-icon div.schedules > span.marker-type-free-seat-use {
            background-color: blue;
        }
/* _content/SeatingChart/Components/Shared/ComponentsReconnectModal.razor.rz.scp.css */
#components-reconnect-modal[b-go3x85s1i8] {
    display: none;
    position: fixed;
    inset: 0px;
    z-index: 1050;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    opacity: 0.8;
    text-align: center;
    font-weight: bold;
    transition: visibility 0s linear 500ms;
    visibility: visible;
}

    #components-reconnect-modal h5[b-go3x85s1i8] {
        margin-top: 20px;
    }

    #components-reconnect-modal a[b-go3x85s1i8] {
        color: royalblue;
    }

    #components-reconnect-modal button[b-go3x85s1i8] {
        background-color: lightgray;
    }

    #components-reconnect-modal.components-reconnect-show[b-go3x85s1i8],
    #components-reconnect-modal.components-reconnect-failed[b-go3x85s1i8],
    #components-reconnect-modal.components-reconnect-rejected[b-go3x85s1i8] {
        display: block;
    }

    #components-reconnect-modal .failed[b-go3x85s1i8] {
        display: none;
    }
    #components-reconnect-modal.components-reconnect-failed .failed[b-go3x85s1i8] {
        margin: 5px auto;
        display: block;
    }

    #components-reconnect-modal .rejected[b-go3x85s1i8] {
        display: none;
    }
    #components-reconnect-modal.components-reconnect-rejected .rejected[b-go3x85s1i8] {
        margin: 5px auto;
        display: block;
    }

    #components-reconnect-modal.components-reconnect-failed .show[b-go3x85s1i8],
    #components-reconnect-modal.components-reconnect-rejected .show[b-go3x85s1i8] {
        display: none;
    }

    #components-reconnect-modal .progress[b-go3x85s1i8] {
        border-width: 0.3em;
        border-style: solid;
        border-color: rgb(52, 152, 219) rgb(243, 243, 243) rgb(243, 243, 243);
        border-image: initial;
        border-radius: 50%;
        width: 2em;
        height: 2em;
        display: inline-block;
        animation-name: rotate-b-go3x85s1i8;
        animation-duration: 2s;
        animation-iteration-count: infinite;
    }

@keyframes rotate-b-go3x85s1i8 {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}
