@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%;
}

/* STATUS DOS BOTÕES DE CHAMADOS */
.btn-status {
  cursor: default;
}

.btn-status.btn-tri {
  background-color: #214692;
  color: #EBEEF3;
  cursor: default;
}
.btn-status.btn-tri:hover {
  background-color: #214692;
  color: #EBEEF3;
}
.btn-status.btn-tri:active {
  background-color: #214692;
  color: #EBEEF3;
}

.btn-status.btn-and {
  background-color: #d88e03;
  color: #EBEEF3;
  cursor: default;
}
.btn-status.btn-and:hover {
  background-color: #d88e03;
  color: #EBEEF3;
}
.btn-status.btn-and:active {
  background-color: #d88e03;
  color: #EBEEF3;
}

.btn-status.btn-usu {
  background-color: #FA5757;
  color: #EBEEF3;
  cursor: default;
}
.btn-status.btn-usu:hover {
  background-color: #FA5757;
  color: #EBEEF3;
}
.btn-status.btn-usu:active {
  background-color: #FA5757;
  color: #EBEEF3;
}

.btn-status.btn-red, .btn-status.btn-ana {
  background-color: #aa821d;
  cursor: default;
}
.btn-status.btn-red:hover, .btn-status.btn-ana:hover {
  background-color: #aa821d;
  cursor: default;
}
.btn-status.btn-red:active, .btn-status.btn-ana:active {
  background-color: #aa821d;
  cursor: default;
}

.btn-status.btn-fin {
  background-color: #1d9637;
  color: #EBEEF3;
  cursor: default;
}
.btn-status.btn-fin:hover {
  background-color: #1d9637;
  color: #EBEEF3;
}
.btn-status.btn-fin:active {
  background-color: #1d9637;
  color: #EBEEF3;
}

.btn-status.btn-tst {
  background-color: #214692;
  color: #EBEEF3;
}
.btn-status.btn-tst:hover {
  background-color: #214692;
  color: #EBEEF3;
}
.btn-status.btn-tst:active {
  background-color: #214692;
  color: #EBEEF3;
}

.btn-status.btn-res {
  background-color: #78059b;
  color: #EBEEF3;
}
.btn-status.btn-res:hover {
  background-color: #78059b;
  color: #EBEEF3;
}
.btn-status.btn-res:active {
  background-color: #78059b;
  color: #EBEEF3;
}

.btn-status.btn-ana {
  background-color: #ECD865;
}
.btn-status.btn-ana:hover {
  background-color: #ECD865;
}
.btn-status.btn-ana:active {
  background-color: #ECD865;
}

.btn-status.btn-aguardando-orcamento {
  background-color: #2EADE8;
  color: #EBEEF3;
}
.btn-status.btn-aguardando-orcamento:hover {
  background-color: #2EADE8;
  color: #EBEEF3;
}
.btn-status.btn-aguardando-orcamento:active {
  background-color: #2EADE8;
  color: #EBEEF3;
}

.btn-status.btn-orcamento-em-aprovacao {
  background-color: #BF2900;
  color: #EBEEF3;
}
.btn-status.btn-orcamento-em-aprovacao:hover {
  background-color: #BF2900;
  color: #EBEEF3;
}
.btn-status.btn-orcamento-em-aprovacao:active {
  background-color: #BF2900;
  color: #EBEEF3;
}

.btn-status.btn-dev {
  background-color: #2EE5E8;
}
.btn-status.btn-dev:hover {
  background-color: #2EE5E8;
}
.btn-status.btn-dev:active {
  background-color: #2EE5E8;
}

.btn-status.btn-homologacao {
  background-color: #1A1569;
  color: #EBEEF3;
}
.btn-status.btn-homologacao:hover {
  background-color: #1A1569;
  color: #EBEEF3;
}
.btn-status.btn-homologacao:active {
  background-color: #1A1569;
  color: #EBEEF3;
}

.btn-status.btn-gerando-versao {
  background-color: #82E8C3;
}
.btn-status.btn-gerando-versao:hover {
  background-color: #82E8C3;
}
.btn-status.btn-gerando-versao:active {
  background-color: #82E8C3;
}

.call-legendas {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 24px;
}

.thead-overview {
  background-color: #11244B;
  border-radius: 16px 16px 0 0;
  color: #EBEEF3;
  text-align: center;
}

.tr-overview:nth-child(odd) {
  background-color: #CFD5E3;
}

.tr-overview:nth-child(even) {
  background-color: #EBEEF3;
}

.tbody-overview {
  text-align: center;
}

.btn-atualizar {
  width: 100%;
  margin-top: 8px;
}

.btn-responsavel {
  width: 100%;
  margin-top: 8px;
}

.btn-info {
  color: #EBEEF3;
}

.overview-in-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overview-finish-by-agent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overview-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dashboard {
  padding-bottom: 60px;
}

.dashboard-cards {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}
.dashboard-cards .card-item {
  width: 100%;
  height: 150px;
  padding: 16px;
  border-radius: 8px;
}
.dashboard-cards .card-item p {
  font-weight: bold;
  text-transform: uppercase;
}
.dashboard-cards .card-item h4 {
  font-size: 3rem;
  font-weight: bold;
  text-align: right;
}
.dashboard-cards .card-item.bg-blue {
  background-color: #0071e3;
  color: #182750;
}
.dashboard-cards .card-item.bg-yellow {
  background-color: #FFD875;
  color: #aa821d;
}
.dashboard-cards .card-item.bg-green {
  background-color: #4FDE6E;
  color: #1d9637;
}
.dashboard-cards .card-item.bg-red {
  background-color: #FA5757;
  color: #921212;
}
.dashboard-cards .card-item.bg-gray {
  background-color: #A6A6A6;
}
.dashboard-cards.vertical {
  flex-direction: column;
  padding-top: 56px;
}

.charts {
  padding-top: 56px;
}
.charts h4 {
  color: #18336A;
}

.btn-level-low {
  background-color: #4678f0;
  color: #EBEEF3;
  cursor: default;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
}

.btn-level-average {
  background-color: #FFD875;
  cursor: default;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
}
.btn-level-average:hover {
  background-color: #d88e03;
  color: #EBEEF3;
  cursor: default;
}

.btn-level-high {
  background-color: #FA5757;
  color: #EBEEF3;
  cursor: default;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
}
.btn-level-high:hover {
  background-color: #FA5757;
  color: #EBEEF3;
  cursor: default;
}

.btn-level-critical {
  background-color: #F93B3B;
  color: #EBEEF3;
  cursor: default;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
}
.btn-level-critical:hover {
  background-color: #F93B3B;
  color: #EBEEF3;
  cursor: default;
}

.chat-align {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-color: #A6A6A6;
  padding: 16px;
  border-radius: 20px 20px 0 20px;
}

.chat-other {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #214692;
  padding: 16px;
  border-radius: 20px 20px 20px 0;
}

.btn-sendcomment {
  width: 100%;
  padding: 16px;
  height: 50px;
}

.chat-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.send-hour {
  font-size: 0.75em;
}

.send-name {
  font-size: 0.8em;
}

.chat-list {
  margin-bottom: 50px;
}

.chat-body p, .chat-body ul, .chat-body a, .chat-body strong {
  font-size: 0.8em;
}

.chat-body ul li {
  font-size: 1em;
}

.chat-other {
  color: #EBEEF3;
}

.ck-content {
  height: 300px;
}

.callinfo {
  background-color: #EBEEF3;
  border-radius: 20px;
  width: 100%;
}

.callinfo-header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.callinfo-body {
  padding: 16px;
}

.callinfo-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}/*# sourceMappingURL=style.css.map */