html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media print {
    .container {
        padding-left: unset !important;
        padding-right: unset !important;
        max-width: unset !important;
    }
    .noPrint {
        display: none !important;
    }
}

@media screen {
    .onlyPrint {
        display: none !important;
    }
}



.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;
}
.nav-tabs .nav-link.active {
    color: white;
    background-color: #5ba7fa;
}

.btn-primary:disabled, .btn-primary.disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #6c757d !important;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.bg-green {
    background-color: #8BC751;
}

.e-columnheader {
    background-color: #8BC751;
    border-bottom: 1px solid #000000;
}

.e-hide {
    display: none;
}

.e-rowcell {
    cursor: pointer;
}

.e-row:hover {
    color: #0a58ca;
    /* background-color: #E7FFCC; */
}

.e-altrow {
    background-color: #CCCCCC;
}
.form-floating1 {
    padding-bottom: 4px;
}
.popupSelect {
    background-color: #CCCCCC;
    border: 1px solid grey;
    border-radius: 5px;
}
.dropdown-menu {
    z-index: 1100 !important;
}
.btn-nospace {
    padding: 0 0 !important;
    border-radius: 0px !important;
}

.fs-small {
    font-size: 0.6rem;
}

[x-cloak] {
    display: none !important;
}

.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
.helpdiv {
    padding: 0px;
}

.helpTextBox {
    font-size: 11px;
    background-color: white;
    border-style: solid;
    border-color: green;
    border-width: 1px;
    border-radius: 4px;
    padding: 4px;
}
