*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #f1f3f5;
  font-family: Work Sans, sans-serif;
}

.container {
  max-width: 110rem;
  margin: 0 auto;
}

.nav {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav_logo {
  justify-content: space-between;
  align-items: center;
  gap: .25rem;
  display: flex;
}

.nav .logo {
  width: 6rem;
  height: 6rem;
}

.nav_logo-link {
  text-decoration: none;
}

.nav_logo-name {
  letter-spacing: -1px;
  color: var(--grey-dark);
  font-size: 3rem;
  font-weight: 600;
}

.nav_menuList {
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  display: flex;
}

.nav_menuList--listItems {
  margin-right: .75rem;
  list-style: none;
}

.nav_menuList--listItems:last-child {
  margin: 0;
}

.listItems-link {
  color: var(--grey-normal);
  font-size: 2.4rem;
  font-weight: 500;
  text-decoration: none;
}

.listItem--active {
  transition: transform .2s;
  transform: scale(1.1);
}

.main {
  justify-content: space-between;
  display: flex;
}

.main_stats {
  flex-basis: 40%;
}

.main_stats--cards {
  flex-direction: column;
  gap: 6rem;
  margin-top: 2.4rem;
  display: flex;
}

.cards {
  border-radius: 1.2rem;
  box-shadow: 0 1px 6px #0006;
}

.cards > h1 {
  letter-spacing: -1.2px;
  font-weight: 400;
}

.last-updated {
  font-size: var(--text-mini);
}

.cards-value {
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1.2rem;
  display: flex;
}

.main_stats--more {
  margin-top: 4rem;
}

.confirmed-cases {
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  display: flex;
}

.death-cases {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.diff {
  justify-content: center;
  align-items: center;
  display: flex;
}

.confirmed-cases--diff-value {
  color: var(--text-red);
}

.death-cases--diff-value {
  color: var(--text-green);
}

.cards-value--confirmed, .cards-value--deaths {
  font-weight: 600;
}

.cards-value--daily-diff .confirm-daily-diff--value {
  color: var(--text-green);
  font-weight: 500;
}

.cards-value--daily-diff .death-daily-diff--value {
  color: var(--text-red);
  font-weight: 500;
}

.main_img {
  flex-basis: 50%;
}

.heading-rules {
  letter-spacing: -1.25px;
  font-weight: 400;
}

.main_img--imgs {
  margin-top: 2.4rem;
}

.social {
  width: 100%;
  height: 80%;
}

.table_search {
  justify-content: center;
  align-items: center;
  margin-bottom: 2.4rem;
  display: flex;
}

#searchCountries {
  font-size: var(--text-primary);
  border-radius: 2.4rem;
  width: 40rem;
  height: 4rem;
  padding: 1.2rem 2.4rem;
}

#searchCountries:focus {
  border: 1px solid var(--main-primary-color-dark);
  outline: none;
}

.table {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.table_contents {
  width: 80%;
}

.table-graph {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.table_contents--headings, .row {
  border-bottom: 1px solid var(--grey-light);
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
  padding: .75rem 1.5rem;
  display: flex;
}

.row {
  padding: 1.5rem;
}

.row:hover {
  background-color: var(--grey-light);
}

.table_contents--headings {
  background-color: var(--grey-dark);
}

.table_contents .table_contents--row {
  flex-direction: column;
  height: 60vh;
  display: flex;
  overflow-y: scroll;
}

.row-cases, .row-deaths {
  justify-content: space-evenly;
  align-items: center;
  display: flex;
}

.row-value, .table-heading {
  width: 20rem;
}

.table_contents--headings .table-heading {
  text-align: center;
  color: var(--text-white);
  letter-spacing: -1.25px;
  font-weight: 500;
}

.section-charts {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-charts h1 {
  margin-bottom: 2rem;
}

.charts {
  width: 50%;
}

#mychart {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.footer {
  background-color: var(--grey-dark);
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.footer a {
  color: var(--text-white);
  font-size: var(--text-secondary);
}

.social-profiles {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.data-link {
  border-bottom: 1px solid var(--text-white);
}

.data-link:hover, .footer-icon:hover {
  color: var(--main-primary-color-light);
}

.footer-icon {
  width: 2rem;
  height: 2rem;
}

.error-modal {
  z-index: 1000;
  background-color: var(--main-primary-color-dark);
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px #0003;
}

.error-modal--content {
  padding: 10px 20px;
}
/*# sourceMappingURL=index.c92073ef.css.map */
