.panels {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .panels > div {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 50px;
    border-radius: 2px;
    border: 4px solid #E6E6E6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative; }
    .panels > div > div {
      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; }
    .panels > div .status .circle {
      position: absolute;
      margin: 10px;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      display: block;
      border: 1px solid #E6E6E6; }
    .panels > div .status:hover .circle {
      border: 1px solid #6d6d6d; }
    .panels > div .quantity {
      position: absolute;
      margin: 9px 0 0 223px;
      opacity: 0.5;
      font-size: 24px;
      color: #c7c9c2; }
    .panels > div .alert {
      margin-left: auto;
      line-height: normal;
      padding: 20px 40px 20px 20px;
      text-align: center;
      position: absolute;
      width: 100%;
      font-weight: bold;
      height: auto; }
    .panels > div .img {
      background-size: cover;
      min-height: 150px;
      background: center #FFFFFF;
      -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;
      border-bottom: 1px dashed #E6E6E6; }
    .panels > div img {
      width: 150px;
      padding: 10px; }
    .panels > div .content {
      padding: 10px; }
      .panels > div .content .title, .panels > div .content h4 {
        margin-top: 0;
        font-size: 16px;
        line-height: 13px; }
      .panels > div .content > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .panels > div .content > div.left {
          margin-right: auto; }
        .panels > div .content > div.center {
          margin-right: auto;
          margin-left: auto; }
        .panels > div .content > div.right {
          margin-left: auto; }
      .panels > div .content label {
        margin: 0;
        line-height: 22px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: right;
        width: auto;
        min-width: unset; }
        .panels > div .content label span {
          display: unset;
          min-width: unset; }
      .panels > div .content input, .panels > div .content select {
        height: 22px; }
    .panels > div:hover {
      background: #f2f2f2;
      border: 4px solid #0F8DCB; }
