:root {
  --partner-primary: #14d991;
}
body,
html {
  margin: 0;
  background: #dfdfe1;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body {
  display: flex;
  flex: 1 0 100%;
  flex-direction: column;
}
#click-cross {
  font-size: 20px;
  user-select: none;
}
#click-cross:hover {
  cursor: pointer;
}
#link-to-chrome {
  color: var(--partner-primary);
}
#link-to-chrome:link {
  text-decoration: none;
}
#top-bar {
  width: 100%;
  min-height: 40px;
  padding: 10px 16px;
  box-sizing: border-box;
  background: white;
  position: fixed;
  z-index: 1002;
  top: 0;
}
#top-bar-content {
  display: flex;
  flex: 1 1 100%;
  justify-content: space-between;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
#initial-view {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#initial-logo-container {
  margin: auto auto;
  text-align: center;
}
#initial-loader {
  margin: 22px auto 0;
  height: 6px;
  max-width: 140px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.05);
  transform: rotate(180deg);
}
#initial-loader:after,
#initial-loader:before {
  content: "";
  top: 0;
  left: 0;
  width: auto;
  bottom: 0;
  position: absolute;
  border-radius: 3px;
  background-color: var(--partner-primary);
  transition: transform 0.2s linear;
  transform-origin: left;
  will-change: left, right;
}
#initial-loader:before {
  animation: mui-indeterminate1 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395)
    infinite;
}
#initial-loader:after {
  animation: mui-indeterminate2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation-delay: 1.15s;
}
@-webkit-keyframes mui-indeterminate1 {
  0% {
    left: -35%;
    right: 100%;
  }
  100%,
  60% {
    left: 100%;
    right: -90%;
  }
}
@-webkit-keyframes mui-indeterminate2 {
  0% {
    left: -200%;
    right: 100%;
  }
  100%,
  60% {
    left: 107%;
    right: -8%;
  }
}
