/*@import "compass/css3";

// More practical CSS...
// using mobile first method (IE8,7 requires respond.js polyfill https://github.com/scottjehl/Respond)

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

.rwd-table {
  margin: 1em 0;
  min-width: 300px; // adjust to your needs
  
  tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  
  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, thats 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 'http://fonts.googleapis.com/css?family=Montserrat:300,400,700';

body {
  padding: 0 2em;
  font-family: Montserrat, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #444;
  background: #eee;
}

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

.rwd-table {
  background: #34495E;
  color: #fff;
  border-radius: .4em;
  overflow: hidden;
  tr {
    border-color: lighten(#34495E, 10%);
  }
  th, td {
    margin: .5em 1em;
    @media (min-width: $breakpoint-alpha) { 
      padding: 1em !important; 
    }
  }
  th, td:before {
    color: #dd5;
  }
}*/


/*media nyit*/
@media screen and (max-width: 600px) {
  table.tabl thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table.tabl tr {
    display: block;
  }
  table.tabl td {
    display: block;
    text-align: center;
    border-bottom: 2px solid #ddd;
  }
  table.tabl td:before {
    content: attr(data-th) ": \00a0 \00a0 \00a0 ";
    font-weight: bold;
    float: center;
  }
table.tabl th {
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 30px;
    display: none;
    }
    
/*eddig*/

  table.sajatt thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table.sajatt tr {
    display: block;
  }
  table.sajatt td {
    display: block;
    text-align: center;
    /*border-bottom: 2px solid #ddd;*/
  }
table.sajatt th {
    text-align: center;
    /*border-bottom: 2px solid #ddd;*/
    padding-bottom: 30px;
    display: none;  
}
}/*media zar*/




table.tabl td {
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
    padding-top: 15px;
}
table.tabl th {
    text-align: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 30px;
    font-weight: bold;
}  

/*@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)*/