﻿body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.k-drawer-container {
    min-height: calc(100vh - 130px);
    background-color: lightgray;
}

#app {
    flex: 1;
}

.header {
    height: 80px;
    background-image: url(../images/header-bg.png);
    background-blend-mode: luminosity;
    background-color: #ab3f63;
}

    .header .nav-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        color: #fff
    }

    .header .menu-button, .header .settings {
        flex: 0 0 48px;
        text-align: center
    }

    .header .k-button {
        border: none;
        background-color: transparent;
        background-image: none;
        color: #fff;
        box-shadow: none;
    }

        .header .k-button:hover {
            background-color: transparent
        }

    .header .title {
        display: flex;
        flex: 1 0 auto;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 25px
    }

    .settings-container {
        display: flex;
        align-items: center;
        margin-right: 10px;
    }

h1 {
    font-size: 1.75rem !important;
    font-weight: 400
}

@media(min-width: 480px) {
    h1 {
        font-size: 1.5rem;
        font-weight: 400
    }

    h2 {
        font-size: 1.25rem;
        font-weight: 200
    }
}

@media(min-width: 768px) {
    h1 {
        font-size: 1.75rem;
        font-weight: 400
    }

    h2 {
        font-size: 1.75rem;
        font-weight: 200
    }
}

.card-container {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

@media(min-width: 768px) {
    .card-container {
        margin: 25px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
}

@media(min-width: 480px) {
    .card-container {
        text-align: initial;
        padding: 30px;
    }
}

.contract-card-container {
    background-color: #fff;
    padding: 40px 0;
}

@media(min-width: 768px) {
    .contract-card-container {
        margin: 25px auto;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        max-width: 1320px;
    }
}

@media(min-width: 480px) {
    .contract-card-container {
        padding: 30px;
    }

    .contract-card-footer {
        margin: 0 -30px -30px -30px;
    }
}

@media(max-width: 480px) {
    .contract-card-container {
        padding: 15px;
    }

    .contract-card-footer {
        margin: 0 -15px -15px -15px;
    }
}

.form-label-required::after {
    content: "*";
    color: red;
}

.upload-label {
    margin-bottom: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.upload-panel {
    padding: 16px;
    border-radius: 14px;
    background-color: lightgray;
}

.profile-img {
    max-height: 250px;
    max-width: 250px;
}

.k-command-cell {
    text-align: right !important;
}

.attachment-viewer-window {
    z-index: 44444;
}

.attachment-button {
    margin: 5px;
}

.attachment-list-border {
    border: solid;
    border-radius: 5%;
    padding: 5px;
}

.custom-validation-message-danger {
    color: #d51923;
    font-weight: bold;
}

.payment-card {
    background-color: #f6fbe5 !important;
    border: 1px solid #94cc3f !important;
    color: #347208 !important;
}

.payment-chip-paid {
    background-color: #f6fbe5 !important;
    border: 1px solid #94cc3f !important;
    color: #347208 !important;
}

.payment-chip-unpaid {
    background-color: #f7fafa !important;
    border: 1px solid #edf4f4 !important;
}

.payment-chip {
    border-radius: 1rem !important;
}

.payment-chip .card-body {
    padding: 0.5rem;
}

.font-check {
    font-size: 50px !important;
}

.division {
    float: none;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}

.line.l {
    left: 0;
}

.line.r {
    right: 0;
}

.line {
    border-top: 1px solid whitesmoke;
    position: absolute;
    top: 10px;
    width: 40%;
}

.toolbar-text {
    margin: 0.5rem;
}

.highlight-row {
    background-color: #e9ff32 !important;
}

.rolodex-image {
    max-height: 100px;
    max-width: 100px;
}