html {
  font-size: 14px;
  position: relative;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html,
body {
  min-height: 100%;
}

#loading-modal {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

#loading-modal .modal-content {
  background-color: transparent;
  border: none;
}

#loading-modal h3 {
  color: #fff;
  font-size: 50px;
  text-align: center;
}

#loading-modal .spinner-border {
  width: 12rem;
  height: 12rem;
  align-self: center;
}

.hidden {
  display: none;
}

.center-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shimmer {
  color: grey;
  -webkit-mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/300%
    100%;
  background-repeat: no-repeat;
  animation: shimmer 2.5s infinite;
  cursor: progress;
  opacity: 0.8;
  pointer-events: none;
}

.shimmer label {
  background-color: lightgray !important;
  color: lightgray !important;
}

.shimmer input[type="checkbox"] {
  background-color: lightgray !important;
}

@keyframes shimmer {
  100% {
    -webkit-mask-position: left;
  }
}
