.player_stats_table tr:nth-child(2n+1) { background-color: #ddd; } .player_stats_table tr:nth-child(2n+0) { background-color: #eee; }

.popup-overlay {
  /*Hides pop-up when there is no "active" class*/
    visibility: hidden;
    position: absolute;
    background: #FFFFFF;
    border: 3px solid #666666;
    width: 50%;
    height: 50%;
    left: 25%;
    overflow: auto!important;
    padding: 20px 20px!important;
        margin-top: 60px;
}
.player_stats_table {
    margin-top: 100px;
	    overflow: scroll;
}
.popup-overlay.active {
  /*displays pop-up when "active" class is present*/
  visibility: visible;
  text-align: center;
}

.player_stats_table .popup-overlay button.close {
    padding: 10px 21px;
    position: relative;
    top: -34px;
    left: 9px;
}
