/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

.layoutdiv {
    width: 80%;
    height: 100%;
    margin: auto;
}

.aggriddiv {
    width: 100%;
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn {
  font-family: optumSans
}
.btn-primary {
  color: #fff;
  background-color: #002677; /*dark blue*/
  border-color: #002677;
  border-radius: 35px;
}

.btn-outline-secondary { /*do we need this now*/
  color: #002677;
  border-color: #002677;
  border-radius: 35px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link { /*??*/
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-link:hover {
  background-color: #d9f6fa
}

.navbar {
  background-color: #FBF9F4 /*warm white*/
}

h1, h3, h2, h4 {
  color: #002677; /*headings dark blue*/
  font-family: optumSansBold;
}

p, td, .card-text, li, dl {
  color: #5A5A5A; /*text dark gray*/
  font-family: optumSans;
}

b, dt {
  font-family: optumSansBold !important;
}

.card-header {
  background: #FBF9F4 !important; /*warm white*/
}

.card {
  border-color: #babfc7 !important; /*light gray to match ag-grid borders*/
  margin-bottom: 1rem !important;
}

.hovertext {
  position: relative;
}

.hovertext:before {
  font-size: medium;
  content: attr(data-hover);
  visibility: hidden;
  opacity: 0;
  width: 150%;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 5px 5px;
  padding: 5px 10px;
  transition: opacity 1s ease-in-out;

  position: absolute;
  z-index: 1;
  left: 0;
  top: 110%;
}

.hovertext:hover:before {
  opacity: 1;
  visibility: visible;
}


/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}

.footer {
  background-color: #FBF9F4;
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
@font-face {
  font-family: optumSans;
  src: url(../ico/OptumSans-Regular.otf);
}

@font-face {
  font-family: optumSansBold;
  src: url(../ico/OptumSans-Bold.otf);
}

.ag-header-container {
  font-family: optumSans;
  background-color: #FBF9F4; /*warm white*/
}

.ag-body-viewport {
  font-family: optumSans;
}

.ag-theme-alpine {
  --ag-odd-row-background-color: rgb(253,252,251); /*lighter than warm white*/
}

.ag-theme-apline .ag-row-odd {
    background-color: var(--ag-odd-row-background-color);
}

/* Cluster Report
-------------------------------------------------- */

.CluserDataCenter{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

/* Report
-------------------------------------------------- */

.loader-container{
  display:none;
}

.loadersmall {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1.5s linear infinite;
    border-top: 6px solid #ff612b;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

table{
  padding: auto;
  text-align: center;
  border-collapse: collapse;
  margin-top: 1%;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  margin-top: 1%;
}




