﻿.dialog-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 7777777;
    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: 7777777;
    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);
    border-radius: 3px;
}

@keyframes dialog-entry {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateX(0px) scale(1.0);
    }
}

.dialog-title {
    background-color: #fff;
    color: black;
    padding: 1.3rem 2rem;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

    .dialog-title h5 {
        font-size: 1.2rem;
    }
/*asdf*/
.modal-header-buttons {
    position: relative;
}


.dialog-body {
    height: 80px;
    background-color: #f2f4f5 !important;
    flex-grow: 1;
    padding: 0.5rem 3rem 1rem 0;
}

.qhy-dialog-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    align-items: center;
    justify-content: center;
    background-color: rgba(90,110,117,.3) !important;
    height: 50px;
}


/*
.table-fixed-body > .table > tbody > tr > td, .table-fixed-header > .table > thead > tr > th {
    padding: 0;
}

    .table-fixed-body > .table > tbody > tr > td > .table-cell {
       padding:0px 3px;
       height:24px;
       vertical-align:middle;
    }



.table-fixed-body > .table > tbody > tr > td input {
    height: 24px !important;
    color: green;
    margin: 0;
}*/




/*#region qhy-table*/

.qhy-table {
    width: 100%;
    border-spacing: 0;
    border: 0;
    border-collapse: collapse;
    font-size: 12px;
    position: relative;
    table-layout: fixed;
    background-color:#fff;
    margin-bottom:0;
}

    .qhy-table .fieldName {
        width: 10%;
        text-align: right;
        padding-right: 14px;
        line-height: var(--form-height) !important;
        white-space: nowrap;
        background-color: #fff;
    }

    .qhy-table .fieldValue {
        width: 15%;
    }

    .qhy-table input {
        /*color: black !important;*/
        color:black;
    }

    .qhy-table tbody tr:nth-child(1) {
        border-top: 1px solid #cfdadd;
    }

    .qhy-table tbody tr td:nth-child(1) {
        border-left: 1px solid #cfdadd;
    }

    .qhy-table tbody tr {
        border-bottom: 1px solid #cfdadd;
    }

        .qhy-table tbody tr td {
            border-right: 1px solid #cfdadd;
            /*border-bottom: 1px solid #cfdadd;*/
            min-width: 120px;
        }

    .qhy-table tbody td {
        height: 24px;
        word-break: break-all;
        min-height: var(--form-height) !important;
    }

    .qhy-table thead tr th:nth-child(1) {
        border-left: 1px solid #cfdadd;
    }

    .qhy-table thead tr th {
        border-right: 1px solid #cfdadd;
        /*border-bottom: 1px solid #cfdadd;*/
        min-width: 120px;
    }

    .qhy-table thead th {
        height: 24px;
        word-break: break-all;
        min-height: var(--form-height) !important;
    }

/*#endregion */
