.dark-mode {
  /* black: Textos | dev: .text-dark (mas já vem por padrão) */
  --background-0: #110f17; /*    0% */
  --background-1: #29272e; /* + 10% */
  --background-2: #413f45; /* + 20% */

  /* text-color: Fundos e textos |  dev: .text-light */
  --text-main-0: #aaa8a8; /* - 20%  */
  --text-main-1: #d4d2d2; /*    0% */
  --text-main-2: #fbfbfb; /* + 80% */

  /* reverse text color*/
  --text-reverse-0: #232333; /*    0% */
  --text-reverse-1: #393947; /* + 10% */
  --text-reverse-2: #4f4f5c; /* + 20% */

  /* purple: | dev: .text-primary */
  --purple-0: #300078; /* - 20% */
  --purple-1: #3c0096; /*    0% */
  --purple-2: #6333ab; /* + 20% */

  /* blue: pode ser usado em botões de avançar e confirmações. | dev: .text-secondary */
  --blue-0: #009b8f; /* - 20% */
  --blue-1: #00c2b3; /*    0% */
  --blue-2: #33cec2; /* + 20% */

  /* red: Botão de cancelar, voltar e alertas | dev: .text-danger */
  --red: #f8333c;

  /* yellow: Alertas | dev: .text-warning */
  --yellow: #ffcc0c;

  /* image contrast config  */
  /* destinado a alterar o constraste de imagens com cores fixas, como branco */
  /* por que usar isso? imagens brancas em fundos brancos no white-mode pode ser um problema */
  /* a config de constraste vai servir para cuidar disso conforme o tema aplicado */
  --image-brightness: 1;
}

.white-mode {
  /* black: Textos | dev: .text-dark (mas já vem por padrão) */
  --background-0: #f7f7ff; /*    0% */
  --background-1: #f2f1f6; /*   ??% */
  --background-2: #dedde2; /*   ??% */

  /* text-color: Fundos e textos |  dev: .text-light */
  --text-main-0: #232333; /*    0% */
  --text-main-1: #393947; /* + 10% */
  --text-main-2: #4f4f5c; /* + 20% */

  /* reverse text color*/
  --text-reverse-0: #aaa8a8; /* - 20%  */
  --text-reverse-1: #d4d2d2; /*    0% */
  --text-reverse-2: #fbfbfb; /* + 80% */

  /* purple: | dev: .text-primary */
  --purple-0: #300078; /* - 20% */
  --purple-1: #3c0096; /*    0% */
  --purple-2: #6333ab; /* + 20% */

  /* blue: pode ser usado em botões de avançar e confirmações. | dev: .text-secondary */
  --blue-0: #009b8f; /* - 20% */
  --blue-1: #00c2b3; /*    0% */
  --blue-2: #33cec2; /* + 20% */

  /* red: Botão de cancelar, voltar e alertas | dev: .text-danger */
  --red: #f8333c;

  /* yellow: Alertas | dev: .text-warning */
  --yellow: #ffcc0c;

  /* image brightness config  */
  /* destinado a alterar o constraste de imagens com cores fixas, como branco */
  /* por que usar isso? imagens brancas em fundos brancos no white-mode pode ser um problema */
  /* a config de constraste vai servir para cuidar disso conforme o tema aplicado */
  --image-brightness: 0.3;
}

@media screen and (max-width: 800px), screen and (max-height: 500px) {
  #root {
    font-size: 14px;
  }
}

.MuiFormLabel-root.Mui-focused {
  color: var(--blue-1) !important;
}
.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: var(--blue-1) !important;
}

.MuiInput-input {
  padding: 0.5rem 1rem !important;
}

.MuiButton-contained {
  padding: 0.6rem 1.6rem!important;
  border-radius: 0.6rem !important;
  color: white!important;
}

textarea {
  border: 1px solid #dee2e6 !important;
  border-bottom: 1.4px solid rgba(0, 0, 0, 0.7) !important;
  outline: none !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

textarea:focus {
  border-bottom: 3px solid #00c2cb !important;
}

/*PROPRIEDADES ESPECÍFICAS*/

.nexus-button {
  border: none;
  color: #fff;
  background-image: linear-gradient(30deg, #ff661b, #da4900);
  border-radius: 20px;
  background-size: 100% auto;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
}

.nexus-button:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 #05bada66;
  }

  70% {
    box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Some text and background styles */
.text-orange {
  color: #ff661b !important;
}
.text-blue {
  color: #00c2cb !important;
}
.text-green {
  color: #afc97e !important;
}
.text-yellow {
  color: #f9c80e !important;
}
.text-red {
  color: #8c1c13 !important;
}
.text-white {
  color: #fff8f0 !important;
}
.text-black {
  color: #170f11 !important;
}
.text-gray {
  color: #545454 !important;
}

.bg-orange {
  background-color: #ff661b !important;
}

.bg-blue {
  background-color: #00c2cb !important;
}

.bg-green {
  background-color: #afc97e !important;
}

.bg-yellow {
  background-color: #f9c80e !important;
}

.bg-red {
  background-color: #8c1c13 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-black {
  background-color: #170f11 !important;
}

.bg-gray {
  background-color: #545454 !important;
}

.swal2-container {
  z-index: 9999 !important;
}