﻿#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;
    }

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
}

.modal-background {
    padding: 25px;
    border-radius: 10px;
    border-style: solid;
    border-color: #777;
    border-width: 2px;
}

.theme-dark .modal-background {
    background-color: rgba(0,0,0,0.7);
}

.theme-light .modal-background {
    background-color: rgba(255,255,255,0.8);
}

.modal-message {
    font-size: 18px;
}

.btns-message {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.btn--multi {
    display: inline-flex;
    margin-left: 13px;
    margin-right: 13px;
}

.meal__quantity_history {
    width: 80px !important;
}

.meal__opinion {
    width: auto !important;
    vertical-align: central !important;
}

    .meal__opinion img {
        width: 90px;
        height: 90px;
        padding: 5px;
        cursor: pointer;
    }

        .meal__opinion img.unselected {
            opacity: 0.3;
        }

.settlements-list__item {
    display: grid;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    color: #000;
    grid-template-columns: 2fr 1fr;
    grid-gap: 50px;
}

.settlements-list__info {
    font-weight: normal;
    font-size: 18px;
    margin: 5px;
    display: flex;
    justify-content: space-between;
}

.settlements-list__amount {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
}

.badge {
    width: 19px;
    height: 19px;
    line-height: 19px;
    border-radius: 50%;
    text-align: center;
    background: #d00;
    display: inline-block;
}

.panel {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    padding-right: 40px;
    display: flex;
    position: relative;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
}

.order-panel {
    position: fixed !important;
    bottom: 0 !important;
    margin-left: -20px;
    background-color: lightyellow !important;
    box-shadow: 0 0 10px grey;
    border: 2px grey;
    z-index: 50;
}

.panel__text {
    width: 100%;
    color: #000;
}

.panel__title {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.panel__title-text {
    font-weight: 600;
    font-size: 18px;
    margin-right: 20px;
}

.panel h2 {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

@media(max-width: 480px) {
    .panel__title {
        position: static;
    }

    .panel__title-text {
        font-size: 16px;
        margin-right: 0;
    }

    .panel__title-btn {
        height: 32px;
        margin-top: 10px;
    }
}

@media(max-width: 767px) {
    .panel {
        flex-direction: column;
    }

    .panel__title {
        /*position: absolute;*/
        top: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .panel__title-text {
        font-size: 16px;
        margin-right: 0;
    }
}

@media(max-width: 980px) {
    .panel {
        background-color: #fff;
        border-radius: 5px;
        padding: 20px;
        display: flex;
        position: relative;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}

.answers {
    list-style: none;
    margin: 10px 0 10px 0;
}

    .answers > li {
        padding: 10px 0 0 0;
    }

        .answers > li.temporary {
            color: #444;
        }

.hamburger .hamburger__notification {
    width: 14px;
    height: 14px;
    background-color: #f00;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 10px;
    left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger--active .hamburger__notification {
    display: none;
}
