/* Global styles for the BookStore application */
.spinner {
    width: 72px;
    height: 72px;
    display: block;
    position: fixed;
    top: calc( 50% - ( 72px / 2) );
    right: calc( 50% - ( 72px / 2) );
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #348dfe;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.page-content {
    min-height: auto;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.mnw-organ-tree .ant-tree-indent, .mnw-organ-tree .ant-tree-switcher {
    flex: none;
}

.mnw-organ-tree .ant-tree-node-content-wrapper {
    flex: 1;
}

.ant-design-body-content {
    margin: 16px 24px;
}

.ant-form-item-control.ant-col {
    width: 100%;
}

.ant-form-vertical .ant-form-item {
    margin-bottom: 12px;
}

.mnw-mb-0.ant-form .ant-form-item {
    margin-bottom: 0;
}

.ant-form-item-row.ant-row {
    width: 100%;
}

.ant-layout-header {
    height: 48px;
    line-height: 48px;
}

.ant-design-header-left .trigger {
    line-height: 48px;
}

.ant-table-container .ant-descriptions-item-label {
    opacity: 0.5;
}

.ant-table-container .ant-table-content {
    overflow-x: auto;
}

.ant-table-container table {
    min-width: 100%;
    width: max-content;
}

.ant-descriptions-item-label {
    text-align: end;
}

.mnw-voided {
    text-decoration: line-through;
    opacity: 0.6;
}

.mnw-header {
    height: 48px !important;
    background-color: #ffffff;
    display:flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:space-between;
    padding: 0 50px;
    position: fixed;
    width: 100%;
    top:0;
}
