.modal {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5em 1em;
    z-index: 1200;
    box-sizing: border-box;
  }
  
  .modal.modal-fade {
    animation: fade-in 1s 1 linear;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  
  .modal > .modal-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .modal > .modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #5e5e5e;
    cursor: pointer;
    font-size: 1.25em;
    padding: 7px;
    background: rgba(255, 255, 255, 0.749);
    border: 1px solid #c3c0c0;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
  }
  
  .modal > .modal-close:hover {
    background: rgba(255, 255, 255, 0.989);
  }
  
  .modal > .modal-body {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 100%;
    padding: 15px 20px;
    color: #545454;
    width: 25em;
    height: 25em;
    max-width: 100%;
  }
  
  
  @keyframes fade-in {
    0% {
      animation-timing-function: cubic-bezier(0.2242, 0.7499, 0.3142, 0.8148);
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
.divider {
  display: table;
  font-size: 24px;
  text-align: center;
  width: 75%;
  margin: 20px auto;
  cursor: pointer;
}
.divider span {
  display: table-cell;
  position: relative;
}
.divider span:first-child,
.divider span:last-child {
  width: 50%;
  top: 3px;
  -moz-background-size: 100% 2px;
  background-size: 100% 2px;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
}
.divider span:first-child {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#b9b9b9));
  background-image: -webkit-linear-gradient(180deg, transparent, #b9b9b9);
  background-image: -moz-linear-gradient(180deg, transparent, #b9b9b9);
  background-image: -o-linear-gradient(180deg, transparent, #b9b9b9);
  background-image: linear-gradient(90deg, transparent, #b9b9b9);
}
.divider span:nth-child(2) {
  color: #979797;
  padding: 0px 5px;
  width: auto;
  white-space: nowrap;
}
.divider span:last-child {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b9b9b9), to(transparent));
  background-image: -webkit-linear-gradient(180deg, #b9b9b9, transparent);
  background-image: -moz-linear-gradient(180deg, #b9b9b9, transparent);
  background-image: -o-linear-gradient(180deg, #b9b9b9, transparent);
  background-image: linear-gradient(90deg, #b9b9b9, transparent);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 5px;
}
::-webkit-scrollbar-track:hover {
    background: #e6e6e6;
    border-radius: 5px;
  }
::-webkit-scrollbar-thumb {
  background: #838a99;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #495361;
}

#title {
  text-align: center;
  font-family: arial, sans-serif;
}

#cases {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 13px;
  border-collapse: collapse;
  width: 100%;
  color: #7b809a;
  text-align: center;
}

#cases td,
#cases th {
  padding: 8px;
  text-align: start;
  word-break: break-all;
}

#cases tr {
  border-bottom: 0.1px solid #bebebe7e;
  overflow: hidden;
  line-height: 14px;
  height: 14px;
  word-break: break-all
}

#generic {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 13px;
  border-collapse: collapse;
  color: #7b809a;
  text-align: center;
}

#generic td,
#generic th {
  padding: 8px;
  text-align: start;
  vertical-align: top;
  text-overflow: ellipsis;
  overflow: hidden;
}

#generic tr {
  border-bottom: 0.1px solid #bebebe7e;
  line-height: 14px;
  height: 14px;
}

.paginationSelected {
  color: white !important;
  background: linear-gradient(270deg, #838a99, #495361) !important;
}

.paginationselected :focus {
  outline: 0 !important;
}

.pagination {
  color: #495361 !important;
}

.pagination :focus {
  outline: 0 !important;
}

.MuiSelect-icon{
    display: inline !important;
}

.MuiSelect-iconOpen{
    display: inline !important;
}
#spinner {
    -webkit-animation: frames 1s infinite linear;
    animation: frames 1s infinite linear;
    background: transparent;
    border: 1vw solid #fff;
    border-radius: 100%;
    border-top-color: #000000;
    width: 5vw;
    height: 5vw;
    opacity: 0.6;
    padding: 0;
    top: 45%;
    left: 45%;
    position: fixed;
    z-index: 999;
  }
  @keyframes frames {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }

  #progressbar {
    padding: 0;
    top: 50%;
    left: 50%;
    position: fixed;
    z-index: 999;
  }
  
  #pause {
    display: block;
    background: rgba(0, 0, 0, 0.66) no-repeat 0 0;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
  }
.bg {
  /* The image used */
  background-image: url(/static/media/wp2855606.89f02752.jpg);

  /* Full height */
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100vw;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: white;
}

