/*

RESPONSTABLE 2.0 by jordyvanraaij
  Designed mobile first!

If you like this solution, you might also want to check out the 1.0 version:
  https://gist.github.com/jordyvanraaij/9069194

*/
.responstable {
  margin: 1em 0;
  width: 100%;
  overflow: hidden;
  background: #FFF;
  color: #024457;
  border-radius: 10px;
  border: 1px solid #167F92;
}
.responstable tr {
  border: 1px solid #D9E4E6;
}
tr.odd {
  background-color: #EAF3F3 !important;
}
tr.even {
  background-color: #FFF !important;
}
.responstable tr:nth-child(odd) {
  background-color: #EAF3F3;
}
.responstable tr:hover {
    background-color: #006ba852 !important;
}
.responstable th {
  display: none;
  border: 1px solid #FFF;
  background-color: #13547a;
  color: #FFF;
  padding: 1em;
}
.responstable th:first-child {
  display: table-cell;
  text-align: center;
}
.responstable th:nth-child(2) {
  display: table-cell;
}
.responstable th:nth-child(2) span {
  display: none;
}
.responstable th:nth-child(2):after {
  content: attr(data-th);
}
@media (min-width: 480px) {
  .responstable th:nth-child(2) span {
    display: block;
  }
  .responstable th:nth-child(2):after {
    display: none;
  }
}
.responstable td {
  display: block;
  word-wrap: break-word;
  max-width: 7em;
}
.responstable td:first-child {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #D9E4E6;
}
@media (min-width: 480px) {
  .responstable td {
    border: 1px solid #D9E4E6;
  }
}
.responstable th, .responstable td {
  text-align: center;
  margin: .5em 1em;
  cursor: default;
}
@media (min-width: 480px) {
  .responstable th, .responstable td {
    display: table-cell;
    padding: 1em;
    cursor: default;
  }
}

.lbl-war {
  background-color: #f0ad4e;
  color: #FFF;
}

.lbl-succ {
  background-color: #5cb85c;
  color: #FFF;
}

.lbl-dang {
  background-color: #d9534f;
  color: #FFF;
}

.lbl-warn {
  background-color: #f0ad4e;
  color: #FFF;
}

.lbl-test {
  background-color: #dbe010;
  color: #FFF;
}

.lbl-mod {
  background-color: #3192da;
  color: #FFF;
}

.lbl-dang a {
  background-color: #d9534f;
  color: #FFF;
}
.lbl-dang a:hover{
  color:#000;
}

.lbl-warn a {
  background-color: #f0ad4e;
  color: #FFF;
}
.lbl-warn a:hover{
  color:#000;
}

.lbl-succ a {
  background-color: #5cb85c;
  color: #FFF;
}
.lbl-succ a:hover{
  color:#000;
}
.lbl-mod a {
  color: #FFF;
}
.lbl-mod a:hover{
  color:#000;
}

.offerta-white {
  background-color: #FFF !important;
}
.offerta-blue {
  background-color: #EAF3F3 !important;
}
.green-even {
  background-color: #c9ecc3 !important;
}
.green-odd {
  background-color: #91e3c6 !important; 
}