
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: rgba(0,0,0, .3);
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 1px;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem ;
  line-height: 3em;
}

.card-title {
  margin-bottom: .75rem;
}

.card-subtitle {
  margin-top: -(.75rem / 2);
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link 
  hover {
    text-decoration: none;
  }

 .card-link {
    margin-left: 1.25rem ;
  }

/*
.card {
  > .list-group:first-child {
    .list-group-item:first-child {
      @include border-top-radius($card-border-radius);
    }
  }

  > .list-group:last-child {
    .list-group-item:last-child {
      @include border-bottom-radius($card-border-radius);
    }
  }
}
*/

.card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0; 
  background-color: rgba(0,0,0, .13); 
  border-bottom: 1px solid rgba(0,0,0,.125) ;
/*
  &:first-child {
    @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);
  }
  */
}

.card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0,0,0, .3);
  border-top: 1px solid rgba(0,0,0,.125);
/*
  &:last-child {
    @include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);
  }
  */
}


/*
// Header navs
*/

.card-header-tabs {
  margin-right: -(1.25rem/ 2);
  margin-bottom: -0.75rem;
  margin-left: -(1.25rem / 2);
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -(1.25rem / 2);
  margin-left: -(1.25rem / 2);
}

/* Card image */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%; /*/ Required because we use flexbox and this inherently applies align-self: stretch */
  border-radius: 1px;
}

/* Card image caps */
.card-img-top {
  width: 100%; /* Required because we use flexbox and this inherently applies align-self: stretch */
 border-radius: 1px;
}

.card-img-bottom {
  width: 100%; /*/ Required because we use flexbox and this inherently applies align-self: stretch */
 border-radius: 1px;
}


/* Card deck */

/* @include media-breakpoint-up(sm) { */
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
/*
    .card {
      display: flex;
      flex: 1 0 0%;
      flex-direction: column;
      margin-right: $card-deck-margin;
      margin-left: $card-deck-margin;
    }
    */
  }
/*}*/


/*/
// Card groups
/*/
/*
@include media-breakpoint-up(sm) {
  .card-group {
    display: flex;
    flex-flow: row wrap;

    .card {
      flex: 1 0 0%;

      + .card {
        margin-left: 0;
        border-left: 0;
      }

      // Handle rounded corners
      @if $enable-rounded {
        &:first-child {
          @include border-right-radius(0);

          .card-img-top {
            border-top-right-radius: 0;
          }
          .card-img-bottom {
            border-bottom-right-radius: 0;
          }
        }
        &:last-child {
          @include border-left-radius(0);

          .card-img-top {
            border-top-left-radius: 0;
          }
          .card-img-bottom {
            border-bottom-left-radius: 0;
          }
        }

        &:not(:first-child):not(:last-child) {
          border-radius: 0;

          .card-img-top,
          .card-img-bottom {
            border-radius: 0;
          }
        }
      }
    }
  }
}
*/

/*/
// Columns
/*/

.card {
    margin-bottom: 1.5rem;
  }

  
/*
.card-columns {
  .card {
    margin-bottom: $card-columns-margin;
  }

  @include media-breakpoint-up(sm) {
    column-count: $card-columns-count;
    column-gap: $card-columns-gap;

    .card {
      display: inline-block; */ /*/ Don't let them vertically span multiple columns 
      width: 100%; / Don't let their width change 
    }
  }
} */
