<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rwd-table {
  margin: 1em 0;
  min-width: 300px;
  font-size:13px;
}
.rwd-table tr {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  transition:all linear 0.2s;
  position:relative;
}


.rwd-table tr:hover{
	background:rgba(228,228,228,0.50);
	cursor:pointer;
	  transition:all linear 0.2s;
}

.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  padding-top: .5em;
}
.rwd-table td:last-child {
  padding-bottom: .5em;
}
.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 13.5em;
  padding-bottom:3px;
  display:block;
}
@media (min-width: 480px) {
  .rwd-table td:before {
    display: none;
  }
}
.rwd-table th, .rwd-table td {
  text-align: left;
}
@media (min-width: 480px) {
  .rwd-table th, .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child, .rwd-table td:first-child {
    padding-left: 0;
	border-left:1px solid rgba(0,0,0,0.11);;
  }
  .rwd-table th:last-child, .rwd-table td:last-child {
    padding-right: 0;
	width:10%;
  }
}

@media (max-width: 900px){
	.rwd-table tr:after {
 	    content: attr(data-button-name);
    position: absolute;
    background: rgba(151,151,151,1.00);
    bottom: 0px;
    right: 0px;
    color: white;
    padding: 7px 26px;
    border-radius: 16px 0px 0px 0px;
	
}

.rwd-table tr:before{
	content: " \f105";
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #000000;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
        bottom: 4px;
    right: 0px;
    z-index: 10;
	
}
}

.rwd-table {
  background: #FFF;
  color: #000;
  border-radius: 0;
  overflow: hidden;
}
.rwd-table tr {
  border-color: rgba(0,0,0,0.31);
}
.rwd-table th, .rwd-table td {
  margin: .5em 1em;
  border-right:1px solid rgba(0,0,0,0.11);
}
@media (min-width: 480px) {
  .rwd-table th, .rwd-table td {
    padding: 1em !important;
	border-right:1px solid rgba(0,0,0,0.11);
	text-align:center;
  }
}
.rwd-table th, .rwd-table td:before {
  color: #000;
}
</pre></body></html>