* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: Nunito;

  -ms-overflow-style: none;


  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;

  cursor: default;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

::-webkit-scrollbar {
  display: none;
}

textarea{
  overflow-y: scroll !important;
  resize: none !important;
  color: #999999;
}

html,
body,
#app {
  height: 100%;
  background-color: #e8625d;
}

.aos-init {
  height: 100%;
}

a,
.btn-link {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.content {
  padding-top: 1.1rem;
}

.valid.modified:not([type="checkbox"]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

#loading-container {
  position: absolute;
  top: 6.5rem;
  height: calc(100% - 6.5rem);
  width: 100%;
  display: grid;
  place-content: center;
}

#loading {
  width: 144px;
  height: 56px;
  border-radius: 24px;
  background-color: #ffffff25;

  display: flex;
  flex-direction: row;

  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}

#loading > div {
  width: 20px;
  height: 20px;
  background-color: #fff;

  border-radius: 50%;
}

#loading div:nth-child(1) {
  animation: colorswap0 1s infinite reverse;
}
#loading div:nth-child(2) {
  animation: colorswap1 1s infinite reverse;
}
#loading div:nth-child(3) {
  animation: colorswap2 1s infinite reverse;
}
#loading div:nth-child(4) {
  animation: colorswap3 1s infinite reverse;
}

@keyframes colorswap0 {
  0% {
    opacity: 0.2;
  }
  25% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

@keyframes colorswap1 {
  0% {
    opacity: 0.4;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes colorswap2 {
  0% {
    opacity: 0.6;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes colorswap3 {
  0% {
    opacity: 0.8;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  75% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.6;
  }
}
