/* elements */

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

@media screen and (max-width: 600px) {
  body {
    font-size: 12px;
  }
  .no-small {
    display: none;
  }
  .max-width-small {
    max-width: calc(95vw - 75px) !important;
  }
  .lg-flex {
    display: block !important;
  }
  .sm-espacamento {
    line-height: 2rem;
  }
  .sm-w-100 {
    grid-template-columns: 1fr !important;
  }
  .sm-block {
    display: block !important;
    width: 100% !important;
  }
  .sm-block input {
    width: 95%;
  }
  input[type="text"],
  input[type="date"],
  textarea {
    font-size: 1rem;
  }
}

@media screen and (min-width: 601px) {
  body {
    font-size: 14px;
  }
  .only-small {
    display: none;
  }
  .lg-flex {
    display: flex;
    flex-flow: wrap;
  }

  input[type="text"],
  input[type="date"],
  textarea {
    font-size: 1.2rem;
  }
  .md-nowrap {
    white-space: nowrap;
  }
}

body {
  margin: 0;
  padding: 0;
  /* font-size: 14px;*/
  /* line-height: 1.5; */
  color: #2e6624;
  font-family: "glacial";
  background-image: linear-gradient(180deg, #bcdfae, #c5e7e5);
}

@media screen and (max-width: 800px) {
  .lg-only {
    display: none;
  }

  .container {
    display: block !important;
    text-align: center;
  }

  .container > div {
    padding: 0.2rem;
  }
}

@media screen and (max-width: 700px) {
  .menuabas {
    margin: 0.2rem !important;
    white-space: normal !important;
    line-height: 2.5rem;
  }

  .menuabas a {
    padding: 0.5rem 1rem;
    margin: 0.1rem 0.2rem;
    border-radius: 5px !important;
    white-space: nowrap;
  }
}

@media screen and (max-width: 600px) {
  .md-only {
    display: none;
  }

  .md-fit {
    width: fit-content;
  }
}

.menuabas {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  margin-left: 0.75rem;
  white-space: nowrap;
}

.menuabas a {
  padding: 0.5rem 1rem;
  margin: 0.1rem 0.2rem;
  border-radius: 15px 15px 0px 0px;
  background-color: #a1bfa8;
}

.menuabas a:hover {
  background-color: #78d38b;
}

.ativa {
  background-color: #c5e7e5 !important;
}

.main-container {
  padding: 1rem;
  background-color: #c5e7e5;
  border-radius: 0.25rem;
  min-height: 75vh;
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.mh-40 {
  max-height: 40%;
}

.mh-50 {
  max-height: 50%;
}

.mh-60 {
  max-height: 60%;
}

.mh-70 {
  max-height: 70%;
}

.mh-80 {
  max-height: 80%;
}

.mh-90 {
  max-height: 90%;
}

a {
  font-weight: bold;
  color: #2e6624;
  text-decoration: none;
}

b {
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  margin: 0 0 1.25em 0;
  font-size: 42px;
  font-family: glacial;
}

h2 {
  margin: 0 0 1.25em 0;
  font-size: 36px;
  font-family: glacial;
}

h3 {
  margin: 0 0 0.5em 0;
  font-size: 24px;
}

h4 {
  margin: 0 0 0 0;
  font-size: 18px;
}

h5 {
  margin: 0 0 0 0;
  font-size: 16px;
}

hr {
  margin: 2.5rem 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #f2f2f2;
}

img {
  max-width: 100%;
  width: auto;
  vertical-align: bottom;
}

p {
  margin: 0 0 1.25rem 0;
  padding: 0;
}

p:last-child {
  margin: 0;
}

/* fonts */

/* Glacial Indifference */

@font-face {
  font-family: glacial;
  font-style: normal;
  src: url(../fonts/GlacialIndifference-Regular.otf);
}

@font-face {
  font-family: glacial;
  font-style: italic;
  src: url(../fonts/GlacialIndifference-Italic.otf);
}

@font-face {
  font-family: glacial;
  font-style: normal;
  font-weight: bold;
  src: url(../fonts/GlacialIndifference-Bold.otf);
}

/* material icons */

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/material-icons/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"),
    url(../fonts/material-icons/MaterialIcons-Regular.woff2) format("woff2"),
    url(../fonts/material-icons/MaterialIcons-Regular.woff) format("woff"),
    url(../fonts/material-icons/MaterialIcons-Regular.ttf) format("truetype");
}

/* components */
.dialog {
  background-color: #99d8a7;
  border-radius: 1.5rem;
  padding: 2rem;
  font-size: 1.2rem;
}

/*cores*/
.text-branco {
  color: #fff;
}

.text-cinza-claro {
  color: #ddd;
}

.text-folha {
  color: #22542d;
}

/* backgrounds */
.bg-cinza {
  background-color: #aaa !important;
}

.bg-cinza-claro {
  background-color: #ddd !important;
}

.bg-branco-gelo {
  background-color: #f7f7f7 !important;
}

.bg-branco {
  background-color: #fff !important;
}

.bg-folha {
  background-color: #22542d !important;
}

.bg-verde {
  background-color: #99d8a7 !important;
}

.bg-ceu {
  background-color: #c5e7e5 !important;
}

/* bordas */

.border {
  border: 1px solid #e8e8e8;
}

.border.border-left {
  border: none;
  border-left: 1px solid #e8e8e8;
}

.border.border-right {
  border: none;
  border-right: 1px solid #e8e8e8;
}

.border.border-top {
  border: none;
  border-top: 1px solid #e8e8e8;
}

.border.border-bottom {
  border: none;
  border-bottom: 1px solid #e8e8e8;
}

.border-rounded {
  border-radius: 0.5rem;
}

/* botões */
.btn {
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  background-color: #0fa081;
  color: #fff;
}

.btn.btn-small {
  padding: 0.3rem 1rem !important;
}

.btn:hover {
  font-weight: bold;
}

.btn-folha {
  background-color: #22542d;
  color: #faffe4;
}

.btn-folha:hover {
  background-color: #399c4f;
  border: 1px solid #22542d;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border 0.2s ease-in-out;
}

.btn-paginacao {
  border: none;
  border-radius: 0.5rem;
  padding: 0.25rem 1.5rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: #faffe4;
  cursor: pointer;
}

.btn-paginacao:hover {
  font-weight: bold;
}

.btn-agenda {
  border: none;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: #faffe4;
  cursor: pointer;
}

.btn-agenda:hover {
  font-weight: bold;
}

/* form */

.rotulo {
  font-size: 1.2rem;
  color: #22542d;
  font-family: inherit;
}

input[type="text"],
textarea {
  border: none;
  border-radius: 0.5rem;
  background-color: #f1f1f1;
  font-family: glacial;
  padding: 0.2rem 0.4rem;
  color: #22542d;
}

textarea:focus {
  outline: 1px solid #22542d80; /* Adiciona uma borda verde de 1px quando estiver com foco */
}

input[type="password"] {
  border: none;
  border-radius: 0.5rem;
  background-color: #f1f1f1;
  font-family: glacial;
  padding: 0.2rem 0.4rem;
  font-size: 1rem;
  color: #22542d;
}

input[type="date"] {
  border: none;
  border-radius: 0.5rem;
  background-color: #f1f1f1;
  font-family: glacial;
  padding: 0.2rem 0.5rem;
  font-size: 1rem;
  color: #22542d;
}
input[type="checkbox"] {
  position: relative;
  top: 1px;
}
select option:checked {
  background: #22542d;
  color: #fff;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus {
  outline: none;
  transition: 0.1s ease-in-out;
  background-color: #e8e8e8;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.form-control:focus {
  background: #fff;
  border-color: #d0e0e3;
  box-shadow: 0px 0px 4px 2px rgba(0, 181, 229, 0.1);
  transition: 0.1s ease-in-out;
}

.form-control.form-search,
.form-control.form-select {
  padding-right: 2.5rem;
}

.form-control.form-search {
  background: #fff no-repeat
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjQjNDN0NCIiBkPSJNMTUuNSAxNGgtLjc5bC0uMjgtLjI3QzE1LjQxIDEyLjU5IDE2IDExLjExIDE2IDkuNSAxNiA1LjkxIDEzLjA5IDMgOS41IDNTMyA1LjkxIDMgOS41IDUuOTEgMTYgOS41IDE2YzEuNjEgMCAzLjA5LS41OSA0LjIzLTEuNTdsLjI3LjI4di43OWw1IDQuOTlMMjAuNDkgMTlsLTQuOTktNXptLTYgMEM3LjAxIDE0IDUgMTEuOTkgNSA5LjVTNy4wMSA1IDkuNSA1IDE0IDcuMDEgMTQgOS41IDExLjk5IDE0IDkuNSAxNHoiLz48L3N2Zz4=")
    center right 0.5rem;
}

.form-control.form-select {
  background: #fff no-repeat
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjMjcyNzI3Ij48cGF0aCBkPSJNMTYuNTkgOC41OUwxMiAxMy4xNyA3LjQxIDguNTkgNiAxMGw2IDYgNi02eiIvPjwvc3ZnPg==")
    center right 0.5rem;
}

.form-control.form-textarea {
  resize: none;
}

::placeholder {
  color: #b3c7cb;
}

/* lists */

.list {
  border: 1px solid #e8e8e8;
  border-radius: 0.25rem;
  overflow: hidden;
}

.list.list-no-border {
  border: none;
}

.list-header,
.list-body,
.list-footer,
.list-item {
  padding: 10px 1.25rem;
}

.list-header,
.list-item {
  border-bottom: 1px solid #e8e8e8;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.list-item:last-child {
  border-bottom: none;
}

/* containers */

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.container.col-2 > * {
  width: calc(50% - 0.375rem);
}

.container.col-3 > * {
  width: calc(33.3333% - 0.5rem);
}

.container.col-4 > * {
  width: calc(25% - 0.5625rem);
}

.container.col-5 > * {
  width: calc(20% - 0.6rem);
}

.container.col-6 > * {
  width: calc(16.6666% - 0.625rem);
}

/* modals */

@keyframes modal-slide-down {
  from {
    margin-bottom: 100px;
  }

  to {
    margin-bottom: 0;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}

.modal-container {
  width: 640px;
  border-radius: 0.5rem;
  border: none;
  animation-name: modal-slide-down;
  animation-duration: 0.3s;
  padding: 0.25rem;
  overflow-y: auto;
}

.modal-container-xxs {
  width: 160px;
}

.modal-container-xs {
  width: 320px;
}

.modal-container-sm {
  width: 480px;
}

.modal-container-md {
  width: 800px;
}

.modal-container-xxs {
  width: 960px;
}

.modal-container-total {
  width: 95%;
  height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.overflow {
  overflow-y: auto;
}

.modal-header {
  padding: 5px 1.25rem;
}

.modal-body {
  padding: 10px 1.25rem;
  display: flex;
  overflow-y: auto;
}

.modal-footer {
  text-align: center;
  padding-top: 0.5rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  border-bottom: 1px solid #e8e8e8;
}

.modal-header a {
  color: #48586c;
}

.modal-body::-webkit-scrollbar {
  width: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #d3d3d3;
  border-radius: 0.25rem;
}

.modal-footer {
  border-top: 1px solid #e8e8e8;
}

/* tables */

.table {
  width: 100%;
  border-collapse: collapse;
}

.table.table-dark {
  color: #fff;
  background: #3a4859;
}

.table thead,
.table tbody tr {
  border-bottom: 1px solid #e8e8e8;
}

.table thead tr :first-child {
  border-radius: 0.5rem 0 0 0;
}

.table thead tr :last-child {
  border-radius: 0 0.5rem 0 0;
}

.table.table-dark thead,
.table.table-dark tbody tr {
  border-bottom: 1px solid #4e5f75;
}

.table tbody tr {
  background-color: #eee;
}

.table tbody tr:last-child {
  border-bottom: none;
}

.table th {
  font-weight: 700;
  background-color: #a1bfa8;
  color: #fff;
  font-size: 1rem;
}

.table td {
  color: #2e6624;
}

.table th,
.table td {
  padding: 10px 1.25rem;
  text-align: left;
}

.table-striped tbody tr:nth-child(odd) {
  background: #ffffff;
}

.table.table-dark.table-striped tbody tr:nth-child(odd) {
  background: #48586c;
}

.tabela_rolagem {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.tabela_rolagem tbody {
  overflow: auto;
  height: 55vh;
  display: block;
  width: 100%;
}

.tabela_rolagem thead {
  background: #a1bfa8;
  color: #fff;
}

.tabela_rolagem tr {
  display: block;
}

.tabela_rolagem th,
.tabela_rolagem td {
  padding: 5px;
  text-align: left;
  width: 15%;
}

.tabela_rolagem th:last-child,
.tabela_rolagem td:last-child {
  padding: 5px;
  text-align: left;
  width: 50%;
}

/* style */

/* flexbox */

.flex {
  display: flex !important;
  flex-flow: wrap;
}
.flex-auto-width {
  flex: auto; /* ocupa o restante da largura, quando for filha de um componente flex*/
}
.flex-column {
  flex-direction: column;
}

.flex.flex-start {
  justify-content: flex-start;
}

.flex.flex-center {
  justify-content: center;
}

.flex.flex-end {
  justify-content: flex-end;
}

.flex.flex-space-between {
  justify-content: space-between;
  width: 100%;
}

.flex.flex-space-evenly {
  justify-content: space-evenly;
}

.flex.flex-space-around {
  justify-content: space-around;
}

.flex.flex-align-start {
  align-items: flex-start;
}

.flex.flex-align-center {
  align-items: center;
}

.align-center {
  align-self: center;
}

.flex.flex-align-end {
  align-items: flex-end;
}

.flex.flex-wrap {
  flex-wrap: wrap;
}

.flex.flex-no-wrap {
  flex-wrap: nowrap;
}

/* floating */

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/*Grid*/
.grid {
  display: grid;
  column-gap: 1rem;
}

.grid-12 {
  grid-template-columns: repeat(12, 1fr);
}

.grid-10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-2 {
  grid-template-columns: 3fr 2fr;
}

.grid-2-3 {
  grid-template-columns: 2fr 3fr;
}

.grid-1-2 {
  grid-template-columns: 1fr 2fr;
}

/* margin */

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

/* padding */

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* position */

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.position-fixed {
  position: fixed;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

/* text */

.anotacao {
  font-size: 0.9rem;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.nowrap {
  white-space: nowrap;
}

.wrapspace {
  white-space: break-spaces;
}

.text-italic {
  font-style: italic;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-sm {
  font-size: 12px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: 20px;
}

.branco {
  color: #fff;
}

.preto {
  color: #000;
}

/* width */

.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto !important;
}

.h-5 {
  height: 5vh;
}

.h-6 {
  height: 6vh;
}

.h-7 {
  height: 7vh;
}

.h-8 {
  height: 8vh;
}

.h-9 {
  height: 9vh;
}

.h-10 {
  height: 10vh;
}

.h-11 {
  height: 11vh;
}

.h-12 {
  height: 12vh;
}

.h-13 {
  height: 13vh;
}

.h-14 {
  height: 14vh;
}

.h-15 {
  height: 15vh;
}

.h-16 {
  height: 16vh;
}

.h-17 {
  height: 17vh;
}

.h-18 {
  height: 18vh;
}

.h-19 {
  height: 19vh;
}

.h-20 {
  height: 20vh;
}

.h-21 {
  height: 21vh;
}

.h-22 {
  height: 22vh;
}

.h-23 {
  height: 23vh;
}

.h-24 {
  height: 24vh;
}

.h-25 {
  height: 25vh;
}

.h-26 {
  height: 26vh;
}

.h-27 {
  height: 27vh;
}

.h-28 {
  height: 28vh;
}

.h-29 {
  height: 29vh;
}

.h-30 {
  height: 30vh;
}

.h-31 {
  height: 31vh;
}

.h-32 {
  height: 32vh;
}

.h-33 {
  height: 33vh;
}

.h-34 {
  height: 34vh;
}

.h-35 {
  height: 35vh;
}

.h-36 {
  height: 36vh;
}

.h-37 {
  height: 37vh;
}

.h-38 {
  height: 38vh;
}

.h-39 {
  height: 39vh;
}

.h-40 {
  height: 40vh;
}

.h-41 {
  height: 41vh;
}

.h-42 {
  height: 42vh;
}

.h-43 {
  height: 43vh;
}

.h-44 {
  height: 44vh;
}

.h-45 {
  height: 45vh;
}

.h-46 {
  height: 46vh;
}

.h-47 {
  height: 47vh;
}

.h-48 {
  height: 48vh;
}

.h-49 {
  height: 49vh;
}

.h-50 {
  height: 50vh;
}

.h-51 {
  height: 51vh;
}

.h-52 {
  height: 52vh;
}

.h-53 {
  height: 53vh;
}

.h-54 {
  height: 54vh;
}

.h-55 {
  height: 55vh;
}

.h-56 {
  height: 56vh;
}

.h-57 {
  height: 57vh;
}

.h-58 {
  height: 58vh;
}

.h-59 {
  height: 59vh;
}

.h-60 {
  height: 60vh;
}

.h-61 {
  height: 61vh;
}

.h-62 {
  height: 62vh;
}

.h-63 {
  height: 63vh;
}

.h-64 {
  height: 64vh;
}

.h-65 {
  height: 65vh;
}

.h-66 {
  height: 66vh;
}

.h-67 {
  height: 67vh;
}

.h-68 {
  height: 68vh;
}

.h-69 {
  height: 69vh;
}

.h-70 {
  height: 70vh;
}

.h-71 {
  height: 71vh;
}

.h-72 {
  height: 72vh;
}

.h-73 {
  height: 73vh;
}

.h-74 {
  height: 74vh;
}

.h-75 {
  height: 75vh;
}

.h-76 {
  height: 76vh;
}

.h-77 {
  height: 77vh;
}

.h-78 {
  height: 78vh;
}

.h-79 {
  height: 79vh;
}

.h-80 {
  height: 80vh;
}

.h-81 {
  height: 81vh;
}

.h-82 {
  height: 82vh;
}

.h-83 {
  height: 83vh;
}

.h-84 {
  height: 84vh;
}

.h-85 {
  height: 85vh;
}

.h-86 {
  height: 86vh;
}

.h-87 {
  height: 87vh;
}

.h-88 {
  height: 88vh;
}

.h-89 {
  height: 89vh;
}

.h-90 {
  height: 90vh;
}

.h-91 {
  height: 91vh;
}

.h-92 {
  height: 92vh;
}

.h-93 {
  height: 93vh;
}

.h-94 {
  height: 94vh;
}

.h-95 {
  height: 95vh;
}

.h-96 {
  height: 96vh;
}

.h-97 {
  height: 97vh;
}

.h-98 {
  height: 98vh;
}

.h-99 {
  height: 99vh;
}

.h-100 {
  height: 100vh;
}

.h-auto {
  height: auto !important;
}

.mh-5 {
  max-height: 5vh;
}
.mh-10 {
  max-height: 10vh;
}
.mh-15 {
  max-height: 15vh;
}
.mh-20 {
  max-height: 20vh;
}
.mh-25 {
  max-height: 25vh;
}
.mh-30 {
  max-height: 30vh;
}
.mh-35 {
  max-height: 35vh;
}
.mh-40 {
  max-height: 40vh;
}
.mh-45 {
  max-height: 45vh;
}
.mh-50 {
  max-height: 50vh;
}
.mh-55 {
  max-height: 55vh;
}
.mh-60 {
  max-height: 60vh;
}
.mh-65 {
  max-height: 65vh;
}
.mh-70 {
  max-height: 70vh;
}
.mh-75 {
  max-height: 75vh;
}
.mh-80 {
  max-height: 80vh;
}
.mh-85 {
  max-height: 85vh;
}
.mh-90 {
  max-height: 90vh;
}
.mh-95 {
  max-height: 95vh;
}

.mw-600 {
  max-width: 600px;
}
.mw-700 {
  max-width: 700px;
}
.mw-800 {
  max-width: 800px;
}
.mw-900 {
  max-width: 900px;
}
.mw-1000 {
  max-width: 1000px;
}
.mw-1100 {
  max-width: 1100px;
}
.mw-1200 {
  max-width: 1200px;
}
.mouse-pointer {
  cursor: pointer;
}
.close {
  font-size: 24px;
  padding: 0 0.5rem;
  position: relative;
  top: -5px;
}
.invisible {
  display: none !important;
}

.sombra {
  background-color: #5503 !important;
}

.sombra-hover:hover {
  background-color: #5503 !important;
}
.snackbar {
  background-color: #e9cf23;
  border-radius: 0.25rem;
  padding: 0.25rem 1rem;
  /* margin: 0.25rem 1rem; */
}
.snackbar-progress {
  height: 3px;
  background-color: #22542d;
}

.snackbar-container {
  position: fixed;
  bottom: 75px;
  pointer-events: none;
  height: min-content;
  width: 100%;
  display: flex;
  justify-content: center;
}
.auto-grow {
  display: flex;
  align-items: center;
}

.auto-grow > input {
  flex: auto;
  margin-left: 0.25rem;
}
