html,
body {
  background-color: #fff;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}
a {
  color: #74c126;
}
a:hover {
  color: #61a220;
}
#__wrapper__ {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#skip-link:focus {
  border: 2px solid red;
}
.root__loader {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.85);
}
.root__loader__spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid #767676;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  animation: spin 0.6s linear infinite, fadeIn 1s;
}
.ui.container {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}
.ui.dropdown > .menu {
  right: 0;
  left: initial;
  top: calc(100% + 2px);
}
.ui.dropdown .menu > .item {
  background: white !important;
  color: rgba(0, 0, 0, 0.87) !important;
  font-weight: 400 !important;
}
.ui.dropdown .menu > .item:hover {
  background: rgba(0, 0, 0, 0.05) !important;
  color: rgba(0, 0, 0, 0.95) !important;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
