html, body {
  background-color: #fff;
  color: #636b6f;
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  height: 100vh;
  margin: 0;
}

.full-height {
  height: 100vh;
}

.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.position-ref {
  position: relative;
}

.top-right {
  position: absolute;
  right: 10px;
  top: 18px;
}

.bottom-left {
  position: absolute;
  left: 10px;
  bottom: 18px;
}

.bottom-right {
  position: absolute;
  right: 10px;
  bottom: 18px;
}

.content {
  text-align: center;
}

.title {
  font-size: 84px;
}

.links>a {
  color: #636b6f;
  padding: 0 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.text-danger {
    color: #a94442;
    font-weight: bold
}


.m-b-md {
  margin-bottom: 30px;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0px;
  */
}

.table>tbody>tr>td,
.table>tbody>tr>th {
  padding: 4px;
  line-height: 1.6;
  vertical-align: top;
  border-top: 0px
}

pre {
  background-color: inherit;
  border: unset;
  overflow: unset;
}

.half-circle-spinner, .half-circle-spinner * {
  box-sizing: border-box;
}

.half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
}

.half-circle-spinner .circle {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent;
}

.half-circle-spinner .circle.circle-1 {
  border-top-color: #ff1d5e;
  animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
  border-bottom-color: #ff1d5e;
  animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
