body {
  display: grid;
  grid-template-columns: 150px calc(100% - 150px);
  grid-template-rows: 40px auto 100px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
body header {
  grid-area: 1/2/2/3;
}
body main {
  grid-area: 2/2/3/3;
}
body aside {
  grid-area: 1/1/4/2;
}
body footer {
  grid-area: 3/1/4/3;
}

body {
  height: 100%;
  min-height: 100vh;
  background: #edfafb;
  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
}
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }
}
body section, body .container {
  position: relative;
}
body section {
  padding-left: 20px;
  padding-right: 20px;
}
body p {
  font-size: 1em;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
i.fa-spinner {
  animation: spin infinite 1s linear;
  zoom: 60%;
  opacity: 0.3;
}

i.fa-circle {
  zoom: 60%;
  opacity: 0.5;
}

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

#user-topbar {
  position: relative;
  width: 100%;
  height: 40px;
  color: #333;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  z-index: 99;
}

#user-menu {
  position: relative;
  display: flex;
  justify-content: center;
}
#user-menu:hover {
  cursor: pointer;
}
#user-menu .user {
  display: flex;
  flex-direction: column-reverse;
  align-content: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  text-align: center;
  user-select: none;
}
#user-menu .user #userImage {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  margin: auto auto 0.75rem;
}
#user-menu .user #userName {
  font-size: 1rem;
  color: white;
  margin: auto 0;
}
#user-menu .dropdown {
  position: relative;
}
#user-menu .dropdown .button {
  display: table;
  padding: 5px 8px;
  border: 1px solid white;
  border-radius: 3px;
  margin: 0 auto;
}
#user-menu.signed-out .user {
  display: none;
}
#user-menu.signed-out #signOut {
  display: none;
}
#user-menu.signed-in .login-wrapper {
  display: none;
}

#login-popup {
  position: fixed;
  top: 50%;
  left: 100%;
  transform: translate3d(0%, -50%, 0);
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 40px;
  background-color: white;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
}
#login-popup.active {
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
  pointer-events: auto;
}

main {
  color: black;
  padding: 0px 0px 60px;
  background-color: #fdfdfd;
  margin: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
main .hero {
  position: relative;
  text-align: center;
  padding: 1.5em 20px;
  color: #1d3359;
}
@media (max-width: 800px) {
  main .hero {
    padding: 20px 10px 10px;
  }
}
.test main .hero {
  background-color: #1d3359;
  color: white;
}
main .hero:before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #022b74;
  opacity: 0.8;
}
main .hero h1 {
  position: relative;
  font-weight: bold;
  font-size: 1.5em;
  margin-top: 0;
}
main .hero h2 {
  position: relative;
  font-size: 1.2em;
  margin-top: 0;
  font-weight: normal;
  color: white;
}
@media (max-width: 800px) {
  main .hero h2 {
    font-size: 1em;
  }
}
main .form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  background-color: #1d3359;
}
@media (max-width: 800px) {
  main .form-wrapper {
    padding: 8px 6px;
  }
}
main .form-wrapper form {
  display: flex;
  width: 100%;
  max-width: 800px;
}
main .form-wrapper form input[type=text] {
  padding: 20px;
  font-size: 22px;
  border: 1px solid #dedede;
  width: 100%;
}
@media (max-width: 800px) {
  main .form-wrapper form input[type=text] {
    font-size: 16px;
    padding: 10px;
  }
}
main .form-wrapper form .numberoftests {
  position: relative;
  display: flex;
}
main .form-wrapper form .numberoftests label {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 6px 0 12px;
  font-size: 0.7em;
  text-align: center;
  color: white;
}
main .form-wrapper form input[type=number] {
  padding: 20px;
  font-size: 22px;
  border: 1px solid #dedede;
  width: 3em;
  text-align: center;
}
@media (max-width: 800px) {
  main .form-wrapper form input[type=number] {
    font-size: 16px;
    padding: 0px;
  }
}
main .form-wrapper form input[type=number]:before {
  content: "# of tests";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
}
main .form-wrapper form button {
  background-color: #FE2C54;
  color: white;
  border: 0;
  padding: 20px;
  margin-left: 10px;
  white-space: pre;
  transition: background-color 300ms;
}
@media (max-width: 800px) {
  main .form-wrapper form button {
    padding: 12px;
    margin-left: 6px;
  }
}
main .form-wrapper form button:hover {
  background-color: #b30123;
}
main .form-wrapper form button.inactive {
  pointer-events: none;
}
main .form-wrapper #resolvedUrlWrapper {
  display: flex;
  color: white;
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
}
main .form-wrapper #resolvedUrlWrapper p {
  margin-top: 0;
  margin-bottom: 0;
}
main .form-wrapper #resolvedUrlWrapper p #resolvedUrl {
  padding-left: 20px;
}
main .status {
  display: flex;
  justify-content: center;
  padding: 0px 40px;
  background-color: #c8f0fa;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  main .status {
    padding: 0 20px;
    margin-bottom: 20px;
  }
}
main .status.finished {
  background-color: #b4fae6;
}
main .status.error {
  background-color: #ffd2d2;
}
@media (max-width: 800px) {
  main .status p {
    font-size: 0.8em;
    margin: 6px 0;
  }
}
main .row.note h3 {
  text-align: center;
  font-weight: normal;
  font-style: italic;
}
@media (max-width: 800px) {
  main .row.note h3 {
    font-size: 0.8em;
  }
}
main .results {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 60px;
}
main .results .box {
  width: 100%;
  margin-right: 6px;
  padding: 10px 10px 16px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.3);
  color: #022b74;
  box-shadow: 10px 10px 10px rgba(0, 40, 100, 0.05);
}
main .results .box.disabled {
  opacity: 0.1;
}
main .results .box:last-child {
  margin-right: 0;
}
main .results span {
  display: block;
  font-size: 30px;
}
main .results-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  main .results-wrapper {
    margin-bottom: 40px;
  }
}
main .test-heading {
  padding-top: 20px;
  padding-bottom: 20px;
}
main .test-heading h2 {
  color: #1d3359;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  main .test-heading h2 {
    font-size: 1.2em;
  }
}
main .test-heading p {
  display: table;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 800px) {
  main .test-heading p {
    font-size: 12px;
  }
}
main .calculateScores {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
main .calculateScores .box {
  text-align: center;
  padding: 10px 30px 10px;
  margin-right: 20px;
  border: 1px solid #1d3359;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 800px) {
  main .calculateScores .box {
    width: 100%;
    max-width: 100px;
    padding: 10px;
  }
}
main .calculateScores .box:last-child {
  margin-right: 0;
}
main .calculateScores .box span {
  font-size: 40px;
  color: #1d3359;
}
@media (max-width: 800px) {
  main .calculateScores .box span {
    font-size: 22px;
  }
}
main .calculateScores .box p {
  margin: 0;
}
@media (max-width: 800px) {
  main .calculateScores .box p {
    font-size: 12px;
  }
}
main #performance-all, main #lighthouse-all, main #lighthouse-diagnostics {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
main #performance-all .box, main #lighthouse-all .box, main #lighthouse-diagnostics .box {
  flex-basis: 19.4%;
  box-sizing: border-box;
  margin-right: 0.75%;
  margin-left: 0px;
  margin-bottom: 6px;
  padding: 18px 10px 16px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 10px 10px 10px rgba(0, 40, 100, 0.05);
  color: #022b74;
}
main #performance-all .box.disabled, main #lighthouse-all .box.disabled, main #lighthouse-diagnostics .box.disabled {
  opacity: 0.2;
}
main #performance-all .box:nth-child(5n), main #performance-all .box:last-child, main #lighthouse-all .box:nth-child(5n), main #lighthouse-all .box:last-child, main #lighthouse-diagnostics .box:nth-child(5n), main #lighthouse-diagnostics .box:last-child {
  margin-right: 0;
}
main #performance-all .box p, main #lighthouse-all .box p, main #lighthouse-diagnostics .box p {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 0.8em;
}
main #performance-all .box span, main #lighthouse-all .box span, main #lighthouse-diagnostics .box span {
  display: block;
  font-size: 24px;
}
main #lighthouse-diagnostics .box {
  flex-basis: calc(25% - 10px);
  margin-right: 0;
}
@media (max-width: 640px) {
  main #lighthouse-diagnostics .box {
    flex-basis: 50%;
    margin-right: 0;
  }
}

#sidebar {
  background-color: #1d3359;
  color: white;
  padding: 15px 10px 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#sidebar a {
  color: white;
  text-decoration: none;
}
#sidebar .inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 150px;
  height: 100%;
}
#sidebar .logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#sidebar .logo-wrapper img {
  object-fit: contain;
  max-width: 20px;
  margin-left: auto;
  margin-right: 5px;
}
#sidebar .logo-wrapper h1 {
  font-size: 1rem;
}
#sidebar .logo-wrapper h2 {
  font-size: 0.8em;
  font-weight: 300;
  line-height: 0.8;
  margin: auto auto auto 0;
}
#sidebar #user-menu {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#sidebar #user-menu .firebaseui-card-content {
  padding: 0 5px;
}
#sidebar #user-menu .firebaseui-card-content .firebaseui-idp-button {
  padding: 8px 12px;
}
#sidebar #user-menu .firebaseui-card-content .firebaseui-idp-button .firebaseui-idp-text {
  font-size: 12px;
  text-align: center;
  padding-left: 12px;
}
#sidebar #user-menu .firebaseui-card-footer {
  display: none;
}
#sidebar nav {
  display: flex;
  justify-content: center;
}
#sidebar nav ul {
  padding-left: 0;
}
#sidebar nav ul li {
  list-style: none;
}
#sidebar nav ul li a {
  display: block;
  font-size: clamp(14px, 1vw, 20px);
  padding: 20px 8px 20px 3px;
}
#sidebar nav ul li a i {
  margin-right: 0.3em;
}

footer {
  padding: 20px 20px;
}
footer p {
  color: white;
}
footer #load {
  color: #3E82FC;
  text-align: center;
  font-size: 11px;
  opacity: 0.5;
}
footer .trademark {
  text-align: center;
}
footer .trademark p {
  font-size: 11px;
  opacity: 0.3;
}

#topbar {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  box-sizing: border-box;
  padding: 0 0;
  font-size: 12px;
  z-index: 10;
}
#topbar.fixed {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #ededed;
  color: white;
  padding: 0 0;
  z-index: 10;
}
#topbar #data-selector {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  color: white;
  margin: auto auto auto 0;
}
#topbar #data-selector button {
  position: relative;
  display: block;
  background-color: #ededed;
  border: 2px solid #3E82FC;
  border-radius: 100px;
  color: #3E82FC;
  padding: 5px 15px;
  margin: auto 3px auto 0;
}
#topbar #data-selector button:not(:first-of-type) {
  padding-left: 40px;
  margin-left: -38px;
}
#topbar #data-selector button:last-of-type {
  margin-right: 0;
}
#topbar #data-selector button:nth-child(1) {
  z-index: 10;
}
#topbar #data-selector button:nth-child(2) {
  z-index: 9;
}
#topbar #data-selector button:nth-child(3) {
  z-index: 8;
}
#topbar #data-selector button:nth-child(4) {
  z-index: 7;
}
#topbar #data-selector button:nth-child(3) {
  z-index: 6;
}
#topbar #data-selector button:nth-child(4) {
  z-index: 5;
}
#topbar #data-selector button:nth-child(5) {
  z-index: 4;
}
#topbar #data-selector button.active {
  background-color: #3E82FC;
  border-color: #022b74;
  color: white;
}
#topbar #data-selector > div {
  position: relative;
  display: flex;
  background-color: #022b74;
  padding: 0px 0px 0px 5px;
  border-radius: 0px 100px 100px 0px;
}
#topbar #data-selector > div span {
  padding: 5px 10px 5px 5px;
  margin: auto 0;
}
#topbar #data-selector #perf-buttons-wrap {
  padding-right: 30px;
  margin-right: -10px;
  border-radius: 0;
}
#topbar .range-selector {
  display: flex;
  margin-left: auto;
  margin-right: 0;
}
#topbar .range-selector button:first-child {
  border-radius: 5px 0 0 5px;
}
#topbar button {
  background-color: #ededed;
  border: 0;
  padding: 6px 20px;
}
#topbar button.active {
  background-color: #3E82FC;
  color: white;
}

.table-labels {
  position: relative;
  display: flex;
  align-content: flex-end;
  padding: 0 0 0 10px;
  border-bottom: 1px solid #dcdcdc;
  z-index: 2;
}
.table-labels > div {
  display: flex;
  flex-direction: column-reverse;
  align-content: center;
  padding: 10px 20px;
  flex-basis: 10%;
}
.table-labels p {
  flex-basis: 25%;
  padding: 10px 0px;
  font-size: 0.85em;
  text-align: center;
  margin: auto 20px auto 0;
  line-height: 1;
  color: #1d3359;
  font-weight: bold;
}
.table-labels p.url {
  flex-basis: 23%;
  text-align: left;
}
.table-labels .toggle {
  position: relative;
  padding: 0;
  flex-basis: auto;
  line-height: 1;
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}
.table-labels .toggle p {
  text-align: right;
}

#charts .canvas-wrapper {
  position: relative;
  width: 100%;
  padding: 0px;
  background-color: #ffffff;
  border-bottom: 1px solid #dcdcdc;
}
#charts .canvas-wrapper .site-info {
  position: relative;
  display: flex;
  align-content: flex-end;
  padding: 0 10px;
  border-radius: 10px;
  z-index: 2;
}
#charts .canvas-wrapper p {
  flex-basis: 25%;
  padding: 20px 0px;
  font-size: 0.8em;
  text-align: left;
  margin: auto 20px auto 0;
  line-height: 1;
}
#charts .canvas-wrapper .score-box {
  display: flex;
  flex-direction: column-reverse;
  align-content: center;
  padding: 10px 20px;
  flex-basis: 10%;
}
#charts .canvas-wrapper .score {
  position: relative;
  font-size: 1em;
  padding: 0;
}
#charts .canvas-wrapper .score.low {
  color: red;
}
#charts .canvas-wrapper .score.medium {
  color: orange;
}
#charts .canvas-wrapper .score.high {
  color: green;
}
#charts .canvas-wrapper .score:before {
  position: relative;
  display: block;
  font-size: 0.8rem;
  color: black;
}
#charts .canvas-wrapper .score:after {
  content: " / 100";
  font-size: 1rem;
  color: black;
}
#charts .canvas-wrapper .icon-chart {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #ddd;
  border-radius: 5px;
  margin: auto 0 auto auto;
  transition: all 300ms;
}
#charts .canvas-wrapper .icon-chart:after {
  content: "Show Chart";
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translate3d(-50%, 50%, 0);
  font-size: 8px;
  color: #022b74;
  text-align: center;
  white-space: pre;
}
#charts .canvas-wrapper .icon-chart i {
  font-size: 16px;
  color: #ddd;
  transition: all 300ms;
}
#charts .canvas-wrapper canvas {
  position: relative;
  background-color: white;
  padding: 0px;
  height: 0 !important;
  transition: height 500ms;
}
#charts .canvas-wrapper.chart-open .site-info {
  box-shadow: 0 10px 5px -10px rgba(0, 0, 0, 0.07);
}
#charts .canvas-wrapper.chart-open .icon-chart {
  background-color: #022b74;
}
#charts .canvas-wrapper.chart-open .icon-chart:after {
  content: "Hide Chart";
}
#charts .canvas-wrapper.chart-open .icon-chart i {
  color: #ffffff;
}
#charts .canvas-wrapper.chart-open canvas {
  height: auto !important;
}

.total-sites {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.total-sites button {
  background-color: #FE2C54;
  color: white;
  padding: 10px 20px;
  margin-right: 40px;
  border: none;
  transition: all 300ms;
}
.total-sites button:hover {
  cursor: pointer;
  background-color: #b30123;
}
.total-sites button.running {
  background-color: green;
}
.total-sites .tests-stats {
  display: flex;
  background-color: #ededed;
  padding: 20px;
  margin-right: auto;
  margin-left: 0;
}
.total-sites .tests-stats #total-count {
  margin-right: 20px;
}
.total-sites .tests-stats #tests-info {
  display: flex;
  align-items: center;
}
.total-sites .sites ul {
  display: flex;
  flex-wrap: wrap;
}
.total-sites .sites ul li {
  flex-basis: 50%;
  color: #7f7f7f;
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .total-sites .sites ul li {
    flex-basis: 100%;
  }
}
.total-sites .sites ul li.finished {
  color: green;
}
.total-sites .sites ul li.error {
  color: red;
}
.total-sites .sites ul li.rerun {
  color: blue;
}

.user-list-row {
  margin-bottom: 40px;
}

#users-list .user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2;
}
#users-list .user i.close-icon {
  display: inline-block;
  margin-left: 40px;
  margin-right: 0;
}

/*# sourceMappingURL=style.css.map */
