/*=======================================
		Lista de subveciones vigentes
=========================================*/

.titulo_lista{
    font-size: 25px;
    color:#f86011;
    font-weight: bolder;
    letter-spacing: 1px;
}

.no-sub{
    color:gray;
    font-style: italic;
}

.subv-card a,
.subv-filtros a {
    text-decoration: none !important;
}

.filter-button{
    background-color: #F7F7F7;
}

.filter-button .active{
    background-color: orange!important;
}

.d-flex {
    display: flex;
    align-items: center;
}

.mb-4 {
    margin-bottom: 1.5em; /* Bootstrap 4 uses a 1.5em margin-bottom for mb-4 */
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
                border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: orange;
    border-color: orange;
}

.btn-primary:hover {
    color: #fff;
    background-color: orange;
    border-color: orange;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.active, .btn.active {
    background-color: #f86011;
    border-color: #f86011;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.me-1 {
    margin-right: 0.25rem; /* Bootstrap 4 uses a 0.25rem margin-right for me-1 */
}

.ms-5 {
    margin-left: 3rem; /* Bootstrap 4 uses a 3rem margin-left for ms-5 */
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #F7F7F7;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem;
    display: flex;
}

.rounded {
    border-radius: 0.25rem;
}

.mb-3 {
    margin-bottom: 1rem; /* Asumiendo que Bootstrap 4 usa 1rem para mb-3 */
}

.ms-2 {
    margin-left: 0.5rem; /* Asumiendo que Bootstrap 4 usa 0.5rem para ms-2 */
}

.mt-2 {
    margin-top: 0.5rem; /* Asumiendo que Bootstrap 4 usa 0.5rem para ms-2 */
}

.p-h6{
    display: block;
    font-size: 1.67em; /* Tamaño de fuente pequeño */
    margin-left: 0; /* Sin margen izquierdo */
    margin-right: 0; /* Sin margen derecho */
    font-weight: bold; /* Negrita */
}

/* Para pantallas grandes (lg) y más grandes */
@media (min-width: 992px) {
    .flex-lg-row {
      display: flex;
      flex-direction: row;
    }
  
    .flex-lg-wrap {
      flex-wrap: wrap;
    }
  }
  
  /* Para pantallas más pequeñas que lg */
  @media (max-width: 991px) {
    .flex-lg-row {
      display: flex;
      flex-direction: column;
    }
  
    .flex-lg-wrap {
      flex-wrap: nowrap;
    }
  }
  
/*=======================================
    Clases propias del plugin
=========================================*/

.subv-filtros {
    justify-content: space-between;
}

.subv-filtros__botones {
    align-items: stretch;
    width: 60%;
}

.subv-card__logo {
    min-width: 180px;
}

.subv-card__logo img {
    max-width: 150px;
}

.subv-card__body {
    flex: 1;
}
