body {
  display: flex;
}

section#conteudo-principal {
  flex: 1;
}

h1 {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  line-height: 30px !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.d-contents {
  display: contents;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-gray {
  background-color: var(--bg-gray) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.bg-none {
  background-color: transparent !important;
}

.bg-info {
  background-color: ghostwhite !important;
}

.bg-danger {
  background-color: #efb8a8 !important;
}

.bg-warning {
  background-color: #f3eaa6 !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.container-main {
  min-height: 100vh;
  padding-top: 26px;
}

.container-main-complete {
  min-height: 100vh;
}

.w-max-content {
  width: max-content;
}

.wrapper-grid {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
}

.hover:hover,
.hover[aria-expanded="true"] {
  color: #545b62 !important;
}

.hover-text-white:active,
.hover-text-white:hover {
  color: white !important;
}

.pointer-events-none {
  pointer-events: none;
}

/* USER SELECT */
.user-select-none {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
/* FIM USER SELECT */

.focus:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

h1.page-header {
  font-size: 1.75rem;
  color: var(--primary-color) !important;
  font-weight: 500 !important;
}

.selected {
  box-shadow: 0 0 0 0.2rem #9f9696;
  border: 1px dashed;
  background-color: var(--primary-color) !important;
}

.border-radius-default {
  border-radius: var(--border-radius) !important;
}

.wrapper-states-processos .option:not(:last-child) {
  margin-bottom: 5px;
}

.wrapper-states-processos .option {
  box-sizing: border-box;
  color: var(--primary-color);
  padding: 10px 15px 10px 10px;
  border: 1px solid #d9d9d9;
  border-radius: 0 23px 23px 0;
  cursor: pointer;
  max-width: 255px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.wrapper-states-processos .option.active {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.wrapper-states .option:not(.active):hover {
  background-color: #e3e3e3;
}

.wrapper-states-processos .option > span {
  display: flex;
  align-items: center;
  line-height: 16px;
  font-size: 16px;
}

.wrapper-states-processos .option svg {
  margin-right: 10px;
}

.grid-states {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 140px 1fr;
}

.grid-states.menu-expandido {
  grid-template-columns: 65px 1fr;
}

.menu-lateral {
  height: 50px;
  width: 50px;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  /* border-top-right-radius: 50%; */
}

/* css inicio - inicio */

.wrapper-grid-home {
  display: grid;
  grid-gap: 30px 10px;
  grid-template-columns: repeat(2, minmax(225px, 1fr));
}

@media only screen and (max-width: 770px) {
  .wrapper-grid-home {
    grid-template-columns: repeat(1, minmax(225px, 1fr));
  }
}

.wrapper-btn-grid-home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-grid-home {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  padding: 1rem 0;
  cursor: pointer;

  max-width: 200px;
  width: 100%;
}

.btn-grid-home:focus-visible {
  outline-offset: 0;
  outline: none;
}

.wrapper-icon-grid-home {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-info-btn-grid-home {
  position: absolute;
  top: 10px;
  left: 10px;
}

/* css inicio - fim */

/* drag and drop */

.drag-area {
  border: 2px dashed var(--secondary-color);
  height: 300px;
  width: 100%;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.drag-area.active {
  border-style: solid;
}
.drag-area .icon {
  font-size: 50px;
  color: var(--secondary-color);
}
.drag-area header {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.drag-area img {
  height: 80%;
  object-fit: cover;
  border-radius: 5px;
}

/* fim drag and drop */

.dual-column {
  height: 100vh;
}

.dual-column .banner {
  background-color: var(--primary-color);
  background-image: url("../img/bg-planetario.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-blend-mode: overlay;
}

.dual-column .system-name {
  font-size: 18px;
}

.dual-column .system-description {
  font-size: 18px;
  color: var(--secondary-color);
}

.form-dual-collumn {
  max-width: 455px;
}

.wrapper-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.wrapper-logo img {
  width: 95%;
}

.actions-login {
  display: flex;
  justify-content: space-between;
}

.action-not-acess {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fieldset {
  padding: 20px;
  border: 1px solid;
  border-radius: 15px;
  position: relative;
}

.fieldset label.title {
  position: absolute;
  top: -15px;
  left: 15px;
  background-color: var(--bg-gray);
  font-size: 16px;
  font-weight: 700;
  padding: 0 8px;
}

.g-recaptcha {
  display: flex;
  align-items: center;
  justify-content: center;
}

.org {
  word-break: break-all;
  white-space: inherit;
  max-width: 300px;
  background-color: #f3f3f3 !important;
  margin-top: 5px;
}

.overflow-hidden {
  overflow: hidden !important;
}

.list-none {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.texto-riscado {
  text-decoration: line-through !important;
}

.texto-italico {
  font-style: italic !important;
}

.options-abertura-processo {
  /* display: flex; */
}

.chip.chip-custom {
  /* display: flex;
    align-items: center;
    justify-content: center; */
  width: fit-content;
}

.pointer {
  cursor: pointer;
}

.cursor {
  cursor: default;
}

.cb-green {
  color: var(--confirm-color);
}

.cb-blue {
  color: var(--primary-color);
}

.cb-red {
  color: var(--cancel-color);
}

.modal-footer {
  flex-wrap: inherit;
}

.overflow-y {
  overflow-y: auto;
  overflow-x: hidden;
}

.table-gerenciamento {
  display: flex;
  min-height: calc(100vh - 334px);
}

.form-control:disabled, .form-control[readonly] {
  background-color: var(--bg-field-disabled);
}

.form-control.field-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(237,142,151,.25);
}

.input-search-border-bottom {
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid !important;
  background-color: transparent !important;
}

.badge-pill {
  border-radius: 4px;
}

.absolute-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.list-group-item {
  margin-bottom: unset;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-not-allowed-disabled:disabled {
  cursor: not-allowed;
}

.overflow-y-scroll {
    overflow-y: scroll !important;
}