/*
 * Basic Table Demo CSS.
 */

@import url(https://fonts.googleapis.com/css?family=Lato:400,700|Montserrat:400,700);

* {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 540px) {}

/*table {
  background: #FFF;
  border-collapse: collapse;
  margin: 15px 2%;
  width: 96%;
  color: #333;
}

table tr,
table th,
table td {
	border: none;
	border: 1px solid #e9e8e8;
	font-size: 1.0em;color: #333;font-weight: normal;
}

table th,
table td {
  padding: 10px 12px;
  text-align: left;
  color: #333;font-weight: normal;
}

table th {
	background: #FFF;
	color: #333;
	border: 1px solid #e9e8e8;
	font-weight: normal;
}

table tr td {
	background: #F7F7F7;
	color: #333;
}
*/
table tr:nth-of-type(2n+2) td {
  background: #FFF;color: #333;
}

table.bt tbody td {
	font-weight: normal;
	padding: 3px;color: #333;
	line-height: 140%; background: #F7F7F7; margin:5px 10px; padding:5px
}

table.bt tbody td:before {
  background: #FFF;
  color: #333;
  margin-right: 0px;
  padding: 5px;font-weight: normal; font-size:1.0em;
 
}

table.bt tbody td .bt-content {
	display: inline-block;
	padding: 2px 5px;
	color: #333;font-weight: normal;text-align: left;
}

table.bt tbody td:first-of-type:before,
table.bt tbody td:first-of-type .bt-content {
  padding-top: 10px;color: #333;text-align: left;
}

table.bt tbody td:last-of-type:before,
table.bt tbody td:last-of-type .bt-content {
  padding-bottom: 10px;color: #333;
}

/* 
 * Example 4:
 * Media query over js resize
 */
@media only screen and (max-width: 568px) {
  #table-no-resize thead {
    display: none;color: #333;
  }

  #table-no-resize tbody td {
    border: none !important;
    display: block;
    font-size: 0.8em;
    padding: 0;
    vertical-align: top;color: #333;
  }

  #table-no-resize tbody td:before {
    background: #FFF;
    content: attr(data-th) ": ";
    color: #333;
    display: inline-block;
    font-weight: bold;
    margin-right: 10px;
    padding: 2px 20px;
    width: 6.5em;
  }

  #table-no-resize tbody td .bt-content {
    display: inline-block;
    padding: 2px 5px;color: #333;
  }

  #table-no-resize tbody td:first-of-type:before,
  #table-no-resize tbody td:first-of-type .bt-content {
    padding-top: 10px; color: #333;
  }

  #table-no-resize tbody td:last-of-type:before,
  #table-no-resize tbody td:last-of-type .bt-content {
    padding-bottom: 10px;color: #333;
  }
}

/* 
 * Example 5:
 * Two axis styling
 */
table.two-axis tr td:first-of-type {
  background: #FFF;color: #333;
}

@media only screen and (max-width: 568px) {
  table.two-axis tr td:first-of-type,
  table.two-axis tr:nth-of-type(2n+2) td:first-of-type,
  table.two-axis tr td:first-of-type:before {
    background: #efefef;
    color: #333;
  }

  table.two-axis tr td:first-of-type {
   color: #333; font-size:1.0em; margin:10px;/* white-space:nowrap * 強迫不斷行/
  }

  table.two-axis tr td:first-of-type:before {
    padding-bottom: 5px;color: #333; 
  }
}


/* 
 * Example 6:
 * Max height

.bt-wrapper.active {
  margin-top: 1.5em;
}
.bt-wrapper.active table {
  margin: 0;
}