body {
    font: normal normal 16px 'Open Sans', sans-serif;
}

.font-roboto {
    font-weight: 200;
    font-family: 'Roboto', sans-serif;
}

.page-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.button-new {
    line-height: 50px;
    text-align: center;
    font-size: 25px;
    font-weight: 300;
    text-decoration: none;
}

/* shadows for levels */
    .level-1.shadow {
        box-shadow: 0 1px 10px #000;
    }
    .level-2.shadow {
        box-shadow: 0 0 5px #000;
    }

/* sidebar navigation */

    .nav {
        margin-top: 12px;
        margin-bottom: 10px;
        margin-left: 0;
        margin-right: 0;
    }
    .nav-intern {}
    .nav-item {
        display: block;
        font-weight: 600;
        text-decoration: none;
        padding-left: 10px;
        height: 48px;
        overflow: hidden;
    }
    .nav-item:hover {
        background: #FFCDD2;
    }
    .nav-item:hover .nav-icon {
        color: #FFFFFF;
    }
    .nav-icon {
        display: inline-block;
        width: 32px;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        color: #D32F2F;
    }
    .nav-title {
        display: inline-block;
        text-transform: normal;
        font-size: 14px;
        line-height: 14px;
        padding-top: 17px;
        padding-bottom: 17px;
        padding-left: 8px;
    }
    .nav-divider {        
        border-bottom-width: 1px;
        border-bottom-style: solid; 
    }

/* box styles */
    .box-header {
        font-size: 1.25em;
        margin-bottom: .5em;
    }


/* billing styles */
    .billing-list {
        box-shadow: 0 2px 4px #727272;
    }
    .billing-list li {
        font-weight: 400;
        height: 32px;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        padding-left: 8px;
        position: relative;
    }
    .billing-list li .fa {
        color: #993333;
    }
    .billing-list li:last-child {
        border-bottom: none;
    }
    .billing-date,
    .billing-customer,
    .billing-billnumber {
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 8px;
        margin-right: 8px;
        line-height: 16px;
        font-size: 15px;
    }
    .billing-action {
        position: absolute;
        right: 5px;
    }
    .billing-date {

    }
    .billing-customer {

    }
    .billing-billnumber {

    }
    .payment-overdue {

    }
    .send-bill {

    }

/* Palette generated by Material Palette - materialpalette.com/red/indigo */

.dark-primary-color    { background: #D32F2F; }
.default-primary-color { background: #F44336; }
.light-primary-color   { background: #FFCDD2; }
.text-primary-color    { color: #FFFFFF; }
.accent-color          { background: #536DFE; }
.primary-text-color    { color: #212121; }
.secondary-text-color  { color: #727272; }
.divider-color         { border-color: #B6B6B6; }

.admin {
    & header {
        & h2 {
            font-size: 1.5rem;
            font-weight: 700;
        }
    }

    & .list {
        box-shadow: 0 2px 3px #727272;
        margin-bottom: 32px;

        & .invoice-type {
            flex-basis: 1rem;
            flex-grow: 0;
            flex-shrink: 0;
            color: #993333;
        }

        & .invoice-date {
            flex-grow: 0;
            flex-shrink: 0;
        }

        & .invoice-customer {
            flex-grow: 0;
            flex-shrink: 0;
        }

        & .invoice-description {
            flex-grow: 1;
            flex-shrink: 1;
            color: #333333;
        }
    }

    & .list-item {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: .25rem;
        border: 1px solid #B6B6B6;
        padding: .25rem;
        color: #727272;
        background-image: none;
        margin-bottom: 0;
        box-shadow: none;

        &:not(:last-child) {
            border-bottom: none;
        }

        &:nth-child(even) {
            background-color: #f2f2f2;
        }

        & .actions {
            color: #993333;
        }
    }

    & .invoice {
        & .address {
            line-height: 1.15em;
            max-width: 20rem;
            margin-bottom: 4rem;
        }

        & .meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: .25rem;

            & .number {
                font-weight: bold;
            }
        }

        & table {
            width: 100%;
            margin-bottom: .05rem;

            & thead {
                border-top: 2px solid #993333;
                border-bottom: 1px solid #D2D2D2;
            }

            & tbody {
                margin-bottom: 1rem;
                border-bottom: 1px solid #993333;
            }

            & tfoot {
                & tr:not(.muted) {
                    & .sum {
                        border-bottom: 3px double #333;
                    }
                }
            }

            & th {
                padding: .15rem 0;
                background-color: #f2f2f2;
            }

            & td {
                padding: .15rem;
            }

            & .pos {
                text-align: center;
            }

            & .amount {
                text-align: center;
            }

            & .description {
                text-align: left;
            }

            & .price {
                text-align: right;
            }

            & .sum {
                text-align: right;
                padding-right: .15rem;
            }

            & .muted {
                color: #727272;
            }
        }

        & .smallprint {
            font-size: .6rem;
            margin-bottom: 2rem;
        }

        & .payment {
            & p {
                margin-bottom: 1rem;
            }

            & .banking-info {
                margin-left: 1rem;
                line-height: 1.25rem;
            }
        }
    }
}