.card-custom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--cor-fundo-card);
  background-clip: border-box;
  /*border: 1px solid #ebedf3;*/
  /*border-radius: 0.42rem;*/
}

.card.card-custom > .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* min-height: 70px; */
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
}

.grid-text {
    width: 70% !important;
}

.card.sem-borda > .card-header {
    border-bottom: 0;
}

.card-header-sem-borda {
    border-bottom: 0;
}

.card.card-custom.card-fit > .card-header {
    border-bottom: 0;
}

.card.card-custom > .card-header .card-title .card-icon {
  margin-right: 0.75rem;
  line-height: 0;
}
.card.card-custom > .card-header .card-title .card-icon i {
  font-size: 1.25rem;
  /* color: #764923; */
  line-height: 0;
}
.card.card-custom > .card-header .card-title .card-icon i:after, .card.card-custom > .card-header .card-title .card-icon i:before {
  line-height: 0;
}
.card.card-custom > .card-header .card-title .card-icon .svg-icon svg {
  height: 24px;
  width: 24px;
}
.card.card-custom > .card-header .card-title .card-icon .svg-icon svg g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
  /* fill: #7E8299; */
}
.card.card-custom > .card-header .card-title .card-icon .svg-icon svg:hover g [fill] {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.card.card-custom > .card-header .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.5rem;
  margin-left: 0;
}

.card-title {
    margin-bottom: .75rem;
}

.card.card-custom > .card-header .card-title,
.card.card-custom > .card-header .card-title .card-label {
  font-weight: 500;
  font-size: 1.275rem;
  color: var(--cor-padrao-letras);
}

.card.card-custom > .card-header .card-title .card-label {
  margin: 0 0.75rem 0 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
    .card.card-custom > .card-header {
        min-height: 70px;
    }
}

.cardcustom > .card-body a {
    color: #5D5D5D;
    text-decoration: none;
    font-weight: 500;
}

.card-botao {
    width: 8.9rem;
    text-align: center;
    transition: 0.5s all;
    min-height: 5.9rem;
    user-select: none;
    text-decoration: none;
    background-color: var(--cor-fundo-card-botao);
}

    .card-botao:hover {
        -webkit-box-shadow: 0px 3px 11px -1px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 3px 11px -1px rgba(0,0,0,0.3);
        box-shadow: 0px 3px 11px -1px rgba(0,0,0,0.3);
    }

    .card-botao.card-botao-desabilitado {
        cursor: not-allowed;
        -webkit-box-shadow: unset;
        -moz-box-shadow: unset;
        box-shadow: unset;
        background-color: #eaeaea;
        user-select: none;
    }

.card-botao-desabilitado .iconLancamentoNotas {
    color: #40484e;
}

    .card-botao .adesivo {
        position: absolute;
        top: 10px;
        right: -1px;
        border-radius: 0.25rem 0rem 0 0.25rem;
    }
.card-botao > .card-footer {
    padding-top: 0;
}