* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  background-color: #000000;
}

.ErrorScreen {
  width: 100%;
  height: 100%;
  font-family: Roboto;
  position: absolute;
  z-index: 10000;
}

.ErrorScreen .container {
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #1e2222;
  max-width: 654px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  border-radius: 22px;
}

.ErrorScreen .error-msg-container {
  display: block;
  position: relative;
  max-width: 400px;
  min-height: 100px;
  text-align: left;
  margin: 0 auto;
}

.error-msg {
  margin-bottom: 8px;
}

.ErrorScreen .container-title {
  display: block;
  padding-top: 32px;
  padding-bottom: 16px;
  font-size: 28px;
}

.ErrorScreen .button-container {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 40px;
  padding-top: 10px;
  text-align: center;
}

.ErrorScreen .inline-item {
  display: inline-block;
  vertical-align: middle;
}

.ErrorScreen .BaseButton__Primary__OPH2D {
  width: 65px;
  height: 40px;
  border-radius: 20px;
  border: solid 2px #6fa1e2;
  background-color: #4481d9;
  cursor: pointer;
}

.ErrorScreen .BaseButton__Primary__OPH2D .icon {
  width: 32px;
  height: 24px;
}

.ErrorScreen .IconAdd {
  width: 33.9px;
  height: 33.9px;
  margin-right: 4px;
}

.ErrorScreen .IconCheck {
  width: 24px;
  height: 24px;
  margin-left: 5px;
}

.ErrorScreen .margin-right {
  margin-right: 8px;
}

.ErrorScreen .margin-left {
  margin-left: 8px;
}

.hide-default {
  display: none;
}

#initial-loader {
  position: absolute;
  inset: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 50px;
  height: 50px;
}

.spinner .path {
  stroke: white;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
