/* === card component ======
 * Variation of the panel component
 * version 2018.10.30
 * https://codepen.io/jstneg/pen/EVKYZj
.card{ background-color: #fff; border: 1px solid transparent; border-radius: 6px; }
 */
.card{ background-color: #fff; border: 1px solid transparent; border-radius: 0px;}
.card.card-main{ border-radius: 0px; border-color: white; margin: 0px -15px; }
.card.card-container{ border-radius: 0px; border-color: white; padding: 15px; min-height: 960px;}
.card > .card-link{ color: #333; }
.card > .card-link:hover{  text-decoration: none; }
.card > .card-link .card-img img{ border-radius: 0px; }
.card .card-img{ position: relative; padding: 0; display: table; }
.card .card-img .card-caption{
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
}
.card .card-body{ display: table; width: 100%; padding: 12px; !important }
.card .card-header{ padding: 8px; }
.card .card-footer{ padding: 8px; }
.card .card-left{ position: relative; float: left; padding: 0 0 8px 0; }
.card .card-right{ position: relative; float: left; padding: 8px 0 0 0; }
.card .card-body h1:first-child,
.card .card-body h2:first-child,
.card .card-body h3:first-child,
.card .card-body h4:first-child,
.card .card-body .h1,
.card .card-body .h2,
.card .card-body .h3,
.card .card-body .h4{ margin-top: 0; }
.card .card-body .heading{ display: block;  }
.card .card-body .heading:last-child{ margin-bottom: 0; }

.card .card-body .lead{ text-align: center; }

@media( min-width: 768px ){
  .card .card-left{ float: left; padding: 0 8px 0 0; }
  .card .card-right{ float: left; padding: 0 0 0 8px; }

  .card .card-4-8 .card-left{ width: 33.33333333%; }
  .card .card-4-8 .card-right{ width: 66.66666667%; }

  .card .card-5-7 .card-left{ width: 41.66666667%; }
  .card .card-5-7 .card-right{ width: 58.33333333%; }

  .card .card-6-6 .card-left{ width: 50%; }
  .card .card-6-6 .card-right{ width: 50%; }

  .card .card-7-5 .card-left{ width: 58.33333333%; }
  .card .card-7-5 .card-right{ width: 41.66666667%; }

  .card .card-8-4 .card-left{ width: 66.66666667%; }
  .card .card-8-4 .card-right{ width: 33.33333333%; }
}

/* -- default theme ------ */
.card{
  border-color: #ddd;
  background-color: #fff;
  margin-bottom: 24px;
}
.card > .card-header,
.card > .card-footer{ color: #333; background-color: #fff; }
.card > .card-header{ border-bottom: 1px solid #ddd; padding: 8px; }
.card > .card-footer{ border-top: 1px solid #ddd; padding: 8px; }
.card > .card-body{ }
.card > .card-img:first-child img{ border-radius: 0px; }
.card > .card-left{ padding-right: 4px; }
.card > .card-right{ padding-left: 4px; }
.card p:last-child{ margin-bottom: 0; }
.card .card-caption { color: #fff; text-align: center; text-transform: uppercase; }

.card> .card-light {
    background-color: #f3f3f3;
}

.card-shadow1 {
    box-shadow: 2px 4px 6px #444;
    -moz-box-shadow: 2px 4px 6px #444;
    -webkit-box-shadow: 2px 4px 6px #444;
}
.card-shadow {
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.302), 0 4px 8px 3px rgba(60,64,67,0.149);
    -moz-box-shadow: 0 1px 3px 0 rgba(60,64,67,0.302), 0 4px 8px 3px rgba(60,64,67,0.149);
    -webkit-box-shadow: 0 1px 3px 0 rgba(60,64,67,0.302), 0 4px 8px 3px rgba(60,64,67,0.149);
}

.card-logo {
    height: 12em;
}

.card-logo-9 {
    height: 9em;
}

.card-logo-4 {
    height: 4em;
}

.card-logo * img {
    max-height: 8em;
    max-width: 90%;
}

.card-logo-9 * img {
    max-height: 4em;
    max-width: 90%;
}

.card-logo-4 img {
    max-height: 3em;
    max-width: 90%;
}

.card-20 {
    min-height: 20em;
}

.card-16 {
    min-height: 16em;
}

.card-12 {
    min-height: 12em;
}

.card-11 {
    min-height: 11em;
}

.card-10 {
    min-height: 10em;
}

.card-9 {
    min-height: 9em;
}

.card-8 {
    min-height: 8em;
}

.card-7 {
    min-height: 7em;
}

.card-6 {
    min-height: 6em;
}

.card-5 {
    min-height: 5em;
    max-height: 5em;
    overflow-y: auto;
}

.card-4 {
    min-height: 4em;
    max-height: 4em;
    overflow-y: auto;
}

.card-3 {
    min-height: 3em;
}

.card-2 {
    max-height: 2em;
}

.card-top {
    padding-bottom: 0 !important;
}

.card-text {
    padding-top: 0 !important;
}

.card-icon-left {
  font-size: 40px;
  float: left;
  position: relative;
}

.card-icon-content {
  margin-left: 60px;
}

.card-light{ background-color: #E9F1F8; }

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.ms-2 {
    margin-left: 8px; /* Adjust spacing as needed */
}

/* Add modern overflow helpers for Bootstrap 3 */
.overflow-y-scroll { overflow-y: auto; }
.overflow-x-scroll { overflow-x: auto; }
.overflow-hidden   { overflow: hidden; }

