/* RESPONSIVE CARD*/
.number-card-respo, .index-card-respo {
  min-width: auto;
  height: 220px; 
}
.diagram-card-respo {
  min-width: auto;
  min-height: 320px;
}
/*FIXED CARD*/
.number-card-static, .index-card-static {
  width: 335px;
  height: 220px;
}
.diagram-card-static {
  height: 320px;
  width: 335px
}

/* BODY */
body {
  padding: 8px;
  background-color: rgba(0, 0, 0, 0)!important;
}

div.card {
    border-radius: 8px;
    font-family: "Poppins", sans-serif;  
    vertical-align: center; 
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    overflow: hidden;
  }

  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  div.card-header {
    float: left;
    background-color: transparent;
  }
  .lead {
    float: left;
  }
  .sensor-lead {
    color: #93969D;
    font-size: 12px;
  }
  .device-lead {
    color: #2e384d;
    font-size: 18px;
  }

  .sensor-img, .roomtype-img {
    width: 35px;
    height: auto;
    float: left;
    opacity: 0.5;
  }

  div.card-body {
    float: left;
    display: flex;
    vertical-align: middle;
    align-items: center; 
    justify-content: center;
  }

  .card-title {
    font-size: 34px; 
    color: #378ed9;
  }
  div.card-footer {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #93969D;
    background-color: transparent;
    float: left;
    min-height: 60px;
  }
  .truncate {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .logo-div {
    overflow: auto !important;
  }  
  .widget-logo {
    max-width: 60px;
    height: auto;
    opacity: 0.5;
    float: right !important;
  } 