.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 -5px;
  width: auto; }

.card-item {
  margin: 0 5px;
  border-radius: 2px;
  border: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative; }
  .card-item .status .circle {
    position: absolute;
    margin: 10px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: block;
    border: 1px solid #E6E6E6; }
  .card-item .status:hover .circle {
    border: 1px solid #6d6d6d; }
  .card-item .quantity {
    position: absolute;
    margin: 9px 0 0 223px;
    opacity: 0.5;
    font-size: 24px;
    color: #c7c9c2; }
  .card-item .alert {
    margin-left: auto;
    line-height: normal;
    padding: 20px 40px 20px 20px;
    text-align: center;
    position: absolute;
    width: 100%;
    font-weight: bold;
    height: auto; }
  .card-item .img {
    background-size: cover;
    min-height: 180px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .card-item img {
    width: 150px;
    padding: 10px; }
  .card-item .content {
    padding: 10px;
    margin-top: auto; }
    .card-item .content .title, .card-item .content h4 {
      margin-top: 0;
      font-size: 16px;
      line-height: 13px; }
    .card-item .content > div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 10px; }
      .card-item .content > div .right {
        margin-left: auto; }
  .card-item:hover {
    background: #f2f2f2; }

.card-table {
  border-collapse: separate;
  border: solid #EFEFEF 1px;
  border-radius: 5px;
  width: 100%; }
  .card-table tr:last-child td {
    border-bottom: 0; }
  .card-table tr:hover td {
    background: rgba(249, 249, 249, 0.53); }
  .card-table td, .card-table th {
    padding: 10px;
    border-bottom: solid #EFEFEF 1px; }
  .card-table th {
    border-bottom: solid #EFEFEF 1px;
    border-top: none; }
  .card-table td:first-child, .card-table th:first-child {
    border-left: none; }
  .card-table .card-table-select i {
    color: #E7E7E7; }

.card-image {
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.13);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.13); }
  .card-image.card-image-transparent {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAKElEQVQoU2M8c+bMfwY0IC0tjS7EwDgUFD5//hzDM0+fPsX0zBBQCAB4tzJ++zXUQwAAAABJRU5ErkJggg==) repeat; }
