@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@page { size: auto;  margin: 5mm; }
/* ========================= VARIABLES ========================= */
/* ========================= BASE ========================= */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

*::-webkit-scrollbar {
  width: 0.25em;
  height: 0.75rem;
}

*::-webkit-scrollbar-track {
  background: #f7f7f7;
}

*::-webkit-scrollbar-thumb {
  background: #24a8b2;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 3rem 0 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.938rem;
  background-color: #f7f7f7;
  color: #24a8b2;
}

h1, h2, h3, h4 {
  color: #232926;
  font-weight: 600;
}

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

textarea:focus, input:focus {
  outline: none;
}

/* ========================= LAYOUT ========================= */
.grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.scroll-container {
  overflow-y: scroll;
  position: absolute;
  top: 4.5rem;
  right: 0;
  bottom: 0;
  left: 0;
}

a {
  text-decoration: none;
}

/* ========================= REUSABLE ========================= */
input {
  width: 100%;
  height: 3rem;
  background-color: #404040;
  color: white;
  border: none;
  border-radius: 5px;
  padding-left: 1rem;
}

.next-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  height: 5rem;
  width: 5rem;
  padding: 1rem 0 1rem 0;
  background: #404040;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.next-button:hover {
  background: #24a8b2;
  opacity: 1;
}

.relativeBtn {
  height: 5rem;
  width: 5rem;
  padding: 1rem 0 1rem 0;
  background: #24a8b2;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.dropdown {
  width: 100%;
  display: -ms-grid;
  display: grid;
  position: relative;
  max-height: 3rem;
}

.dropdown .icon {
  color: white;
}

.dropdown .select {
  padding: 0.75rem;
  border-radius: 5px;
  background: #404040;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  cursor: pointer;
}

.dropdown .select span {
  font-size: 0.7rem;
}

.dropdown .select2 {
  padding: 0.75rem;
  border-radius: 5px;
  background: #404040;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  cursor: pointer;
}

.dropdown .select2 span {
  font-size: 0.7rem;
}

.dropdown .list {
  overflow-y: scroll;
  max-height: 10rem;
  background: #404040;
  color: white;
  position: absolute;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.dropdown .list::-webkit-scrollbar-track {
  background: #404040;
}

.dropdown .list .option {
  padding: 0.75rem;
  font-size: 0.7rem;
}

.dropdown .list .option:hover {
  background: #24a8b2;
}

.dropdown .down {
  top: 100%;
  left: 0%;
  right: 0%;
  border-top: 0.1rem solid white;
  border-bottom: 2px solid #262626;
  border-radius: 5px 5px 0 0;
}

.dropdown .down::-webkit-scrollbar-track {
  border-top-right-radius: 5px;
}

.dropdown .down::-webkit-scrollbar-thumb {
  border-top-right-radius: 5px;
}

.dropdown .down .option:first-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dropdown .up {
  bottom: calc(0% + 2.55rem);
  left: 0%;
  right: 0%;
  border-top: 2px solid #262626;
  border-bottom: 0.1rem solid white;
  border-radius: 0 0 5px 5px;
}

.dropdown .up::-webkit-scrollbar-track {
  border-bottom-right-radius: 5px;
}

.dropdown .up::-webkit-scrollbar-thumb {
  border-bottom-right-radius: 5px;
}

.dropdown-rating {
  width: 25%;
  display: -ms-grid;
  display: grid;
  position: relative;
  max-height: 3rem;
  align-items: center;
}

.dropdown-rating .icon {
  color: white;
}

.dropdown-rating .select {
  padding: 0.75rem;
  border-radius: 5px;
  background: #404040;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  cursor: pointer;
}

.dropdown-rating .select span {
  font-size: 0.7rem;
}

.dropdown-rating .list {
  overflow-y: scroll;
  max-height: 5rem;
  background: #404040;
  color: white;
  position: absolute;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.dropdown-rating .list::-webkit-scrollbar-track {
  background: #404040;
}

.dropdown-rating .list .option {
  padding: 0.75rem;
  font-size: 0.7rem;
  text-align: center;
}

.dropdown-rating .list .option:hover {
  background: #24a8b2;
}

.dropdown-rating .down {
  top: 100%;
  left: 0%;
  right: 0%;
  border-top: 0.1rem solid white;
  border-bottom: 2px solid #262626;
  border-radius: 5px 5px 0 0;
}

.dropdown-rating .down::-webkit-scrollbar-track {
  border-top-right-radius: 5px;
}

.dropdown-rating .down::-webkit-scrollbar-thumb {
  border-top-right-radius: 5px;
}

.dropdown-rating .down .option:first-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/********/
.dropdown-empresa-perfil {
  width: 65%;
  display: -ms-grid;
  display: grid;
  position: relative;
  max-height: 3rem;
  align-items: center;
}

.dropdown-empresa-perfil .icon {
  color: white;
}

.dropdown-empresa-perfil .select {
  padding: 0.75rem;
  border-radius: 5px;
  background: #404040;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  cursor: pointer;
}

.dropdown-empresa-perfil .select span {
  font-size: 0.7rem;
}

.dropdown-empresa-perfil .list {
  overflow-y: scroll;
  max-height: 4.2rem;
  background: #404040;
  color: white;
  position: absolute;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.dropdown-empresa-perfil .list::-webkit-scrollbar-track {
  background: #404040;
}

.dropdown-empresa-perfil .list .option {
  padding: 0.75rem;
  font-size: 0.7rem;
  text-align: center;
}

.dropdown-empresa-perfil .list .option:hover {
  background: #24a8b2;
}

.dropdown-empresa-perfil .down {
  top: 100%;
  left: 0%;
  right: 0%;
  border-top: 0.1rem solid white;
  border-bottom: 2px solid #262626;
  border-radius: 5px 5px 0 0;
}

.dropdown-empresa-perfil .down::-webkit-scrollbar-track {
  border-top-right-radius: 5px;
}

.dropdown-empresa-perfil .down::-webkit-scrollbar-thumb {
  border-top-right-radius: 5px;
}

.dropdown-empresa-perfil .down .option:first-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/********/
.dropdown-empresa {
  width: 65%;
  display: -ms-grid;
  display: grid;
  position: relative;
  max-height: 3rem;
  align-items: center;
}

.dropdown-empresa .icon {
  color: white;
}

.dropdown-empresa .select {
  padding: 0.75rem;
  border-radius: 5px;
  background: #404040;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  cursor: pointer;
}

.dropdown-empresa .select span {
  font-size: 0.7rem;
}

.dropdown-empresa .list {
  overflow-y: scroll;
  max-height: 4.2rem;
  background: #404040;
  color: white;
  position: absolute;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.dropdown-empresa .list::-webkit-scrollbar-track {
  background: #404040;
}

.dropdown-empresa .list .option {
  padding: 0.75rem;
  font-size: 0.7rem;
  text-align: center;
}

.dropdown-empresa .list .option:hover {
  background: #24a8b2;
}

.dropdown-empresa .down {
  top: 100%;
  left: 0%;
  right: 0%;
  border-top: 0.1rem solid white;
  border-bottom: 2px solid #262626;
  border-radius: 5px 5px 0 0;
}

.dropdown-empresa .down::-webkit-scrollbar-track {
  border-top-right-radius: 5px;
}

.dropdown-empresa .down::-webkit-scrollbar-thumb {
  border-top-right-radius: 5px;
}

.dropdown-empresa .down .option:first-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/********/
.dropdown-perfil {
  width: 65%;
  display: -ms-grid;
  display: grid;
  position: relative;
  max-height: 3rem;
  align-items: center;
}

.dropdown-perfil .icon {
  color: white;
}

.dropdown-perfil .select2 {
  padding: 0.75rem;
  border-radius: 5px;
  background: #404040;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  cursor: pointer;
}

.dropdown-perfil .select2 span {
  font-size: 0.7rem;
}

.dropdown-perfil .list {
  overflow-y: scroll;
  max-height: 4.2rem;
  background: #404040;
  color: white;
  position: absolute;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.dropdown-perfil .list::-webkit-scrollbar-track {
  background: #404040;
}

.dropdown-perfil .list .option {
  padding: 0.75rem;
  font-size: 0.7rem;
  text-align: center;
}

.dropdown-perfil .list .option:hover {
  background: #24a8b2;
}

.dropdown-perfil .down {
  top: 100%;
  left: 0%;
  right: 0%;
  border-top: 0.1rem solid white;
  border-bottom: 2px solid #262626;
  border-radius: 5px 5px 0 0;
}

.dropdown-perfil .down::-webkit-scrollbar-track {
  border-top-right-radius: 5px;
}

.dropdown-perfil .down::-webkit-scrollbar-thumb {
  border-top-right-radius: 5px;
}

.dropdown-perfil .down .option:first-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.button {
  color: white;
  font-size: 0.8rem;
  height: 3rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

.textBox {
  color: #262626;
  padding: 1rem;
  font-size: 0.8rem;
}

.textBoxErr {
  color: #c70b0b;
  padding: 1rem;
  font-size: 0.8rem;
  border-color: #c70b0b;
}

.searchbox {
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: relative;
}

.searchbox .list {
  visibility: hidden;
  position: absolute;
  overflow-y: scroll;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 10rem;
  background: #404040;
  color: white;
  z-index: 1000;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  margin-top: 0.1rem;
  border-radius: 5px 5px 0 0;
}

.searchbox .list::-webkit-scrollbar-track {
  background: #404040;
  border-radius: 0 5px 0 0;
}

.searchbox .list::-webkit-scrollbar-thumb {
  border-radius: 0 5px 0 0;
}

.searchbox .list .empresa {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  padding: 0.5rem;
}

.searchbox .list .empresa:hover {
  background: #24a8b2;
}

.searchbox .list .empresa .RS {
  font-size: 0.7rem;
}

.searchbox .list .empresa .CNPJ {
  font-size: 0.5rem;
}

.tbContainer {
  display: inline-block;
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  max-width: calc(100vw - 2rem);
  background: white;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  border-radius: 5px 5px 0 0;
  overflow: scroll;
}

.tbContainer .header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
  width: 100%;
  max-height: 3rem;
}

.tbContainer .headerlabel {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #404040;
  color: white;
  text-align: left;
  padding: 1rem 0 1rem 0;
  width: 100%;
  max-height: 3rem;
}

.tbContainer .add-button {
  position: absolute;
  right: 1rem;
  height: 2rem;
  top: 0.58rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  padding: 1rem;
  display: table;
  width: 100%;
  max-height: calc(100vh - 3rem - 2rem - 3rem);
  max-width: calc(100vw - 2rem);
}

table thead tr {
  background: #262626;
  color: white;
  text-align: left;
  font-weight: bold;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

table th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 20px 15px;
  font-size: 0.65rem;
}

table th:first-child {
  border-top-left-radius: 5px;
}

table th:last-child {
  border-top-right-radius: 5px;
}

table td {
  color: #262626;
  padding: 12px 15px;
  font-size: 0.65rem;
}

table tbody tr {
  border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
  background: #f3f3f3;
}

/* ========================= UPLOAD FILE ==================== */
.upload-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.upload-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 13rem;
  width: clamp(500px, 50%, 50%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.upload-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.upload-container .popup input[type="file"] {
  display: none;
}

.upload-container .popup .custom-file-upload {
  color: #262626;
  width: 100%;
  border: 1px solid #ccc;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
  cursor: pointer;
}

.upload-container .popup .custom-file-upload i {
  font-size: 0.8rem;
}

.upload-container .popup .buttons {
  margin-top: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.upload-container .popup .buttons .save-button {
  background: #24a8b2;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.upload-container .popup .buttons .download-button {
  background: #262626;
  color: white;
  width: 100%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.upload-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.upload-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}


/* ========================= CADASTRO SETORIAL ==================== */
.warning-message  {
  font-size: 0.8rem;
  color:#c70b0b;
}

.cad-setorial-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.cad-setorial-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 18rem;
  width: clamp(450px, 40%, 40%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.cad-setorial-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.cad-setorial-container .popup input[type="file"] {
  display: none;
}

.cad-setorial-container .popup .custom-file-upload {
  color: #262626;
  width: 100%;
  border: 1px solid #ccc;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
  cursor: pointer;
}

.cad-setorial-container .popup .custom-file-upload i {
  font-size: 0.8rem;
}

.cad-setorial-container .popup label {
  font-size: 0.8rem;
}

.cad-setorial-container .popup .labels {
  vertical-align: top;
  margin-top: 1rem;
  height: 80px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  padding: 2px 2px 2px 2px;
  place-items: left;
}

.cad-setorial-container .popup .buttons {
  margin-top: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.cad-setorial-container .popup .buttons .save-button {
  background: #24a8b2;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.cad-setorial-container .popup .buttons .download-button {
  background: #262626;
  color: white;
  width: 100%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.cad-setorial-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.cad-setorial-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}


/* ========================= MESSAGE ERROR ==================== */
.message-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 1000;
}

.message-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 24rem;
  width: clamp(600px, 50%, 50%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.message-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(100%, 100%, 105%);
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.message-container .popup input[type="file"] {
  display: none;
}

.message-container .popup .table_mensage{
  background: transparent;
  width: 100%;
}

.message-container .popup .tr_mensage{
  border-bottom: none;
}

.message-container .popup .td_maisdetalhes{
  background-color: white;
}

.message-container .popup .td_mensage{
  width: 650px;
  height: 100px;
}

.message-container .popup .custom-message {
  color: #262626;
  width: clamp(100%, 100%, 100%);
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
}

.message-container .popup .erro-message {
  color: #757474;
  width: clamp(100%, 100%, 100%);
  max-height: 100px;
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
  overflow-y: scroll;
  text-align:justify;
}

.message-container .popup .custom-button {
  margin-top: -1rem;
  width:115px;
  height: 20px;
  place-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: #24a8b2;
  font-weight: bold;
}

.message-container .popup .custom-message i {
  font-size: 0.5rem;
}
#my_form {
  display: none;
 }
.message-container .popup .buttons {
  margin-top: -1rem;
  margin-right: 1em;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end;
}

.message-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 15%;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.message-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}
/* ========================= POPUP CHECKBOX ==================== */
.popup-checkbox {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 100;
}

.popup-checkbox .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 30rem;
  width: 80rem;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.popup-checkbox .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.popup-checkbox .popup label {
  font-size: 0.8rem;
}

.popup-checkbox .popup label input{
  margin:0 0.5rem 0 0;
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 0.8rem;
}

.popup-checkbox .popup .table_check tr{
  line-height: 0.8rem;
  border: none;
}

.popup-checkbox .popup .table_check td{
  padding-top: 0.1875rem;
  padding-bottom: 0rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  border-spacing: 0rem;
  text-align: center;
}

.popup-checkbox .popup .buttons {
  margin-top: -1rem;
  /* height: 10%; */
  width: 55%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.popup-checkbox .popup .buttons .check-all {
  background: #262626;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  user-select:none;
}

.popup-checkbox .popup .buttons .check-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-checkbox .popup .buttons .cancel {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-checkbox .popup .buttons .fechar {
  background: #656666;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

/* ========================= POPUP CHECKBOX INDICADORES==================== */
.popup-checkbox_indi {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 99;
}

.popup-checkbox_indi .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 20rem;
  width: 65rem;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.popup-checkbox_indi .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.popup-checkbox_indi .popup .table_check{
  display: table;
  width: 100%;
  place-items: center;
  text-align: center;
}

.popup-checkbox_indi .popup .table_check .table_tr{
  display: table-row;
  font-size: 0.8rem;
  color: black;
  /* place-items: center; */
}

.popup-checkbox_indi .popup .table_check label{
  display: table-cell;
  font-size: 0.8rem;
  color: black;
  padding-top: 0;
  padding-bottom: 0rem;
  padding-left: 0.1rem;
  padding-right: 0.5rem;
  border-spacing: 0rem;
  text-align: center;
  /* place-items: center; */
}

.popup-checkbox_indi .popup .table_check label input{
  margin:0 0.5rem 0 0;
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 0.8rem;
}

.popup-checkbox_indi .popup .buttons {
  margin-top: -1rem;
  /* height: 10%; */
  width: 70%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.popup-checkbox_indi .popup .buttons .check-all {
  background: #262626;
  color: white;
  width: 85%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  user-select:none;
}

.popup-checkbox_indi .popup .buttons .check-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-checkbox_indi .popup .buttons .cancel {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-checkbox_indi .popup .buttons .fechar {
  background: #656666;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

/* ========================= MESSAGE WARNING ==================== */
.message-pergunta-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 1000;
}

.message-pergunta-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 15rem;
  width: clamp(500px, 50%, 50%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.message-pergunta-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.message-pergunta-container .popup .wrn-message {
  color: #262626;
  width: clamp(100%, 100%, 100%);
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
}

.message-pergunta-container .popup .wrn-message i {
  font-size: 0.5rem;
}

.message-pergunta-container .popup .tr_mensage{
  border-bottom: none;
}

.message-pergunta-container .popup .td_maisdetalhes{
  background-color: white;
}

.message-pergunta-container .popup .td_mensage{
  width: 650px;
  height: 100px;
}

.message-pergunta-container .popup .buttons {
  margin-top: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.message-pergunta-container .popup .buttons .save-button {
  background: #24a8b2;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.message-pergunta-container .popup .buttons .download-button {
  background: #262626;
  color: white;
  width: 100%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.message-pergunta-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.message-pergunta-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}

/* ========================= LOGIN ========================= */
.loginContainer {
  height: 80vh;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.loginContainer .loginForm {
  padding: 3rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-gap: 1.0rem;
  position: relative;
}

.loginContainer .loginForm .loginInput {
  padding: 0.8rem;
  background: white;
  color: #262626;
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.loginContainer .loginForm .loginButton {
  cursor: pointer;
  background: #24a8b2;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: -15px;
  position: relative;
}

.loginContainer .loginForm .toggle-password {
  float: right;
  margin-left: 230px;
  margin-right: 5px;
  margin-top: -79px;
  position: relative;
  color: black;
}

.loginContainer .loginForm .senha {
  font-size: 0.65rem;
  margin-top: -5px;
  margin-bottom: -25px;
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

.loginContainer .loginForm .senha:hover{
  color: #24a8b2;
}

.loginContainer .recuperaForm {
  width: 33%;
  padding: 3rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-gap: 1.5rem;
  position: relative;
}

.loginContainer .recuperaForm .recupera {
  font-size: 1.2rem;
  color: white;
  margin-bottom: -5px;
}

.loginContainer .recuperaForm .loginInput {
  padding: 0.8rem;
  background: white;
  color: #262626;
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.loginContainer .recuperaForm .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.loginContainer .recuperaForm .buttons .enviarButton {
  background: #24a8b2;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.loginContainer .recuperaForm .buttons .enviarButton:disabled {
  cursor: not-allowed;
  background: #9b9b9b;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.loginContainer .recuperaForm .buttons .cancelarButton {
  background: #da3e3e;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.loginContainer .cadastroForm {
  padding: 3rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-gap: 1.0rem;
  position: relative;
}

.loginContainer .cadastroForm .recupera {
  font-size: 1.2rem;
  color: white;
  margin-bottom: -5px;
}

.loginContainer .cadastroForm .emailInput {
  padding: 0.5rem;
  background: transparent;
  color: white;
  font-size: 1rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  text-align: center;
  margin-top: -15px;
  margin-bottom: -15px;
}

.loginContainer .cadastroForm .loginInput {
  padding: 0.8rem;
  background: white;
  color: #262626;
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.loginContainer .cadastroForm .loginInput2 {
  padding: 0.8rem;
  background: white;
  color: #262626;
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin-top: -15px;
}

.loginContainer .cadastroForm .botao-atualiza {
  cursor: pointer;
  background: #24a8b2;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: -15px;
  position: relative;
}

.loginContainer .cadastroForm .botao-atualiza:disabled{
  cursor: not-allowed;
  background: #9b9b9b;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: -15px;
  position: relative;
}

.loginContainer .cadastroForm .toggle-password {
  float: right;
  margin-left: 230px;
  margin-right: 5px;
  margin-top: -79px;
  position: relative;
  color: black;
}

.loginContainer .cadastroForm .toggle-password2 {
  float: right;
  margin-left: 230px;
  margin-right: 5px;
  margin-top: -79px;
  position: relative;
  color: black;
}














.form-horizontal {
  background: white;
}
.progress {
      height: 5px;
  }
.control-label {
      text-align: left !important;
      padding-bottom: 7px;
  }
.form-horizontal {
      padding: 25px 20px;
      border: 2px solid #e8eaed;
      border-radius: 5px;
  }
.uil-times {
  color: red;
}

.text-danger, .text-warning{
  color: red;
  font-size: 0.7rem;
}

.text-success{
  color: green;
  font-size: 0.7rem;
}

.block-help{
  font-size: 0.7rem;
  color: white;
}

.info_senha{
  margin-left: -100px;
  margin-bottom: -15px;
}

.info_senha2{
  margin-left: -60px;
  margin-top: -15px;
  /* margin-bottom: 5px; */
}

.status-senha, .forca{
  margin-top: -15px;
  margin-left: -15px;
  font-size: 0.7rem;
  color: white;
}

.verifica{
  margin-top: -5px;
  margin-left: -10px;
  font-size: 0.7rem;
  color: white;
}




















/* ========================= LOGOUT POPUP ==================== */
.logout-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.logout-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 14rem;
  width: clamp(400px, 10%, 10%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.logout-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(100%, 100%, 105%);
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.logout-container .popup input[type="file"] {
  display: none;
}

.logout-container .popup .table_mensage{
  background: transparent;
  width: 100%;
}

.logout-container .popup .tr_mensage{
  border-bottom: none;
}

.logout-container .popup .td_maisdetalhes{
  background-color: white;
}

.logout-container .popup .td_mensage{
  width: 650px;
  height: 100px;
}

.logout-container .popup .custom-message {
  color: #262626;
  width: clamp(100%, 100%, 100%);
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
}

.logout-container .popup .erro-message {
  color: #757474;
  width: clamp(100%, 100%, 100%);
  max-height: 100px;
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
  overflow-y: scroll;
  text-align:justify;
}

.logout-container .popup .custom-button {
  margin-top: -1rem;
  width:115px;
  height: 20px;
  place-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: #24a8b2;
  font-weight: bold;
}

.logout-container .popup .custom-message i {
  font-size: 0.5rem;
}
#my_form {
  display: none;
 }
.logout-container .popup .buttons {
  margin-top: -7rem;
  margin-right: 8em;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end;
}

.logout-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 30%;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.logout-container .popup .buttons-logout {
  margin-left: 8em;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end start;
}

.logout-container .popup .buttons-logout .logout-button {
  background: #24a8b2;
  color: white;
  width: 30%;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.logout-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}


/* ========================= MESSAGE OK POPUP ==================== */
.messageok-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 1000;
}

.messageok-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 16rem;
  width: clamp(400px, 10%, 10%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.messageok-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(100%, 100%, 105%);
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.messageok-container .popup input[type="file"] {
  display: none;
}

.messageok-container .popup .table_mensage{
  background: transparent;
  width: 100%;
}

.messageok-container .popup .tr_mensage{
  border-bottom: none;
}

.messageok-container .popup .td_maisdetalhes{
  background-color: white;
}

.messageok-container .popup .td_mensage{
  width: 650px;
  height: 100px;
}

.messageok-container .popup .custom-message {
  color: #262626;
  width: clamp(100%, 100%, 100%);
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
}

.messageok-container .popup .erro-message {
  color: #757474;
  width: clamp(100%, 100%, 100%);
  max-height: 100px;
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
  overflow-y: scroll;
  text-align:justify;
}

.messageok-container .popup .custom-button {
  margin-top: -1rem;
  width:115px;
  height: 20px;
  place-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: #24a8b2;
  font-weight: bold;
}

.messageok-container .popup .custom-message i {
  font-size: 0.5rem;
}

.messageok-container .popup .buttons {
  margin-top: -7rem;
  margin-right: 8em;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end;
}

.messageok-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 30%;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.messageok-container .popup .buttons-logout {
  margin-left: 8em;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end start;
}

.messageok-container .popup .buttons-logout .logout-button {
  background: #24a8b2;
  color: white;
  width: 30%;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.messageok-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}

/* ========================= DESCRIÇÃO POPUP ==================== */
.popup-descricao {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 1000;
}

.popup-descricao .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 14rem;
  width: clamp(400px, 10%, 10%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.popup-descricao .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(100%, 100%, 105%);
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.popup-descricao .popup .table_mensage{
  background: transparent;
  width: 100%;
}

.popup-descricao .popup .tr_mensage{
  border-bottom: none;
}

.popup-descricao .popup .descricao-rating-manual{
  width: clamp(100%, 100%, 100%);
  max-height: 100px;
  display: -ms-grid;
  display: grid;
  overflow-y: scroll;
  text-align:justify;
  margin-bottom: -2rem;
  font-size: 0.8rem;
}


.popup-descricao .popup .buttons {
  margin-bottom: 2rem;
  margin-right: 8em;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end;
}

.popup-descricao .popup .buttons .cancel-button {
  background: #24a8b2;
  color: white;
  width: 12%;
  height: 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}


/* ========================= SEMIAUTO POPUP ==================== */
.semiauto-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.semiauto-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 15rem;
  width: clamp(680px, 10%, 10%);
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.semiauto-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(100%, 100%, 105%);
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.semiauto-container .popup input[type="file"] {
  display: none;
}

.semiauto-container .popup .table_mensage{
  background: transparent;
  width: 100%;
}

.semiauto-container .popup .tr_mensage{
  border-bottom: none;
}

.semiauto-container .popup .td_maisdetalhes{
  background-color: white;
}

.semiauto-container .popup .td_mensage{
  width: 650px;
  height: 100px;
}

.semiauto-container .popup .custom-message {
  color: #262626;
  width: clamp(100%, 100%, 100%);
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
  text-align: center;
}

.semiauto-container .popup .erro-message {
  color: #757474;
  width: clamp(100%, 100%, 100%);
  max-height: 100px;
  background: transparent;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 6px 12px;
  overflow-y: scroll;
  text-align:justify;
}

.semiauto-container .popup .custom-button {
  margin-top: -1rem;
  width:115px;
  height: 20px;
  place-items: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: #24a8b2;
  font-weight: bold;
}

.semiauto-container .popup .custom-message i {
  font-size: 0.5rem;
}
#my_form {
  display: none;
 }
.semiauto-container .popup .buttons {
  margin-top: -6.5rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end center;
}

.semiauto-container .popup .buttons .normal-button {
  background: #262626;
  color: white;
  width: 28%;
  height: 3rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.semiauto-container .popup .buttons-cancel {
  margin-top: -8.5rem;
  margin-right: 4.5rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end end;
}

.semiauto-container .popup .buttons-cancel .cancel-button {
  background: #da3e3e;
  color: white;
  width: 28%;
  height: 3rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}


.semiauto-container .popup .buttons-semiauto {
  margin-top: -1.5rem;
  margin-left: 4.5rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: end start;
}

.semiauto-container .popup .buttons-semiauto .semiauto-button {
  background: #24a8b2;
  color: white;
  width: 28%;
  height: 3rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.semiauto-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}

/* ========================= NAV ========================= */
.nav-closed-logout {
  height: 1.5rem;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: #262626;
  border-bottom: 2px solid #262626;
}

.nav-closed-logout .nav-usuario {
  font-size: 0.7em;
  position: fixed;
  padding: 0.469rem;
  right: 2em;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

.nav-closed-logout .nav-button-logout {
  position: fixed;
  padding: 0.19rem;
  right: 0.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  color: white;
}

.nav-closed-logout .nav-logout {
  cursor: pointer;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.nav-closed-logout .nav-logout:hover {
  color: #f7f7f7;
}

.nav-closed {
  height: 3rem;
  width: 100%;
  position: fixed;
  left: 0;
  margin-top: -1.5em;
  z-index: 100;
  background-color: #262626;
  border-bottom: 2px solid #262626;
}

.nav-closed .nav-logo {
  position: fixed;
  padding: 0.01em;
  left: 0.7em;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
}

.nav-closed .nav-logo:hover {
  color: #f7f7f7;
}

.nav-closed .nav-buttons {
  position: fixed;
  padding: 0.75rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  color: white;
}

.nav-closed .nav-toggle {
  cursor: pointer;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.nav-closed .nav-toggle:hover {
  color: #f7f7f7;
}

.nav-closed .nav-toggle a {
  cursor: pointer;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  color: #f7f7f7;
}

.nav-closed .nav-toggle a:hover {
  color: #f7f7f7;
}

.nav-expanded {
  color: #b3b3b3;
  padding: 2rem;
  padding-top: calc(3rem + 2rem);
  width: 100%;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 10;
  background-color: #262626;
  border-bottom: 2px solid #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
  -webkit-transition: 1.0s ease;
  transition: 1.0s ease;
}

.nav-expanded a {
  text-decoration: none;
  color: #b3b3b3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.nav-expanded a:hover {
  color: #f7f7f7;
}

.show {
  top: 0;
  -webkit-transition: 1.0s ease;
  transition: 1.0s ease;
}

.nav-icon {
  font-size: 2rem;
}

@media screen and (max-width: 400px) {
  .nav-expanded {
    top: -1000%;
  }
}

/* ========================= COMUM - AREA LOGADA ========================= */
.calculadora-cad, .calculadora-atrib,.relatorios-atrib, .dfs, .enterprises, .settings, .home, .users, .simulacao-ratings {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: calc(100vh - 3rem);
  display: -ms-grid;
  display: grid;
  place-items: center;
  scroll-margin-top: 3rem;
}

.calculadora-search {
  -ms-grid-columns: 2fr 2fr 2fr;
      grid-template-columns: 2fr 2fr 2fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  width: 100%;
  height: calc(50vh - 7rem);
  display: -ms-grid;
  display: grid;
  place-items: center;
  scroll-margin-top: 3rem;
}
.consulta-ratings {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: calc(120vh - 3rem);
  display: -ms-grid;
  display: grid;
  place-items: center;
  scroll-margin-top: 3rem;
}

.consulta-ratings-com-dados {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: calc((100vh - 3rem)*2);
  display: -ms-grid;
  display: grid;
  place-items: center;
  scroll-margin-top: 3rem;
}

.settings {
  height: calc((100vh - 3rem)*2);
}

/* ========================= CALCULADORA - SEARCH ========================= */
.calculadora-search .searchbox {
  width: 100%;
  height: 2.5rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 7fr 1fr;
      grid-template-columns: 7fr 1fr;
  background-color: #404040;
  color: white;
  border-radius: 5px;
  /* margin-top: 2rem;
  margin-bottom: -4.5rem; */
}

.search .header_search {
  margin-top: 2rem; 
  margin-left: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;  
  color: #404040;
}

.search .subheader_search {
  margin-top: 4rem; 
  margin-left: 1rem;
  margin-bottom: calc(-12% - -5rem);
  /* margin-bottom: clamp(-4px, 25vw, -8px); */
  /* margin-top: clamp(2rem, 25vw, 4rem); */
  font-size: 1rem;  
  color: #404040;
}

.calculadora-search .searchbox input{
  height: 2.5rem;
}
.searchbox {
  width: 60%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 9fr 1fr;
      grid-template-columns: 9fr 1fr;
  background-color: #404040;
  color: white;
  border-radius: 5px;
}

.searchbox .icon {
  color: #b3b3b3;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.searchbox .icon:hover {
  cursor: pointer;
  color: white;
}

/* ========================= CALCULADORA - CADASTRO ========================= */
.calculadora-cad {
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 8fr;
      grid-template-rows: 1fr 1fr 8fr;
  padding: 1rem;
  grid-gap: 1rem;
}

.calculadora-cad .cad-widget {
  width: 100%;
  height: 100%;
  background-color: #24a8b2;
  color: white;
  border-radius: 5px;
  padding: 1rem;
}

.calculadora-cad .cad-widget:nth-of-type(1) {
  grid-column: span 2;
}

.calculadora-cad .cad-coluna {
  width: 100%;
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
}

.calculadora-cad .cad-dado {
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
}

.calculadora-cad .cad-userinfos {
  overflow-y: scroll;
  background: white;
  grid-column: span 3;
  width: 100%;
  height: 100%;
  position: relative;
}

.calculadora-cad .cad-userinfos .header {
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.calculadora-cad .cad-userinfos .add-button {
  position: absolute;
  right: 0.75rem;
  height: 2rem;
  top: 0.65rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

.calculadora-cad .cad-userinfos .tbFin {
  overflow-y: scroll;
  height: 100%;
  width: 100%;
}

.calculadora-cad .cad-params {
  overflow-y: auto;
  background: white;
  grid-column: span 2;
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 0.5rem;
}

.calculadora-cad .cad-params .header {
  width: 100%;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.calculadora-cad .cad-params .dropdown {
  padding: 0 1rem 0 1rem;
}

.calculadora-cad .cad-params .dropdown .list {
  left: 1rem;
  right: 1rem;
}

.calculadora-cad .cad-params .dropdown-rating {
  padding: 0 1rem 0 1rem;
}

.calculadora-cad .cad-params .dropdown-rating .list {
  left: 1rem;
  right: 1rem;
}

.calculadora-cad .little-note {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.5rem;
  color: #262626;
  text-align: center;
  padding: 0.5rem;
  max-height: 2rem;
}


/* ========================= CALCULADORA - ATRIBUICAO ========================= */
.calculadora-atrib {
  -ms-grid-columns: 6fr 4fr;
      grid-template-columns: 6fr 4fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.calculadora-atrib .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.calculadora-atrib .header_aviso {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 90%;
  height: 90%;
  font-size: 0.8rem;
  border-radius: 3px;
  border: 0.2px solid red;
  background: transparent;
  color: red;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.calculadora-atrib .tbContainer .tabela_ativo th{
  text-align: center;
  border-radius: 0%;
}

.calculadora-atrib .tbContainer .tabela_ativo tbody{
  text-align: center;
}

.calculadora-atrib .tbContainer .tabela_ativo{
  max-width: 90%;
  white-space:nowrap;
  margin: 0px auto;
  margin-top: 1rem;
}

.calculadora-atrib .little-note {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.5rem;
  color: #262626;
  text-align: center;
  padding: 0.5rem;
  max-height: 2rem;
}

.calculadora-atrib .atrib-findata {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  background: white;
  -ms-grid-rows: 3rem 1fr 1.5rem;
      grid-template-rows: 3rem 1fr 1.5rem;
  border-radius: 5px 5px 0 0;
}

.calculadora-atrib .atrib-crits {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  background: white;
  -ms-grid-rows: 3rem 1fr;
      grid-template-rows: 3rem 1fr;
  border-radius: 5px 5px 0 0;
}

.calculadora-atrib .atrib-crits .tbCrit {
  overflow-y: scroll;
  padding: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
}

.calculadora-atrib .atrib-crits .tbCrit .searchbox {
  width: 100%;
}

.calculadora-atrib .atrib-crits .tbCrit .comentario {
  width: 100%;
}

.calculadora-atrib .atrib-crits .tbCrit input {
  font-size: 0.75rem;
}

.calculadora-atrib .atrib-crits .tbCrit .crit, .calculadora-atrib .atrib-crits .tbCrit .item {
  color: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  text-align: center;
}

.calculadora-atrib .atrib-crits .tbCrit .crit-header {
  background: #262626;
  color: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  padding: 0.75rem;
  width: 100%;
  height: 100%;
  grid-column: span 3;
  border-radius: 5px;
}

.blur {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.popup-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.popup-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 15rem;
  width: 50%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.popup-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.popup-container .popup .rating {
  color: #262626;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.popup-container .popup .rating-manual {
  color: #262626;
  width: clamp(100%, 100%, 100%);
  max-height: 120px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  overflow-y: scroll;
  text-align:justify;
  font-size: 0.8rem;
  text-align: center;
}

.popup-container .popup .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.popup-container .popup .buttons .save-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-container .popup .buttons .rating_manual-button {
  background: #262626;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-container .popup .nome-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}


.popup-container-relatorios {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.popup-container-relatorios .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 12rem;
  width: 30%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.popup-container-relatorios .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}


.popup-container-relatorios .popup .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.popup-container-relatorios .popup .buttons .save-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-container-relatorios .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.popup-container-relatorios .popup .nome-relatorio {
  padding: 0.5rem;
  width: 70%;
  font-size: 0.8rem;
  text-align: center;
}


.popup-carregamento-relatorios {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 9999999;
}

.popup-carregamento-relatorios .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 7rem;
  width: 30%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.popup-carregamento-relatorios .popup .carregamento-relatorio {
  padding: 0.5rem;
  width: 100%;
  font-size: 1rem;
  margin-top: 3.5rem;
  font-weight: bold;
  text-align: center;
  color: #24a8b2;
}

.rating_manual-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.rating_manual-container .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 15rem;
  width: 50%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.rating_manual-container .popup .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.rating_manual-container .popup .rating {
  color: #262626;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.rating_manual-container .popup .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.rating_manual-container .popup .buttons .concluido-button {
  background: #24a8b2;
  color: white;
  width: 45%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.rating_manual-container .popup .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 45%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.rating_manual-container .popup .descricao-rating {
  padding: 0.5rem;
  width: 75%;
  font-size: 0.8rem;
  text-align: center;
}

/* ========================= PERFIL POPUP ========================= */
.perfil-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.perfil-container .popup-settings {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 15rem;
  width: 35%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.perfil-container .popup-settings .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.perfil-container .popup-settings .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.perfil-container .popup-settings .buttons .concluido-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.perfil-container .popup-settings .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

/* ========================= ADM SETTINGS POPUP ========================= */
.adm-settings-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 99999999999;
}

.adm-settings-container .popup-settings {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 20rem;
  width: 35%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.adm-settings-container .popup-settings .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.adm-settings-container .popup-settings .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.adm-settings-container .popup-settings .buttons .concluido-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.adm-settings-container .popup-settings .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}


/* ========================= SETTINGS POPUP ========================= */
.settings-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.settings-container .popup-settings {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 15rem;
  width: 35%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.settings-container .popup-settings .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.settings-container .popup-settings .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.settings-container .popup-settings .buttons .concluido-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.settings-container .popup-settings .buttons .concluido-excrole-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.settings-container .popup-settings .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}


/* ========================= MODIFICAR POPUP ========================= */

.modificar-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.modificar-container .popup-settings {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 15rem;
  width: 45%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.modificar-container .popup-settings .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.modificar-container .popup-settings .buttons {
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
}

.modificar-container .popup-settings  .buttons .trocar-button {
  background: #24a8b2;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.modificar-container .popup-settings .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

.modificar-container .popup-settings #email {
  padding: 1rem;
  width: 85%;
  background: #404040;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========================= CONSULTA - RATINGS ========================= */
.consulta-ratings, .consulta-ratings-com-dados {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

/* ========================= USERS ========================= */
.users {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 2.1fr 1.9fr;
      grid-template-rows: 2.1fr 1.9fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}


.userstbContainer {
  display: inline-block;
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  max-width: calc(100vw - 2rem);
  background: white;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  border-radius: 5px 5px 0 0;
  overflow: scroll;
}

.userstbContainer .header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
  width: 100%;
  max-height: 3rem;
}

.userstbContainer .tbComum .coment{
  font-size: 0.65rem;
  /* height: 3rem; */
  word-wrap: break-word;
  /* width: 100%; */
  /* max-width: 100%; */
  /* min-width: 100%; */
  background-color: transparent;
  color: #262626;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  outline: 0;
  border: 0;
  text-align: right;
}

.userstbContainer .add-button {
  position: absolute;
  right: 1rem;
  height: 2rem;
  top: 0.58rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

.userstbContainer .ver-button {
  position: absolute;
  right: 3.5rem;
  height: 2rem;
  top: 0.58rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

/* ========================= CONTROLE - FINANCIALS ========================= */
.enterprises {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

/* ========================= SETTINGS ========================= */
.settings {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.settings .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.Models {
  grid-column: span 2;
}

.icon_inativo {
  color: red;
}

.icon_ativo {
  color: green;
}

.excludeBtn {
  padding: 5px;
  background: #da3e3e;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 75px;
}

.excludeEmpBtn {
  padding: 5px;
  background: #da3e3e;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 90px;
}

.empresaBtn {
  padding: 5px;
  background: #24a8b2;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 75px;
}

.perfilBtn {
  padding: 5px;
  background: #000000;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 75px;
}

.modificarBtn {
  padding: 5px;
  background: #41525a;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 73px;
}

.ativarBtn {
  padding: 5px;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 75px;
  border-color: transparent;
  border: 0px;
  height: 30px;
}

.ativarBtn:disabled {
  background: #a1a5a5;
  padding: 5px;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: not-allowed;
  font-size: 0.7rem;
  width: 75px;
  border-color: transparent;
  border: 0px;
  height: 30px;
}

.visualizeBtn {
  padding: 5px;
  background: #24a8b2;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
}

.visualizeDesc {
  padding: 5px;
  background: #24a8b2;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
}

.visualizeDescDisable{
  padding: 5px;
  background: #a1a5a5;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: not-allowed;
  font-size: 0.7rem;
}

.visualizeDescDisable :disabled{
  padding: 5px;
  background: #a1a5a5;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: not-allowed;
  font-size: 0.7rem;
}

/* ========================= ROLES ========================= */

.userstbContainer .tbComum .coment_roles{
  font-size: 0.65rem;
  /* height: 3rem; */
  word-wrap: break-word;
  /* width: 100%; */
  /* max-width: 100%; */
  /* min-width: 100%; */
  background-color: transparent;
  color: #262626;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  outline: 0;
  border: 0;
  text-align: right;
}

.excludeRoleBtn {
  padding: 5px;
  background: #da3e3e;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 90px;
}

.excludeRoleEmpBtn {
  padding: 5px;
  background: #da3e3e;
  border-radius: 5px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  cursor: pointer;
  font-size: 0.7rem;
  width: 90px;
}

.emproles-container {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.emproles-container .popup-settings {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 13rem;
  width: 35%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.emproles-container .popup-settings .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.emproles-container .popup-settings .dropdown-empresa_role {
  height: 100%;
  width: 90%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
  grid-gap: 1rem;
}

.emproles-container .popup-settings .dropdown-empresa_role .dropdown{
  margin-bottom: 1rem;
}

.emproles-container .popup-settings .dropdown-empresa_role .list{
  overflow-y: scroll;
  max-height: 5rem;
  background: #404040;
  color: white;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.emproles-container .popup-settings .buttons {
  height: 100%;
  width: 90%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  place-items: center;
  grid-gap: 1rem;
}

.emproles-container .popup-settings .buttons .concluido-button {
  background: #24a8b2;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}


.emproles-container .popup-settings .buttons .cancel-button {
  background: #da3e3e;
  color: white;
  width: 90%;
  height: 3rem;
  border-radius: 5px;
  padding: 1rem;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}

/* .userstbContainer .tbRoles th{
  text-align: center;
}

.userstbContainer .tbRoles tr{
  text-align: center;
} */

/* ========================= Ver Roles ========================= */
.funcroles {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 2.1fr 1.9fr;
      grid-template-rows: 2.1fr 1.9fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}


.funcrolestbContainer {
  display: inline-block;
  height: 100%;
  width: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  max-width: calc(100vw - 2rem);
  background: white;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  border-radius: 5px 5px 0 0;
  overflow: scroll;
}

.funcrolestbContainer .header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
  width: 100%;
  max-height: 3rem;
}

.funcrolestbContainer .tbVerRoles th{
  text-align: center;
}

.funcrolestbContainer .tbVerRoles tr{
  text-align: center;
}

.funcrolestbContainer .voltar-button {
  position: absolute;
  right: 1rem;
  height: 2rem;
  top: 0.58rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}


/* ========================= DEMONSTRAÇÕES FINANCEIRAS ========================= */
.dfs {
  -ms-grid-columns: 2fr 8fr;
      grid-template-columns: 2fr 8fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.dfs .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.dfs .search {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  background: white;
  -ms-grid-rows: 3rem (1fr)[5];
      grid-template-rows: 3rem repeat(5, 1fr);
  border-radius: 5px 5px 0 0;
}

.dfs .search .searchbox {
  width: 80%;
}

.dfs .search input {
  font-size: 0.75rem;
}

.dfs .search .dropdown {
  width: 80%;
}

/* ========================= HOME ========================= */
.home {
  -ms-grid-columns: 2fr 8fr;
      grid-template-columns: 2fr 8fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.home .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}
/*# sourceMappingURL=home.css.map */

/* ========================= Relatórios ========================= */

.relatorios-atrib {
  -ms-grid-columns: 3.55fr 6.45fr;
      grid-template-columns: 3.55fr 6.45fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.relatorios-atrib .header {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  border-radius: 5px;
  background: #24a8b2;
  color: white;
  text-align: center;
  padding: 1rem 0 1rem 0;
}

.relatorios-atrib .little-note {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.5rem;
  color: #262626;
  text-align: center;
  padding: 0.5rem;
  max-height: 2rem;
}

.relatorios-atrib .atrib-findata {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  background: white;
  -ms-grid-rows: 3rem 1fr 1.5rem;
      grid-template-rows: 3rem 1fr 1.5rem;
  border-radius: 5px 5px 0 0;
}

.relatorios-atrib .atrib-crits {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  background: white;
  -ms-grid-rows: 3rem 1fr;
      grid-template-rows: 3rem 1fr;
  border-radius: 5px 5px 0 0;
}

.relatorios-atrib .atrib-crits .tbCrit {
  overflow-y: scroll;
  padding: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center start;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}

.relatorios-atrib .atrib-crits .tbCrit .searchbox {
  width: 100%;
}

.relatorios-atrib .atrib-crits .tbCrit .comentario {
  width: 100%;
  grid-column: span 2;

}

.relatorios-atrib .atrib-crits .tbCrit input {
  font-size: 0.75rem;
}

.relatorios-atrib .atrib-crits .tbCrit .coment {
  font-size: 0.75rem;
  height: 4rem;
  max-height: 10rem;
  min-height: 4rem;
  word-wrap: break-word;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  background-color: #404040;
  color: #FFFFFF;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  border: 1px solid #404040;
    box-shadow: 1px 1px 1px #404040;
}

.relatorios-atrib .atrib-crits .tbCrit .crit{
  color: #262626;
  display: -ms-grid;
  display: grid;
  place-items: start;
  font-size: 0.7rem;
  text-align: left;
}

.relatorios-atrib .atrib-crits .tbCrit .crit-salvar{
  background: #24a8b2;
  color: white;
  width: 100%;
  height: 3rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

.relatorios-atrib .atrib-crits .tbCrit .crit-gerar{
  background: #da3e3e;
  color: white;
  width: 100%;
  height: 3rem;
  border-radius: 5px;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

.relatorios-atrib .atrib-crits .tbCrit .crit-header{
  background: #262626;
  color: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  padding: 0.75rem;
  width: 100%;
  height: 100%;
  grid-column: span 2;
  border-radius: 5px;
}

.relatorios-atrib .atrib-crits .tbCrit .crit-divisao{
  background: #f7f7f7;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 0.5rem;
  grid-column: span 2;
  border-radius: 3px;
}

.relatorios-atrib .tbContainer {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  max-width: 100%;
  background: white;
  -ms-grid-rows: 3rem 1fr;
      grid-template-rows: 3rem 1fr;
  border-radius: 5px 5px 0 0;
}

.relatorios-atrib .tbContainer .tbCrit-direito {
  overflow-y: scroll;
  padding: 1rem;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start start;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
}
.relatorios-atrib .tbContainer .tbCrit-direito .crit-header{
  background: #24a8b2;
  color: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  padding: 0.75rem;
  width: 100%;
  height: 100%;
  grid-column: span 1;
  border-radius: 5px;
}

.relatorios-atrib .tbContainer .tbCrit-direito .tabela_rating th{
  text-align: center;
}

.relatorios-atrib .tbContainer .tbCrit-direito .tabela_rating tbody{
  text-align: center;
}

.relatorios-atrib .tbContainer .tbCrit-direito .tabela_rating{
  max-width: 50%;
  white-space:nowrap;
  margin: 0px auto;
}

.relatorios-atrib .tbContainer .tbCrit-direito .comentario{
  background-color: transparent;
  color: #24a8b2;
  display: -ms-grid;
  display: grid;
  place-items: right;
  padding: 0.75rem;
  font-size: 0.9rem;
  width: 100%;
  height: 100%;
  grid-column: span 1;
  border-radius: 5px;
  border: 3px solid #24a8b2;
}
.relatorios-atrib .tbContainer .tbCrit-direito .dados_empresa {
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: white;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
}

.relatorios-atrib .tbContainer .tbCrit-direito .dados_empresa .cad-widget {
  width: 100%;
  height: 100%;
  background-color: #24a8b2;
  color: white;
  border-radius: 5px;
  padding: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 0.001rem;
  grid-column: span 1;
}

.relatorios-atrib .tbContainer .tbCrit-direito .dados_empresa .cad-widget .cad-coluna {
  width: 100%;
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-column: span 1;
}

.relatorios-atrib .tbContainer .tbCrit-direito .dados_empresa .cad-widget .cad-dado {
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-column: span 1;
}


/* =========================  KMV ========================= */
.mm-atrib{
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: calc(100vh - 3rem);
  display: -ms-grid;
  display: grid;
  place-items: center;
  scroll-margin-top: 3rem;
}

.mm-atrib {
  -ms-grid-columns: 3.55fr 6.45fr;
      grid-template-columns: 3.55fr 6.45fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.popup-carregamento-mm {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 9999999;
}

.popup-carregamento-mm .popup {
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  height: 7rem;
  width: 30%;
  background: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-rows: 3rem 1fr 1fr 1fr;
      grid-template-rows: 3rem 1fr 1fr 1fr;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  border-radius: 5px 5px 0 0;
  padding: 0 0 1rem 0;
  -webkit-box-shadow: 5px 5px 5px #ccc;
          box-shadow: 5px 5px 5px #ccc;
}

.popup-carregamento-mm .popup .carregamento-mm {
  padding: 0.5rem;
  width: 100%;
  font-size: 1rem;
  margin-top: 3.5rem;
  font-weight: bold;
  text-align: center;
  color: #24a8b2;
}

.mm-atrib .atrib-crits {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  -ms-grid-rows: 3rem 1fr;
      grid-template-rows: 3rem 1fr;
  background-color: #F7F7F7;
}

.mm-atrib .atrib-crits .header {
  display: -ms-grid;
  display: grid;
  place-items: left;
  width: 98%;
  height: 2rem;
  font-size: 1.5rem;
  border-radius: 5px;
  color: black;
  text-align: left;
  /* padding: 1rem 0 1rem 0; */
  z-index: 5;
  /* margin-top: 2rem; 
  margin-left: 1rem;
  margin-bottom: 1rem; */
  background-color: #F7F7F7;
}

.mm-atrib .atrib-crits .tbCrit {
  overflow-y: scroll;
  padding: 1rem;
  height: 100%;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center start;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
  z-index: 1;
  background-color: #F7F7F7;
  padding-top: 3rem;
}

.mm-atrib .atrib-crits .tbCrit .crit-header{
  color: black;
  display: -ms-grid;
  display: grid;
  place-items: left;
  font-size: 1rem;
  width: 100%;
  grid-column: span 2;
  /* margin-bottom: calc(-5% - -5rem);
  margin-top: 0rem; */
  margin-top: -2rem; 
  /* margin-bottom: calc(-25% - -5rem); */
}

.mm-atrib .atrib-crits .tbCrit input {
  font-size: 0.9rem;
}

.mm-atrib .atrib-crits .tbCrit span {
  height: 1rem;
  font-size: 0.8rem;
}

.mm-atrib .atrib-crits .tbCrit .dropdown {
  margin-top: calc(-20% - -4.1rem);
  margin-bottom: calc(-10% - -3.5rem);
  grid-column: span 2;
}

.mm-atrib .atrib-crits .tbCrit .searchbox {
  width: 100%;
  height: 2.5rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 7fr 1fr;
      grid-template-columns: 7fr 1fr;
  background-color: #404040;
  color: white;
  border-radius: 5px;
  margin-top: calc(-20% - -4.1rem);
  margin-bottom: calc(-10% - -3.5rem);
  grid-column: span 2;
}

.mm-atrib .atrib-crits .tbCrit .searchbox input{
  height: 2.5rem;
}

.mm-atrib .atrib-crits .tbCrit .divisao{
  height: 100%;
  width: 104%;
  max-width: 104%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  z-index: 1;
  background-color: transparent;
}

.mm-atrib .atrib-crits .tbCrit .divisao .dropdown {
  margin-top: calc(-20% - -1.5rem);
  margin-bottom: calc(-10% - -2rem);
  grid-column: span 1;
}

.mm-atrib .atrib-crits .tbCrit .divisao .crit-header{
  color: black;
  display: -ms-grid;
  display: grid;
  place-items: left;
  font-size: 1rem;
  width: 100%;
  grid-column: span 1;
  /* margin-bottom: calc(-5% - -5rem); */
  margin-top: -2rem;
  /* margin-bottom: calc(-25% - -5rem); */
}

.mm-atrib .little-note {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #262626;
  text-align: center;
  padding: 0.5rem;
  max-height: 2rem;
}
.mm-atrib .tbContainer {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  max-width: 100%;
  background: transparent;
  -ms-grid-rows: 3rem 1fr;
      grid-template-rows: 3rem 1fr;
  border-radius: 0 5px 0 0;
  border-left: 0.3rem solid #262626;
}

.mm-atrib .tbContainer .botton-download{
  display: -ms-grid;
  display: grid;
  place-items: start end;
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  max-width: 100%;
  background: transparent;
  -ms-grid-rows: 3rem 1fr;
      grid-template-rows: 3rem 1fr;
  border-radius: 0 5px 0 0;
}

.mm-atrib .tbContainer .botton-download .header{
  background: #24a8b2;
  color: white;
  width: 4rem;
  place-items: center;
  height: 100%;
  border-radius: 5px;
}
.mm-atrib .tbContainer .botton-download .header .add-button {
  border-radius: 5px;
  background: #262626;
  cursor: pointer;
}

.mm-atrib .tbContainer .tbCrit-direito {
  overflow-y: scroll;
  /* padding: 1rem; */
  height: 100%;
  max-height: calc(100vh - 3rem - 2rem);
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start start;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 1rem;
}
.mm-atrib .tbContainer .tbCrit-direito .crit-header{
  background: transparent;
  color: black;
  display: -ms-grid;
  display: grid;
  place-items: start;
  font-size: 1rem;
  margin-left: 0.5rem;
  /* margin-top: -1rem; */
  padding: 0.7rem;
  width: 95%;
  /* height: 100%; */
  grid-column: span 1;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header-rat-agen{
  background: transparent;
  color: black;
  display: -ms-grid;
  display: grid;
  place-items: start;
  font-size: 1rem;
  margin-left: 0.5rem;
  margin-top: -2.5rem;
  padding: 0.7rem;
  width: 95%;
  /* height: 100%; */
  grid-column: span 1;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header-evolucao{
  background: transparent;
  color: black;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 1rem;
  margin-left: 0.5rem;
  /* margin-top: -1rem; */
  padding: 0.7rem;
  width: 95%;
  /* height: 100%; */
  grid-column: span 1;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating th{
  text-align: center;
  font-size: 0.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  padding: 6px;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating td{
  font-size: 0.7rem;
  font-family: "Poppins", sans-serif;
  padding: 5px;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating tbody{
  text-align: center;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating{
  max-width: 50%;
  /* white-space:nowrap; */
  margin: 0px auto;
}

/* PARA PD_SETOR E PD_FAIXA_RATING COMPARAÇÃO ENTRE DATAS*/
.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating2 th{
  vertical-align: middle;
  text-align: center;
  font-size: 0.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  padding: 6px;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating2 thead th, thead tr{
  background: #262626;
  z-index: 2;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating2 td{
  font-size: 0.7rem;
  font-family: "Poppins", sans-serif;
  padding: 5px;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating2 tbody{
  text-align: center;
}

.mm-atrib .tbContainer .tbCrit-direito .crit-header .tabela_rating2{
  max-width: 60%;
  /* white-space:nowrap; */
  margin: 0px auto;
}

.show {
  visibility: visible;
  opacity: 1;
}

/* .kmv-atrib .tbContainer .tbCrit-direito .comentario{
  background-color: transparent;
  color: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  font-size: 0.9rem;
  width: 50%;
  height: 30%;
  grid-column: span 1;
  border-radius: 5px;
  border: 3px solid #262626;
} */
/* .kmv-atrib .tbContainer .tbCrit-direito .dados_empresa {
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: white;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
}

.kmv-atrib .tbContainer .tbCrit-direito .dados_empresa .cad-widget {
  width: 100%;
  height: 100%;
  background-color: #24a8b2;
  color: white;
  border-radius: 5px;
  padding: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 0.001rem;
  grid-column: span 1;
}

.kmv-atrib .tbContainer .tbCrit-direito .dados_empresa .cad-widget .cad-coluna {
  width: 100%;
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-column: span 1;
}

.relatorios-atrib .tbContainer .tbCrit-direito .dados_empresa .cad-widget .cad-dado {
  width: 100%;
  font-size: 0.8rem;
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-column: span 1;
} */

/* =========================  SIMULAÇÃO RATINGS ========================= */
.simulacao-ratings {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  padding: 1rem;
  grid-gap: 1rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.simulacao-ratings .add-button {
  position: absolute;
  right: 1rem;
  height: 2rem;
  top: 0.58rem;
  padding: 0.5rem;
  border-radius: 5px;
  background: #262626;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
}

.simulacao-ratings .text {
  position: relative; 
  top: 1.5rem; 
  /*right: 5rem;*/
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: black;
}