@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);
}

a, .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: #444444;
    border: none;
    border-radius: 0.325rem;
    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;
    }

.order-header {
    height: 7rem;
    color: white;
    padding: 1rem;
    margin-left: .3rem;
    margin-right: .3rem;
    /*background-image: url("/images/student-header.jpg");*/
    background-color: #444444;
    border: none;
    border-radius: 0.325rem;
    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);
}

    .order-header h1 {
        color: lightgray;
    }

.dialog-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    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: 1rem 3rem;
}

.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;
}

.overlay {
    position: fixed;
    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;
}

.k-grid-header .k-with-icon, .k-grid-header .k-filterable {
    padding-right: 0;
}

.k-grid .k-cell-inner .k-grid-filter, .k-grid .k-cell-inner .k-header-column-menu, .k-grid .k-cell-inner .k-grid-header-menu {
    margin-inline-end: 0;
}

.f18 {
    font-size: 1.8em;
}

.telerik-blazor.k-grid.grid-small-font td.k-table-td {
    font-size: 0.9em;
}

.telerik-blazor.k-grid.td-clickable td.k-table-td {
    cursor: pointer;
}

.telerik-blazor.k-grid.text-success td.k-table-td {
    color: #6e2bf3 !important;
}

.card.card-transparent, .card.card-transparent div {
    background-color: transparent;
    border: none;
}
    .card.card-transparent .card-header {
        padding: 0;
        margin-bottom: 0.5em;
    }
    .card.card-transparent .card-body {
        padding: 0;
    }

    .col-separator {
        border-right: 1px solid;
    }
.font-small {
    font-size: 0.9em;
}
.k-window-actions{
    margin: 0 !important;
}
.custom-sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: white;
    position: fixed;
    height: fit-content;
    overflow: auto;
}

    .custom-sidebar a {
        cursor: pointer;
        display: block;
        color: var(--indigo-dye);
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        font-size: 1.2em;
        font-weight:300;
        border-bottom: 1px solid rgba(33, 37, 41, 0.125);
    }

        .custom-sidebar a.active {
            transition: 0.1s;
            background-color: var(--deep-saffron);
            color: white;
        }

        .custom-sidebar a:hover:not(.active) {
            transition: 0.1s;
            background-color: var(--control-border);
            /*            color: white;*/
        }

div.sidebar-content {
    margin-left: 200px;
    padding: 1px 16px;
    height: 100%;
}

div.k-form-field{
    padding-right:20px;
}

span.filter-box input{
    border:1px solid gray;
    height:30px;
    border-radius:5px;
}

.icon-button{
    cursor:pointer;
    width:16px;
}

@media screen and (max-width: 700px) {
    .custom-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

        .custom-sidebar a {
            float: left;
        }

    div.sidebar-content {
        margin-left: 0;
    }
}

@media screen and (max-width: 400px) {
    .custom-sidebar a {
        text-align: center;
        float: none;
    }
}

.z-index-under {
    position: relative;
    z-index: 100;
}