html {
  font-size: 14px;
}

.cover {
    position: fixed;
    background: rgba(0, 0, 0, .1);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cover .loading {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 0.5rem solid rgba(255, 255, 255, 0.1);
    border-top-color: rgb(255, 255, 255);
    animation: spin 1s infinite linear;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid {
    display: none;
}

.view-table {
    width: 100%;
    table-layout: fixed;
}

.view-table tr,
.ui-jqgrid-htable tr,
.ui-jqgrid-btable tr {
    height: 45px;
}

.view-table th,
.view-table thead th,
.ui-jqgrid-htable th {
    background-color: var(--header-bg-color);
    padding: 5px;
    font-weight: bold;
    text-align: center;
}

th.ui-th-column,
th.ui-th-column-header {
    border: 1px solid #000;
}

.view-table td,
.view-table tbody td,
.ui-jqgrid-btable td {
    padding: 5px;
    height: 40px;
}

.view-table td input[type=checkbox] {
    margin-top: 5px;
    margin-left: 10px;
}

.ui-jqgrid-ftable {
    min-height: 40px;
}

.ui-jqgrid .ui-jqgrid-sortable span.s-ico {
    position: fixed;
}

.number_text {
    text-align: right;
}

.form-control {
    border-color: black;
    height:30px;
    
}

select.form-control {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
    appearance: menulist;
}
