  .card {
        min-height: 160px;
        background-color: #ffffff; 
        border: none;
        color: black;
        transition: 0.3s;
        position: relative;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    }
    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }
    .d-flex {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .flex-fill {
        flex: 1;
    }
    .card-button {
        background-color: #183f08;
        color: white;
        border: none;
        border-radius: 15px 0 0 15px;
        position: absolute;
        right: 0;
        bottom: 20px;
        width: 30%;
        height: 30px;
        text-align: center;
        line-height: 30px;
        box-shadow: none;
    }
    .card-button:hover {
        background-color: #28a745;
    }
    .card-button a {
        color: white;
        text-decoration: none;
    }
    .search-field {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .search-field input {
        width: 90%;
        padding: 10px;
        border: none;
        border-bottom: 1px solid gray;
   
    font-style: italic;
    padding: 10px 6px;

    }
    .search-field i {
        color: #183f08;
        /*border: 2px solid #183f08;*/
        border: 2px solid #e0dd23;
        background-color: #e0dd23;

        border-radius: 50%;
        padding: 10px;
        font-size: 20px;
    }
    .search-field i:hover{
        /*border: 2px solid #183f08;*/
        border: 2px solid #ebe952;
        background-color: #ebe952;
    }
    .card-body h3 + .card-text {
        margin-top: 20px; 
    }
    .card-text {
        font-weight: normal;
        margin-bottom: 25px; 
        text-transform: uppercase;
    }
    .card-text i {
        margin-right: 10px; 
    }
    .card-text a {
        color: black;
        text-decoration: none;

    }
    .card-text a:hover {
        text-decoration: underline;
    }
    /* Icones */
    .icon-large {
        font-size: 22px;
    }
    .icon-file-alt,
    .icon-edit,
    .icon-upload,
    .icon-id-card,
    .icon-info-circle,
    .icon-landmark,
    .icon-book {
        color: #808080; /* Cinza */
    }
    .card-title{
        margin-bottom: 30px;
    }

    @media (max-width: 768px) {
        .col-md-12.col-lg-4.d-flex.flex-column,
        .card.flex-fill {
            margin-top: 1.5rem;
        }
    }

.spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.custom-loader {
  width:100px;
  height:100px;
  border-radius:50%;
  border:16px solid;
  border-color:#E4E4ED;
  border-right-color: #e0dd23;
  animation:s2 1s infinite linear;
}
@keyframes s2 {to{transform: rotate(1turn)}}
