
.product-status {
  font-size: 10pt;
}

.map-card-list-offset {
  padding: 16px;
}

.product-details-container {
  display: -webkit-box;   
  display: -ms-flexbox;   
  display: flex;   
  -webkit-box-orient: vertical;   
  -webkit-box-direction: normal;   
      -ms-flex-direction: column;   
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details-options {
  display: -webkit-box;   
  display: -ms-flexbox;   
  display: flex;   
  -webkit-box-orient: horizontal;   
  -webkit-box-direction: normal;   
      -ms-flex-direction: row;   
          flex-direction: row;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.time-box-inline {
  display: flex;
  flex-direction: row;
}

.time-box-inline > .time-text {
  padding-left: 8px;
}

@media only screen and (max-width: 767px) {
  .product-details-options {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.active-products-bar {
  max-width: 600px;
  margin-bottom: 16px;
}

.highlighted {
  background: yellow;
}

.severity-bar {
  text-align: center;
  width: 25%;
  border-right: 1px solid #aeaeae;
  text-transform: capitalize;
}

.product-card-body {
  -ms-flex-preferred-size: 83%;
      flex-basis: 83%;
}

.product-card-box {
  display: -webkit-box;
  display: -ms-flexbox; 
  display: flex;

  -webkit-box-flex: 1;
  -ms-flex-positive: 1;

  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-card-box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: center;
  align-self: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.product-card-boxy > div > i {
  -ms-flex-item-align: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-self: center;
}

/*
.severity-meter > .severity-bar:nth-child(1) {
  border: none;
}
*/

.product-details-header {
  display: -webkit-box;
  display: -ms-flexbox; 
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;

  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;

  padding: 8px;
}

.severity-meter {
  background: #efefef;

  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;
  flex: 1 0 auto;


  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;

  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.1);
}

.product-details-header > .severity-meter {
  max-width: 80px;
  box-shadow: none !important;
}

.product-details-header > .card-header {
  color: white;
  
  margin-left: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox; 
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  
  
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.card-header > h4 {
  margin: 2px;
}

.product-card-read {
  color: #bbb;
}

.product-card-clickable {
  cursor: pointer;
}

.product-details-header > .card-header-logo {
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  display: flex;

  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;

  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  padding-right: 16px;
}

.card-header-logo > img {
  width: 240px;
}

.severity-meter > .bar {
  width: 25%;
}

.severity-meter > div {
  height: 100%;
  padding: 6px;
}

.product-card-container {
  padding-top: 25px;
  width: 100%;
  display: -webkit-box; 
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; 
  -webkit-flex-direction: row;
  flex-direction: row;
}

.accu-orange {
  background: #f05514;
}

.accu-orange-text {
  color: #f05514;
}

.accu-gray {
  background: #eee;
}

/* Responsive */

/* Desktop And Bigger */
@media only screen and (min-width: 1440px) {
}

/* Laptop */
@media only screen and (min-width: 767px) {
  .product-details-header > .card-header {
    margin-left: 24px;
    display: -webkit-box; 
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    flex: 1 0 auto;


    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -ms-flex-pack: center;
    flex-wrap: wrap;
  }
}

/* Tablet */
@media only screen and (max-width: 767px) {
  .product-details-header {
    flex-wrap: wrap-reverse;
  }
  .product-details-header > .card-header-logo {
    display: none;
  }

  .product-details-header > .card-header {
    flex: 3;
  }
}

/* Mobile  */
@media only screen and (max-width: 425px) {
  .product-status {
    font-size: 8pt;
  }
  .card-header-logo {
    text-align: center;
  }

  .card-header > div > h4 {
    font-size: 12pt;
  }

  .severity-meter > div > span {
    font-size: 8pt;
  }
  .product-details-header > .card-header-logo {
    width: 100%;
    text-align: center;
  }
  .product-details-header > .card-header {
    padding: 0px;
    display: block;
    flex: 2;
  }
}

@media only screen and (max-width: 320px) {
  .card-header > h4 {
    font-size: 10pt;
  }

  .product-details-header > .card-header {
    padding-left: 0px;
  }
  .product-details-header > .card-header-logo {
    padding: 2px;
  }
}

.product-description-text {
  font-size: 12pt;
  line-height: 1.5;
}

.product-card-section {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

/* forecast stuff */
.impact-by-location-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.spreadsheet-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.spreadsheet-actions {
  padding-top: 8px;
  float: right;
}
