html {
  height: 100vh;
  background-color: rgb(235, 238, 241);
  font-family: Helvetica, sans-serif;
  font-size: 62.5%;
}

.copy-input {
  opacity: 0;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: default;
}

.control-group {
  display: inline;
  padding-right: 10px;
}

.control-group:not(:first-child) {
  border-left: 1px solid black;
  padding-left: 10px;
}

.control-group label {
  margin-right: 3px;
}

.control-group input {
  border-radius: 3px;
  margin-right: 3px;
}

h1 {
  margin-bottom: 0;
}

.rulesId {
  font-style: italic;
  margin-bottom: 10px;
}

.break {
  margin-bottom: 0;
}

.popover {
  position: absolute;
  border: 1px solid hotpink;
  border-radius: 5px;
  padding: 10px;
  background-color: hotpink;
  z-index: 9;
}

.popover::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 4px;
  top: -9px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid hotpink;
}

.popover .close {
  position: absolute;
  top: 0;
  right: 3px;
  cursor: pointer;
}
myob-form {
  display: block;
  max-width: 1024px;
  padding: 20px;
}

.loader,
.loader:before,
.loader:after {
  background: #000000;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: #000000;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }

  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }

  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

body {
  padding: 0 24px 24px 24px;
}

.version {
  font-size: 14px;
  color: #fff;
  padding: 0.15em 0.35em;
  border-radius: 2px;
  background-color: #8241aa;
  margin-left: 5px;
  font-style: normal;
}

.socketOnline {
  font-weight: bold;
  color: white;
  background-color: green;
  padding: 5px;
}

.socketOffline {
  font-weight: bold;
  color: white;
  background-color: red;
  padding: 5px;
}

