.navbar {
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: #af1e31;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  height: 60px;
  justify-content: space-between;
  left: 0;
  padding: 8px;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.navbar__brand {
  align-items: center;
  display: flex;
  font-size: 20px;
  width: 230px;
}

.navbar__navigation {
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 16px;
  position: relative;
}
.navbar__navigation::before {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  height: 60%;
  left: 8px;
  position: absolute;
  top: 20%;
  width: 1px;
}
.navbar__navigation::after {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  height: 60%;
  position: absolute;
  right: 8px;
  top: 20%;
  width: 1px;
}

.navbar__button {
  align-items: center;
  background: transparent;
  border-radius: 4px;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  height: 100%;
  margin: 0 2px;
  outline: 0;
  padding: 0 24px;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.navbar__button:hover {
  background-color: rgba(177, 0, 61, 0.15);
}
.navbar__button--disabled {
  cursor: initial;
}
.navbar__button--disabled:hover {
  background-color: transparent;
}

.navbar__button-emoji {
  fill: #af1e31;
  font-size: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 8px;
  width: 20px;
}

.navbar__about {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  width: 230px;
}

@media (max-width: 780px) {
  .navbar__brand {
    font-size: 16px;
    padding: 0 0 0 8px;
    width: auto;
  }
  .navbar__button {
    padding: 0 16px;
  }
  .navbar__button-text {
    display: none;
  }
  .navbar__button-emoji {
    margin: 0;
  }
  .navbar__about {
    width: auto;
  }
}

body {
  background: #eceff1;
  color: rgba(0, 0, 0, 0.87);
  font-family: Lato, Calibri, Arial, sans-serif;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

button {
  font-size: unset;
  font-family: unset;
}

.content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 92px 32px 0 32px;
  max-height: 100%;
  max-width: 100%;
}

.page {
  background: white;
  border-radius: 2px;
  border: 1px solid #d0d0d0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 10px 0;
  max-width: 100%;
  padding: 32px;
  width: 500px;
}
#displayStats {
  width: 700px;
}

.page__title {
  align-items: center;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  color: #af1e31;
  display: flex;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  justify-content: space-between;
  margin: -32px -32px 24px -32px;
  padding: 0 32px;
}

.page h2,
.loading-message {
  align-items: center;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  font-size: 22px;
  font-weight: 300;
  justify-content: flex-start;
  margin: 0;
}

.page h2 + * {
  margin: 20px 0;
}
.page h2 + *:last-child {
  margin-bottom: 0;
}

p {
  line-height: 140%;
  margin: 8px 0;
  font-size: 14px;
}

select {
  margin: 8px;
}

table {
  border: 1px solid #eeeeee;
  border-bottom: 0;
  border-radius: 3px;
  border-spacing: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  color: #333;
  overflow: hidden;
  width: 100%;
}
td,
th {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  color: #333333;
  font-size: 14px;
  padding: 10px;
  transition: all 0.3s;
}
td:first-child,
th:first-child {
  text-align: left;
}
th {
  color: #666666;
  font-size: 12px;
  font-weight: bold;
}
.table__light {
  font-weight: 300;
}

td {
  text-align: center;
}

td:nth-child(2) {
  color: #1b5e20;
}
td:nth-child(3) {
  color: #263238;
}
td:nth-child(4) {
  color: #d67d00;
}
td:nth-child(5) {
  color: #b71c1c;
}

tr:hover td {
  background: #f7f7f7;
}

.button--big {
  display: flex;
  width: 100%;
  background: transparent;
  margin: 8px 0;
  padding: 16px 0;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  align-items: center;
  cursor: pointer;
}

.focusButton {
  border: 1px solid #af1e31;
}

.button--small {
  width: 50%;
  background-color: #4c4c4c;
  border: 0;
  color: #ffffff;
  padding: 16px 0;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}

.button-vote-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.button--great {
  color: #1b5e20;
}
.button--ok {
  color: #263238;
}
.button--no-that-great {
  color: #d67d00;
}
.button--not-great-at-all {
  color: #b71c1c;
}

.textarea {
  width: 100%;
  background: transparent;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.button__emoji {
  margin: 0px 16px;
}

.hidden {
  /* !important required here to ensure all .hidden are hidden ignoring all
  other rules of higher specifify */
  display: none !important;
}

.errorDisplay {
  color: red;
}

.managerNotice {
  margin-bottom: 20px;
}

.loader {
  display: inline-block;
  position: relative;
  margin: 0 20px 0 0;
  width: 20px;
  height: 20px;
}

.loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.loader .circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.loader .path {
  stroke-width: 5px;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite,
    colorRotation 6s ease-in-out infinite;
  stroke-linecap: round;
}

#sendingSectionLoader:not(.hidden) {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes colorRotation {
  100%,
  0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%,
  90% {
    stroke: #ffa700;
  }
}

