.cover {
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-color: white;
}

body {
  /* overflow: hidden; */
}

/*  */

.tools {
  width: 100%;
  max-width: 1400px;
  display: block;
  margin: auto;
  margin-top: 18px;

}

#search-box {
  display: inline-block;
}

input {
  border: none;
  outline: none;

  padding: 6px;
}

input[type="text"] {

  border-bottom: 1px solid gray;
}

input[type="button"] {
  background-color: rgb(238, 238, 238);
  border-radius: 4px;
}

.tools>div {
  display: inline-block;
  padding-right: 2rem;
}

i {
  position: absolute;
  top: 22px;
  right: 12px;
  color: rgb(19, 41, 75);
}


/*  */

.info-dispo {
  background-color: dodgerblue;
}

#table-info {
  width: 100%;
  max-width: 1400px;
  height: 800px;
  /* min-height: 800px; */
  /* max-height: 800px; */
  overflow-x: scroll;
  display: block;
  margin: auto;
  margin-top: 24px;
}

#logo {
  width: 160px;
  position: absolute;
  right: 0;
}

ul {
  list-style-type: none;
}

li {
  display: inline-block;
  padding-right: 28px;
  margin-top: 16px;
}

li>a {
  color: white;
  text-decoration: none;
}

li>a:hover {
  color: white;
  text-decoration: underline;
}

.navbar {
  background-color: rgb(19, 41, 75);
  width: 100%;
  padding: 16px 0;
  /* height: 128px; */
}

.navbar-content {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: center;
}



/* toogle */
/* tr {
  border-bottom: 1px solid gray;
} */

table tr:nth-child(odd) td {
  background-color: rgb(236, 240, 247);
}

table tr:nth-child(even) td {
  background-color: white;
}

th {
  background-color: rgb(207, 215, 228);
  height: 112px;
  font-size: 0.9rem;

  vertical-align: bottom;

  /* transform: rotate(90deg) translateY(-100%); */

  position: sticky !important;
  position: -webkit-sticky;
  top: 0px;
  z-index: 999;
  border: 1px solid white;
}

td {
  font-size: 0.8rem;
}



/*  */


/* .alm {
  text-align: center;
  display: none;
} */

th#alm {
  text-align: center;
  background-color: rgb(187, 196, 211);
}

.disp {
  background-color: rgb(197, 219, 195) !important;
  text-align: center;
}


.tdas {
  background-color: rgb(160, 179, 212) !important;
  text-align: center;
}

.tdaspdisp {
  background-color: rgb(143, 144, 201) !important;
  text-align: center;
}

/*  */
table.rotate-table-grid {
  box-sizing: border-box;
  border-collapse: collapse;
}

.rotate-table-grid tr,
.rotate-table-grid td,
.rotate-table-grid th {
  position: relative;
  padding: 8px;
}

.rotate-table-grid th span {
  transform-origin: 0 50%;
  transform: rotate(-90deg);
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
}

/* scroll */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/*  */

.img-logo {
  width: 126px;
}

.img-logo>img {
  width: 100%;
}

/* loading bar */

.loading-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid rgb(207, 215, 228);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: rgb(207, 215, 228) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}