html, body { height: 100% }
body {
  margin:0;
}

body,
input,
select {
  font-family: "Open Sans";
}

body * {
  box-sizing: border-box;
}

.bold {
  font-weight: 600;
}

.small {
  font-size: 75%;
}

.small-line-height {
  line-height: 75%;
}

.big {
  font-size: 125%;
}

.inline-block {
  display: inline-block;
  width: auto;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.center {
  text-align: center;
}

.global-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 0;
  height: 0;

  background: white;
  box-shadow: 2px 2px 2px lightgray;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.1s ease 0.3s;
  overflow: hidden;
  visibility: hidden;
}

.global-loader[data-state="visible"] {
  visibility: visible;
  opacity: 1;
  width: 200px;
  height: 200px;
}

.global-loader .line-scale > div {
  background: gray;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  z-index: 9999;
}
