/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.comparison-grid {
  box-sizing: border-box;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.55em;
}
.comparison-grid * { box-sizing: border-box; }

/* Desktop: grid layout */
@media (min-width: 640px) {
  .comparison-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(3, 41, 64, 1);
    border: 1px solid rgba(81, 200, 236, .3);
  }
  .comparison-grid__header {
    display: contents;
  }
  .comparison-grid__header .comparison-grid__cell {
    padding: 16px;
    font-weight: 600;
    background-color: rgba(3, 30, 39, 1);
    border-bottom: 1px solid rgba(81, 200, 236, .3);
  }
  .comparison-grid__row {
    display: contents;
  }
  .comparison-grid__row .comparison-grid__cell {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .comparison-grid__row:last-child .comparison-grid__cell {
    border-bottom: none;
  }
  .comparison-grid__cell--feature { font-weight: 600; }
}
  .highlight  {background-color: rgba(255, 255, 255, 0.1);}
  .fred  {background-color: rgba(255, 255, 255, 0.1);}

/* Mobile: pivoted card layout */
@media (max-width: 639px) {
  .comparison-grid__header { display: none; }
  .comparison-grid__row {
    display: block;
    margin-bottom: 24px;
    padding: 16px;
    background-color: rgba(3, 41, 64, 1);
    border: 1px solid rgba(81, 200, 236, .3);
    border-radius: 8px;
  }
  .comparison-grid__row:last-child { margin-bottom: 0; }
  .comparison-grid__cell {
    display: block;
    padding: 8px 0;
    color: #fff;
  }
  .comparison-grid__cell:first-child {
    padding-top: 0;
    font-size: 1.05em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .comparison-grid__cell:not(.comparison-grid__cell--feature)::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
  }
  .comparison-grid__cell--feature { font-weight: 600; }
  
  .highlight  {
    background-color: rgba(255, 255, 255, 0);
    letter-spacing: .5px;
  
}