#player-container {
    display: inline-flex;
    flex-direction: column;
    width: -webkit-fill-available;
    margin: 5px;
    min-height: 99vh;
}

.players {
    background-color: #888888;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.player {
    position: relative;
    display: inline-block;
    width: 548px;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    padding: 0px 0px 20px 0px;
    margin: 2px;
    font-size: 14px;
    border-radius: 5px;
}

.player-header {
    position: relative;
    background-color: rgba(0,0,0,0.5);
    margin-bottom: 15px;
    padding: 10px;
    color: #ffffff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.locator {
    cursor: pointer;
}

.player-header .locator {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 24px;
}

.player-map {
    position: relative;
    background-color: #50628E!important;
    margin: auto;
    width: 520px;
    height: 520px;
    overflow: hidden;
    border-radius: 5px;
}

/* Style tab links */
.player-tabs {
    z-index: 1100;
    position: absolute;
    bottom: 2px;
    right: 2px;
}

.player-tabs button {
    width: 36px;
    height: 36px;
}

.tablink {
    background-color: #555;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 5px;
}

.tablink:hover {
  background-color: #777;
}

.tabcontent {
    position: absolute;
    color: white;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    display: none;
}

.lefttab {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.righttab {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
