﻿body {
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    font-family:'Roboto', Tahoma;
    transition: background-color .5s;
    position: relative;
    /*background: rgb(68, 84, 108);*/
    /*background-image: url('../image/assets/plexus-bg.gif');
    background-size:cover;*/
    /*background: #E0EAFC;*/ /* fallback for old browsers */
    /*background: -webkit-linear-gradient(to right, #CFDEF3, #E0EAFC);*/ /* Chrome 10-25, Safari 5.1-6 */
    /*background: linear-gradient(to right, #CFDEF3, #E0EAFC);*/ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.body-background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    /*background: rgb(68, 84, 108);*/
    background: black;
}

#user-score-header {
    transition: all ease-in-out 2s;
    transform: scale(1);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .5px;
}

    #user-score-header.changing {
        transform: scale(0);
        color: gray;
        opacity: 0;
    }

#user-score-header {
}

.avatarTable {
    float: left;
    margin-bottom: 0;
    width: 180px !important;
    table-layout: fixed;
    border-right: 2px solid rgba(230,230,230,.9);
}

    .avatarTable td {
        padding: 0;
        vertical-align: middle !important;
        text-align: left;
        font-size: 14px;
        font-weight: bold;
    }

    .avatarTable .image {
        width: 60px !important;
    }

    .avatarTable .score {
        width: 120px;
        font-size: 14px;
        cursor: pointer;
        text-align: left;
        padding-left: 8px;
        font-weight: bolder;
        color: black;
    }

#alertContainer {
    width: 100%;
    display: block !important;
    position: fixed;
    top: 70px;
    z-index: 2000;
}

/*Loading Splash*/
#loading-page {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(68, 84, 108);
    z-index: 6;
    transition: .5s ease-in-out all;
}

.middle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.bar {
    width: 10px;
    height: 70px;
    background: #fff;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    /*   box-shadow:5px 10px 20px inset rgba(255,23,25.2); */
    animation: loader 1.5s linear infinite;
}

.bar1 {
    animation-delay: 0.1s;
}

.bar2 {
    animation-delay: 0.2s;
}

.bar3 {
    animation-delay: 0.3s;
}

.bar4 {
    animation-delay: 0.4s;
}

.bar5 {
    animation-delay: 0.5s;
}

.bar6 {
    animation-delay: 0.6s;
}

.bar7 {
    animation-delay: 0.7s;
}

.bar8 {
    animation-delay: 0.8s;
}

@keyframes loader {
    0% {
        transform: scaleY(0.1);
        background:;
    }

    50% {
        transform: scaleY(1);
        background: rgb(232,181,37);
    }

    100% {
        transform: scaleY(0.1);
        background: transparent;
    }
}



#confirmActionModal {
    z-index: 5000;
}
/*Alert*/
.page-alert {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

#alert-container {
    position: fixed;
    top: 70px;
    left: 50%;
    z-index: 2;
    width: 90%;
    transform: translateX(-50%);
    text-align: center;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.site-gold {
    color: #e8b525 !important
}

#creator-full-logo {
    height: 50px;
    margin: 2px;
    border-radius: 8px;
    background: rgba(0,0,0,.8);
    padding: 8px !important;
    background-image: url("../image/assets/creatorLogo.png");
    -webkit-filter: hue-rotate(20deg);
    filter: hue-rotate(20deg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.user-not-signed-in {
    font-size: 50px;
    line-height: 70px;
    font-weight: bolder;
    padding: 50px 20px;
    text-align: center;
    color: rgba(0,0,0,.8);
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    color: black;
    overflow-x: hidden;
    transition: 0.5s;
    background: white;
    opacity: 0;
}

    .sidenav.open {
        opacity: 1;
        width: 360px;
        border-left: 8px solid rgba(232,181,37,.8) !important;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }

#close-side-nav {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 24px;
    opacity: .4;
}

    #close-side-nav:hover {
        opacity: 1;
    }

.sideNavContent {
    width: 100%;
}

    .sideNavContent a {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        border: 1px solid rgba(0,0,0,.1);
        transition: .5s ease-in-out all;
    }

        .sideNavContent a:hover {
            background: rgba(232,181,37,.4);
            border-bottom: 8px solid rgba(232,181,37.4);
            margin-bottom: -8px;
        }

        .sideNavContent a i {
            margin-right: 8px;
            font-size: 14px;
        }

.sidenav-title {
    background: rgba(200,200,200,.3);
    text-align: center !important;
    padding: 10px !important;
    font-weight: bold;
    font-size: 14px;
    color: rgb(68, 84, 108);
}

.sidenav-admin-coach {
    display: grid;
    grid-template-columns: 50% 50%;
}

.sidenav-coach, .sidenav-admin {
    display: block;
    text-align: center !important;
    width: 100%;
}

.sidenav .login-buttons {
    border-top: 2px solid rgba(0,0,0,.4);
}

.login-buttons a {
    border-bottom: 2px solid rgba(0,0,0,.1) !important;
    padding: 10px !important;
    text-align: left !important;
}

.sidenav .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.sidenav-messages {
    width: 100%;
    display: block;
    padding: 20px !important;
    background: white !important;
    color: rgba(0,0,0,.8) !important;
    opacity: 1 !important;
    cursor: pointer;
    font-weight: bold;
}

    .sidenav-messages:hover {
        background: rgba(0,0,0,.1) !important;
        border-bottom: 8px solid blue !important;
        color: black !important;
    }

.sidenav-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    text-align: center;
}

    .sidenav-buttons a {
        cursor: pointer;
    }

.sidenav .bottom a {
    padding: 8px;
    font-size: 14px;
    width: 100%;
    display: block;
    border: none;
    text-align: center;
    color: rgb(100,100,100);
}

    .sidenav .bottom a i {
        /*margin-right:0;
    margin-right:12px;
    font-size:14px;*/
    }

    .sidenav .bottom a:hover {
        margin-bottom: 0;
    }

.pageButtons h5 {
    text-align: center;
    padding: 10px !important;
    font-size: 14px;
    opacity: .5;
    font-weight: bold;
}

.pageButtons {
    background: rgba(220,220,220,.1);
    white-space: nowrap;
    border-top: 2px solid rgba(100,100,100,.2);
}

    .pageButtons .col-sm-6 {
        padding: 0;
    }

    .pageButtons .row {
        margin: 0;
    }

    .pageButtons div {
    }

    .pageButtons a {
        text-align: center;
        padding: 4px !important;
        border-radius: 4px;
        font-size: 10px !important;
        font-weight: bold;
        cursor: pointer;
        margin: 8px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    }

        .pageButtons a:hover {
            background: none;
            border: none;
            background: rgba(200,200,200,.3);
        }

    .pageButtons i {
        margin-top: 4px;
        margin-bottom: 2px;
        font-size: 24px !important;
        text-align: center;
        width: 100%;
        display: block;
    }

.sidenav {
    display: flex;
}

    .sidenav a {
        padding: 12px;
        text-decoration: none;
        font-size: 14px;
        color: black;
        opacity: .6;
        transition: 0.3s;
    }

        .sidenav a:hover {
            opacity: 1;
            font-weight: bold;
        }

        .sidenav a:hover {
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 24px;
        margin-left: 10px;
    }



#main {
    position: relative;
    transition: margin-left .5s;
    width: 100%;
    overflow: visible;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
        white-space: nowrap;
    }

        .sidenav a {
            font-size: 18px;
            display: inline-block;
            width: 50%;
        }
}

@media screen and (max-width:600px) {
    .sidenav.open {
        width: 100vw;
        z-index: 300;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,.95);
    z-index: 7;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.avatarImage {
    box-shadow: rgba(3, 102, 214, 0.1) 0px 0px 0px 3px;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    margin-left: 8px;
    z-index: 6;
    background-position: center;
    background-size: cover;
}

.sidenav .avatarImage {
    margin-top: 12px;
    margin-bottom: 8px;
    height: 70px;
    width: 70px;
}

header table {
    width: 100%;
    padding: 0 12px;
    max-width: 1400px;
    margin: 0 auto;
}

    header table tr td {
        padding: 8px;
        width: 33.3%;
        vertical-align: bottom !important;
    }

        header table tr td:last-child {
            text-align: right;
            color: gray;
            vertical-align: middle;
            padding-right: 12px;
        }

.nav-logo {
    height: 48px;
}

.sidenav .userSubtext {
}

.sidenavUserInfo {
    border-bottom: 2px solid rgba(100,100,100,.2);
}

    .sidenavUserInfo table td:first-child {
        max-width: 40px;
    }

.sidenav img {
    margin: 0 auto;
    display: block;
}

.sidenav .fullName {
    font-size: 14px;
    margin-bottom: 4px;
    color: gray;
}

.sidenav .level {
    font-size: 14px;
    line-height: 12px;
}

.level {
    font-weight: bold;
}

.pageContent {
    margin-top: 12px;
    position: relative;
}

.actionButton {
    position: absolute;
    bottom: 8px;
    right: 8px;
    text-align: center;
    display: none;
}

#content {
    width: 100%;
    margin: 0 auto;
    padding-top: 60px;
}

.trackerBackground {
    overflow: hidden;
    border-radius: 12px;
    background-image: url(trackerColumnBg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    center;
    filter: contrast(.8);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    z-index: -2;
}

.backgroundCover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: .2;
    border-radius: 8px;
}

    .backgroundCover.center {
        background: #ffc107;
    }

    .backgroundCover.powerUp {
        background: #ff4f70;
    }










/*CIRCLE BACKGROUND*/
.ripple-background {
}

.circle {
    z-index: -1;
    position: fixed;
    border-radius: 50%;
    /*background: #3E92CC;*/
    background: white;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
    border: 2px solid rgba(0,0,0,.1);
}

.tiny {
    width: 200px;
    height: 200px;
    left: -100px;
    left: 50%;
    margin-left: -100px;
    bottom: -100px;
}

.medCircle {
    width: 400px;
    height: 400px;
    left: -200px;
    left: 50%;
    margin-left: -200px;
    bottom: -200px;
}

.large {
    width: 600px;
    height: 600px;
    left: -300px;
    left: 50%;
    margin-left: -300px;
    bottom: -300px;
}

.xlarge {
    width: 800px;
    height: 800px;
    left: -400px;
    left: 50%;
    margin-left: -400px;
    bottom: -400px;
}

.xxlarge {
    width: 1000px;
    height: 1000px;
    left: -500px;
    left: 50%;
    margin-left: -500px;
    bottom: -500px;
}

.shade1 {
    opacity: 0.2;
}

.shade2 {
    opacity: 0.5;
}

.shade3 {
    opacity: 0.7;
}

.shade4 {
    opacity: 0.8;
}

.shade5 {
    opacity: 1;
}

@keyframes ripple {
    0% {
        transform: scale(.7);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(.7);
    }
}
/*CIRCLE BACKGROUND*/





#particles-js {
    width: 100%;
    height: 100%;
    background-color: rgb(68, 84, 108);
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


.pointer {
    cursor: pointer !important;
}


/*Journal*/

#journalModal .modal-content {
    background: rgba(0,0,0,.0) !important;
    border: none;
}

#journalModalBody {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    background: white;
    border-radius: 4px;
    padding: 20px !important;
}

#newJournalForm {
       
}

    #newJournalForm label {
        margin-top:8px;
        font-size: 14px;
        font-weight: bold;
        color: black;

    }



#createFormTitle {
    font-size: 28px;
    text-align: start !important;
    padding: 0;
    margin: 0;
    margin-bottom: 8px;
    
    font-weight: bold;
    /*    border-bottom: 2px solid rgba(0,0,0,.2);
    background: rgba(220,220,220,.2);*/
}

.journalFormDate {
    text-align: center !important;
    padding-right: 8px !important;
    font-weight: bold;
    font-size: 14px;
    display: none;
}

/*#newJournalEntry, #newJournalForm input[type="text"] {
    font-size: 16px !important;
    color: rgba(0,0,0,.5);
    border: none;
    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    resize: none;*/ /*remove the resize handle on the bottom right*/
    /*padding: 8px ;
    border-bottom: 2px solid rgba(0,0,0,.2);
    border-radius: inherit;
}*/

.journalButtonContainer {
    padding: 8px !important;
    background: rgba(220,220,220,.2);
}

.journalButtonContainer .btn {
    margin-block:2px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }




.scoreTable {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

    .scoreTable td, .scoreTable th {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .scoreTable tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .scoreTable tr:hover {
        background-color: #ddd;
    }

    .scoreTable th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: #04AA6D;
        color: white;
    }

        .scoreTable td:first-child, .scoreTable th:first-child {
            width: 75%;
        }

        .scoreTable td:last-child, .scoreTable th:last-child {
            text-align: end;
        }


#scoreModalBody {
    background: rgba(236, 239, 241,.8) !important;
    box-sizing: border-box;
    border-radius: 8px;
}

/*#scoring-title {
    font-size: 34px !important;
    margin: 0;
    letter-spacing: .5px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 8px;
    color: white;
    background: rgb(110, 118, 141);
    padding: 6px;
}
*/
.simpleScoreTable {
    word-break: break-all;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    width: 100% !important;
    table-layout: fixed;
    color: #6e768d;
    font-size: 12px;
    border-radius: 4px;
    background: white !important;
    vertical-align: middle;
    overflow: hidden;
    margin: 0 !important;
    margin-bottom: 8px !important;
}

    .simpleScoreTable tr {
        max-width: 100%;
        box-sizing: border-box;
        padding: 8px;
    }

    .simpleScoreTable .section-title {
        font-size: 18px !important;
        letter-spacing: .5px;
        text-align: center;
        margin: 10px;
        
        color:rgba(230,230,230,1);
    }


    .simpleScoreTable .section-points span {
        font-size: 12px;
        margin-left: -3px;
    }

.total-score {
    font-size: 18px !important;
}

.scoring-list {
    margin: 0 auto;
    color: rgb(113,119,135) !important;
    font-size: 11px;
    padding: 20px !important;
    table-layout: fixed;
    margin: 10px 0 !important;
    vertical-align: middle;
}

    .scoring-list td:first-child {
        background: white !important;
    }

.score-row {
    line-height: 20px;
    background: white;
    color: gray;
}

.simpleScoreTable tbody {
    overflow: hidden;
}

.simpleScoreTable td:first-child {
    
    margin: 0;
    padding: 0;
    color: rgb(110, 118, 141);
    background: rgb(110, 118, 141);
    color: white;
}

.section-points {
    font-weight: 700 !important;
    font-size: 24px !important;
    margin-top: -8px;
    display:none;
}

.section-complete {
    background: #00E676 !important;
}

    .section-complete .section-title {
        color: rgb(110, 118, 141) !important;
        font-weight: bold;
       
    }

    .section-title {

    }

#score-partial-total-score {
    font-size: 32px !important;
    font-weight: bolder;
    text-align: center;
    color: rgb(110, 118, 141) !important;
    font-family: 'Oswald', sans-serif;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 4px solid rgba(110, 118, 141,.2) !important;
}

#scoring-title {
    color: rgb(110, 118, 141) !important;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 4px solid rgba(110, 118, 141,.2) !important;
}


#scoring-title, .total-score {
    font-size: 32px;
    padding: 2px;
    /*background-color: rgb(116,206,106);*/
    background-color: #f0f4f7 !important;
    color: rgb(110,118,141);
    text-align: center;
    margin: 0;
    margin-bottom: 8px;
}

.total-score {
    font-size: 28px !important;
    font-weight:bold;

}

.score-section .score-title {
    font-weight:bold !important;
}

.scoring-list .points {
    color: white;
    padding: 2px 4px;
    border-radius: 8px;
    margin: 4px !important;
}

.score-row.complete .points {
    background: #00E676 !important;
    color: rgb(110, 118, 141) !important;

}

.score-row.muted .points {
    background-color: gray !important;
    opacity: .2;
}

.score-row.incomplete .points {
    background-color: red !important;
    opacity: .2;
}

.score-row.strike {
    text-decoration: line-through;
    opacity: .4;
}

    .score-row.strike .points {
        text-decoration: none;
        background-color: gray !important;
    }

    .section-scoring td {
        font-size:24px !important;
        text-align:center;
        background-color:white!important;
        font-weight:bold;
        color: rgb(110,118,141) !important;
    }

.total-score div {
    font-size: 14px;
    margin-top: -8px;
    letter-spacing: 1.5px;
}

.powerUpScoreItems {
    width: 100%;
    table-layout:auto;
    padding: 0;
    margin: 0;
    color: gray;
}

.simpleScoreTable .powerUpScoreItems td:first-child {
    width: auto;
    white-space:nowrap;
}

.powerUpScoreItems td:last-child {
    white-space:normal !important;
    word-break:normal;
}

#momentumTableBorderTop {
    margin-bottom: 8px;
    border-top: 4px solid rgba(110, 118, 141,.2) !important;
}

#user-score-header-momentum {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .5px;
    color: #82dc85;
}


#main-notification-icon {
    position: absolute;
    font-size: 14px;
    line-height: 16px;
    bottom: -6px;
    background: white;
    color: deepskyblue !important;
    border-radius: 100%;
    right: -2px;
    position: absolute !important;
}
.notifications-alert-dot {
    margin-right: 4px;
    font-size: 8px;
    transform: translateY(-2px);
}


.site-logo-container {
    position: relative;
}