@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
main {
  background-color: #007201;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0rem;
  text-align: center;
  height: 100vh;
  overflow-y: auto;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid rgba(255,255,255,0.5);
  width: 100%;
  position: fixed;
  overflow: hidden;
  z-index: 3;
  background: #007201;
  padding: 3%;
}
ul {
  list-style: none;
  display: flex;
}

li {
  margin-right: 1rem;
  color: #fff;
}
h1 {
color: #fff;
    margin: 0;
    text-transform: capitalize;
color: #fff;
    margin: 0;
    text-transform: capitalize;
}
.container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 3%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 5%;
  }
  .card {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 44vw;
    height: 44vw;
    background: #fff;
    box-shadow: 0 6px 6px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
    border-radius: 5px;
    margin: auto;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  .card--number {
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 15vw;
    margin: 3vw 0;

  }
  .card--name {
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 5vw;
    margin: 0;
    position: absolute;
    bottom: 14vw;
  }
  .card--time {
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 5vw;
    margin: 0;
    position: absolute;
    bottom: 8vw;
  }
  .card--link {
    text-decoration: none;
    background: #FFC200;
    color: #fff;
    padding: 0.3rem 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .table-container {
    justify-content: center;
    align-items: center;
    margin: 15vw auto;
    padding: 5%;
  }
main.results { background: #FFC200;}
.table-container table { width: 100%;}
.table-container table td,.table-container table th {     width: 50%;
    text-align: center;
    border-bottom: 1px solid #303030;
    padding: 3% 0;
    vertical-align: middle;}

.refresh { width: 20px;}
.sidebar {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    height: 100vh;
    width: 0;
    overflow: scroll;
    -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
ul#sidebar-menu,
.more-info{
    position: relative;
    display: grid;
}

ul#sidebar-menu li ,
ul.more-info li
{
    color: #000 !important;
    display: initial;
    width: 100%;
    text-align: left;
    padding: 4%;
    border-bottom: 1px solid #f4f4f4;
}
.logo-box {
  background: #007201;
  text-align: left;
  padding-bottom: 10%;
}
.logo-box .logo{ align-self: left; margin: 5%; }
.logo-box p { color:#fff; padding-left:5%; line-height: 1.5}


.marquee {
  height: 25px;
  width: 100%;
  margin-top: 15vw;
  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 200%;
  height: 30px;
  position: absolute;
  overflow: hidden;
  animation: marquee 10s linear infinite;
}

.marquee span {
  float: left;
  width: 50%;
  color: #fff;
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}
.view-sidebar { width: 75vw;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
