body {
  --primary-pure: 0, 128, 36;
  --neutral-100: 1, 7, 27;
  --neutral-70: 76, 80, 94;
  --black: 0, 0, 0;
  --white: 255, 255, 255;
  --alert-error: 233, 44, 44;
  --alert-error-10: 253, 234, 234;
  --alert-warning: 210, 175, 0;
  --alert-warning-10: 251, 247, 230;
  --alert-success: 0, 128, 36;
  --alert-success-10: 230, 249, 240;
  font-family: Inter, sans-serif;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

input:-webkit-autofill:hover {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

textarea:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

textarea:-webkit-autofill:hover {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

textarea:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

select:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

select:-webkit-autofill:hover {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

select:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
  -webkit-text-fill-color: currentColor !important;
}

.titulo {
  letter-spacing: -.64px;
  color: rgb(var(--neutral-100));
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
}

.Input {
  border: 1px solid rgba(var(--neutral-100), .1);
  border-radius: 6px;
  align-items: center;
  gap: .5rem;
  width: 100%;
  min-height: 3rem;
  display: inline-flex;
}

.Input input {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  padding: .25rem .5rem;
}

.Input input:active, .Input input:focus-within {
  border: none;
  outline: none;
}

.Input:active, .Input:focus-within {
  border: 1px solid rgb(var(--primary-pure), 1);
}

.Input textarea {
  border-radius: inherit;
  resize: none;
  border: none;
  padding: .5rem;
}

[js-error-wrapper] {
  background-color: rgb(var(--alert-warning-10));
  color: rgb(var(--alert-warning));
  border-left: 3px solid rgb(var(--alert-warning));
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  flex-direction: column;
  gap: 2px;
  margin: 4px 0;
  font-size: .875rem;
  line-height: 130%;
  display: flex;
  position: relative;
}

[js-error-wrapper] [js-error-line] {
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding: .75rem 32px .75rem .75rem;
  font-weight: 500;
  display: flex;
}

[js-error-wrapper] [js-error-line] [js-error-icon] {
  flex-shrink: 0;
  font-size: 1.25rem;
  position: absolute;
  top: 12px;
  right: 12px;
}

[js-error-wrapper] [js-error-line] + [js-error-line] {
  border-top: 1px solid rgb(var(--alert-warning));
}

[js-checkbox] {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  width: max-content;
  height: max-content;
  position: relative;
}

[js-checkbox] .Checkbox {
  cursor: pointer;
  width: 20px;
  height: 20px;
  transition: all .3s;
  display: block;
}

[js-checkbox]:hover .mask:before {
  background-color: rgb(var(--neutral-100), .1);
}

[js-checkbox][size="sm"] .Checkbox {
  width: 16px;
  height: 16px;
}

[js-checkbox][size="sm"] .Checkbox .icon-check {
  transform: scale(.75) !important;
}

[js-checkbox][size="md"] .Checkbox {
  width: 18px;
  height: 18px;
}

[js-checkbox] .mask {
  z-index: 2;
  cursor: pointer;
  pointer-events: none;
  box-sizing: border-box;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: all .25s;
  display: flex;
  position: absolute;
}

[js-checkbox] .mask i:not(.icon-check) {
  opacity: 0;
  color: #fff;
  font-size: 1.1em;
  transition: all .25s;
  transform: scale(.5);
}

[js-checkbox] .mask:after {
  content: "";
  background: rgba(var(--primary-pure), 1);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all .25s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(.5);
}

[js-checkbox] .mask:before {
  content: "";
  border-radius: inherit;
  z-index: -1;
  border: 2px solid rgba(var(--neutral-100), .1);
  width: 100%;
  height: 100%;
  transition: all .25s;
  position: absolute;
  top: 0;
  left: 0;
}

[js-checkbox] .mask .icon-check {
  opacity: 0;
  z-index: 3;
  transform: scale(.9);
}

[js-checkbox] .mask .icon-check span {
  width: 8px;
  height: 13px;
  margin-top: -4px;
  display: block;
  position: relative;
  transform: rotate(45deg);
}

[js-checkbox] .mask .icon-check span .line1 {
  content: "";
  z-index: 100;
  background: none;
  border-radius: 5px;
  width: 8px;
  height: 2px;
  transition: all .2s;
  position: absolute;
  bottom: 0;
}

[js-checkbox] .mask .icon-check span .line1:after {
  content: "";
  background: #fff;
  border-radius: 5px 0 0 5px;
  width: 0;
  height: 2px;
  transition: all .25s;
  position: absolute;
}

[js-checkbox] .mask .icon-check span .line2 {
  z-index: 100;
  content: "";
  background: none;
  border-radius: 5px;
  width: 2px;
  height: 13px;
  transition: all .2s;
  position: absolute;
  bottom: 0;
  right: 0;
}

[js-checkbox] .mask .icon-check span .line2:after {
  content: "";
  background: #fff;
  border-radius: 5px 5px 0 0;
  width: 2px;
  height: 0%;
  transition: all .25s;
  position: absolute;
  bottom: 0;
}

[js-checkbox] input {
  opacity: 0;
  z-index: 100;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

[js-checkbox] input:disabled {
  opacity: 0;
  pointer-events: none;
}

[js-checkbox] input:active ~ .mask {
  background: var(--primary-pure) !important;
}

[js-checkbox] input:checked ~ .Checkbox .mask {
  box-shadow: 0px 0px 0px 0px rgba(var(--primary-pure), 1);
}

[js-checkbox] input:checked ~ .Checkbox .mask i:not(.icon-check) {
  opacity: 1;
  transition: all .25s .15s;
  transform: scale(1);
}

[js-checkbox] input:checked ~ .Checkbox .mask .icon-check {
  opacity: 1;
}

[js-checkbox] input:checked ~ .Checkbox .mask .icon-check span .line1:after {
  width: 100%;
  transition: all .25s .1s;
}

[js-checkbox] input:checked ~ .Checkbox .mask .icon-check span .line2:after {
  height: 100%;
  transition: all .2s .3s;
}

[js-checkbox] input:checked ~ .Checkbox .mask:after {
  opacity: 1;
  transform: scale(1);
}

[js-checkbox] input:checked ~ .Checkbox .mask:before {
  opacity: 0;
  transform: scale(1.2);
}

.Button {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  color: #fff;
  background: rgb(var(--primary-pure));
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  height: 48px;
  padding: 4px 12px;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.Button:hover {
  filter: brightness(.9);
}
/*# sourceMappingURL=index.admin.css.map */
