.playerCard {
    position: relative;
    padding: 10px !important;
}

.playerCard.playerInfo {
    padding: 0px !important;
}

.playerCard .adminOptions {
    position: absolute !important;
    right: 10px;
    top: 11px;
}

.playerCard .table {
    display: table;
    width: 100%;
    height: 100%;
}

.playerCard.playerInfo .table {
    height: auto;
}

.playerCard .table .cell {
    display: table-cell;
}

.playerCard .table .cell.image {
    vertical-align: top;
    width: 80px;
}

.playerCard.playerInfo .table .cell.image {
    vertical-align: top;
    width: 110px;
}

.playerCard .table .cell.action {
    vertical-align: middle;
    width: 42px;
    text-align: right;
}

.playerCard .playerImage {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: rgba(var(--mainColor), 1);
}

.playerCard.playerInfo .playerImage {
    width: 100px;
    height: 100px;
}

.playerCard .name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 2px;
}

.playerCard .name.bold {
    font-size: 16px;
    font-weight: 800;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.playerCard .team,
.playerCard .info {
    font-size: 14px;
}

.playerCard .info {
    margin-bottom: 3px;
}

.playerCard .team span,
.playerCard .info span {
    font-weight: 600;
}

.playerCard .positions {
    margin-top: 6px;
}

.playerCard.playerInfo .positions {
    margin-top: 0px;
}

.playerCard.playerInfo .positions span {
    font-size: 14px;
    font-weight: 600;
}

.playerCard .position {
    padding: 3px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, .1);
    float: left;
    font-size: 12px;
    margin-top: 4px;
    margin-right: 4px;
    width: 28px;
    text-align: center;
}

.approveOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 100;
    background-color: rgba(0, 0, 0, .2);
}

.approveOverlay .table {
    display: table;
    width: 100%;
    height: 100%;
}

.approveOverlay .table .cell {
    display: table-cell;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    color: white;
}

.approveOverlay .table .cell .button {
    display: inline-block;
    height: 34px;
    width: 34px;
    padding: 0px !important;
    margin-left: 5px;
    margin-right: 0px;
    position: relative;
    box-sizing: border-box;
}

.approveOverlay .table .cell .button:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.approveOverlay .table .cell .button.checkmark:after {
    content: "\f00c";
    font-size: 19px;
    top: calc(50% - 10px);
    left: calc(50% - 8px);
}

.approveOverlay .table .cell .button.delete:after {
    content: "\f2ed";
    top: calc(50% - 8px);
    left: calc(50% - 7px);
}

.approveOverlay .table .cell .button.edit:after {
    content: "\f304";
    top: calc(50% - 8px);
    left: calc(50% - 8px);
}

.approveOverlay .table .cell .button.delete {
    background-color: rgba(255, 59, 48, 1);
}

.approveOverlay .table .cell .button.delete:hover {
    background-color: rgba(255, 59, 48, .8);
}

.approveOverlay .table .cell .button.checkmark {
    background-color: rgba(52, 199, 89, 1);
}

.approveOverlay .table .cell .button.checkmark:hover {
    background-color: rgba(52, 199, 89, .8);
}

.box.playerCard.notApproved {
    background-color: rgba(255, 255, 255, 0);
    color: white !important;
}

.box.playerCard.notApproved .adminOptions {
    display: none;
}

.box.playerCard.notApproved .arrowButton {
    display: none;
}

.createNewPlayer .column1 {
    width: 200px;
}

.createNewPlayer .cell .label {
    margin: 0px !important;
}

.createNewPlayer .label.noMargin {
    margin-top: 0px !important;
}

.createNewPlayer .label.marginTop {
    margin-top: 20px;
}

.createNewPlayer .cell {
    border-bottom: 10px solid transparent !important;
}

.createNewPlayer .table {
    border-bottom: 1px solid #D6DCDF;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.createNewPlayer .imageFrame {
    float: left;
    width: 180px;
}

.createNewPlayer .imageFrame .image {
    height: 180px;
}

.createNewPlayer .imageFrame .image .overlay {
    width: 140px;
    left: calc(50% - 70px);
}

.createNewPlayer .inputsFrame {
    float: right;
    width: calc(100% - 200px);
}

.createNewPlayer .border {
    border-bottom: 1px solid #D6DCDF;
    height: 3px;
}

#playerPositionsFrame {
    width: 100%;
    min-height: 33px;
    background-color: #EFEFEF;
    border-radius: 3px;
    position: relative;
}

#playerPositionsFrame .add {
    background-color: rgba(var(--mainColor), 1);
    border: 1px solid transparent;
    border-radius: 3px;
    color: white;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 4px 15px;
    cursor: pointer;
    transition: all .2s;
    margin: 0px;
    position: absolute;
    right: 5px;
    top: 5px;
    display: block;
    width: auto !important;
}

#playerPositionsFrame .add:hover {
    background-color: rgba(var(--mainColor), .7);
}

#playerPositionsFrame #addPositionsModalOverlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    display: none;
}

#playerPositionsFrame #addPositionsModalOverlay.active {
    display: block;
}

#playerPositionsFrame #addPositionsModal {
    position: absolute;
    bottom: calc(100% + 2px);
    left: 0px;
    max-width: 300px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    -webkit-box-shadow: 1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);
    box-shadow: 1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);
    padding: 5px;
    padding-bottom: 0px;
    box-sizing: border-box;
    display: none;
    z-index: 100;
}

#playerPositionsFrame #addPositionsModal.active {
    display: block;
}

#playerPositionsFrame #addPositionsModal #postFilters {
    margin-bottom: 5px;
}

#playerPositionsFrame #addPositionsModal .button {
    margin-bottom: 0px;
}

#playerPositionsFrame #addPositionsModal .button.addSelected {
    width: 100%;
}

#playerPositionsFrame #addPositionsModal .position {
    width: calc((100% - 15px) / 4);
    float: left;
    margin-left: 5px !important;
    background-color: #D6DCDF;
    color: #333;
    text-align: center;
    margin-bottom: 5px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 9px;
    padding-bottom: 9px;
    box-sizing: border-box;
    transition: all .2s;
    cursor: pointer;
}

#playerPositionsFrame #addPositionsModal .position:hover {
    background-color: #EFEFEF;
}

#playerPositionsFrame #addPositionsModal .position.selected {
    background-color: rgba(var(--mainColor), 1);
    color: white;
}

#playerPositionsFrame #addPositionsModal .position.selected:hover {
    background-color: rgba(var(--mainColor), 1);
    color: white;
}

#playerPositionsFrame #addPositionsModal .position:nth-child(4n+1) {
    margin-left: 0px !important;
}

#playerPositionsFrame #addPositionsModal .positionFrame {
    display: none;
}

#playerPositionsFrame #addPositionsModal .positionFrame.visible {
    display: block;
}

#playerPositionsFrame #selectedPositions {
    width: calc(100% - 80px);
    padding-bottom: 5px;
}

#playerPositionsFrame #selectedPositions .position {
    border-radius: 3px;
    padding: 4px;
    background-color: rgba(0, 0, 0, .4);
    color: white;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 5px;
    position: relative;
    padding-right: 22px;
    float: left;
}

#playerPositionsFrame #selectedPositions .position .delete {
    border-radius: 3px;
    background-color: rgba(0, 0, 0, .1);
    width: 13px;
    height: 13px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

#playerPositionsFrame #selectedPositions .position .delete:hover {
    background-color: rgba(0, 0, 0, .3);
}

#playerPositionsFrame #selectedPositions .position .delete:after {
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 3px);
    font-size: 10px;
    color: white;
    font-weight: 100;
}

.playerInfo .desc {
    border-top: 1px solid #D6DCDF;
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
    padding-top: 10px;
}

.changePlayer {
    margin-bottom: 10px;
}

.box.background .noResult,
.popupContent .noResult {
    text-transform: uppercase;
    font-size: 14px;
    color: #333 !important;
    text-align: center;
}

.box.background .noResult p,
.popupContent .noResult p {
    display: inline-block;
}

#editChallenges .table .cell {
    padding-left: 5px;
    box-sizing: border-box;
}

#editChallenges .table .cell:first-child {
    padding-left: 0px;
}

#editChallenges .table .cell .button {
    width: 33px !important;
    height: 33px !important;
    margin-left: 0px !important;
    border: none;
    cursor: pointer;
}

#editChallenges .table .cell .button.disabled {
    opacity: .5;
}

#editChallenges .table .cell .button.add:after {
    content: "\f067";
    font-weight: 300;
    font-size: 18px;
    left: calc(50% - 7px);
    top: calc(50% - 9px);
    position: absolute;
}

#editChallenges input {
    margin-bottom: 0px !important;
}

#editChallenges .table .row.header .cell {
    border-bottom: 0px solid transparent;
    text-transform: uppercase;
    font-size: 12px;
}

#editChallenges .table .row .cell {
    border-bottom: 5px solid transparent;
}

#editChallenges .table .row.header .cell .label {
    margin-bottom: 4px;
}

#editChallenges .table.add {
    border-top: 1px solid #D6DCDF;
    margin-top: 5px;
    padding-top: 10px;
}

.playerChallenge {
    background-color: #EFEFEF;
    padding: 5px;
    margin-bottom: 5px;
    position: relative;
}

#playerChallenges .playerChallenge:last-child {
    margin-bottom: 0px;
}

.playerChallenge .name {
    display: table;
    width: calc(100% - 44px);
    margin-bottom: 5px;
}

.playerChallenge .target {
    width: calc(100% - 44px);
}

.playerChallenge .icon {
    display: table-cell;
    vertical-align: middle;
}

.playerChallenge .icon div {
    width: 26px;
    height: 26px;
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    position: relative;
}

.playerChallenge .name .icon div:after {
    content: "\e123";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.playerChallenge .target .icon div:after {
    content: "\f648";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.playerChallenge .text {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding-left: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

.playerChallenge .name .text {
    font-weight: 600;
}

.playerChallenge .checkbox {
    border: none;
    position: absolute;
    top: calc(50% - 19px);
    right: 5px;
    width: 39px;
    height: 39px;
    background-color: rgba(161, 164, 174, 1);
    color: white;
    transition: background .3s;
    cursor: pointer !important;
}

.playerChallenge .checkbox.disabled {
    cursor: default !important;
}

.playerChallenge .checkbox.checked {
    background-color: rgba(var(--mainColor), 1);
}

.playerChallenge .checkbox:after {
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    font-weight: 400;
    color: white;
    position: absolute;
    left: 11px;
    top: calc(50% - 10px);
}

.playerChallenge .checkbox.checked:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    font-weight: 100;
    color: white;
    position: absolute;
    left: 11px;
    top: calc(50% - 10px);
}

.actions .optionsPopup.small.evaluation {
    left: calc(100% - 140px);
}

.actions .optionsPopup.small.evaluation .option {
    min-width: 125px;
}

#evaluations .evaluation {
    width: 100%;
    margin-top: 5px;
}

#evaluations .evaluation:first-child {
    margin-top: 0px;
}

#evaluations .evaluation div input {
    width: 100%;
    height: 39px;
    font-size: 16px;
}

#evaluations .evaluation .name {
    float: left;
    width: calc(100% - 44px);
}

#evaluations .evaluation.topCategory {
    border: none !important;
    padding: 0px !important;
}

#evaluations .evaluation.topCategory .name {
    width: 100%;
    float: unset;
}

#evaluations .evaluation.topCategory input {
    background-color: rgba(var(--mainColor), 1);
    color: white;
    text-transform: uppercase;
}

#evaluations .evaluation .value {
    float: right;
    width: 39px;
    height: 39px;
    border-radius: 3px;
    background-color: #b7b7b7;
}

#evaluations .evaluation .value input {
    text-align: center;
    font-weight: 600;
    color: white;
    background-color: transparent;
}

#evaluations .evaluation .value input:focus {
    background-color: rgba(0, 0, 0, .3);
}

#evaluations .popupHelpText {
    text-align: right;
    margin-bottom: 0px;
    margin-top: 5px;
}

.myDevelopment .latestEvaluation {
    border-top: 1px solid #D6DCDF;
    margin-top: 10px;
    padding-top: 10px;
}

.latestEvaluation .table {
    display: table;
    width: 100%;
    margin-bottom: 5px;
}

.latestEvaluation .table.top {
    color: white;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.latestEvaluation .table.top .name {
    background-color: rgba(var(--mainColor), 1);
}

.latestEvaluation .table.top .name:hover {
    background-color: rgba(var(--mainColor), .8);
}

.latestEvaluation .cell {
    display: table-cell;
    height: 39px;
    vertical-align: middle;
    text-align: left;
    background-color: rgba(214, 220, 223, 1);
    border-radius: 3px;
}

.latestEvaluation .name {
    padding: 10px;
    box-sizing: border-box;
}

.latestEvaluation .margin {
    width: 5px;
    background-color: white;
}

.latestEvaluation .value {
    width: 39px;
    text-align: center;
    background-color: rgba(var(--mainColor), 1);
    color: white;
}

.lastEvaluationUpdate {
    display: block;
    margin-top: 10px;
    border-top: 1px solid #D6DCDF;
    border-bottom: 1px solid #D6DCDF;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: auto;
    font-size: 14px;
    color: rgba(var(--mainColor), 1);
    margin-bottom: 10px;
}

.lastEvaluationUpdate span {
    font-weight: 600;
    color: #333;
}

.latestEvaluation .table.top:after {
    content: "\f078";
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: white;
    font-weight: 300;
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    z-index: 1;
    display: block;
    transition: all .3s;
}

.latestEvaluation .table.top.collapsed:after {
    content: "\f054";
    content: "\f078";
}

.latestEvaluation .children.collapsed {
    display: none;
}

.chooseEditEvaluation,
.choosePlayerType {
    padding-bottom: 10px;
    border-bottom: 1px solid #D6DCDF;
    margin-bottom: 10px;
}

.chooseEditEvaluation .popupHelpText {
    margin-bottom: 5px;
}

#deleteEvaluations .evaluations {
    margin-bottom: 20px;
}

#deleteEvaluations .evaluation {
    margin-top: 5px;
}

#deleteEvaluations .evaluation:first-child {
    margin-top: 0px;
}

#deleteEvaluations .evaluation .name {
    float: left;
    width: calc(100% - 44px);
    padding: 10px;
    background-color: rgba(214, 220, 223, .3);
    box-sizing: border-box;
    border-radius: 3px;
}

#deleteEvaluations .evaluation .delete {
    width: 39px;
    height: 39px;
    font-family: "Font Awesome 5 Pro";
    position: relative;
    font-size: 14px;
    font-weight: 300;
    padding: 0px;
    float: right;
    background-color: rgba(255, 59, 48, 1);
    border-radius: 3px;
    cursor: pointer;
}

#deleteEvaluations .evaluation .delete:hover {
    background-color: rgba(255, 59, 48, .8);
}

#deleteEvaluations .evaluation .delete:after {
    content: "\f2ed";
    top: calc(50% - 7px);
    left: calc(50% - 6px);
    position: absolute;
    color: white;
}

#spiderWebChart {
    width: 100%;
    position: relative;
}

#spiderWebChart:after {
    content: "";
    padding-top: 100%;
    display: block;
}

#myDevelopmentChart {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.myDevelopment .select.margin {
    margin-top: 5px;
}

.myDevelopment .choosePlayer {
    margin-bottom: 10px;
    border-bottom: 1px solid #D6DCDF;
}

.myDevelopment .choosePlayer.noBorder {
    border: none;
    margin-bottom: 0px;
}

.myDevelopment .choosePlayer.noBorder .changePlayer {
    margin-bottom: 0px;
}

#howToImprovePopupOverlay {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 100001;
}

#howToImprovePopup {
    max-width: 100vw;
    max-height: 100vh;
    background-color: white;
    z-index: 100002;
    position: fixed;
    padding: 15px;
    padding-top: 0px;
    box-sizing: border-box;
    color: #333;
    overflow-y: auto;
    border-radius: 0px;
    min-height: 100vh;
    top: 0px;
    left: calc(50% - 400px);
}

#howToImprovePopup .popupHeader {
    font-size: 18px;
    text-transform: uppercase;
    color: rgba(var(--mainColor), 1);
    padding-top: 10px;
    margin-bottom: 15px;
}

#howToImprovePopup .popupHeader.border {
    border-bottom: 1px solid #D6DCDF;
    padding-bottom: 7px;
    margin-top: 20px;
}

#howToImprovePopup .popupSubHeader {
    font-size: 15px;
    color: #333;
    margin-bottom: 7px;
    margin-top: 10px;
    text-transform: uppercase;
}

#howToImprovePopup .close:after {
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 22px;
    color: rgba(var(--mainColor), 1);
    font-weight: 300;
}

#howToImprovePopup .close {
    position: absolute;
    top: 13px;
    right: 12px;
    width: 18px;
    height: 18px;
    transition: all .2s;
    cursor: pointer;
}

#howToImprovePopup .close:hover {
    opacity: .7;
}

#playerVideos .videoFrame {
    width: calc(100% + 30px);
    margin-left: -15px;
}

#playerVideos .videoFrame .video:after {
    padding-top: 56.25%;
}

#playerVideos .table,
#playerComments .table,
#playerCommentsPopup .table {
    display: table;
    width: 100%;
    margin-top: 15px;
}

#playerComments .table {
    border-bottom: 1px solid #D6DCDF;
    padding-bottom: 10px;
}

#playerCommentsPopup .table {
    border-top: 1px solid #D6DCDF;
    padding-top: 10px;
    position: relative;
}

#playerCommentsPopup .table:first-child {
    border-top: none;
}

#playerVideos .cell,
#playerComments .cell,
#playerCommentsPopup .cell {
    display: table-cell;
    vertical-align: top;
    font-size: 14px;
}

#playerVideos .cell.userSquare,
#playerComments .cell.userSquare,
#playerCommentsPopup .cell.userSquare {
    width: 43px;
}

#playerVideos .cell.userSquare div,
#playerComments .cell.userSquare div,
#playerCommentsPopup .cell.userSquare div {
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    font-size: 14px;
    transition: all .2s;
    color: white;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: center;
    width: 33px;
    margin-right: 10px;
}

#playerVideos .cell p,
#playerComments .cell p,
#playerCommentsPopup .cell p {
    margin: 0px;
}

#playerVideos .cell .date,
#playerComments .cell .date,
#playerCommentsPopup .cell .date {
    color: rgba(var(--mainColor), 1);
}

#playerVideos .footer,
#playerComments .footer {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #D6DCDF;
}

#playerComments .footer {
    border-top: none;
    margin-top: 0px;
}

#playerVideos .title {
    text-transform: uppercase;
    margin-bottom: 15px;
}

#playerVideos .adminOptions {
    position: absolute;
    right: 15px;
}

#playerCommentsPopup .cell.options {
    vertical-align: middle;
    width: 75px;
}

#playerCommentsPopup .cell.options .button {
    width: 28px;
    height: 28px;
    padding: 0px;
    display: inline-block;
    float: right;
    margin-left: 5px;
}

#playerCommentsPopup .cell.options .button.delete {
    background-color: rgba(255, 59, 48, 1);
}

#playerCommentsPopup .cell.options .button:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 14px;
    color: white;
    font-weight: 300;
}

#playerCommentsPopup .cell.options .button.edit:after {
    content: "\f304";
    top: calc(50% - 7px);
    left: calc(50% - 7px);
}

#playerCommentsPopup .cell.options .button.delete:after {
    content: "\f2ed";
    top: calc(50% - 7px);
    left: calc(50% - 6px);
}

#create_new_player_form {
    margin-bottom: 5px !important;
}

.invitePlayer {
    float: right;
    margin-bottom: 15px;
}

.invitePlayer span {
    display: block;
    float: left;
    padding-top: 10px;
}

.invitePlayer .checkbox {
    float: right;
    margin-top: -2px;
    margin-left: 5px;
}

.developmentFooter {
    border-top: 1px solid #D6DCDF;
    margin-top: 10px;
    padding-top: 10px;
}

.developmentFooter .iconButton .text {
    text-transform: uppercase;
}

.actions .optionsPopup.small.development {
    left: calc(100% - 155px);
}

.actions .optionsPopup.small.development .option {
    min-width: 140px;
}

.addDevelopment #editCategories .area {
    margin-bottom: 5px;
}

.developmentAreas {
    margin-top: 10px;
}

#developmentContent .noResult {
    padding-top: 20px;
    padding-bottom: 10px;
}

#developmentContent .developmentAction {
    width: 100%;
    margin-top: 20px;
}

#developmentContent .developmentAction .header {
    font-size: 16px;
    color: white;
    background-color: rgba(var(--mainColor), 1);
    text-transform: uppercase;
    padding: 10px;
    position: relative;
}

#developmentContent .developmentAction .header .edit {
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 3px;
    cursor: pointer;
}

#developmentContent .developmentAction .header .edit:hover {
    background-color: rgba(255, 255, 255, .5);
}

#developmentContent .developmentAction .header .edit:after {
    content: "\f304";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: calc(50% - 6px);
    right: calc(50% - 6px);
    font-size: 11px;
    font-weight: 300;
    color: white;
}

#developmentContent .developmentAction .content {
    background-color: #EFEFEF;
    padding: 20px 10px;
}

.playersCreateTestTableFrame {
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.playersCreateTestTable,
.playerTestHistoryTable {
    border-collapse: collapse;
    width: 100%;
}

.playersCreateTestTable tr,
.playerTestHistoryTable tr {
    border-bottom: 1px solid white;
}

.playersCreateTestTable td,
.playerTestHistoryTable td {
    background-color: #EFEFEF;
    border-right: 1px solid white;
}

.playerTestHistoryTable td {
    background-color: #EFEFEF;
    border-right: 1px solid white;
    padding: 7px;
}

#playersCreateTestTable tr td:last-child {
    border-right: none;
}

.playersCreateTestTable thead td,
.playerTestHistoryTable thead td {
    background-color: rgba(var(--mainColor), 1);
    color: white;
    padding: 7px;
    text-transform: uppercase;
}

.playersCreateTestTable .name {
    background-color: #A1A4AE;
    padding: 7px;
    color: white;
    width: 300px;
}

.playersCreateTestTable input {
    border-radius: 0px !important;
    background-color: transparent;
}

.playersCreateTestTable input.readOnly {
    background-color: #A1A4AE;
}

.playerTests .actions .optionsPopup.small .option,
#playerTests .actions .optionsPopup.small .option {
    width: 120px;
}

.playerTests .actions .optionsPopup.small,
#playerTests .actions .optionsPopup.small {
    left: calc(100% - 135px);
}

#editCategories .category.add .measurement {
    background-color: #b7b7b7 !important;
    border: none !important;
    border-radius: 3px !important;
    color: #333 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    padding: 5px !important;
    padding-top: 4px !important;
    cursor: pointer !important;
    transition: all .2s !important;
    position: absolute !important;
    top: 18px !important;
    right: 40px !important;
    width: 70px !important;
}

#editCategories .category.add .measurementLabel {
    font-size: 9px;
    position: absolute;
    top: 5px;
    right: 43px;
}

#editCategories .category.add .nameLabel {
    font-size: 9px;
    position: absolute;
    top: 5px;
    left: 10px;
}

#editCategories .category.add.editing.playerTests {
    padding-top: 21px;
}

#editCategories .category.add.playerTests input[type="button"] {
    top: 16px;
}

#editCategories .category span.measurement,
.categories.playerTests .category span {
    background-color: rgba(255, 255, 255, .2);
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 1px;
    padding-bottom: 2px;
    border-radius: 3px;
    display: inline-block;
    margin-left: 8px;
}

.colorHelp {
    margin-top: 15px;
}

.colorHelp .colorTable {
    display: table;
}

.colorHelp .colorTable .cell {
    display: table-cell;
    vertical-align: middle;
}

.colorHelp .colorTable .textCell {
    padding-left: 5px;
    padding-right: 15px;
    font-size: 11px;
    color: #333;
    text-transform: uppercase;
}

.colorHelp .colorTable .cell .colorBox {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.colorHelp .colorTable .cell .colorBox.latest {
    background-color: rgba(66, 76, 78, .8);
}

.colorHelp .colorTable .cell .colorBox.target {
    background-color: rgba(var(--mainColor), 1);
}

.sameTarget {
    float: right;
    margin-bottom: 10px;
    margin-top: 10px;
}

.sameTarget span {
    display: block;
    float: left;
}

.sameTarget .checkbox {
    float: right;
    margin-top: -3px;
    margin-left: 5px;
}