* {
  margin: 0;
  padding: 0;
  font-family: "Catamaran", sans-serif;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(to right, #3275c4, #277fcb, #1b88d1, #0d92d6, #009bdb);
  color: #121212;
}
body.dev {
  background: #242424;
}

body {
  -webkit-animation-delay: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-duration: 0.1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
a {
  color: inherit;
}

#app {
  padding-bottom: 25px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.wrapper-container {
  display: flex;
}

.wrapper {
  margin: auto;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.page-wrapper {
  margin: auto;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 90%;
  height: calc(100vh - 120px);
  overflow: auto;
}

.fit-wrapper {
  margin: auto;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: fit-content;
}

.max-wrapper {
  margin: auto;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 90%;
  margin-bottom: 25px;
}

.full-wrapper {
  height: 88vh;
  margin-bottom: 0;
  overflow: auto;
}

.empty-max-wrapper {
  margin: auto;
  padding: 15px;
  width: 90%;
  margin-bottom: 25px;
}

.half-wrapper {
  margin: auto;
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 50%;
}

.menu-container {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 20px;
}

input {
  outline: none;
}

.btn, input[type=submit] {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  padding: 0 20px;
  width: fit-content;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 12pt;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  background-color: rgb(50, 117, 196);
  cursor: pointer;
}
.btn:hover, input[type=submit]:hover {
  background: rgb(38, 88, 145);
}
.btn:disabled, input[type=submit]:disabled {
  background: rgb(161, 188, 219);
  cursor: default;
}
.btn.link, input[type=submit].link {
  text-decoration: none;
}
.btn.full, input[type=submit].full {
  width: 100%;
}
.btn.vermelho, input[type=submit].vermelho {
  background-color: #f44336;
}
.btn.vermelho:hover, input[type=submit].vermelho:hover {
  background-color: #c1342a;
}
.btn.vermelho:disabled, input[type=submit].vermelho:disabled {
  background-color: #f0a29d;
  cursor: default;
}

.btn-icon {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: rgb(50, 117, 196);
  cursor: pointer;
}
.btn-icon:hover {
  background: rgb(38, 88, 145);
}

.inline {
  display: inline !important;
}

.upper-menu {
  display: flex;
  float: right;
  gap: 5px;
}

.btn-menu {
  display: flex;
  gap: 5px;
}
.btn-menu .btn {
  flex-grow: 1;
}

.log {
  display: flex;
  margin-bottom: 5px;
  padding: 5px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  gap: 10px;
}
.log .pfp-wrapper {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
.log .info {
  flex-grow: 1;
}
.log .info h2 {
  display: inline;
}

.cards-container {
  display: flex;
  flex-flow: wrap;
}

.main-info .dados {
  display: flex;
}
.main-info .dados .img-link-wrapper {
  width: 50%;
  height: 500px;
  border-radius: 5px;
}
.main-info .dados .info-box {
  padding-left: 10px;
  width: 50%;
  overflow-y: auto;
  height: 500px;
}
.main-info .dados .info-box .obs {
  padding-right: 10px;
  text-align: justify;
}

.preview-image-label {
  cursor: pointer;
}
.preview-image-label .img-wrapper {
  margin: auto;
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.preview-image-label .img-wrapper.full-imagem {
  width: 100%;
  border-radius: 5px;
}
.preview-image-label .img-wrapper .img-preview {
  width: inherit;
  height: inherit;
  object-fit: cover;
  border-radius: inherit;
}
.preview-image-label .img-wrapper .overlay {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.preview-image-label .img-wrapper:hover .overlay {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  background-color: rgba(0, 0, 0, 0.425);
}

.img-input {
  display: none;
}

.doc-text {
  text-align: justify;
  font-size: 15pt;
  text-indent: 3%;
}

.doc-img {
  width: 100%;
  border-radius: 5px;
}

.docs section:not(:last-child) {
  margin-bottom: 20px;
}

code {
  margin-left: 5px;
  background-color: #dbdbdb;
  padding: 0 5px;
  border-radius: 5px;
}

.side-by-side-img {
  display: flex;
}
.side-by-side-img img {
  width: 50%;
}

.side-by-side {
  display: flex;
}
.side-by-side * {
  width: 50%;
}

.solid-line {
  margin-top: 10px;
  border-top: 2px solid #8c8c8c;
}

.dashed-line {
  border-top: 2px dashed #8c8c8c;
}

.vermelho {
  background-color: red;
}

.nav-menu {
  margin-bottom: 10px;
}

.galeria-link {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  color: inherit;
  border: 1px solid rgb(50, 117, 196);
  text-decoration: none;
  padding: 5px 10px;
  cursor: pointer;
}
.galeria-link:hover {
  background-color: rgb(226, 240, 255);
}
.galeria-link:first-child {
  border-radius: 5px 0 0 5px;
}
.galeria-link:last-child {
  border-radius: 0 5px 5px 0;
}
.galeria-link.ativo {
  background-color: rgb(50, 117, 196);
  color: white;
}

.navlink {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  color: inherit;
  border: 1px solid rgb(50, 117, 196);
  text-decoration: none;
  padding: 5px 10px;
  cursor: pointer;
}
.navlink:hover {
  background-color: rgb(226, 240, 255);
}
.navlink:first-child {
  border-radius: 5px 0 0 5px;
}
.navlink:last-child {
  border-radius: 0 5px 5px 0;
}
.navlink.ativo {
  background-color: rgb(50, 117, 196);
  color: white;
}

.tab-line {
  height: 5px;
  background-color: rgb(50, 117, 196);
}

.big-icon {
  font-size: 84pt;
}

.link-icon {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  -webkit-transition: font-size 100ms linear;
  -ms-transition: font-size 100ms linear;
  transition: font-size 100ms linear;
  color: inherit;
  text-decoration: none;
  vertical-align: bottom;
  border: 0;
  background-color: #121212;
  color: white;
  border-radius: 50%;
  padding: 2px;
  font-size: 12pt;
  margin-left: 10px;
  cursor: pointer;
}
.link-icon:hover {
  font-size: 15pt;
  background-color: #969696;
}
.link-icon.vermelho {
  background-color: #f44336 !important;
}
.link-icon.vermelho:hover {
  background-color: #c1342a !important;
}

.ocupacao-container {
  display: flex;
  gap: 10px;
}

.ocupacao-object-card {
  width: fit-content;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
}
.ocupacao-object-card img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.ocupacao-object-card .content {
  padding: 10px 20px;
}
.ocupacao-object-card#imovel .content {
  display: grid;
  grid-template-columns: 120px 70px 1fr;
}
.ocupacao-object-card#ocupante .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ocupacao-info-card {
  width: fit-content;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px 20px;
}
.ocupacao-info-card span {
  font-size: 14pt;
}

.messages-container {
  margin-right: 10px;
  padding: 5px 5px;
  position: fixed;
  top: 0px;
  right: 0px;
  width: fit-content;
  border-radius: 10px;
  list-style: none;
  z-index: 1000;
}
.messages-container .animated-wrapper:not(:last-child) {
  margin-bottom: 3px;
}
.messages-container .message {
  display: flex;
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
}
.messages-container .message:not(:last-child) {
  margin-bottom: 3px;
}
.messages-container .message.success {
  color: green;
  background-color: lightgreen;
}
.messages-container .message.error {
  color: red;
  background-color: rgb(255, 180, 180);
}
.messages-container .message.warning {
  color: #856404;
  background-color: #ffdd72;
}
.messages-container .message.bug {
  color: #dbdbdb;
  background-color: #242424;
}
.messages-container .message.bug .close-button {
  -webkit-transition: color 300ms linear;
  -ms-transition: color 300ms linear;
  transition: color 300ms linear;
}
.messages-container .message.bug .close-button:hover {
  color: #242424;
  background-color: #d8d8d8;
}
.messages-container .message .content {
  margin: 10px;
}
.messages-container .message .vertical-line {
  display: inline;
  border-left: solid 1px;
}
.messages-container .message .close-button {
  display: flex;
  padding: 5px;
  cursor: pointer;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}
.messages-container .message .close-button:hover {
  background-color: rgba(0, 0, 0, 0.241);
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}
.messages-container .message .close-button .icon {
  margin: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  padding: 5px 10px;
}
.navbar .logo {
  height: 55px;
  width: 200px;
  border-radius: 15px;
  object-fit: cover;
}
.navbar .nav__links {
  margin-left: 20px;
  list-style: none;
  display: flex;
  gap: 5px;
  background-color: white;
  border-radius: 15px;
  padding: 3px 5px;
}
.navbar .nav__links a {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  padding: 0 20px;
  border-radius: 5px;
  background-color: white;
  text-decoration: none;
  color: inherit;
}
.navbar .nav__links a:visited {
  color: inherit;
}
.navbar .nav__links a:hover {
  background-color: #dbdbdb;
}
.navbar .usuario-wrapper {
  display: flex;
  text-align: right;
  width: fit-content;
}
.navbar .usuario-wrapper .username {
  margin: auto 15px;
  color: white;
  font-size: 14pt;
  font-weight: bold;
}

.search-bar-wrapper {
  display: flex;
  margin: 10px 0;
  padding: 3px;
  width: 30%;
  border-radius: 30px;
  background-color: rgb(50, 117, 196);
}
.search-bar-wrapper input[type=text] {
  flex-grow: 1;
  padding: 0 10px;
  font-size: 12pt;
  background-color: white;
  border: none;
  border-radius: 30px;
}
.search-bar-wrapper .btn-icon {
  padding: 5px;
  vertical-align: middle;
  border-radius: 50%;
  font-size: 16pt;
}

.search-bar {
  display: flex;
  margin: 10px 0;
  padding: 3px;
  width: 30%;
  border-radius: 30px;
  background: transparent;
  border: 2px solid #E1F1FF;
}
.search-bar input[type=text] {
  flex-grow: 1;
  padding: 0 10px;
  font-size: 12pt;
  background: transparent;
  color: #E1F1FF;
  border: none;
  border-radius: 30px;
}
.search-bar .btn-icon {
  padding: 5px;
  vertical-align: middle;
  border-radius: 50%;
  font-size: 16pt;
  background-color: #E1F1FF;
  color: blue;
}

.tabela {
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.tabela th, .tabela td {
  padding: 0 5px;
  cursor: pointer;
}
.tabela thead {
  text-align: left;
  color: white !important;
  background-color: rgb(50, 117, 196);
}
.tabela thead tr th, .tabela thead tr td {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}
.tabela thead tr th:hover, .tabela thead tr td:hover {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  background-color: rgb(38, 88, 145);
}
.tabela thead tr th:first-of-type, .tabela thead tr td:first-of-type {
  border-radius: 10px 0 0 0;
}
.tabela thead tr th:last-of-type, .tabela thead tr td:last-of-type {
  border-radius: 0 10px 0 0;
}
.tabela thead tr th .label, .tabela thead tr td .label {
  margin-right: 5px;
}
.tabela thead tr th .status, .tabela thead tr td .status {
  font-size: 6pt;
}
.tabela tbody tr {
  -webkit-transition: background-color 100ms linear;
  -ms-transition: background-color 100ms linear;
  transition: background-color 100ms linear;
}
.tabela tbody tr.selecionado {
  background-color: rgb(161, 188, 219) !important;
}
.tabela tbody tr.selecionado:hover {
  background-color: rgb(205, 223, 244) !important;
}
.tabela tbody tr:nth-child(odd) {
  background: white;
}
.tabela tbody tr:nth-child(even) {
  background-color: rgb(233, 233, 233);
}
.tabela tbody tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 10px;
}
.tabela tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 10px 0;
}
.tabela tbody tr:hover {
  background-color: #dbdbdb;
}

table#flextable,
.divTable {
  width: fit-content;
}
table#flextable .tr,
.divTable .tr {
  display: flex;
}
table#flextable tr,
table#flextable .tr,
.divTable tr,
.divTable .tr {
  width: fit-content;
  height: 30px;
}
table#flextable th,
table#flextable .th,
table#flextable td,
table#flextable .td,
.divTable th,
.divTable .th,
.divTable td,
.divTable .td {
  box-shadow: inset 0 0 0 1px lightgray;
  padding: 0.25rem;
}
table#flextable th,
table#flextable .th,
.divTable th,
.divTable .th {
  padding: 2px 4px;
  position: relative;
  text-align: center;
  height: 30px;
}
table#flextable td,
table#flextable .td,
.divTable td,
.divTable .td {
  height: 30px;
}
table#flextable .resizer,
.divTable .resizer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: rgba(0, 0, 0, 0.5);
  cursor: col-resize;
  user-select: none;
  touch-action: none;
}
table#flextable .resizer.isResizing,
.divTable .resizer.isResizing {
  background: blue;
  opacity: 1;
}
@media (hover: hover) {
  table#flextable .resizer,
  .divTable .resizer {
    opacity: 0;
  }
  table#flextable *:hover > .resizer,
  .divTable *:hover > .resizer {
    opacity: 1;
  }
}

.paginador-wrapper {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.menu-lista {
  display: flex;
  gap: 5px;
}

.tag-container {
  display: flex;
}

.tag {
  padding: 1px 3px;
  width: fit-content;
  border-radius: 5px;
  font-size: 10pt;
  color: white;
  background: #3275c4;
}
.tag:not(:last-child) {
  margin: 0 3px;
}
.tag.tag__estado {
  color: #121212;
  font-weight: bold;
}
.tag.tag__estado[data-estado="1"] {
  background-color: lightseagreen;
}
.tag.tag__estado[data-estado="2"] {
  background-color: lightgreen;
}
.tag.tag__estado[data-estado="3"] {
  background-color: #ffd264;
}
.tag.tag__estado[data-estado="4"] {
  background-color: lightsalmon;
}
.tag.tag__estado[data-estado="5"] {
  background-color: lightcoral;
}
.tag.tag__penhora {
  color: #121212;
  font-weight: bold;
}
.tag.tag__penhora[data-penhora="1"] {
  background-color: #05d7a0;
}
.tag.tag__penhora[data-penhora="2"] {
  background-color: #f0466e;
}
.tag.tag__penhora[data-penhora="3"] {
  background-color: #ffd264;
}
.tag.setor {
  background-color: #333333;
}
.tag.tag__ordem {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  margin-left: 5px;
  color: white;
  background-color: rgb(50, 117, 196);
  cursor: pointer;
}
.tag.tag__ordem:hover {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  background-color: rgb(38, 88, 145);
}

.img-overlay {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.pfp-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
}
.pfp-wrapper:hover .img-overlay {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  display: block;
  background-color: rgba(0, 0, 0, 0.425);
}
.pfp-wrapper .pfp {
  width: inherit;
  height: inherit;
  border-radius: inherit;
  object-fit: cover;
  box-sizing: border-box;
  border: 2px solid white;
}

.img-link-wrapper {
  position: relative;
  border-radius: 15px;
}
.img-link-wrapper:hover .img-overlay {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  display: block;
  background-color: rgba(0, 0, 0, 0.425);
}
.img-link-wrapper .img-link {
  width: inherit;
  height: inherit !important;
  border-radius: inherit;
}
.img-link-wrapper .img-link .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.img-link-wrapper .img-link .img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.img-card {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 5px;
  cursor: pointer;
}
.img-card:hover .img-overlay {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  display: block;
  background-color: rgba(0, 0, 0, 0.425);
}
.img-card img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.video-source-wrapper {
  position: relative;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.586);
  z-index: 1000;
}

.popup {
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 30%;
  height: 40%;
  border-radius: 5px;
  background-color: white;
}
.popup .titulo {
  padding: 0 10px;
  text-align: center;
  text-transform: uppercase;
}
.popup .lista {
  padding: 0 40px;
  height: 200px;
  overflow-y: auto;
}
.popup .menu {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
}
.popup .menu .btn {
  margin: 0 0.5em;
  width: calc(50% - 1em);
}

.side-by-side {
  display: flex;
}

.side-popup {
  margin-top: auto;
  width: 100%;
  height: 100%;
  background-color: white;
}

.form-wrapper .logo {
  width: 300px;
  margin: auto;
}
.form-wrapper form {
  padding: 0 10px;
}
.form-wrapper form .title {
  text-align: center;
  text-transform: uppercase;
}
.form-wrapper form .subtitle {
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
}
.form-wrapper form .line {
  display: grid;
  gap: 20px;
  margin-bottom: 10px;
}
.form-wrapper form fieldset {
  border: none;
}
.form-wrapper form legend {
  font-size: 16pt;
  font-weight: bold;
}
.form-wrapper form label {
  font-size: 14pt;
}
.form-wrapper form input, .form-wrapper form textarea {
  font-size: 14pt;
  width: 100%;
  padding: 5px 5px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: #ececec;
}
.form-wrapper form input:disabled, .form-wrapper form textarea:disabled {
  color: #bbbbbb;
  cursor: not-allowed;
}
.form-wrapper form textarea {
  resize: vertical;
  border-radius: 5px;
}
.form-wrapper form .invisible-input {
  visibility: hidden;
}
.form-wrapper form .menu {
  display: flex;
}
.form-wrapper form .menu .submit {
  margin: 0 auto;
  margin-top: 15px;
  width: 100%;
}
.form-wrapper form .big-menu {
  display: flex;
  margin-left: auto;
  width: fit-content;
  gap: 10px;
}
.form-wrapper .imovel-form .fieldsets {
  gap: 20px;
}
.form-wrapper .imovel-form .imovel-fieldset .first-line {
  grid-template-columns: 70px 1fr;
}
.form-wrapper .imovel-form .imovel-fieldset .second-line {
  grid-template-columns: 150px 80px 1fr;
}
.form-wrapper .imovel-form .imovel-fieldset .third-line {
  grid-template-columns: 1fr 1fr;
}
.form-wrapper .imovel-form .imovel-fieldset .fifth-line {
  grid-template-columns: 75px 40px 1fr;
}
.form-wrapper .imovel-form .endereco-fieldset .first-line {
  grid-template-columns: 100px 1fr 40px;
}
.form-wrapper .imovel-form .endereco-fieldset .second-line {
  grid-template-columns: 1fr 100px 1fr;
}
.form-wrapper .ocupacao-form .ocupacao-fieldset .first-line {
  grid-template-columns: 1fr 160px;
}
.form-wrapper .ocupacao-form .contrato-fieldset .first-line {
  grid-template-columns: 115px 1fr repeat(2, 150px);
}
.form-wrapper .ocupacao-form .contrato-fieldset .second-line {
  grid-template-columns: 100px 1fr;
}
.form-wrapper .penhora-form .first-line {
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.form-wrapper .penhora-form .first-line input {
  text-align: center;
}
.form-wrapper .penhora-form .second-line {
  grid-template-columns: 1fr 170px;
}
.form-wrapper .penhora-form .third-line {
  grid-template-columns: 1fr 1fr 1fr;
}

.menu-option-wrapper {
  position: relative;
  margin: 0 10px 30px 30px;
  z-index: 1;
  cursor: pointer;
  border-radius: 15px;
  text-decoration: none;
  color: inherit;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.menu-option-wrapper:visited {
  color: inherit;
}
.menu-option-wrapper:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: rgb(207, 207, 207);
  border-radius: inherit;
  z-index: -1;
}
.menu-option-wrapper:hover::before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: -1;
}
.menu-option-wrapper .menu-option {
  width: fit-content;
  text-align: center;
  border-radius: inherit;
}
.menu-option-wrapper .menu-option .banner {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.menu-option-wrapper .menu-option .title {
  margin: 20px 0;
  text-transform: uppercase;
}

.usuario-card-wrapper {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  cursor: pointer;
}
.usuario-card-wrapper:hover {
  background-color: rgb(233, 233, 233);
}
.usuario-card-wrapper .image-wrapper {
  position: relative;
}
.usuario-card-wrapper .image-wrapper .overlay-tags {
  position: absolute;
  float: left;
  left: 10px;
  top: 10px;
  z-index: 1000;
}
.usuario-card-wrapper .image-wrapper .overlay-tag {
  position: absolute;
  float: right;
  right: 10px;
  top: 10px;
  z-index: 1000;
}
.usuario-card-wrapper .image-wrapper img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.usuario-card-wrapper .nomes {
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 40em) {
  .usuario-card-wrapper {
    margin: 10px 0.5em;
    width: calc(20% - 1em);
  }
}
.imovel-card-wrapper {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  flex: 1 0 500px;
  box-sizing: border-box;
  margin: 1rem 0.5em;
  /* padding: 5px 10px; */
  text-align: center;
  border-radius: 10px;
  /* background-color: #adadad; */
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
}
.imovel-card-wrapper:hover {
  background-color: rgb(233, 233, 233);
}
.imovel-card-wrapper .image-wrapper {
  position: relative;
}
.imovel-card-wrapper .image-wrapper .overlay-tag {
  position: absolute;
  float: left;
  left: 10px;
  top: 10px;
  z-index: 1000;
}
.imovel-card-wrapper .image-wrapper .overlay-tag .tag__estado {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.imovel-card-wrapper .image-wrapper img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.imovel-card-wrapper .upper-info {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.imovel-card-wrapper .upper-info .atributo-box span {
  margin: 0 2px;
}
.imovel-card-wrapper .tag-container {
  display: flex;
  justify-content: center;
}
.imovel-card-wrapper .tag-container div {
  margin: 0 5px;
}
.imovel-card-wrapper .obs-box {
  padding: 10px 20px;
  text-align: justify;
  word-wrap: break-word;
}

@media screen and (min-width: 40em) {
  .imovel-card-wrapper {
    max-width: calc(25% - 1em);
  }
}
@media screen and (min-width: 60em) {
  .imovel-card-wrapper {
    max-width: calc(20% - 1em);
  }
}
@media screen and (min-width: 100em) {
  .imovel-card-wrapper {
    max-width: calc(20% - 5em);
  }
}
.pasta-card-wrapper {
  border-radius: 5px;
  margin: 0.5rem 0.5em;
  width: calc(12.5% - 1em);
  cursor: pointer;
}
.pasta-card-wrapper .big-icon {
  -webkit-transition: font-size 100ms linear;
  -ms-transition: font-size 100ms linear;
  transition: font-size 100ms linear;
}
.pasta-card-wrapper .big-icon:hover {
  font-size: 100pt;
  color: #4a4a4a;
}

.arquivo-card-wrapper {
  border-radius: 5px;
  margin: 0.5rem 0.5em;
  width: calc(12.5% - 1em);
}
.arquivo-card-wrapper .big-icon {
  -webkit-transition: font-size 100ms linear;
  -ms-transition: font-size 100ms linear;
  transition: font-size 100ms linear;
}
.arquivo-card-wrapper .big-icon:hover {
  font-size: 100pt;
  color: #4a4a4a;
}
.arquivo-card-wrapper .icon {
  cursor: pointer;
}

.ocupacao-card-wrapper {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  position: relative;
  margin: 10px 0.5em;
  padding: 10px 15px;
  width: calc(50% - 3em);
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
}
.ocupacao-card-wrapper:hover {
  background-color: rgb(233, 233, 233);
}
.ocupacao-card-wrapper .ocupante-perfil {
  display: flex;
}
.ocupacao-card-wrapper .ocupante-perfil img {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.ocupacao-card-wrapper .ocupante-perfil .dados {
  margin: auto 0;
}
.ocupacao-card-wrapper .ocupante-perfil .dados p {
  margin: 0;
  line-height: 1;
}
.ocupacao-card-wrapper .ocupante-perfil .dados .ocupante__nome {
  font-size: 30pt;
}
.ocupacao-card-wrapper .ocupacao .aditivos-box {
  padding-left: 15px;
}
.ocupacao-card-wrapper .ocupacao .aditivos-box .aditivo-wrapper:not(:last-child) {
  border-bottom: 2px solid #121212;
}

.bem-card-wrapper {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  box-sizing: border-box;
  margin: 1rem 0.5em;
  width: calc(20% - 1em);
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
}
.bem-card-wrapper:hover {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  background-color: rgb(233, 233, 233);
}
.bem-card-wrapper .image-wrapper {
  width: 100%;
}
.bem-card-wrapper .image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.bem-card-wrapper .dados {
  padding: 5px 10px;
}

.ocupante-card-wrapper {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  position: relative;
  padding: 10px 15px;
  background-color: white;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  cursor: pointer;
}
.ocupante-card-wrapper:hover {
  background-color: rgb(233, 233, 233);
}
.ocupante-card-wrapper .perfil {
  display: flex;
}
.ocupante-card-wrapper .perfil img {
  margin-right: 10px;
  margin-bottom: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.ocupante-card-wrapper .perfil .dados {
  margin: auto 0;
}
.ocupante-card-wrapper .perfil .dados p {
  margin: 0;
  line-height: 1;
}
.ocupante-card-wrapper .perfil .dados .razao__social {
  font-size: 30pt;
}

@media screen and (min-width: 60em) {
  .ocupante-card-wrapper {
    margin: 10px 0.5em;
    width: calc(25% - 1em);
  }
  .half-wrapper .ocupante-card-wrapper {
    width: calc(50% - 1em);
  }
}
.img-container {
  display: flex;
  flex-flow: wrap;
  width: 100%;
}
.img-container .img-link-wrapper {
  margin: 0.5em;
  width: calc(20% - 1em);
  height: 200px;
}

.video-container .video-source-wrapper {
  margin: 0 0.4em;
  width: calc(25% - 1em);
  height: 220px;
  object-fit: cover;
}

.calendario {
  display: flex;
  gap: 15px;
}
.calendario .lista-anualidade {
  list-style: none;
  text-align: center;
  width: 30%;
}
.calendario .lista-anualidade ul {
  height: 500px;
  overflow-y: scroll;
}
.calendario .lista-anualidade ul li {
  text-align: left;
  padding-left: 10px;
}
.calendario .react-calendar {
  width: 70%;
}
.calendario .react-calendar .vencimento {
  color: red;
  font-weight: bold;
  font-size: 20pt;
}

.lista-anualidade {
  overflow-y: auto;
}
.lista-anualidade li {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  text-align: center;
  margin: 10px;
  border-radius: 5px;
  background-color: #ececec;
  cursor: pointer;
}
.lista-anualidade li:hover {
  background-color: #dcd9d9;
}
.lista-anualidade li.selecionado {
  background-color: #bbbbbb;
}

.wrapper-container {
  gap: 20px;
  height: 100%;
  padding: 0 5%;
}
.wrapper-container .info {
  width: 25%;
}
.wrapper-container .info .img-link-wrapper {
  height: 300px;
  border-radius: 5px;
}
.wrapper-container .historico {
  height: 100%;
  flex-grow: 1;
  overflow-y: scroll;
}

.user-pfp {
  margin: auto;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}

.cards-container {
  display: flex;
  flex-flow: wrap;
}

.imovel-detalhes-page .main-info .dados {
  display: flex;
}
.imovel-detalhes-page .main-info .dados .img-link-wrapper {
  width: 50%;
  height: 500px;
  border-radius: 5px;
}
.imovel-detalhes-page .main-info .dados .info-box {
  padding-left: 10px;
  width: 50%;
  overflow-y: auto;
  height: 500px;
}
.imovel-detalhes-page .main-info .dados .info-box .obs {
  padding-right: 10px;
  text-align: justify;
}
.imovel-detalhes-page .encargos-container {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.imovel-detalhes-page .encargos-container .encargo-list {
  border-radius: 5px;
}
.imovel-detalhes-page .encargos-container .encargo-list h2 {
  text-align: center;
  border-bottom: 2px solid #242424;
}
.imovel-detalhes-page .encargos-container .encargo-list ul {
  list-style: none;
  font-size: 16pt;
  max-height: 350px;
  overflow-y: auto;
}
.imovel-detalhes-page .encargos-container .encargo-list ul li {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  text-align: center;
  margin: 10px;
  border-radius: 5px;
  background-color: #ececec;
  cursor: pointer;
}
.imovel-detalhes-page .encargos-container .encargo-list ul li:hover {
  background-color: #dcd9d9;
}
.imovel-detalhes-page .ocupacao-cards-container {
  display: flex;
  flex-flow: wrap;
}
.imovel-detalhes-page .ocupacao-cards-container .ocupacao-card-wrapper {
  margin: 0 0.5em;
  width: calc(50% - 1em);
}
.imovel-detalhes-page .bem-cards-container {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 10px;
}
.imovel-detalhes-page .bem-cards-container .bem-card-wrapper {
  margin: 0 0.4em;
  width: calc(20% - 1em);
}

.galeria .link {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  color: inherit;
  border: 1px solid rgb(50, 117, 196);
  text-decoration: none;
  padding: 5px 10px;
  cursor: pointer;
}
.galeria .link:first-child {
  border-radius: 5px 0 5px 0;
}
.galeria .link:last-child {
  border-radius: 0 5px 0 5px;
}
.galeria .link.ativo {
  background-color: rgb(50, 117, 196);
  color: white;
}
.galeria .imagens-container {
  display: flex;
  flex-flow: wrap;
}
.galeria .videos-container {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.galeria .videos-container .video-source-wrapper {
  width: calc(20% - 8px);
  height: 178px;
  cursor: pointer;
}

.img-link-wrapper, .img-card {
  width: calc(20% - 1em);
  height: 200px;
  margin: 10px 0.5em;
}

.img-page .content {
  display: flex;
}
.img-page .content img {
  object-fit: cover;
  width: 100%;
  border-radius: 5px;
}

.video-page .content {
  display: flex;
  margin-top: 30px;
}
.video-page .video-source-wrapper {
  width: 100%;
}

.bem-detalhes-page .upper-menu {
  display: flex;
  float: right;
  gap: 5px;
}
.bem-detalhes-page .dados {
  display: flex;
}
.bem-detalhes-page .dados .img-link-wrapper {
  width: 50%;
  border-radius: 5px;
  height: 500px;
}
.bem-detalhes-page .dados .info-box {
  padding-left: 10px;
  width: 50%;
}
.bem-detalhes-page .dados .info-box .obs {
  overflow-y: scroll;
  max-height: 200px;
}

.relatorio-container {
  display: flex;
  gap: 30px;
  flex-flow: wrap;
}

.relatorio-card {
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  display: flex;
  background-color: white;
  width: calc(50% - 1em);
  height: 200px;
  border-radius: 5px;
}
.relatorio-card img {
  width: 200px;
  height: inherit;
  object-fit: cover;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
.relatorio-card .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 5px;
}
.relatorio-card .content .description {
  flex-grow: 1;
}
.relatorio-card .content .menu {
  display: flex;
  gap: 5px;
  width: fit-content;
}
.relatorio-card .content .menu .label {
  font-size: 15pt;
}
.relatorio-card .content .menu .btn {
  margin: auto;
  height: fit-content;
}

.max-empty-wrapper {
  margin: auto;
  color: #E1F1FF;
  width: 90%;
}

.half-empty-wrapper {
  margin: auto;
  width: 50%;
  color: #E1F1FF;
}

.design-test .navlink {
  font-weight: bold;
  border: 1px solid #E1F1FF;
  border: 1px solid #E6F4F1;
}
.design-test .navlink.ativo {
  color: #242424;
  color: #404756;
  background-color: #E6F4F1;
}
.design-test form input {
  color: #404756;
  background-color: #E6F4F1;
}
.design-test button, .design-test .btn {
  color: black;
  color: white;
  font-weight: 500;
  background-color: #00BCD2;
  background-color: #75AAFF;
  background-color: #0058A3;
}
.design-test button:hover, .design-test .btn:hover {
  background-color: #00D8B0;
  background-color: #009BDB;
}
.design-test button:disabled, .design-test .btn:disabled {
  background: rgb(161, 188, 219);
  cursor: default;
}
.design-test table {
  color: #404756;
}
.design-test table thead tr {
  background-color: #0058A3;
  background-color: #0058A3;
}
.design-test table thead th:first-of-type, .design-test table thead td:first-of-type {
  border-radius: 3px 0 0 0;
}
.design-test table thead th:last-of-type, .design-test table thead td:last-of-type {
  border-radius: 0 3px 0 0;
}
.design-test table tbody tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 3px;
}
.design-test table tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 3px 0;
}
.design-test .search-bar-wrapper {
  margin: auto;
  background-color: inherit;
  width: 50%;
}
.design-test .search-bar-wrapper .search-bar {
  display: flex;
  flex-grow: 1;
  background-color: #0058A3;
  border-radius: 30px;
  margin: auto;
  padding: 3px;
}
.design-test .search-bar-wrapper .search-bar input[type=text] {
  font-size: 16pt;
}

#design-test-form {
  padding: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 20px;
}
#design-test-form #field1 {
  grid-column: span 2;
}
#design-test-form #field6 {
  grid-column: span 3;
}

/*# sourceMappingURL=index.css.map */
