﻿/*
 * Bootstrap overrides
 */
table {
    margin-bottom: 0;
}

nav {
    height: 70px !important;
}

img.logo {
    position: relative;
    z-index: 1000;
    margin-top: 60px;
    height: 100px;
}

.time-warning ul {
    list-style-type: none;
    padding-left: 0;
}

.claimant-details {
    margin-top: 15px;
}

#reporting .summary-tile {
    font-size: 10em;
    width: 100%;
    height: 100px;}
    #reporting .summary-tile .green {
        background-color: green;
    }

/*Evidence State*/
.AWAITINGAPPROVAL {
    background-color: #FF8800;
    color: white;
}
/*State Background Colours*/
.NOTIFICATION {
    background-color: #0069d9 !important;
    color: white !important;
}

.TIMEDOUT {
    background-color: #343a40 !important;
    color: white !important;
}

.CLAIM {
    background-color: #563d7c !important;
    color: white !important;
}

.APPROVED {
    background-color: #28a745 !important;
    color: white !important;
}

.REJECTED {
    background-color: #dc3545 !important;
    color: white !important;
}

.APPEAL {
    background-color: #ffc107 !important;
    color: white !important;
}

/*Recovery State Background Colours*/

.RECOVERY_RECOVERED {
    background-color: green !important;
    color: white !important;
}

.RECOVERY_PENDING_RECOVERY {
    background-color: orange !important;
    color: white !important;
}

.RECOVERY_CANCELLED {
    background-color: red !important;
    color: white !important;
}

.RECOVERY_IN_RECOVERY {
    background-color: deepskyblue !important;
    color: white !important;
}
/* State Background - Table lists.*/
td.DRAFTSTATE {
    border-bottom: 3px solid #0069d9;
}

td.TIMEDOUTSTATE {
    border-bottom: 3px solid #343a40;
}

td.SUBMISSIONSTATE {
    border-bottom: 3px solid #563d7c;
}

td.APPROVEDSTATE {
    border-bottom: 3px solid #28a745;
}

td.REJECTEDSTATE {
    border-bottom: 3px solid #dc3545;
}

td.APPEALSTATE {
    border-bottom: 3px solid #ffc107;
}

/*Adding FLoating Settlement Grid*/
.sticky-Container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.floating-settlement {
    width: 100%;
    height: 200px;
    background: white;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}


.grid-container {
    margin: 0;
}

.grid-container {
    top: 10px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    position: absolute;
    display: grid;
    grid-template-columns: 0.2fr 1fr 0.2fr;
    grid-template-rows: 0.2fr auto auto 1fr 0.2fr;
    gap: 1px 1px;
    grid-template-areas: ". . ." ". SettlementTitle ." ". SettlementValue ." ". SettlementOptions ." ". . .";
}

.SettlementValue {
    font-size: 4em;
    grid-area: SettlementValue;
    text-align: center
}

.SettlementOptions {
    grid-area: SettlementOptions;
}

.SettlementTitle {
    font-size: 1.5em;
    text-align: center;
    grid-area: SettlementTitle;
}

@media (min-width: 1200px) {
    .container {
        max-width: 80%;
    }
}

.card > table {
    margin-bottom: 0;
    border: none;
    border-style: hidden;
}

.card .card-body .form-group:last-of-type {
    margin-bottom: 0;
}

    .card .card-body .form-group:last-of-type table {
        margin-bottom: 0;
    }

    .card .card-body .form-group:last-of-type .input-group {
        margin-bottom: 0 !important; /* Overrides .mb-3 rule for margin-bottom */
    }
/*.k-grid .k-column-title {
    white-space: normal;
}
*/
