#priceContainer img{
	max-width: 100% !important;
}

#priceContainer{
	padding: 0 0 !important;
}

.tabContent img{
	max-width:100% !important;
}


$breakpoint-alpha: 480px; // adjust to your needs

.rwd-table {
  margin: 1em 0;
  min-width: 100px; // adjust to your needs

  tr {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
  }

  th {
    display: none; // for accessibility, use a visually hidden method here instead! Thanks, reddit!
  }

  td {
    display: block;

    &:first-child {
      padding-top: .5em;
    }
    &:last-child {
      padding-bottom: .5em;
    }

    &:before {
      content: attr(data-th)": "; // who knew you could do this? The internet, that's who.
      font-weight: bold;

      // optional stuff to make it look nicer
      width: 6.5em; // magic number :( adjust according to your own content
      display: inline-block;
      // end options

      @media (min-width: $breakpoint-alpha) {
        display: none;
      }
    }
  }

  th, td {
    text-align: left;

    @media (min-width: $breakpoint-alpha) {
      display: table-cell;
      padding: .25em .5em;

      &:first-child {
        padding-left: 0;
      }

      &:last-child {
        padding-right: 0;
      }
    }

  }


}


// presentational styling

@import 'https://fonts.googleapis.com/css?family=Montserrat:300,400,700';

body {
  padding: 0 2em;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #000000;
  background: #ffffff;
}

h1 {
  font-weight: normal;
  letter-spacing: -1px;
  color: #000000;
}

.rwd-table {
  background: #ffffff;
  color: #000000;
  border-radius: .0em;
  overflow: hidden;
  box-shadow: 10px 10px 5px #888888;
  tr {
    border-color: lighten(#000000, 0%);
  }
  th, td {
    margin: .5em 1em;
    @media (min-width: $breakpoint-alpha) {
      padding: 1em !important;
    }
  }
  th, td:before {
    color: #00000;
  }
}
