/* General dimensions of content on each page (what width is covered)*/
.page-content,
.about {
  margin-top: 10px;
  width: 70vw;
  max-width: 840px;
}
/* tudors improvements on wednesday */
.rush-list-item {
  line-height: 1.5em;
  height: 3.5em;
  overflow: hidden;
  border-bottom: 1px rgb(172, 172, 172) solid;
}

.test-border {
  border: 1px red solid;
}

/* Styling Preview Cards*/
.page-content--image {
  max-width: 180px;
}

.info-text--styling {
  font-size: 10px;
  font-style: italic;
}

.preview {
  width: auto;
  height: 200px !important;
}

.center-main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.traverse {
  margin-bottom: 20px;
}

/*when I hover over the card*/
.traverse:hover {
  border-top: #4c8076 solid 2px;
  opacity: 0.7;
}

.card-main-image {
  width: 100%;
  min-width: 100px;
  max-width: 230px;
  height: auto;
  padding-right: 10px;
}

.rush-card-container {
  padding: 10px;
}

label > span {
  display: inline !important;
}

#wiki-results,
#search-input {
  padding-left: 5px;
}

#covid-table-container {
  font-size: smaller;
}

.country-selection{
  transition: none !important; 
  transform: none !important; 
}

.spinner {
  visibility: hidden;
  position: fixed;
  left: 45%;
  top: 60%;
  height: 60px;
  width: 60px;
  margin: 0px auto;
  -webkit-animation: rotation 0.6s infinite linear;
  -moz-animation: rotation 0.6s infinite linear;
  -o-animation: rotation 0.6s infinite linear;
  animation: rotation 0.6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, 0.15);
  border-right: 6px solid rgba(0, 174, 239, 0.15);
  border-bottom: 6px solid rgba(0, 174, 239, 0.15);
  border-top: 6px solid rgba(0, 174, 239, 0.8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* =============================== Styling App =============================== */
/* Styling of the Nav Bar in bigger screens */
.nav-wrapper {
  background-color: #4c8076;
}

/* Styling of the Nav Bar in smaller screens */
.sidenav {
  background-color: #4c8076;
}

#searchfield {
  background-color: #c4fcf0;
}

.sidenav li > * {
  color: white !important;
}
