/* The Modal (background) */
body {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    -webkit-animation-name: fadeIn; /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
  }
  
  /* Modal Content */
  .modal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    height: 90%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    overflow: auto;
    
  }

  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-header {
    padding: 2px 16px;
    background-color: #405cda;
    color: white;
    text-align: center;
  }
  
  .modal-body {padding: 2px 16px;}
  
  .modal-footer {
    position:fixed;
    bottom: 0px;
    width:100%;
    padding: 2px 16px;
    background-color: #405cda;
    color: white;
    margin-top: 5%;

  }
  
  /* Add Animation */
  @-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0} 
    to {bottom: 0; opacity: 1}
  }
  
  @keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
  }
  
  @-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
  }
  
  @keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
  }
  .odd {background-color: rgb(79, 80, 167); text-align: center; font-family:sans-serif;}
  .even {background-color: #405cda; text-align: center;font-family:sans-serif;}
  .responsive {overflow:auto; height: 600px; width: 80%; margin: auto;}
  .responsive thead tr {position:sticky; top:0; z-index: 1;}
  #charts{
    text-align: center;
    width: 100%;
    height: 100%;;
    margin-top: 3%;
  }
  
  .grid-item{
    text-align: center !important;
    margin:auto !important;
    width:80% !important;
    height: 80% !important;
    transition: max-height 300ms, opacity 200ms;
    
  }

  .grid-container {
    display: grid;
    grid-template-columns: 100% 100%;
    text-align: center;
    width: 100%;
    height: 100%;;
    margin-top: 3%;
    

  }


  .button {
    background-color: #405cda; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 15px;
    box-shadow: 0 5px #999;
  }
  .button:hover {background-color: #1c2587}

  .inputbutton:hover {
    /* background-color: #3a3e64 !important; */
    animation: glowing 1300ms infinite !important;
  
  
  }
  .inputbutton {
    box-shadow: 0 3px rgb(167, 165, 165) !important;
    padding-top:0.8%;
    padding-bottom:0.8%;
    font-size: large !important;
    
  }

  @keyframes glowing {
    0% {
      background-color: #2ba805;
      box-shadow: 0 0 5px #2ba805;
    }
    50% {
      background-color: #49e819;
      box-shadow: 0 0 20px #49e819;
    }
    100% {
      background-color: #2ba805;
      box-shadow: 0 0 5px #2ba805;
    }
  }


  .glow {
    font-size: 80px;
    color: rgb(240, 219, 33);
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }
  
  @keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #594dff, 0 0 40px #4d77ff, 0 0 50px #714dff, 0 0 60px #2a1bd2, 0 0 70px #0c0a72, 0 0 80px #211872;
    }
  }



@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}
.even:hover{
    background-color: #909198;
}
.odd:hover{
  background-color:#909198 ;
}