

td.details-control {
    background: url('../imgs/details_open.png') no-repeat center center;
    cursor: pointer;
    width: 30px;
}
tr.shown td.details-control {
    background: url('../imgs/details_close.png') no-repeat center center;
}


td.table-info, tfoot.total {
	  background-color: #ffeeba;
}

table.dataTable tfoot.total th {
   padding: 8px 10px;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem;
}
.card-block {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-link  .card-link {
    margin-left: 1.25rem;
}

h2 span {

  font-size: .5em;
}

.clickable-row {
  cursor: pointer;
}


.img-wraps {
  position: relative;
  display: inline-block;
  
  font-size: 0;
}
.img-wraps .closes {
  position: absolute;
  top: 5px;
  right: 8px;
  z-index: 100;
  background-color: #FFF;
  padding: 4px 3px;
   
  color: #000;
  font-weight: bold;
  cursor: pointer;
  
  text-align: center;
  font-size: 22px;
  line-height: 10px;
  border-radius: 50%;
  border:1px solid red;
}
.img-wraps:hover .closes {
  opacity: 1;
}