* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

header {
  width: 100%;
  position: fixed;
  height: 10rem;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  background: #1B1CA1;
}
header .header-top {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 95%;
  margin: 0 auto;
}
header .header-top .logo {
  width: 24rem;
}
header .header-top .logo a img {
  max-width: 100px;
}
header .header-top .content-menu-header {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-grow: 1;
}
header .header-top .content-menu-header .mobile-menu {
  display: none;
  cursor: pointer;
  background: transparent;
}
header .header-top .content-menu-header .mobile-menu i {
  color: #fff;
  background: transparent;
  font-size: 2rem;
}
header .header-top .content-menu-header .form-search form {
  display: flex;
  align-items: center;
}
header .header-top .content-menu-header .notification-user {
  display: flex;
  align-items: center;
}
header .header-top .content-menu-header .perfil-user {
  display: flex;
  align-items: center;
}
header .header-top .content-menu-header .dark-mode {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #fff;
  white-space: nowrap;
}

/* Estilo do switch (toggle) */
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 18px;
}

/* Estilo do slider */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 0px;
  bottom: 1px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Formato arredondado para sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  .mobile-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .dark-mode {
    gap: 1rem !important;
  }
  .content-menu-header {
    width: 100% !important;
    justify-content: space-between !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

.container {
  display: flex;
  flex-direction: row;
  padding-top: 10rem;
  margin-left: 24rem;
  width: calc(100% - 24rem);
  overflow: hidden;
}
.container .sidebar {
  width: 24rem;
  height: calc(100% - 10rem);
  overflow-y: auto;
  border-right: 0.5px solid rgba(77, 77, 77, 0.4117647059);
  position: fixed;
  top: 10rem;
  left: 0;
  z-index: 5;
}
.container .sidebar .content-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 10rem);
}
.container .sidebar .content-menu .first-menu, .container .sidebar .content-menu .last-menu {
  display: flex;
  flex-direction: column;
}
.container .sidebar .content-menu .first-menu .itens-menu, .container .sidebar .content-menu .last-menu .itens-menu {
  white-space: nowrap;
}
.container .sidebar .content-menu .first-menu .itens-menu:hover, .container .sidebar .content-menu .last-menu .itens-menu:hover {
  background: #1B1CA1;
  color: #fff;
}
.container .sidebar .content-menu .first-menu .itens-menu .divider-menu, .container .sidebar .content-menu .last-menu .itens-menu .divider-menu {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.container .sidebar .content-menu .first-menu .active-menu, .container .sidebar .content-menu .last-menu .active-menu {
  background: #1B1CA1;
  border-right: 5px solid #DBF711;
  color: #fff;
}
.container .main-content {
  flex-grow: 1;
  overflow-y: auto;
  height: 100%;
}
.container .main-content .s-dashboard {
  padding: 2rem;
}
.container .main-content .s-dashboard .content {
  margin-bottom: 5rem;
  padding: 2rem 0;
}
.container .main-content .s-dashboard .content-dashboard .div-cards {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
.container .main-content .s-dashboard .content-dashboard .div-cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
  width: 33.33333333%;
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}
.container .main-content .s-dashboard .content-dashboard .div-cards .card-prof {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
  width: 50%;
}

.content-pagination {
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
}
.content-pagination .content-data-impressions .content-infos-impressions {
  padding: 5rem;
}
.content-pagination .content-data-impressions .content-infos-impressions p {
  margin: 1rem 0;
}

.content-impressions-db-pagination .content-impressions-db {
  overflow-x: scroll;
}
.content-impressions-db-pagination .content-impressions-db .content-table-impression {
  display: flex;
  flex-direction: column;
}

.content-turma-db-pagination .content-turma-db {
  margin-top: 3rem;
  overflow-x: scroll;
}
.content-turma-db-pagination .content-turma-db .content-table-turma {
  display: flex;
  flex-direction: column;
}

.content-user-db-pagination .content-user-db {
  margin-top: 3rem;
  overflow-x: scroll;
}
.content-user-db-pagination .content-user-db .content-table-user {
  display: flex;
  flex-direction: column;
}

.content-impressions-admin .impressions-db-admin {
  overflow-x: scroll;
}
.content-impressions-admin .impressions-db-admin .content-table-impression {
  display: flex;
  flex-direction: column;
}

.content-my-solicitation {
  overflow-x: scroll;
}
.content-my-solicitation .my-solicitation {
  display: flex;
  flex-direction: column;
}
.content-my-solicitation .my-solicitation h2 {
  margin-bottom: 3rem;
}

.content-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.content-form .form {
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
  padding: 5rem;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 60%;
}
.content-form .form h2 {
  text-align: center;
}
.content-form .form .form-group {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}
.content-form .form .form-group input {
  padding: 1rem;
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
}
.content-form .form .form-group select {
  padding: 1rem;
  border-radius: 5px;
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
}
.content-form .form .form-group select option {
  padding: 1rem;
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
}
.content-form .form .btn {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  background: #1B1CA1;
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
  width: 100%;
}
.content-form .form .btn:hover {
  transform: translateY(-3px);
}
.content-form .form .select-archive {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
  margin-top: 2rem;
}
.content-form .form .btn-atualizar {
  padding: 1.5rem;
  border-radius: 5px;
  background: #fff;
  color: rgba(0, 0, 0, 0.9);
  background: #1B1CA1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
.content-form .form .btn-cancelar {
  background: rgb(237, 45, 45);
  padding: 1rem;
  color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

td .btn-atualizar {
  background: rgb(95, 236, 128);
  padding: 0.5rem;
  border-radius: 5px;
}

.td-acoes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.pagination a {
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border: 1px solid #c4c4c4;
  text-decoration: none;
}
.pagination span {
  margin: 0 0.5rem;
}

.form-check {
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem;
}
.form-check label {
  margin-top: 0;
}

.baixar-arquivo a {
  font-weight: bold;
  color: #4C64A9;
}

@media only screen and (max-width: 768px) {
  .sidebar {
    width: 80% !important;
    left: -80% !important;
    top: 10rem !important;
    height: calc(100vh - 10rem) !important;
    transition: left 0.3s ease !important;
    background: #1B1CA1 !important;
    color: #fff !important;
  }
  .sidebar.active {
    left: 0 !important;
    top: 10rem !important;
    height: calc(100vh - 10rem) !important;
  }
  .active-menu {
    background: #4C64A9 !important;
  }
  .container {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .div-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .div-cards .card {
    width: 100% !important;
  }
  .div-cards .card-prof {
    width: 100% !important;
  }
  .form {
    width: 100% !important;
    padding: 2rem !important;
  }
  .content-form {
    padding: 0 !important;
    margin-top: 1rem !important;
  }
  .content-menu {
    height: 80vh !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-size: 1.6rem !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  font-family: "Poppins";
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
body[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
body[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

input {
  border: none;
  border-radius: 5px;
  background: var(--text-color-light);
  color: var(--text-color-light);
}
input[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
input[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

select {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
select[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
select[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

option {
  background: var(--text-color-light);
  color: var(--text-color-light);
}
option[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
option[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

a, th, td {
  text-decoration: none;
  color: var(--text-color-light);
}
a[data-theme=light], th[data-theme=light], td[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
a[data-theme=dark], th[data-theme=dark], td[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}
table thead {
  border-collapse: collapse;
}
table thead tr {
  background: rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
  white-space: nowrap;
}
table thead tr th {
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}
table tbody {
  border-collapse: collapse;
}
table tbody tr {
  border-collapse: collapse;
}
table tbody tr:hover {
  background: rgba(0, 0, 0, 0.1);
}
table tbody tr td {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid rgba(77, 77, 77, 0.4117647059);
  border-collapse: collapse;
}

.card {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.card-infos {
  padding: 15px;
  text-align: center;
}

#calendar {
  margin-top: 15px;
}
#calendar h2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fc-header-toolbar {
  margin-bottom: 10px;
  width: 100%;
  margin: 2rem auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}

.fc-day-today {
  background-color: rgba(255, 213, 0, 0.3) !important;
}

.status-na-fila {
  background-color: #ffce56;
  color: #4f3800;
  padding: 0.5rem 2.6rem;
  border-radius: 15px;
  cursor: default;
  font-weight: bold;
}

.status-impresso {
  background-color: #5fec80;
  color: #003a0e;
  cursor: default;
  padding: 0.5rem 6rem;
  border-radius: 15px;
  font-weight: bold;
}

.status-cancelado {
  background-color: #ed2d2d;
  color: #590009;
  cursor: default;
  padding: 0.5rem 5.7rem;
  border-radius: 15px;
  font-weight: bold;
}

td .form-control {
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--background-color-light);
  color: var(--text-color-light);
}
td .form-control[data-theme=light] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
td .form-control[data-theme=dark] {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
}
td .form-control option {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.9);
}

.fa-trash-can {
  color: rgb(237, 45, 45);
}

.btn-select {
  background: #fff !important;
  border: 1px solid #1B1CA1 !important;
  color: rgba(0, 0, 0, 0.9) !important;
  font-size: 1.4rem !important;
}
.btn-select:hover {
  background: #1B1CA1 !important;
  transition: all 0.2s !important;
  color: #fff !important;
}

.form-check-group {
  margin-top: -1rem;
  border-radius: 0.25rem;
  min-width: 100%;
  max-height: 200px;
  width: -moz-max-content;
  width: max-content;
  overflow-y: auto;
}

.excluir-solicitacao-dashboard-admin {
  background: transparent;
}

.s-login {
  height: 100vh;
  width: 100%;
}
.s-login .content-login {
  display: flex;
  align-items: center;
}
.s-login .content-login .content-left-login {
  width: 50%;
  height: 100vh;
  background-image: url("../img/3572493.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #000;
}
.s-login .content-login .content-right-login {
  background: #fff;
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.s-login .content-login .content-right-login h1 {
  text-align: center;
  font-size: 2.8rem;
}
.s-login .content-login .content-right-login .content-form-login {
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.s-login .content-login .content-right-login .content-form-login img {
  max-width: 150px;
}
.s-login .content-login .content-right-login .content-form-login form {
  width: 50%;
}
.s-login .content-login .content-right-login .content-form-login form .div-input {
  display: flex;
  flex-direction: column;
}
.s-login .content-login .content-right-login .content-form-login form .div-input input {
  padding: 1rem;
  margin-bottom: 2rem;
  border: 0.5px solid rgba(77, 77, 77, 0.4117647059);
}
.s-login .content-login .content-right-login .content-form-login form .div-botao {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  transition: 0.3s ease;
}
.s-login .content-login .content-right-login .content-form-login form .div-botao:hover {
  transform: translateY(-3px);
}
.s-login .content-login .content-right-login .content-form-login form .div-botao input {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 5rem;
  cursor: pointer;
  background: #1B1CA1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (max-width: 425px) {
  .content-login {
    flex-direction: column !important;
  }
  .content-login .content-left-login {
    display: none !important;
  }
  .content-login .content-right-login {
    width: 100% !important;
  }
  .content-login .content-right-login .content-form-login form {
    width: 80% !important;
  }
  .content-login .content-right-login .content-form-login .div-botao input {
    width: 100% !important;
  }
}/*# sourceMappingURL=main.css.map */