.tox-statusbar__branding {
    display: none !important;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

textarea {
    resize: none;
}

body {
    font-family: "Lato", sans-serif;
    color: #333;
    padding: 0px;
    margin: 0px;
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
    background-position: center center;
}

body.noScroll {
    overflow: hidden !important;
}

#pageLoader {
    width: 74px;
    height: 74px;
    position: absolute;
    top: calc(50% - 37px);
    left: calc(50% - 37px);
    background-color: rgba(0, 0, 0, .9);
    z-index: 1000000000;
    padding: 35px;
    border-radius: 7px;
}

.pageLoader,
.pageLoader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.pageLoader {
    margin: 0px;
    font-size: 6px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    
}

@keyframes load8 {
    
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}

.onlyMobile {
    display: none !important;
}

#backgroundOverlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(var(--backgroundOverlayColor), .2);
    z-index: -1;
}

#loginFrame {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    box-sizing: border-box;
    display: table;
}

#loginFrame.createUser {
    max-width: 640px;
}

#loginFormFrame {
    display: table-cell;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    vertical-align: middle;
    text-align: center;
    color: white;
}

#loginFormFrame .logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

#loginFormFrame input {
    width: 100%;
    box-sizing: border-box;
    border: none;
}

#loginFormFrame input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(255, 255, 255, .4);
}

#loginFormFrame input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: red;
}

#loginFormFrame input::-ms-input-placeholder { /* Microsoft Edge */
  color: red;
}

#loginFormFrame input[type="text"],
#loginFormFrame input[type="password"] {
    margin: 0px;
    border: 0px;
    padding: 20px 10px 20px 10px;
    font-size: 18px;
    font-weight: 300;
    background-color: transparent;
    color: white;
    font-weight: 400;
}

#loginFormFrame input[type="password"] {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

#loginFormFrame .inputs {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 3px;
}

#loginFormFrame .inputs.selectFrame {
    padding-left: 0px;
    padding-right: 0px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0px;
}

.createUser #loginFormFrame .inputs {
    width: calc(50% - 5px);
    position: relative;
}

.createUser #loginFormFrame .inputs.noMargin {
    margin-top: 0px;
}

.createUser #loginFormFrame .inputs.left {
    float: left;
}

.createUser #loginFormFrame .inputs.right {
    float: right;
}

.createUser #loginFormFrame .inputs.date:after {
    content: "\f073";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 24px;
    color: white;
    font-weight: 300;
    top: calc(50% - 12px);
    right: 20px;
    cursor: pointer;
}

#loginFormFrame .forgotPasswordButton {
    font-size: 12px;
    text-align: left;
    margin-top: 5px;
    font-weight: 300;
    opacity: .7;
    cursor: pointer;
    transition: all .2s;
}

#loginFormFrame .forgotPasswordButton:hover {
    opacity: 1;
}

#loginFormFrame .loginButton {
    background-color: rgba(var(--mainColor), 1);
    padding: 18px;
    color: white;
    font-size: 18px;
    border-radius: 3px;
    margin-top: 10px;
    cursor: pointer;
    transition: all .2s;
}

#loginFormFrame .loginButton:hover {
    background-color: rgba(var(--mainColor), .8);
}

#loginFormFrame .newUserButton {
    background-color: rgba(255, 255, 255, 0);
    padding: 16px;
    color: white;
    font-size: 18px;
    border-radius: 3px;
    margin-top: 10px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid white;
    margin-top: 35px;
    opacity: .6;
    transition: all .2s;
}

#loginFormFrame .newUserButton:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, .2);
}

#loginFormFrame .back {
    width: auto;
    float: left;
    background-color: rgba(255, 255, 255, .1) !important;
    margin-top: 10px;
    position: relative;
}

#createUserForm .inputs {
    margin-top: 10px;
}

#createUserForm .inputs:first-child {
    margin-top: 0px;
}

#createUserForm .label {
    text-align: left;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
    opacity: .8;
}

#createUserForm .label:first-child {
    margin-top: 0px;
}

#createUserForm #createUserBirth {
    display: none;
}

.userCheckBox {
    float: left;
    margin-bottom: 15px;
}

.userCheckBox span {
    display: block;
    float: left;
    padding-top: 10px;
}

.userCheckBox .checkbox {
    float: left;
    margin-top: -2px;
    margin-right: 5px;
}

/*
#createUserForm #createUserClubsInClub {
    display: none;
}
*/

#contentFrame {
    width: 100%;
    box-sizing: border-box;
}

#contentFrame .contentWidth {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 0px;
    padding-right: 20px;
    position: relative;
}

#contentFrame #content.settings {
    background-color: rgba(var(--adminColor), 1);
    padding-top: 45px;
    padding-bottom: 128px;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.box .headline,
.widget .headline,
.settings .headline {
    font-size: 20px;
    text-transform: uppercase;
    color: rgba(var(--mainColor), 1);
    margin-bottom: 15px;
}

.header.box {
    position: relative;
    min-height: 67px;
}

.header .headline {
    float: left;
    padding-top: 7px;
    display: block;
}

.headline.noMargin {
    margin: 0px;
}

.widget .image {
    width: calc(100% + 30px);
    height: auto;
    margin-left: -15px;
    display: block;
    margin-bottom: 15px;
}

.widget .image.cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.widget .image.cover:after {
    content: "";
    display: block;
    padding-top: 45%;
}

.widget .content.border {
    border-top: 1px solid #D6DCDF;
    margin-top: 15px;
    padding-top: 15px;
}

.widget .content {
    display: none;
}

.widget .content.visible {
    display: block;
}

.widget .title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.widget .subheadline {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.popup .columnCell {
    float: left;
    width: calc((100% - 10px) / 2);
    margin-left: 10px;
    display: table;
    margin-bottom: 10px;
}

.popup .columns .columnCell:nth-child(odd) {
    margin-left: 0px;
}

.popup .columnCell .cell {
    display: table-cell;
    vertical-align: middle;
}


.search {
    background-color: #EFEFEF;
    color: #333;
    transition: all .3s;
    position: relative;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 3px;
}

.box .search {
    margin-bottom: 10px;
}

.search input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    color: #333;
    font-size: 14px;
    border: none;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
}

.search .button {
    background-color: rgba(var(--mainColor), 1);
    border: none;
    border-radius: 3px;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 29px !important;
    height: 29px;
    padding: 0px;
    margin: 0px !important;
}

.search .button:hover {
    background-color: rgba(var(--mainColor), .8);
}

.search .button:after {
    content: "\f002";
    font-family: "Font Awesome 5 Pro";
    font-size: 15px;
    font-weight: 300;
    color: white;
    position: absolute;
    left: 7px;
    top: 7px;
}

.oneInput {
    background-color: rgba(214, 220, 223, 1);
    color: #333;
    transition: all .3s;
    position: relative;
    width: 100%;
    border-radius: 3px;
}

.oneInput input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
    padding: 10px;
}

.oneInput input[type="button"] {
    background-color: rgba(var(--mainColor), 1);
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px;
    padding-top: 4px;
    cursor: pointer;
    transition: all .2s;
    position: absolute;
    top: 5px;
    right: 5px;
}

#content.floating {
    padding-top: 50px;
}

.playerRole #content.floating {
    padding-top: 0px;
}

#content.background .columns {
    background-color: white;
}

.column1_100 .column {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0px;
}

.column2_50 .column {
    width: calc((100% - 50px) / 2);
    float: left;
    box-sizing: border-box;
    margin-left: 50px;
}

.column3_33 .column {
    width: calc((100% - 100px) / 3);
    float: left;
    box-sizing: border-box;
    margin-left: 50px;
}

.column2_33_66 .column {
    float: left;
    box-sizing: border-box;
    margin-left: 50px;
}

.column2_33_66 .column {
    width: calc(((100% / 3) * 2) - 25px);
}

.column2_33_66 .column.first {
    width: calc((100% / 3) - 25px);
    margin-left: 0px;
}

.column.first {
    margin-left: 0px;
}

#content .column.grid .box {
    width: calc((100% - 30px) / 3);
    float: left;
    margin-left: 15px;
    margin-bottom: 15px;
}

#content.camps .column.grid .box,
#content.events .column.grid .box {
    width: calc((100% - 60px) / 3);
    float: left;
    margin-left: 30px;
    margin-bottom: 30px;
}

#content .column.grid .box:nth-child(3n+1) {
    margin-left: 0px;
}

#content.settings .box {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

#content.settings .box .info {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    opacity: .7;
}

#content.settings .box.noBorder {
    border: none;
}

#content.settings .footer {
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    box-sizing: border-box;
    background-color: rgba(var(--adminColor), 1);
    z-index: 101;
}

#content.settings .footer .innerFooter {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    background-color: rgba(255, 255, 255, .2);
    box-sizing: border-box;
}

#content.settings .saveSettings {
    float: right;
}

.table {
    display: table;
    width: 100%;
}

.table .row {
    display: table-row;
    width: 100%;
}

.table .row:hover .label {
    opacity: .7;
}

.table .row .cell {
    display: table-cell;
    vertical-align: middle;
    /*padding-bottom: 10px;*/
    border-bottom: 15px solid transparent;
}

.table .row .cell.options {
    text-align: right;
}

.table .row .cell.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: 5px;
    float: right;
}

.table .row .cell.options .button.edit:after {
    content: "\f304";
    top: calc(50% - 7px);
    left: calc(50% - 6px);
    position: absolute;
}

.table .row .cell.options .button.delete {
    background-color: #e94527;
}

.table .row .cell.options .button.delete:after {
    content: "\f2ed";
    top: calc(50% - 7px);
    left: calc(50% - 6px);
    position: absolute;
}

.table .row input {
    margin-bottom: 0px;
}

.form .label span {
    display: block;
    font-weight: 300;
    font-size: 12px;
    margin-top: 2px;
    opacity: .8;
}

.form input[type="text"],
.form input[type="password"] {
    width: 100%;
    border: none;
    box-sizing: border-box;
    font-size: 14px;
    padding: 8px 8px;
    background-color: rgba(255, 255, 255, .1);
    color: white;
    border-radius: 3px;
    transition: background .2s;
}

.form textarea {
    width: 100%;
    border: none;
    box-sizing: border-box;
    font-size: 14px;
    padding: 8px 8px;
    background-color: rgba(255, 255, 255, .1);
    color: white;
    border-radius: 3px;
    transition: background .2s;
    height: 120px;
}

.popup .columns2 .column,
#innerContent .columns2 .column {
    width: calc(50% - 5px);
    float: left;
    margin-right: 5px;
    margin-left: 0px !important;
}

.popup .columns2 .column.right,
#innerContent .columns2 .column.right {
    margin-right: 0px;
    margin-left: 5px !important;
}

.form input[type="text"],
.form input[type="password"] {
    background-color: #EFEFEF;
    color: #333;
    margin: 0px;
    /*margin-bottom: 10px;*/
}

.popup .form input {
    margin-bottom: 10px;
}

.form textarea {
    background-color: #EFEFEF;
    color: #232D35;
    margin: 0px;
    margin-bottom: 10px;
}

.form .select {
    margin-bottom: 7px;
    display: inline-block;
}

/*
.form input:hover,
.form input:focus {
    background-color: rgba(255, 255, 255, .2);
}
*/

.form input.disabled {
    background-color: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
}

.form .input {
    position: relative;
}

.form .input .errorField,
.inputs .errorField {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 7px;
    background-color: rgba(255, 255, 255, .9);
    font-size: 13px;
    color: #333;
    padding: 7px;
    padding-left: 30px;
    border-radius: 3px;
    transition: all .2s;
}

.form .input .errorField:before,
.inputs .errorField:before {
    content: "\f071";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    top: calc(50% - 8px);
    left: 7px;
    color: darkred;
}

.form .input .errorField:after,
.inputs .errorField:after {
    content: "";
    border-top: 12px solid rgba(255, 255, 255, .9);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    left: 7px;
    bottom: -12px;
}

.form .input.icon .icon {
    width: 33px;
    height: 33px;
    float: left;
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    position: relative;
}

.form .input.icon .icon:before {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 16px;
    font-weight: 300;
    color: white;
}

.form .input.icon .icon.date:before {
    content: "\f073";
    top: calc(50% - 8px);
    left: calc(50% - 7px);
}

.form .input.icon input,
.form .input.icon .select {
    width: calc(100% - 38px);
    float: right;
}

.form .editableCheckbox input[type=text] {
    width: calc(100% - 38px);
    float: left;
}

.form .editableCheckbox .checkbox {
    float: right;
    width: 33px;
    height: 33px;
}

.jscolor {
    background-color: #EFEFEF !important;
    color: #333 !important;
    margin: 0px !important;
    width: 100% !important;
    border: none !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    padding: 8px 8px !important;
    border-radius: 3px !important;
}

.popup .form .input .errorField {
    background-color: white;
    border: 1px solid #333;
    box-sizing: border-box;
}

.popup .form .input .errorField:after {
    content: "";
    border-top: 12px solid #333;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    left: 7px;
    bottom: -12px;
}

.popup .form {
    margin-bottom: 20px;
}

.form .clubImage {
    width: 70px;
    height: 70px;
    float: right;
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.form .clubImage.background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.form .clubImage .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .1);
    transition: all .3s;
    cursor: pointer;
}

.form .clubImage .overlay:hover {
    background-color: rgba(255, 255, 255, .3);
}

.form .clubImage .overlay.edit {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
}

.form .clubImage .overlay.edit:hover {
    background-color: rgba(0, 0, 0, .7);
}

.form .clubImage .overlay.edit div {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 3px;
    text-transform: uppercase;
    font-size: 8px;
    text-align: center;
    background-color: rgba(0, 0, 0, .6);
}

.form .clubImage .overlay.new:before {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 22px;
    top: calc(50% - 10px);
    left: calc(50% - 9px);
}

.form .fileUpload input[type="text"] {
    width: calc(((100% / 3) * 2) - 5px);
    float: left;
}

.form .fileUpload .button {
    width: calc(100% / 3);
    float: right;
    background-color: rgba(var(--mainColor), 1);
    color: white;
    transition: .3s;
    padding-top: 6px;
    padding-bottom: 7px;
}

.form .fileUpload .button:hover {
    opacity: .7;
}

.widget,
.floating .box {
    position: relative;
    color: #333;
}

.box.hide {
    display: none;
}

.widget.background,
.box.background {
    background-color: white;
    border-radius: 7px;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.widget .overlay {
    border-radius: 7px;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--mainColor), 1);
    cursor: move;
    z-index: 100;
}

.widget.dragging {
    z-index: 100000;
}

.widget.dragging .overlay {
    background-color: white;
}

.widget .delete {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    opacity: .8;
    cursor: pointer;
    transition: all .2s;
}

.widget .delete:before {
    content: "\f2ed";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 20px;
    font-weight: 300;
    color: white;
    top: calc(50% - 11px);
    left: calc(50% - 9px);
}

.widget .delete:hover {
    opacity: 1;
}

.box .actions {
    position: absolute;
    top: 10px;
    right: 10px;
}

.header .actions {
    top: 22px;
    right: 15px;
}

.box .actions .action {
    width: 22px;
    height: 22px;
    display: inline-block;
    cursor: pointer;
    transition: all .2s;
    color: rgba(var(--mainColor), 1) !important;
}

.box .actions .action.white {
    color: white !important;
}

.box .actions .options:before {
    content: "\f141";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 22px;
    font-weight: 400;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
    transition: all .3s;
}

.box .actions.active .options:before {
    opacity: .6;
}

.box .actions .options:hover {
    opacity: .7;
}

.box .actions .optionsPopup {
    position: absolute;
    top: 0px;
    left: calc(100% + 20px);
    z-index: 100001;
    background-color: white;
    border-radius: 7px;
    padding: 15px;
    padding-bottom: 5px;
    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;
}

.box .actions.active .optionsPopup,
.grid .box .actions.active .optionsPopup {
    display: block;
}

.grid .box .adminOptions {
    position: relative;
    height: 10px;
}

.channel .actions {
    right: 6px;
    top: 17px;
}

.grid .box .actions {
    position: absolute;
    top: -9px;
    right: 0px;
    width: 100%;
}

.grid .box .actions .action {
    width: 100%;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    transition: all .2s;
    color: rgba(var(--mainColor), 1) !important;
}

.grid .box .actions .options:before {
    content: "\f141";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 22px;
    font-weight: 400;
    top: 0px;
    left: unset;
    right: 0px;
    transition: all .3s;
}

.grid .box .current .actions .options:before {
    color: white;
}

.grid .box .actions .optionsPopup,
.singlePost .actions .optionsPopup,
.actions .optionsPopup.small,
.channel .actions .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;
    left: calc(100% - 115px);
    top: 20px;
}

.singlePost .actions .optionsPopup,
.actions .optionsPopup.small {
    top: 20px;
    left: calc(100% - 115px);
}

.singlePost .actions.gameSituation .optionsPopup {
    left: calc(100% - 155px);
}

#optionsPopupOverlay {
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 999;
}

#rightPaneOverlay {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1001;
}

.box .actions .optionsPopup .option {
    opacity: .7;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    cursor: pointer;
    min-width: 220px;
    margin-bottom: 10px;
    color: #333 !important;
}

.grid .box .actions .optionsPopup .option,
.singlePost .actions .optionsPopup .option,
.files table td.options .optionsPopup .option,
.actions .optionsPopup.small .option,
.channel .actions .optionsPopup .option {
    font-size: 12px;
    min-width: 100px;
    margin-bottom: 6px;
    text-align: right;
}

.box .actions .optionsPopup .option:hover {
    opacity: 1;
}

.widget .overlay .table {
    display: table;
    width: 100%;
    height: 100%;
}

.widget .overlay .table .cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 100%;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
}

.widget .overlay .table .cell span {
    display: block;
    opacity: .6;
    font-size: 12px;
    font-weight: 300;
    margin-top: 5px;
}

.arrowButton {
    width: 32px;
    height: 32px;
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    float: right;
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.arrowButton:hover {
    background-color: rgba(var(--mainColor), .8);
}

.arrowButton:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    font-weight: 300;
    top: calc(50% - 8px);
    left: calc(50% - 5px);
    color: white;
}

.arrowButton.left:before {
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    font-weight: 300;
    top: calc(50% - 8px);
    left: calc(50% - 5px);
    color: white;
}

.popupOverlay {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 100000;
}

.popup {
    max-width: 100vw;
    max-height: 100vh;
    background-color: white;
    z-index: 100001;
    position: fixed;
    padding: 15px;
    padding-top: 0px;
    box-sizing: border-box;
    color: #333;
    border-radius: 10px;
    overflow-y: auto;
}

.popup.fullHeight {
    border-radius: 0px;
    min-height: 100vh;
}

.popup .popupHeader,
#innerContent .popupHeader,
#mediaLibrary .header,
#sessionPlan .header {
    font-size: 18px;
    text-transform: uppercase;
    color: rgba(var(--mainColor), 1);
    padding-top: 12px;
    margin-bottom: 5px;
}

#innerContent .popupHeader {
    padding-top: 0px;
}

.popup .popupHeader.border,
#innerContent .popupHeader.border {
    border-bottom: 1px solid #D6DCDF;
    padding-bottom: 7px;
    margin-top: 20px;
}

.popup .popupSubHeader,
.form .label,
#innerContent .popupSubHeader {
    font-size: 15px;
    color: #333;
    margin-bottom: 7px;
    margin-top: 10px;
    text-transform: uppercase;
}

.popup .popupSubHeader.noMargin,
.form .label.noMargin,
#innerContent .popupSubHeader.noMargin {
    margin-top: 0px;
}

.popupHelpText {
    font-size: 12px;
    opacity: .6;
    margin-top: -6px;
    margin-bottom: 10px;
    display: block;
}

.form .label.white {
    color: white;
}

.form .label.first {
    margin-top: 0px;
}

.popup .close:after {
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: -2px;
    left: 3px;
    font-size: 22px;
    color: rgba(var(--mainColor), 1) !important;
    font-weight: 300;
}

.popup .close {
    position: absolute;
    top: 13px !important;
    right: 16px !important;
    width: 18px;
    height: 18px;
    transition: all .2s;
    cursor: pointer;
}

.popup .close:hover {
    opacity: .7;
}

.tableView {
    width: 100%;
    margin-bottom: 20px;
}

.tableView thead td {
    font-weight: 600;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-top: 11px;
    padding-bottom: 13px;
}

.tableView tbody tr:last-child td {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.tableView tbody td {
    padding-top: 10px;
    padding-bottom: 10px;
}

.tableView tbody td .button {
    display: inline-block;
    height: 34px;
    width: 34px;
    padding: 0px !important;
    margin-left: 5px;
    margin-right: 0px;
    position: relative;
    box-sizing: border-box;
}

.tableView tbody td .button:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.tableView tbody td .button.view:after {
    content: "\f007";
    top: calc(50% - 9px);
    left: calc(50% - 7px);
    font-size: 18px;
}

.tableView tbody td .button.edit:after {
    content: "\f304";
    top: calc(50% - 8px);
    left: calc(50% - 8px);
}

.tableView tbody td .button.password:after {
    content: "\f084";
    top: calc(50% - 9px);
    left: calc(50% - 9px);
}

.tableView tbody td .button.download:after {
    content: "\f34a";
    font-size: 19px;
    top: calc(50% - 9px);
    left: calc(50% - 7px);
}

.tableView tbody td .button.checkmark:after {
    content: "\f00c";
    font-size: 19px;
    top: calc(50% - 10px);
    left: calc(50% - 8px);
}

.tableView tbody td .button.delete {
    background-color: rgba(255, 59, 48, 1);
}

.tableView tbody td .button.delete:hover {
    background-color: rgba(255, 59, 48, .8);
}

.tableView tbody td .button.delete:after {
    content: "\f2ed";
    top: calc(50% - 8px);
    left: calc(50% - 7px);
}

.tableView tbody td .button.checkmark {
    background-color: rgba(52, 199, 89, 1);
}

.tableView tbody td .button.checkmark:hover {
    background-color: rgba(52, 199, 89, .8);
}

.tableView .right {
    text-align: right;
}

.tableView .options .button {
    display: block;
    float: right;
}

.tableView .teams {
    max-width: 60px;
}

.tableView td .team {
    background-color: rgba(var(--mainColor), 1);
    font-size: 12px;
    border-radius: 3px;
    padding: 5px;
    text-align: center;
    float: left;
    box-sizing: border-box;
    width: 100%;
    margin-top: 2px;
}

.tableView td .team.first {
    margin-top: 0px;
}

.tableView td.notApproved {
    opacity: .3;
}

.form .image {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
    position: relative;
    background-color: #EFEFEF;
    border-radius: 3px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.form .image .overlay {
    width: 200px;
    height: auto;
    text-transform: uppercase;
    font-size: 12px;
    padding: 15px;
    border-radius: 3px;
    position: absolute;
    top: calc(50% - 22px);
    left: calc(50% - 100px);
    color: white;
    background-color: rgba(0, 0, 0, .2);
    text-align: center;
    box-sizing: border-box;
    transition: all .3s;
    cursor: pointer;
    z-index: 10;
    display: block;
}

.form .image .overlay:hover {
    background-color: rgba(0, 0, 0, .4);
}

.form .image .overlay.edit {
    padding: 0px;
    background-color: transparent;
}

.form .image .overlay.edit:hover {
    background-color: transparent;
}

.form .image .overlay .edit {
    width: 150px;
    float: left;
    background-color: rgba(0, 0, 0, .2);
    padding: 15px;
    border-radius: 3px;
    transition: all .3s;
    box-sizing: border-box;
}

.form .image .overlay .edit:hover {
    background-color: rgba(0, 0, 0, .4);
}

.form .image .overlay .remove {
    width: 45px;
    height: 45px;
    float: left;
    background-color: rgba(0, 0, 0, .2);
    padding: 15px;
    border-radius: 3px;
    transition: all .3s;
    position: relative;
    box-sizing: border-box;
    margin-left: 5px;
}

.form .image .overlay .remove:after {
    content: "\f2ed";
    top: calc(50% - 8px);
    left: calc(50% - 7px);
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    color: white;
    font-weight: 300;
}

.form .image .overlay .remove:hover {
    background-color: rgba(0, 0, 0, .4);
}

.form .videoSelector {
    position: relative;
}

.form .videoSelector .button {
    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;
}

.form .videoSelector .button:hover {
    background-color: rgba(var(--mainColor), .7);
}

.header #postFilters {
    width: 33%;
    float: right;
    margin-right: 35px;
    min-width: 330px;
}

.header .actions .optionsPopup {
    position: absolute;
    top: 25px;
    left: calc(100% - 165px);
}

.header .actions .optionsPopup .option {
    min-width: 140px;
    text-align: right;
}

#postFilters .filter {
    width: calc((100% - 10px) / 3);
    float: left;
    margin-left: 5px !important;
    background-color: #D6DCDF;
    color: #333;
    padding-left: 0px;
    padding-right: 0px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.filters .filter {
    background-color: #D6DCDF;
    color: #333;
}

#postFilters.filters2 .filter {
    width: calc((100% - 5px) / 2);
}

#postFilters.filters3 .filter {
    width: calc((100% - 10px) / 3);
}

#postFilters.filters4 .filter {
    width: calc((100% - 10px) / 2);
    margin-bottom: 5px;
}

#postFilters .filter:hover,
.filters .filter:hover {
    background-color: #EFEFEF;
}

#postFilters .filter:first-child {
    margin-left: 0px !important;
}

#postFilters.filters4 .filter:nth-child(2n+1) {
    margin-left: 0px !important;
}

#postFilters.filters4 .filter:nth-child(3),
#postFilters.filters4 .filter:nth-child(4) {
    margin-bottom: 0px !important;
}

#postFilters .filter.selected,
.filters .filter.selected {
    color: white;
    background-color: rgba(var(--mainColor), 1);
    cursor: default;
}

#postFilters .filter.selected:hover,
.filters .filter.selected:hover {
    background-color: rgba(var(--mainColor), 1);
}

#postFilters .filter.icon {
    font-size: 11px;
    padding-left: 29px;
    box-sizing: border-box;
    text-align: left;
}

#postFilters .filter.large {
    font-size: 14px;
    padding-left: 33px;
}

#postFilters .filter.icon:before {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 16px;
    top: calc(50% - 8px);
    color: #333;
    left: 8px;
    font-weight: 300;
}

#postFilters .filter.large.icon:before {
    left: 10px;
    top: 10px;
}

#postFilters .filter.icon.mental:before {
    content: "\f808";
}

#postFilters .filter.icon.physical:before {
    content: "\f44b";
    font-size: 14px;
    top: calc(50% - 7px);
    left: 6px;
}

#postFilters .filter.large.icon.physical:before {
    left: 9px;
    top: 10px;
}

#postFilters .filter.icon.normal:before {
    content: "\f1e3";
}

#postFilters .filter.icon.normal.basketball:before {
    content: "\f434";
}

#postFilters .filter.selected:before {
    color: white;
}

#postFilters .filter.disabled:hover {
    background-color: #D6DCDF;
}

.categories {
    border-top: 1px solid #D6DCDF;
    margin-top: 15px;
    padding-top: 5px;
}

.categories.noBorder {
    border-top: none;
    padding-top: 0px;
    margin-top: 0px;
}

.topCategory {
    border-bottom: 1px solid #D6DCDF;
    padding-bottom: 10px;
}

.categories .category,
.widget .category,
.childFrame .post {
    width: 100%;
    background-color: rgba(var(--mainColor), 1);
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px;
    padding-right: 20px;
    cursor: pointer;
    transition: all .2s;
    background-size: auto 0px;
    background-repeat: no-repeat;
    background-position: center right 25px;
    margin: 0px;
    box-sizing: border-box;
    margin-top: 10px;
    position: relative;
}

.categories .category.parent:after,
.widget .category.parent:after {
    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;
}

.categories .categoryFrame.selected .category.parent:after,
.widget .categoryFrame.selected .category.parent:after {
    content: "\f078";
}

.categories .categoryFrame .child,
.widget .categoryFrame .child {
    background-color: #D6DCDF;
    color: #333;
    display: none;
}

.categories .categoryFrame .child:hover,
.widget .categoryFrame .child:hover {
    background-color: #EFEFEF;
}

.categories .categoryFrame .child:after,
.widget .categoryFrame .child:after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: rgba(var(--mainColor), 1);
    font-weight: 300;
    position: absolute;
    top: calc(50% - 9px);
    right: 10px;
    z-index: 99;
}

.categories .categoryFrame.selected .child,
.widget .categoryFrame.selected .child {
    display: block;
}

.categories .categoryFrame .child.selected,
.widget .categoryFrame .child.selected {
    background-color: #8B8F99;
    color: white;
}

.categories .categoryFrame .child.selected:after,
.widget .categoryFrame .child.selected:after {
    color: white;
    content: "\f078";
}

.categories .divider {
    border-top: 1px solid #D6DCDF;
    margin-top: 10px;
}

.categoryFrame .childFrame .posts {
    display: none;
}

.categoryFrame .childFrame.selected .posts {
    display: block;
}

.childFrame .post {
    background-color: #efefef;
    color: #333;
}

.childFrame .post.selected {
    background-color: #c4c4c4;
}

.categoryFrame.uncategorized {
    border-top: 1px solid #D6DCDF;
    margin-top: 10px;
}

.categoryFrame.uncategorized .category {
    background-color: #D6DCDF;
    color: #333;
}

.categoryFrame.uncategorized .category:after {
    color: inherit !important;
}

#editCategories .category,
#editCategories .post {
    width: 100%;
    background-color: rgba(var(--mainColor), 1);
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px;
    cursor: pointer;
    transition: all .2s;
    background-size: auto 0px;
    background-repeat: no-repeat;
    background-position: center right 25px;
    margin: 0px;
    box-sizing: border-box;
    position: relative;
}

#editCategories .category:hover {
    background-color: rgba(var(--mainColor), .8);
}

#editCategories .category.child {
    background-color: rgba(var(--mainColor), .7);
    width: calc(100% - 20px);
    margin-left: 20px;
    transition: background-color .3s;
}

#editCategories .category.child:hover {
    background-color: rgba(var(--mainColor), .5);
}

#editCategories .category.add {
    background-color: rgba(214, 220, 223, 1);
    color: #333;
    transition: all .3s;
    position: relative;
}

#editCategories .category.add:hover {
    background-color: rgba(214, 220, 223, .7);
}

#editCategories .category.files.add {
    background-color: rgba(214, 220, 223, 1);
    color: #333;
    transition: all .3s;
    position: relative;
    width: calc(100% - 20px);
    margin-left: 20px;
}

#editCategories .category .close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px) !important;
    right: 10px !important;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 3px;
}

#editCategories .category .close:after {
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: calc(50% - 7px);
    left: calc(50% - 5px);
    font-size: 15px;
    font-weight: 300;
    color: white !important;
}

#editCategories .category .close:hover,
#editCategories .category .edit:hover {
    background-color: rgba(255, 255, 255, .5);
}

#editCategories .category .edit {
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 35px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 3px;
}

#editCategories .category .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;
}

#editCategories .category.files .edit,
#editCategories .category.files .close {
    background-color: rgba(var(--mainColor), 1);
}

#editCategories .category.files .edit:hover,
#editCategories .category.files .close:hover {
    background-color: rgba(var(--mainColor), .7);
}

#editCategories .category.add input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    color: #333;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
}

#editCategories .category.add input[type="button"] {
    background-color: rgba(var(--mainColor), 1);
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px;
    padding-top: 4px;
    cursor: pointer;
    transition: all .2s;
    position: absolute;
    top: 5px;
    right: 5px;
}

#editCategories .category.add input[type="button"]:hover {
    background-color: rgba(var(--mainColor), .7);
}

#editCategories .hide {
    display: none;
}

#editCategories .droparea,
#editCategories .dropareaChild,
#editCategories .dropareaPost {
    position: relative;
}

#editCategories .dropareaChild {
    width: calc(100% - 20px);
    margin-left: 20px;
}

#editCategories .dropareaPost {
    width: calc(100% - 40px);
    margin-left: 40px;
}

#editCategories .dropareaPost.action {
    width: calc(100%);
    margin-left: 0px;
}

#editCategories .droparea .innerDroparea,
#editCategories .dropareaChild .innerDroparea,
#editCategories .dropareaPost .innerDroparea {
    width: 100%;
    height: 10px;
    transition: all .2s;
    border-radius: 3px;
}

#editCategories .droparea.hide,
#editCategories .dropareaChild.hide,
#editCategories .dropareaPost.hide {
    display: none;
}

#editCategories .childFrame .post {
    background-color: rgba(239, 239, 239, 1);
    color: #333;
    width: calc(100% - 40px);
    margin-left: 40px;
    transition: background-color .3s;
}

#editCategories .category.files {
    background-color: rgba(239, 239, 239, 1);
    color: #333;
    width: calc(100% - 20px);
    margin-left: 20px;
    transition: background-color .3s;
}

#editCategories .childFrame .post:hover,
#editCategories .category.files:hover {
    background-color: rgba(214, 214, 214, 1);
}

#editCategories .childFrame.fullWidth .post,
#editCategories .childFrame.fullWidth .dropareaPost {
    margin-left: 0px;
    width: 100%;
}

.drills .drill {
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.drills .drill .image {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #016837;
    position: relative;
}

.drills .drill .image.basketball {
    background-color: #3F4C58;
}

.drills .drill .image:after {
    content: "";
    display: block;
    padding-top: 68%;
}

.drills .drill .name {
    font-size: 14px;
    color: #333;
    padding-top: 10px;
    padding-right: 15px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.drills .drill .name span {
    font-size: 12px;
    opacity: .5;
}

.drills .drill .name:after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: calc(50% - 2px);
    right: 0px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(var(--mainColor), 1);
    transition: all .3s;
}

.drills .drill:hover .name:after {
    color: rgba(var(--mainColor), .7);
}

.addDrill .treeSelect {
    height: 143px;
    max-height: 143px;
}

.singlePost img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.singlePost .image {
    width: 100%;
    position: relative;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.singlePost.drill .image {
    width: 100%;
    position: relative;
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-color: #016837;
}

.singlePost.drill .image.basketball {
    background-color: #3F4C58;
}

.singlePost.drill .image.cover {
    background-size: cover;
}

.singlePost .image:after {
    content: "";
    display: block;
    padding-top: 68.4%;
}

.singlePost.event .button {
    margin-top: 15px;
}

/*
.video {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
*/

.video .imagePlaceholder {
    width: 100%;
    position: relative;
    background-color: rgba(var(--secondaryColor), 1);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.video .imagePlaceholder:before {
    content: "\f04b";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 32px;
    color: white;
    font-weight: 600;
    top: calc(50% - 16px);
    left: calc(50% - 14px);
}

.video .imagePlaceholder:after {
    content: "";
    display: block;
    padding-top: 68.4%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.singlePost .columns2 {
    margin-bottom: 10px;
}

.singlePost .info {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

.singlePost .info span {
    text-transform: uppercase;
    font-weight: 600;
}

.widgetSessionFrame {
    display: none;
    border-bottom: 1px solid #D6DCDF;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.widgetSessionFrame.visible {
    display: block;
}

#shareWithUsers,
#shareWithTeams,
#shareWithPlayers {
    display: none;
}

#shareWithUsers.active,
#shareWithTeams.active,
#shareWithPlayers.active {
    display: block;
}

#videoPopupOverlay,
#imagePopupOverlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1000010;
}

#videoPopupOverlay iframe,
#imagePopup {
    width: 1024px;
    max-width: calc(100% - 40px);
    position: absolute;
    z-index: 1000011;
}

#imagePopup {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

#imagePopup .imagePopupArrow {
    width: 40px;
    height: 40px;
    background-color: transparent;
    position: absolute;
    top: 0px;
    top: calc(50% - 20px);
    cursor: pointer;
}

#imagePopup .imagePopupArrow:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
}

#imagePopup .imagePopupArrow:hover:after {
    color: rgba(255, 255, 255, 1);
}

#imagePopup .imagePopupArrow.prev {
    left: 0px;
}

#imagePopup .imagePopupArrow.prev:after {
    content: "\f053";
    right: 0px;
}

#imagePopup .imagePopupArrow.next {
    right: 0px;
}

#imagePopup .imagePopupArrow.next:after {
    content: "\f054";
    left: 0px;
}

#imagePopup .imagePopupCounter {
    position: absolute;
    left: 0px;
    bottom: -30px;
    width: 100%;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.addMinutes {
    padding-top: 15px;
}

.coachTableFrame {
    width: 100%;
    padding: 10px;
    padding-top: 5px;
    background-color: #EFEFEF;
    box-sizing: border-box;
    margin-top: 5px;
}

.coachTable {
    width: 100%;
}

.coachTable tr.hidden {
    display: none;
}

.coachTable td {
    padding-top: 5px;
}

.coachTable thead td {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 10px;
}

.coachTable td .userSquare {
    background-color: rgba(var(--mainColor), 1);
    border-radius: 3px;
    font-size: 14px;
    transition: all .2s;
    color: white;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    width: 33px;
    margin-right: 5px;
}

.coachTable td .button {
    font-size: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
    border: none;
}

#notApproved {
    position: fixed;
    top: 85px;
    left: 0px;
    width: 100vw;
    height: calc(100vh - 85px);
    z-index: 1000;
    background-color: rgba(0, 0, 0, .8);
    display: table;
    padding: 20px;
    box-sizing: border-box;
}

#notApproved div {
    display: table-cell;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

#maintenance.table {
    width: 100vw;
    height: 100vh;
    display: table;
}

#maintenance.table .cell {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    color: white;
    display: table-cell;
}

#maintenance.table .cell img {
    width: 120px;
    margin-bottom: 50px;
}

#maintenance.table .cell .headline {
    font-size: 52px;
}

#maintenance.table .cell p {
    width: 80%;
    max-width: 920px;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 18px;
    opacity: .7;
}

.termsPopup {
    padding-top: 20px;
    padding: 20px;
}

.parentChoosePlayer .player {
    background-color: #D6DCDF;
    border-radius: 3px;
    padding: 15px 10px;
    position: relative;
    margin-top: 5px;
}

.parentChoosePlayer .player .button {
    position: absolute;
    top: calc(50% - 19px);
    right: 6px;
}

.parentChoosePlayer .continue {
    width: 100%;
    margin-top: 10px;
}

@media (max-width:1000px) {
    
    html.noScroll,
    body.noScroll {
        overflow: hidden;
        position: relative;
        height: 100%;
    }
    
    .onlyMobile {
        display: block !important;
    }
    
    .onlyDesktop {
        display: none;
    }
    
    #content.floating {
        padding-top: 80px;
    }
    
    .column2_50 .column {
        width: 100%;
        float: unset;
        box-sizing: border-box;
        margin-left: 0px;
    }
    
    .column3_33 .column {
        width: 100%;
        float: unset;
        box-sizing: border-box;
        margin-left: 0px;
    }
    
    .column2_33_66 .column {
        float: unset;
        box-sizing: border-box;
        margin-left: 0px;
    }
    
    .column2_33_66 .column {
        width: 100%;
    }
    
    .column2_33_66 .column.first {
        width: 100%;
        margin-left: 0px;
    }
    
    .header .headline {
        float: none;
        padding-top: 7px;
        display: block;
        margin-bottom: 15px;
    }
    
    #postFilters .filter {
        width: 100%;
        float: none;
        margin-left: 0px !important;
        background-color: #D6DCDF;
        color: #333;
        padding-right: 0px;
        position: relative;
        text-align: center;
        margin-top: 5px;
    }
    
    #postFilters .filter.icon {
        padding-left: 40px !important;
    }
    
    #postFilters.filters2 .filter {
        width: 100%;
    }
    
    #postFilters.filters3 .filter {
        width: 100%;
    }
    
    #postFilters.filters4 .filter {
        width: 100%;
        margin-bottom: 5px;
    }
    
    #postFilters.filters3.mobile .filter {
        width: calc((100% - 10px) / 3);
        margin-left: 5px !important;
        float: left;
    }
    
    #postFilters.filters3.mobile .filter:first-child {
        margin-left: 0px !important;
    }
    
    .gameSituations .filters {
        width: 75%;
    }
    
    .header #postFilters {
        width: 100%;
        float: none;
        margin-right: 0px;
        min-width: 100%;
    }
    
    #content .column.grid .box {
        width: 100%;
        float: none;
        margin-bottom: 15px;
        margin-left: 0px;
    }
    
    .button {
        width: 100%;
        box-sizing: border-box;
    }
    
    .files table td.icon {
        width: 30px;
        vertical-align: top;
    }
    
    .files table td.icon i {
        font-size: 24px !important;
    }
    
    #rightPane {
        width: 320px;
        max-width: 100%;
        padding: 20px 20px !important;
        z-index: 1000;
        height: 100vh;
    }
    
    #channels.channel .innerChannel {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    #channels.channel {
        height: calc(100% - 64px) !important;
        box-sizing: border-box;
        position: absolute;
        top: 49px !important;
        left: 0px;
        width: 100%;
    }
    
    .createNewChannel {
        text-transform: uppercase;
        display: table;
        font-size: 14px;
        width: 100%;
        cursor: pointer;
        position: absolute;
        left: 0px;
        padding-top: 20px !important;
        padding-left: 20px !important;
    }
    
    .back .icon {
        position: absolute;
        top: 20px !important;
        right: 10px !important;
        cursor: pointer;
    }
    
    .principle .table {
        display: block;
    }
    
    .principle .table .cell {
        display: block;
        width: 100%;
        margin: 0px;
        padding: 0px;
    }
    
    .principle .table .cell.videoCell {
        float: right;
        width: calc(50% - 5px);
        margin-left: 5px;
    }
    
    .principle .table .cell.imageCell {
        float: left;
        width: calc(50% - 5px);
        margin-right: 5px;
    }
    
    .actions {
        display: none;
    }
    
    .actions.showMobile {
        display: block;
    }
    
    .box .actions .optionsPopup {
        left: unset;
        top: 22px;
        right: 0px;
    }
    
    .box .actions .optionsPopup .option {
        min-width: 180px;
    }
    
    .header.philosophy {
        display: none;
    }
    
    .sessions .drill.selected .name {
        background-color: #D6DCDF;
        color: #333;
    }
    
    .sessions .drill.selected .name:hover {
        background-color: #A1A4AE;
        color: white;
    }
    
    .sessions .drill.selectedMobile .name {
        background-color: #A1A4AE;
        color: white;
    }
    
    #gotoTop {
        position: fixed;
        right: 10px;
        bottom: 10px;
        border-radius: 5px;
        background-color: rgba(var(--mainColor), 1);
        color: white;
        padding: 7px 15px;
        -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3); 
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.3);
    }
    
    #pageLoader {
        width: 74px;
        height: 74px;
        position: absolute;
        top: calc(50% - 70px);
        left: calc(50% - 70px);
        background-color: rgba(0, 0, 0, .9);
        z-index: 1000000000;
        padding: 35px;
        border-radius: 7px;
    }
    
    #yearMatrix table {
        width: 950px;
    }
    
    .matrixBox {
        max-width: 100%;
        overflow-x: auto;
    }
    
    #notApproved {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    #notApproved div {
        font-size: 20px;
        line-height: 26px;
    }
}