@charset "UTF-8";
/* DEFININDO VARIÁVEIS DE CSS */
/* Primary Colors */
/* Auxiliary Colors */
/* White/Black Colors */
/* Gradient Colors */
.required {
  color: #F93B3B;
}

/* BTN REVELAR SENHA */
.btn-reveal {
  background-color: #284589;
  color: #EBEEF3;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-reveal:hover {
  background-color: #1d3163;
}

/* BTN-DEFAULT-DE-ENVIO */
.btn-default-form {
  margin-top: 24px;
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: #284589;
  color: #EBEEF3;
}
.btn-default-form:hover {
  background-color: #1d3163;
  font-weight: bold;
}

a.btn-default-form {
  margin-top: 24px;
  width: 100%;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: #284589;
  color: #EBEEF3;
  padding: 16px;
  text-decoration: none;
  text-align: center;
}
a.btn-default-form:hover {
  background-color: #1d3163;
  font-weight: bold;
}

.btn-default-reset {
  margin-top: 24px;
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: #CFD5E3;
  color: #18336A;
}
.btn-default-reset:hover {
  background-color: #b5bbc7;
  font-weight: bold;
}

a.btn-default-reset {
  margin-top: 24px;
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: #CFD5E3;
  color: #18336A;
  padding: 16px;
  text-decoration: none;
  text-align: center;
}
a.btn-default-reset:hover {
  background-color: #b5bbc7;
  font-weight: bold;
}

.action-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.action-buttons button, .action-buttons a {
  width: 100%;
}

/*
    Display de botões de senha
*/
.passwordBlock {
  display: flex;
}
.passwordBlock > input {
  border-radius: 8px 0 0 8px;
}
.passwordBlock > button {
  border-radius: 0 8px 8px 0;
}
.passwordBlock > button ion-icon {
  font-size: 24px;
  color: #EBEEF3;
  width: 24px;
  height: 24px;
}

.readonly {
  background-color: #C4C4C4 !important;
}

.nav-pages {
  display: flex;
  justify-content: center;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* LOGIN PAGE */
body#login-page {
  background-color: #FFF !important;
}
body#login-page main {
  width: 100%;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body#login-page .login-image {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body#login-page .login-form {
  background: linear-gradient(90deg, #18336A 28.98%, #001752 77.76%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body#login-page .login-form .login-card {
  width: 100%;
}
body#login-page .login-form .login-card .login-card-title {
  color: #F9F9FB;
  text-align: center;
}
body#login-page .login-form .login-card .login-form-group {
  padding: 0 20%;
  margin-top: 32px;
}
body#login-page .login-form .login-card .login-form-group .form-group {
  margin-top: 16px;
}
body#login-page .login-form .login-card .login-form-group label {
  color: #CFD5E3;
  font-weight: bold;
}
body#login-page .login-form .login-card .btn-login {
  margin-top: 16px;
  padding: 16px 32px;
  background-color: #214692;
  text-align: center;
  width: 100%;
  font-weight: bold;
  color: #FFF;
}
body#login-page .login-form .login-card .btn-login:hover {
  background-color: #11244B;
}

body#home-admin-panel {
  background-color: #EBEEF3;
}
body#home-admin-panel header {
  position: fixed;
  background: linear-gradient(90deg, #18336A 28.98%, #001752 77.76%);
  padding: 10px;
  width: 100%;
  height: 60px;
}
body#home-admin-panel header .icon-menu {
  width: 100%;
  text-align: left;
}
body#home-admin-panel header .icon-menu label {
  width: 25px;
  height: 25px;
}
body#home-admin-panel .sidebar {
  position: fixed;
  width: 250px;
  height: 100%;
  padding-top: 30px;
  left: 0;
  background: linear-gradient(90deg, #18336A 28.98%, #001752 77.76%);
  transition: 0.5s;
  transition-property: left;
}
body#home-admin-panel .sidebar .center {
  text-align: center;
}
body#home-admin-panel .sidebar .image {
  width: 100px;
  height: 100px;
  margin-bottom: 16px;
}
body#home-admin-panel .sidebar h4 {
  color: #CCC;
  margin-top: 0;
  margin-bottom: 24px;
}
body#home-admin-panel .sidebar a {
  color: #FFF;
  display: block;
  width: 100%;
  line-height: 60px;
  text-decoration: none;
  padding-left: 40px;
  box-sizing: border-box;
  transition: 0.5s;
  transition-property: background;
}
body#home-admin-panel .sidebar a:hover {
  background: #51b3ec;
}
body#home-admin-panel .sidebar ion-icon {
  padding-right: 10px;
}
body#home-admin-panel label #sidebar-btn {
  z-index: 1;
  position: fixed;
  color: #FFF;
  font-size: 25px;
  margin: 5px;
  cursor: pointer;
  transition: 0.5s;
  transition-property: color;
}
body#home-admin-panel label #sidebar-btn:hover {
  color: #51b3ec;
}
body#home-admin-panel #check:checked ~ .sidebar {
  left: -190px;
}
body#home-admin-panel #check:checked ~ .sidebar a span {
  display: none;
}
body#home-admin-panel #check:checked ~ .sidebar h4 {
  display: none;
}
body#home-admin-panel #check:checked ~ .sidebar a {
  font-size: 20px;
  margin-left: 170px;
  width: 80px;
}
body#home-admin-panel .content {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  margin-top: 75px;
}
body#home-admin-panel .content-page {
  margin-top: 75px;
}
body#home-admin-panel #check:checked ~ .content {
  margin-left: 60px;
  padding-left: 16px;
}
body#home-admin-panel #check {
  display: none;
}
body#home-admin-panel .navbar {
  background-color: #CFD5E3;
}
body#home-admin-panel .navbar .submenu {
  font-size: 0.8em;
  color: #A6A6A6;
  margin-left: 12px;
}
body#home-admin-panel .nav-link:hover {
  color: #18336A;
  font-weight: bold;
}
body#home-admin-panel .profile-picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
body#home-admin-panel .profile-item {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 8px;
  border: none;
}
body#home-admin-panel .profile-item h6 {
  font-weight: bold;
  margin: 4px;
  text-align: end;
}
body#home-admin-panel .profile-item .profile-info {
  font-size: 0.7em;
  text-align: end;
}
body#home-admin-panel .profile-item-open-menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 8px;
  border: none;
}
body#home-admin-panel .profile-item-open-menu h6 {
  font-weight: bold;
  margin: 4px;
}
body#home-admin-panel .profile-item-open-menu .profile-info {
  font-size: 0.7em;
}

.page-name {
  font-size: 0.8em;
  width: 100%;
  text-align: right;
  margin-top: 24px;
  padding-right: 24px;
}

.modal-header {
  background-color: #11244B;
  color: #EBEEF3;
}

.form-label {
  font-weight: bold;
  margin-top: 16px;
  color: #18336A;
  text-transform: uppercase;
}

.btn-close {
  border: none;
  padding: 8px;
  background-color: #EBEEF3 !important;
}
.btn-close ion-icon {
  font-size: 1.7em;
  color: #EBEEF3;
}

input[type=radio] + label.card {
  cursor: pointer;
}
input[type=radio] + label.card .card-title {
  font-weight: bold;
  color: #18336A;
}
input[type=radio] + label.card .card-text {
  color: #18336A;
}
input[type=radio] + label.card .list-group-item {
  color: #18336A;
}

input[type=radio]:checked + label.card {
  background: #11244B;
  color: #EBEEF3;
  transition: 0.5s ease;
}
input[type=radio]:checked + label.card .card-title {
  font-weight: bold;
  color: #EBEEF3;
}
input[type=radio]:checked + label.card .card-text {
  color: #EBEEF3;
}
input[type=radio]:checked + label.card .list-group-item {
  background: #11244B;
  color: #EBEEF3;
  transition: 0.5s ease;
}

.detail-title {
  color: #18336A;
  font-weight: bold;
  text-transform: uppercase;
}

.button-form-group {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}

.viewReservationOwner {
  display: block;
}

.editReservationOwner {
  display: none;
}

.title-page {
  color: #11244B;
  font-weight: bold;
}

.helpdesk-list .helpdesk-cards {
  text-align: center;
}
.helpdesk-list .helpdesk-cards tr:hover {
  position: relative;
}
.helpdesk-list .helpdesk-cards tr:hover:hover > td:first-of-type::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  border: 2px solid #0071e3;
  top: 0;
  left: 0;
}
.helpdesk-list .helpdesk-cards .btn-status {
  width: 100%;
  height: 36px;
  border: none;
  cursor: initial;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-tri {
  background-color: #18336A;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-and {
  background-color: #d88e03;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-dev {
  background-color: #A6A6A6;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-usu {
  background-color: #FA5757;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-res {
  background-color: #78059b;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-adv {
  background-color: #921212;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-ana {
  background-color: #d88e03;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-tst {
  background-color: #0071e3;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-fin {
  background-color: #4FDE6E;
  color: #2B2B2B;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-red {
  background-color: #FFCE52;
  color: #2B2B2B;
}
.helpdesk-list .helpdesk-cards .btn-status.btn-env {
  background-color: #3459b2;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-resp {
  width: 100%;
  background-color: #78059b;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-resp:hover {
  background-color: #4a045f;
}
.helpdesk-list .helpdesk-cards .btn-details {
  width: 100%;
  background-color: #284589;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  color: #EBEEF3;
}
.helpdesk-list .helpdesk-cards .btn-details:hover {
  background-color: #182750;
}
.helpdesk-list .helpdesk-cards .action-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.helpdesk-list .helpdesk-cards .action-list form {
  width: 100%;
}

#calendar .fc-day-today {
  background-color: #CFD5E3;
}
#calendar .fc-daygrid-day-number {
  color: #18336A;
  font-weight: bold;
  text-decoration: none;
}
#calendar .fc-toolbar-title {
  text-transform: uppercase;
  color: #18336A;
  font-weight: bold;
}
#calendar .fc-button-primary {
  background: #18336A;
  border: none;
}
#calendar .fc--button {
  display: none;
}
#calendar .fc-non-business {
  background-color: #A6A6A6;
}
#calendar .fc-scrollgrid thead {
  background-color: #18336A;
}
#calendar .fc-scrollgrid thead .fc-col-header-cell {
  padding: 16px;
}
#calendar .fc-scrollgrid thead .fc-col-header-cell-cushion {
  font-size: 1.5rem;
  color: #EBEEF3;
  text-decoration: none;
  text-transform: uppercase;
}

a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-future {
  position: relative;
  overflow: hidden;
}
a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-future > div:not(.fc-daygrid-event-dot) {
  z-index: 1;
}
a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-future .fc-event-time {
  padding-left: 5px;
  font-weight: bold;
}
a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-future .fc-event-title {
  font-weight: normal;
}
a.fc-daygrid-event.fc-daygrid-dot-event.fc-event.fc-event-start.fc-event-end.fc-event-future .fc-daygrid-event-dot {
  position: absolute;
  border-width: 1000px;
  left: -500px;
}

.fc-daygrid-event {
  color: #2B2B2B !important;
}

.fc-daygrid-event-harness {
  background-color: #2B2B2B;
  color: #2B2B2B !important;
  border-radius: 5px;
  color: #EBEEF3;
  cursor: pointer;
}
.fc-daygrid-event-harness:hover {
  color: #2B2B2B;
}

.fc-daygrid-event-dot, .fc-event-time, .fc-event-title {
  color: #EBEEF3 !important;
}

.fc-col-header-cell-cushion {
  text-decoration: none;
  color: #EBEEF3;
  font-weight: bold;
  text-transform: uppercase;
}

.fc-toolbar-title {
  text-transform: uppercase;
  color: #18336A;
  font-weight: bold;
}

.fc-daygrid-day-number {
  text-decoration: none;
  color: #2B2B2B;
  font-weight: bold;
  font-size: 1.5rem;
}

.fc-col-header-cell {
  background-color: #18336A;
  color: #EBEEF3;
}/*# sourceMappingURL=style.css.map */