.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 .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;
}

.playerCard .position.basketball {
    width: auto;
}

.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;
}

.createNewPlayer .findParent {
    position: relative;
}

.createNewPlayer .findParent .loader {
    position: absolute;
    top: 7px;
    right: 7px;
    height: 19px;
    width: auto;
    display: none;
}

#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;
    text-transform: uppercase;
}

#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 .cell {
    display: table-cell;
    height: 39px;
    vertical-align: middle;
    text-align: left;
    background-color: rgba(214, 220, 223, 1);
    border-radius: 3px;
    text-transform: uppercase;
}

.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";
    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";
}

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

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

.choosePlayerType {
    margin-bottom: 0px;
}

.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;
    padding-right: 30px;
    box-sizing: border-box;
}

#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;
}

#importPlayers .dropArea {
    width: 100%;
    border: 2px dashed rgba(0, 0, 0, .3);
    position: relative;
    border-radius: 3px;
}

#importPlayers .dropArea .table {
    display: table;
    width: 100%;
    height: 140px;
}

#importPlayers .dropArea .table .text {
    display: table-cell;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    opacity: .3;
    font-size: 16px;
    font-weight: 600;
}

#importPlayers .dropArea .table .text i {
    font-size: 40px;
    display: inline-block;
    margin-bottom: 10px;
}

#importPlayers .dropArea.fileUploaded .table .text {
    opacity: 1;
}

#importPlayers .dropArea #dropAreaOverlay {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    transition: background .3s;
}

#importPlayers .dropArea.fileOver #dropAreaOverlay {
    background-color: rgba(0, 0, 0, .3);
}

#importPlayers #progressBar {
    display: none;
}

#importPlayers #progressBar .loader {
    width: 100%;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, .3);
    border-radius: 3px;
    position: relative;
}

#importPlayers #progressBar .loader div {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    width: 40%;
}

#importPlayers #progressBar .loader span {
    position: absolute;
    top: 5px;
    left: 0px;
    width: 100%;
    text-align: center;
}

#importPlayers .invitePlayer {
    margin-bottom: 0px;
    margin-top: 15px;
}

#importPlayers #alreadyExists {
    margin-bottom: 10px;
    display: none;
}

#importPlayers #alreadyExists .email {
    padding: 5px;
    border-left: 4px solid #dd3d36;
}

/*----------  TABLE PLAYER --------*/

.playerTableViewContainer {
    width: 100%; 
    overflow-x: auto; 
    background: white; 
    border: 0;
    padding: 0;
    margin: 0;
    margin-bottom: 10px; 
}

.playerTableView {
    font-size: 14px;
    background-color: rgba(var(--secondaryColor), 1);
    background-color: #F1F2F3;
    color: #424A51;
    font-weight: 400;  
    width: 100%;
}

.playerTableView.sortTable {
    margin-bottom: 0px;
}

.playerTableView thead {
    color: white;
    font-weight: 400;  
    background-color: #A1A1A1;
    text-transform: uppercase;
}

.playerTableView thead tr {
    height: 35px;
}

.playerTableView thead tr:nth-child(1) {    
    background-color: rgba(var(--mainColor), 1);
    font-weight: 600;  
}

.playerTableView tr td {
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    text-align: center;
    padding-left: 2px;
    padding-right: 2px;
}

/*.playerTableView tbody tr td:nth-last-child(1),
.playerTableView tbody tr td:nth-last-child(2) {
    padding-left: 5px;
    padding-right: 5px;
}*/

.playerTableView tr td:nth-child(0) {
    border-left: none;   
}

 /*.playerTableView tbody tr td:last-child {
    border-bottom: none; 
}*/

.playerTableView .box {
    background-color: rgba(var(--mainColor), 1);
}

.playerTableView .boxm {
    background-color: #F1F2F3;
}

.playerTableView .boxm:hover  {
    background-color: rgba(var(--mainColor), 0.7);
    cursor: pointer;
}

.playerTableView .boxm.active {
    background-color: rgba(var(--mainColor), 1);
}

.playerTableView .boxm.active:hover {
    background-color: rgba(var(--mainColor), 0.7);
    cursor: pointer;
}

.playerTableView tbody tr {
    height: 40px;
    border-bottom: 1px solid white;
}

.playerTableView .playerLink {
    text-decoration: none;
    text-align: left;
    word-wrap: normal;
    overflow-wrap: normal;
    /* white-space: nowrap;  */
    min-width: 155px;
}

.playerTableView .playerLink:hover {
    text-decoration: underline;
    color: rgba(var(--mainColor), 1);
    cursor: pointer;
}

.playerTableView tr.notApproved {
    opacity: .3;
    /* text-decoration: line-through; */
}

.playerTableView tr.highlighted {   
    background-color: #d1d1d1;
}

#playerTableView .positions {
    padding: 0px;   
    display: inline-block;
}

#playerTableView .positions .position {
    padding: 3px;
    border-radius: 3px;
    background-color: #A1A1A1;
    float: left;
    font-size: 12px;
    margin-top: 2px;
    margin-right: 4px;
    width: 28px;
    text-align: center;
    color: white;
}

#playerTableView .positions .position.active {    
    background-color: rgba(var(--mainColor), 1);
}

#playerTableView .playerPhoto {
    vertical-align: middle;
    width: 40px;
    /* background-color: rgba(var(--mainColor), 1); */
}

#playerTableView .playerImage {
    width: 38px;
    height: 38px;   
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: rgba(var(--mainColor), 1);
}

#playerTableView .options {
    width: 56px;
}

#playerTableView .options .button {
    width: 24px;
    height: 24px;
    background-color: rgba(var(--mainColor), 1);
    font-family: "Font Awesome 5 Pro";
    position: relative;
    font-size: 14px;
    font-weight: 300;
    padding: 0px;
    margin-left: 0px;
    display: inline-block !important;
    float: unset !important;
}

#playerTableView .options .button.statistics {
    font-size: 20px;
    font-weight: 800;
    color:#333;
    border-radius: 0px;
    background-color: transparent;
}

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

#playerTableView .options .button.injure {
    background-color: #A1A1A1;
}

#playerTableView .options .button.injure.red {
    background-color: rgba(255, 59, 48, 1);
}

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

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

#playerTableView .options .button.statistics:after {
    content: "\f643";
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    position: absolute;
}

#playerTableView .options .button.injure:after {
    content: "\f469";
    top: calc(50% - 6px);
    left: calc(50% - 7px);
    position: absolute;
}

.helpInfo {
    padding: 3px;
    border-radius: 3px;
    background-color: rgba(var(--mainColor), 1);
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
    margin-left: 8px;
    width: 15px;
    text-align: center;
    color: white;
    display: inline-block;
    cursor: pointer;
}

.helpHeader {
    font-size: 18px;
    text-transform: uppercase;
    background-color: rgba(var(--mainColor), 1);
    color: white;
    padding: 10px 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.helpDescription {
    font-size: 15px;
    color: #A1A1A1;
    padding: 5px 10px;
    margin-top: 0px;
    margin-bottom: 5px;
}

span.helpCapcha {
    font-size: 15px;
    font-weight: 800;
    color: rgba(var(--mainColor), 1);
    padding: 0px;
    padding-right: 10px;
}

#previousTeams {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 200px;
}

#content.floating.history {
    padding-top: 75px;
}

.createNewPlayer .height.imperial .label {
    max-width: 25px !important;
    margin-left: 5px !important;
    margin-top: 8px !important;
    display: block !important;
    box-sizing: border-box !important;
}

.createNewPlayer .height.imperial input,
.createNewPlayer .height.imperial .label {
    float: left !important;
    width: calc((100% - 60px) / 2);
    margin-bottom: 0px !important;
}

.createNewPlayer .height.metric .label {
    max-width: 25px !important;
    margin-left: 5px !important;
    margin-top: 8px !important;
    display: block !important;
    box-sizing: border-box !important;
}

.createNewPlayer .height.metric input,
.createNewPlayer .height.metric .label {
    float: left !important;
    width: calc(100% - 30px);
    margin-bottom: 0px !important;
}

.playerTable {
    width: 100%;
}

.playerTable .header td {
    background-color: rgba(var(--mainColor), 1);
    color: white;
    padding: 10px;
    text-transform: uppercase;
    border-left: 1px solid transparent;
    text-align: center;
}

.playerTable .header td.first {
    border-top-left-radius: 5px;
    border-left: none;
    text-align: left;
}

.playerTable .header td.last {
    border-top-right-radius: 5px;
}

.playerTable .subheader>td {
    background-color: #A1A4AE;
    color: white;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
    border-left: 1px solid transparent;
    text-align: center;
}

.playerTable .subheader .birthQuarter table {
    width: 100%;
    text-align: center;
}

.playerTable .player>td {
    background-color: white;
    box-sizing: border-box;
    text-align: center;
    border-top: 1px solid #D6DCDF;
    transition: all .3s;
    position: relative;
}

.playerTable .player.first>td {
    border-top: none;
}

.playerTable .player td.first {
    text-align: left;
    vertical-align: middle;
    height: 60px;
    padding-left: 60px;
    position: relative;
    /*cursor: pointer;*/
}

/*
.playerTable .player td.first:hover span {
    text-decoration: underline;
}
*/

.playerTable .player td .playerImage {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    background-size: cover;
    background-position: center center;
}

.playerTable .player td .remarks {
    width: 22px;
    height: 22px;
    background-color: rgba(var(--mainColor), .8);
    display: inline-block;
    border-radius: 3px;
    margin-bottom: -5px;
    margin-left: 5px;
    position: relative;
    cursor: pointer;
}

.playerTable .player td .remarks:hover {
    background-color: rgba(var(--mainColor), 1);
}

.playerTable .player td .remarks:before {
    content: "\e1d8";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 6px);
    font-size: 13px;
    color: white;
    font-weight: 300;
}

.playerTable .player td .position {
    padding: 4px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, .1);
    font-size: 14px;
    margin-right: 3px;
    width: 30px;
    text-align: center;
    display: inline-block;
}

.playerTable .player .birthQuarter {
    padding-left: 10px;
    padding-right: 10px;
}

.playerTable .player .birthQuarter table {
    width: 100%;
    text-align: center;
}

.playerTable .player .birthQuarter table td.active {
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
}


.playerTable .player .options .icon {
    width: 30px;
    height: 30px;
    background-color: #B7B7B7;
    border-radius: 3px;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    transition: all .3s;
    z-index: 2;
    cursor: default;
}

.playerTable .player .notAssigned {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.playerTable .player .notAssigned .button.assign {
    height: 34px;
    width: 34px;
    min-width: 34px;
    padding: 0px !important;
    margin: 0px;
    position: relative;
    box-sizing: border-box;
    position: absolute;
    top: 13px;
    right: 13px;
}

.playerTable .player .notAssigned .button.assign:after {
    content: "\f234";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: calc(50% - 9px);
    top: calc(50% - 8px);
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.playerTable .player.unassigned td {
    color: rgba(255, 255, 255, .7) !important;
    background-color: rgba(0, 0, 0, .2);
}

/*
.playerTable .player.unassigned td.options {
    opacity: 1;
    border-top: 1px solid rgba(214, 220, 223, .7);
}
*/

.playerTable .player .options .icon.injury {
    background-color: #1C8B08 !important;
}

.playerTable .player .options .icon.injury.injuryStatus1 {
    background-color: #FF0000 !important;
}

.playerTable .player .options .icon.injury.injuryStatus2 {
    background-color: #FF9D00 !important;
}

.playerTable .player .options .icon.injury.injuryStatus3 {
    background-color: #FFF500 !important;
}

.playerTable .player .options .icon.injury.injuryStatus3:after {
    color: #333 !important;
}

.playerTable .player .options .icon.injury.injuryStatus4 {
    background-color: #1C8B08 !important;
}

.playerTable .player .options .icon.injury:after {
    content: "\f469";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.playerTable .player .options .icon.playerStats {
    background-color: rgba(var(--mainColor), 1);
    cursor: pointer;
}

.playerTable .player .options .icon.playerStats:hover {
    background-color: rgba(var(--mainColor), .7);
}

.playerTable .player .options .icon.playerStats:after {
    content: "\f201";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.playerTable .player .options .icon.dots {
    background-color: transparent;
    color: rgba(var(--mainColor), 1);
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.playerTable .player .options .icon.dots:hover {
    color: rgba(var(--mainColor), .7);
}

.playerTable .player .options .icon.dots.active:hover {
    color: rgba(var(--mainColor), 1);
}

.playerTable .player .options .icon.dots.active {
    z-index: 1000;
}

.playerTable .player .options .icon.dots:after {
    content: "\f141";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 22px;
    font-weight: 400;
    top: calc(50% - 10px);
    left: calc(50% - 11px);
    transition: all .3s;
}

.playerTable .player .options .icon.dots .optionsPopup {
    position: absolute;
    z-index: 100001;
    background-color: white;
    border-radius: 7px;
    padding: 9px;
    padding-bottom: 3px;
    box-sizing: border-box;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.25);
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.25);
    display: none;
    width: 140px;
    left: calc(100% - 147px);
    top: 27px;
}

.playerTable .player .options .icon.dots.active .optionsPopup {
    display: block;
}

.playerTable .player .options .icon.dots.active .optionsPopup .option {
    font-size: 12px;
    min-width: 100px;
    margin-bottom: 6px;
    text-align: right;
    text-transform: uppercase;
    cursor: pointer;
    color: #333 !important;
    opacity: .7;
}

.playerTable .player .options .icon.dots.active .optionsPopup .option:hover {
    opacity: 1;
}

.playerTable .player .notApprovedOverlay {
    display: none;
}

.playerTable .player.notApproved .notApprovedOverlay {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 101;
    background-color: rgba(0, 0, 0, .7);
}

.playerTable .player.notApproved .notApprovedOverlay .button {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    transition: all .3s;
    padding: 0px;
    margin-top: 14px;
    border: none;
    box-sizing: border-box;
}

.playerTable .player.notApproved .notApprovedOverlay .button:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.playerTable .player.notApproved .icon {
    display: none;
}

.playerTable .player.notApproved .notApprovedOverlay .button.edit {
    background-color: rgba(var(--mainColor), 1);
}

.playerTable .player.notApproved .notApprovedOverlay .button.edit:after {
    content: "\f304";
    top: calc(50% - 8px);
    left: calc(50% - 8px);
}

.playerTable .player.notApproved .notApprovedOverlay .button.edit:hover {
    background-color: rgba(var(--mainColor), .7);
}

.playerTable .player.notApproved .notApprovedOverlay .button.checkmark {
    background-color: rgba(52, 199, 89, 1);
}

.playerTable .player.notApproved .notApprovedOverlay .button.checkmark:after {
    content: "\f00c";
    font-size: 19px;
    top: calc(50% - 10px);
    left: calc(50% - 8px);
}

.playerTable .player.notApproved .notApprovedOverlay .button.checkmark:hover {
    background-color: rgba(52, 199, 89, .7);
}

.playerTable .player.notApproved .notApprovedOverlay .button.delete {
    background-color: rgba(255, 59, 48, 1);
}

.playerTable .player.notApproved .notApprovedOverlay .button.delete:after {
    content: "\f2ed";
    top: calc(50% - 8px);
    left: calc(50% - 7px);
}

.playerTable .player.notApproved .notApprovedOverlay .button.delete:hover {
    background-color: rgba(255, 59, 48, .7);
}

.playerTable .selectTemplate {
    padding-left: 10px;
    padding-right: 10px;
}

.playerTable .selectTemplate .select {
    min-width: 150px;
}

.playerTable .button.comments {
    width: 33px;
    min-width: 33px;
    height: 33px;
    background-color: #B7B7B7;
    position: relative;
    cursor: pointer;
    transition: all .3s;
    display: inline-block;
    padding: 0px !important;
    margin: 0px !important;
    border: none;
    margin-top: 3px !important;
    margin-right: 10px !important;
}

.playerTable .button.comments:hover {
    opacity: .7;
}

.playerTable .button.comments.inactive {
    cursor: default;
    opacity: .3;
}

.playerTable .button.comments:before {
    content: "\e1d8";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: calc(50% - 6px);
    top: calc(50% - 9px);
    font-size: 17px;
    color: white;
    font-weight: 300;
}

.playerTable .playerPosition {
    text-transform: uppercase;
}

.playerTable .total {
    background-color: rgba(var(--mainColor), 1) !important;
    color: white;
}

.playerTable .input input {
    border: none;
    font-size: 16px;
    text-align: center;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
    color: inherit;
    width: 100%;
}

.playerTable .input input::-webkit-outer-spin-button,
.playerTable .input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.playerTable .playerTableFooter td {
    border-top: 1px solid #D6DCDF;
    padding: 10px;
}

/* Firefox */
.evaluationTemplateTable .row .cell input[type=number] {
    -moz-appearance: textfield;
}

.playerSearch {
    float: right;
    width: 180px;
    margin-right: 37px;
    margin-bottom: 0px !important;
    padding: 7px;
    margin-top: 3px !important;
}

.playerSearch .button {
    width: 27px !important;
    height: 27px !important;
    top: 3px !important;
    right: 3px !important;
}

.playerTable .order {
    cursor: pointer;
}

.playerTable .order:hover {
    color: rgba(255, 255, 255, .7);
}

.playerTable .order i {
    font-size: 12px;
    position: relative;
    top: -1px;
    left: 3px;
}

.playerTable .order i {
    display: inline-block;
    color: rgba(255, 255, 255, .4) !important;
}

.playerTable .order i.asc {
    color: rgba(255, 255, 255, 1) !important;
}

.playerTable .order i.desc {
    transform: rotate(180deg) scaleX(-1);
    top: -2px;
    color: rgba(255, 255, 255, 1) !important;
}

.playerTable .noPlayers {
    background-color: white;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

.playerTable .button {
    font-size: 12px;
    padding: 3px 10px;
    min-width: 52px;
}

.playerTable .button.outline {
    background-color: transparent;
    border: 1px solid rgba(var(--mainColor), 1);
    color: rgba(var(--mainColor), 1);
}

.playerTable .button.outline:hover {
    opacity: 7 !important;
}

.playerTeam.select,
.playerCamp.select {
    width: 190px;
    float: right;
    margin-top: 3px;
    margin-right: 10px;
}

.playerCamp.select select,
.playerTeam.select select {
    text-transform: uppercase;
}

.playerTeam.select select.disabled {
    color: rgba(0, 0, 0, .3);
}

.playerTeam.select.evaluations {
    margin-right: 37px;
}

.players .toggleBox {
    margin-bottom: 10px;
    margin-top: -10px;
}

.players .toggleBox .button.toggle {
    float: right;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-top: 0px;
    font-size: 14px;
    cursor: default;
}

.players .toggleBox .button.toggle:hover {
    background-color: rgba(var(--mainColor), 1);
}

.players .toggleBox .button.toggle.inactive {
    background-color: rgba(255, 255, 255, .8);
    color: #333;
    cursor: pointer;
}

.players .toggleBox .button.toggle.inactive:hover {
    background-color: rgba(255, 255, 255, .8);
}

.players .toggleBox .button.toggle.right {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.players .toggleBox .button.toggle.left {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.editEvaluationTemplates .select {
    width: 160px;
    float: right;
    margin-top: 10px;
}

#evaluationTemplateFrame {
    border-radius: 3px;
    overflow: hidden;
    background-color: #EFEFEF;
    margin-top: 5px;
    margin-bottom: 5px;
}

.evaluationTemplateTable {
    font-size: 14px;
}

.evaluationTemplateTable .header {
    background-color: #A1A4AE;
    color: white;
    text-transform: uppercase;
}

.evaluationTemplateTable .row.copyRow {
    display: none;
}

.evaluationTemplateTable .row .cell {
    border-right: 0px solid white !important;
    border-bottom: 0px solid white !important;
    padding: 10px 5px;
    text-align: center;
}

.evaluationTemplateTable .row.border .cell {
    border-top: 1px solid white !important;
    padding-top: 10px !important;
}

.evaluationTemplateTable .row .cell.name {
    min-width: 160px;
}

.evaluationTemplateTable .row .cell.left,
.evaluationTemplateTable .row .cell.left input {
    text-align: left;
}

.evaluationTemplateTable .row .cell.bold,
.evaluationTemplateTable .row .cell.bold input {
    font-weight: bold;
}

.evaluationTemplateTable .row .cell.color {
    background-color: rgba(var(--mainColor), 1);
    color: white;
}

.evaluationTemplateTable .row .cell input {
    border: none;
    font-size: 14px;
    text-align: center;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
    color: inherit;
    width: 100%;
}

.evaluationTemplateTable .row .cell input::-webkit-outer-spin-button,
.evaluationTemplateTable .row .cell input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.evaluationTemplateTable .row .cell input[type=number] {
    -moz-appearance: textfield;
}

.evaluationTemplateTable .row .cell input.position {
    text-transform: uppercase;
}

.editEvaluationTemplates .addTemplate {
    float: right;
    cursor: pointer;
    font-size: 18px;
    padding: 0px;
    width: 32px;
    height: 32px;
    position: relative;
    margin-bottom: 20px;
}

.editEvaluationTemplates .addTemplate:after {
    content: "\2b";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 24px;
    color: white;
    font-weight: 400;
    top: calc(50% - 16px);
    left: calc(50% - 8px);
}

.loggedInMobile {
    width: 14px;
    height: 14px;
    border-radius: 180px;
    display: inline-block;
}

.loggedInMobile.true {
    background-color: green;
}

.loggedInMobile.false {
    background-color: red;
}