.clanPlayers {
    font-size: 1.2em;
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.clanPlayers td, #clanPlayers th {
    border: 1px solid #ddd;
    padding: 8px;
}

.clanPlayers tr:nth-child(even) {
    background-color: bisque;
}

.clanPlayers tr:hover {
    background-color: #f9a11b; 
    color: white;
    cursor: pointer;
}

.clanPlayerssel td{
    background-color: #f44c13; 
    color: white;
    cursor: pointer;
}

.clanPlayers th {
    padding-top: 12px;
    padding-bottom: 12px;
	padding-left: 8px;
	padding-right: 8px;
    background-color: #f9a11b;
    color: white;
	position: sticky;
	top: 40px;
	z-index: 10;
}

.clanPlayers th div{
position: absolute;
  background: transparent;
  color: #fff;
  padding: 9px 25px;
  top: 0;
  margin-left: -25px;
  line-height: normal;
  border-left: 1px solid #800;
  }

  .tttttr{
position: absolute;
  background: transparent;
  color: #fff;
	position: sticky;
	top: 40px;
	z-index: 10;
  }



/* TABS */

.tabs {
    width: 100%;
    text-align: center;
}

.tabs .tabmenu {
    width: 100%;
    list-style-type: none;
    position: relative;
    margin: 0;
    height: 3em;
    line-height: 3em;
    padding: 0;
}

.tabs .tabmenu li {
    float: left;
    padding-left: 1.5em;
    padding-right: 1.5em;
    height: 100%;
    background-color: bisque;
    border-top-left-radius: 1.5em;
    border-top-right-radius: 1.5em;
    cursor: pointer;
    font-size: 1.2em;
    border: 0.1em solid #f9a11b;
    border-bottom: 0;
    margin-left: 1px;
}

.tabs .tabmenu li.tabActive {
    background-color: #f9a11b;
}

.tabs .tabcontent {
    width: 100%;
}

.tabs .tabcontent [id*="tab_"] {
    display: none;
}

.tabs .tabcontent [id*="tab_"].tabActive {
    display: block;
}

#playerPopUpContent {
    position: fixed;
    width: 50%;
    height: 50%;
    top: 50%;
    margin-left: 50%;
    margin-right: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    z-index: 99;
    display: none;
}

#playerPopUpBackground {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0; 
    top: 0;
    background-color: rgba(51, 51, 51, 0.8);
    z-index: 98;
    display: none;
}

#playerPopUpContent.active, #playerPopUpBackground.active {
    display: block;
}

@media only screen and (min-width: 960px) {

    .tabs {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

}