:root {
  --color-error: #cb1919;
  --color-primary: #e92626;
  --color-success: #19cb38;
  --color-secondary: #6c757d;
  --color-primary-dark: #af1616;
  --color-primary-light: #eb3232;
  --border-radius: 12px;
}

* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  /* max-width: 100%; */
}

p {
  font-size: 14px;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

.center {
  text-align: center;
}

.sem-aparencia {
  -moz-appearance: textfield;
}

.sem-aparencia::-webkit-outer-spin-button,
.sem-aparencia::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tippy-content {
  font-size: 13px;
}

[g-carregamento] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: #fbfbfbb3;
  z-index: 9999999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  backdrop-filter: blur(17px);
}

[g-carregamento]>p {
  font-size: 20px;
  font-weight: 600;
  color: gray;
  animation: taadaa 1.5s infinite;
}

[g-carregamento]>i {
  font-size: 40px;
  color: var(--color-primary);
}

input.input-text {
  width: auto !important;
  height: inherit;
  padding: 0;
  border: none;
  display: inline-block;
  border-radius: 0;
}

@keyframes taadaa {
  0% {
    opacity: 0.1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.1;
  }
}

::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: var(--color-primary);
}

::selection {
  color: white;
  background: var(--color-primary);
}