* {
    font-family: 'Public Sans', sans-serif;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: none;
    scrollbar-color: #3d60eb #f7f7f7;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

*::-webkit-scrollbar-thumb {
    background-color: #3d60eb;
    border-radius: 10px;
    border: 3px solid #f7f7f7;
}

body {
    margin: 0px;
    background-color: #f7f7f7;
}

#btn {
    position: fixed;
    z-index: 10000;
    font-size: 38px;
    top: 9px;
    left: 260px;
    color: #2e5980;
    background: #9abad6;
    border-radius: 20%;
    padding: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    transition: all 0.5s ease;
    cursor: pointer;
}

#btn.nav-off {
    left: 10px;
}
#btn:hover {
    opacity: .7;
    border-color: #9abad6;
}

.navbar {
    float: left;
    background-color: #9abad6;
    width: 320px;
    height: 100%;
    position: fixed;
    transition: all 0.5s ease;
    z-index: 12;
}

.navbar.nav-off {
    width: 0%;
}

.nav-elements {
    opacity: 1;
    white-space: nowrap;
    pointer-events: auto;
    transition: all 0.5s ease;
    transition-delay: 300ms;
    z-index: 9;
    position: relative;
    height: 100%;
}

.nav-elements.nav-off {
    opacity: 0;
    pointer-events: none;
    transition: all 0.15s ease;
}

.logo-area {
    background: #2e5980;
    color: #73c9c1;
    display: flex;
    align-items: center;
    height: 60px;
    position: relative;
    z-index: 1000;
}

.title {
    font-size: 30px;
}

i.title {
    padding-left: 20px;
    padding-right: 5px;
}

.links {
    margin: 5% 13%;
    font-size: 2rem;
}

.links a {
    padding: 20px 20px;
    text-decoration: none;
    display: block;
    color: #2e5980;
    font-size: 22px;
    font-weight: 500;
}

.links a:hover {
    font-size: 27px;
    font-weight: 700;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #0087ca;
}
.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0087ca;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    
}
.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-content {
    float: right;
    width: calc(100% - 320px);
    transition: all 0.5s ease;
    z-index: 9;
    background-color: #f7f7f7;
}

/* .main-content.nav-off {
    
} */

@keyframes float_fade {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-box {
    margin: 0%;
    font-size: 16px;
    border-width: 1px;
    border-color: #CCCCCC;
    background-color: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-radius: 16px;
    box-shadow: 0px 0px 9px rgba(66,66,66,.45);
    text-shadow: 0px 0px 0px rgba(66,66,66,.75);
    position: relative;
    animation: 1s ease-out 0s 1 float_fade;
}

.top-content {
    width: 96%;
    height: 708px;
    margin: 2%;
    margin-bottom: 0px;
    margin-top: 75px;
    position: relative;
    z-index: 5;
}

.left {
    float: left;
    width: 28%;
    position: relative;
    z-index: 10;
}

.left .content-box {
    height: 332px;
    margin-bottom: 20px;
}

.mid {
    float: left;
    width: 40%;
    margin-left: 2%;
    margin-right: 2%;
    position: relative;
    z-index: 10;
}

.mid .content-box {
    height: 686px;
    margin-bottom: 20px;
}

.right {
    float: left;
    width: 28%;
    position: relative;
    z-index: 10;
}

.right .content-box {
    height: 332px;
    margin-bottom: 20px;
}

.single-box {
    width: auto;
    padding: 3%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.rookie {
    font-weight: 200;
    font-size: 20px;
    color: #999999;
    vertical-align: middle;
}

td {
    font-size: 22px;
    font-weight: 500;
    color: #575757;
}

.single-box h1 {
    margin: 0px;
    text-align: center;
    font-size: 30px;
}

.single-box table {
    width: 100%;
    text-align: center;
    table-layout: fixed;
    margin-top: 1.5%;
    border-spacing: 8px;
    position: relative;
}

.single-box th {
    font-size: 15px;
    font-weight: 300;
}


.bubble {
    border-radius: 16px;
}

.na {
    font-weight: 200;
    color: #999999;
    opacity: 1;
}

.na.bubble {
    background-color: #dbdbdb;
    font-weight: 500;
}

.rank {
    background-color: #e6c3c3;
    color: #b02121;
}
.rank.no-rank-avail {
    background-color: #dbdbdb;
    color: #999999;
}

.rank.QB1, .rank.QB2, .rank.QB3, .rank.QB4, .rank.QB5, .rank.QB6 {
    background-color: #c3e6c3;
    color: #41b339;
}

.rank.QB7, .rank.QB8, .rank.QB9, .rank.QB10, .rank.QB11, .rank.QB12 {
    background-color: #f2eabd;
    color: #dbc12a;
}

.rank.QB13, .rank.QB14, .rank.QB15, .rank.QB16, .rank.QB17, .rank.QB18 {
    background-color: #f2dabd;
    color: #db852a;
}

.rank.TE1, .rank.TE2, .rank.TE3, .rank.TE4, .rank.TE5, .rank.TE6 {
    background-color: #c3e6c3;
    color: #41b339;
}

.rank.TE7, .rank.TE8, .rank.TE9, .rank.TE10, .rank.TE11, .rank.TE12 {
    background-color: #f2eabd;
    color: #dbc12a;
}

.rank.TE13, .rank.TE14, .rank.TE15, .rank.TE16, .rank.TE17, .rank.TE18 {
    background-color: #f2dabd;
    color: #db852a;
}

.rank.WR1, .rank.WR2, .rank.WR3, .rank.WR4, .rank.WR5, .rank.WR6, .rank.WR7, .rank.WR8, .rank.WR9, .rank.WR10, .rank.WR11, .rank.WR12 {
    background-color: #c3e6c3;
    color: #41b339;
}

.rank.WR13, .rank.WR14, .rank.WR15, .rank.WR16, .rank.WR17, .rank.WR18, .rank.WR19, .rank.WR20, .rank.WR21, .rank.WR22, .rank.WR23, .rank.WR24 {
    background-color: #f2eabd;
    color: #dbc12a;
}

.rank.WR25, .rank.WR26, .rank.WR27, .rank.WR28, .rank.WR29, .rank.WR30, .rank.WR31, .rank.WR32, .rank.WR33, .rank.WR34, .rank.WR35, .rank.WR36 {
    background-color: #f2dabd;
    color: #db852a;
}

.rank.RB1, .rank.RB2, .rank.RB3, .rank.RB4, .rank.RB5, .rank.RB6, .rank.RB7, .rank.RB8, .rank.RB9, .rank.RB10, .rank.RB11, .rank.RB12 {
    background-color: #c3e6c3;
    color: #41b339;
}

.rank.RB13, .rank.RB14, .rank.RB15, .rank.RB16, .rank.RB17, .rank.RB18, .rank.RB19, .rank.RB20, .rank.RB21, .rank.RB22, .rank.RB23, .rank.RB24 {
    background-color: #f2eabd;
    color: #dbc12a;
}

.rank.RB25, .rank.RB26, .rank.RB27, .rank.RB28, .rank.RB29, .rank.RB30, .rank.RB31, .rank.RB32, .rank.RB33, .rank.RB34, .rank.RB35, .rank.RB36 {
    background-color: #f2dabd;
    color: #db852a;
}

.status {
    font-weight: 600;
    font-size: 22px;
    vertical-align:text-top;
}

.status.PUP, .status.NA, .status.IR, .status.O, .status.SUSP, .status.COV {
    color: #b02121;
}

.status.Q, .status.D, .status.P {
    color: #db852a;
}

.status.H {
    color: #41b339;
    border-color: #41b339;
}

b.team {
    font-size: 30px;
    font-weight: 500;
    padding-left: 7%;
    padding-right: 7%;
}

.ha {
    color: #575757;
    font-size: 24px;
    font-weight: 400;
    margin-left: 2%;
}

#matchup-info h1 {
    font-size: 30px;
}

#matchup-info table {
    table-layout: auto;
}

.TM1, .TM2, .TM3, .TM4, .TM5, .TM6, .TM7, .TM8, .TM9, .TM10 {
    background-color: #c3e6c3;
    color: #41b339;
}

.TM11, .TM12, .TM13, .TM14, .TM15, .TM16, .TM17, .TM18, .TM19, .TM20 {
    background-color: #f2eabd;
    color: #dbc12a;
}

.TM21, .TM22, .TM23, .TM24, .TM25, .TM26, .TM27, .TM28, .TM29, .TM30, .TM31, .TM32 {
    background-color: #e6c3c3;
    color: #b02121;
}

.last-year {
    margin: 0px;
    font-weight: 200;
    font-size: 12px;
    color: #999999;
    vertical-align: middle;
}

.matchup {
    margin: 0px;
}

.spread {
    font-size: 22px;
}

.loss {
    color: #b02121;
}

.win {
    color: #41b339;
}

#field-info {
    padding: 1%;
    z-index: 2;
}

.p-box {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    border-style: solid;
    border-width: 2px;
    display: inline-block;
    margin-left: 1%;
    margin-right: 1%;
    position: relative;
}
.player-href {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    border-style: solid;
    border-width: 2px;
    display: inline-block;
    margin-left: 1%;
    margin-right: 1%;
    position: absolute;
    opacity: 0;
    z-index: 9;
}

.hidden-p {
    opacity: 0;
    pointer-events: none;
}

.defense {
    width: 100%;
    overflow: visible;
    z-index: 9;
    position: relative;
}

.tier {
    text-align: center;
    margin-top: 10px;
    height: 54px;
    position: relative;
}

.p-num {
    font-size: 25px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
}

.p-pos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -130%);
    font-size: 10px;
    margin: 0;
}

.p-vg {
    position: absolute;
    font-weight: 600;
    top: 0;
    left: 0;
    transform: translate(-40%, -40%);
    border-style: solid;
    border-width: 1.8px;
    background-color: #ffffff;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    padding: 3px;
    font-size: 9px;
    color: #a17220;
    border-color: #a17220;
}

.p-inj {
    position: absolute;
    font-weight: 600;
    top: -7px;
    right: -7px;
    border-style: solid;
    border-width: 1.8px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 5%;
    font-size: 9px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    vertical-align: middle;
}

.p-vg.VG99, .p-vg.VG98, .p-vg.VG97, .p-vg.VG96, .p-vg.VG95, .p-vg.VG94, .p-vg.VG93, .p-vg.VG92, .p-vg.VG91, .p-vg.VG90 {
    color: #4cc8cf;
    border-color: #4cc8cf;
}

.p-vg.VG89, .p-vg.VG88, .p-vg.VG87, .p-vg.VG86, .p-vg.VG85, .p-vg.VG84, .p-vg.VG83, .p-vg.VG82, .p-vg.VG81, .p-vg.VG80 {
    color: #ccae04;
    border-color: #ccae04;
}

.p-vg.VG79, .p-vg.VG78, .p-vg.VG77, .p-vg.VG76, .p-vg.VG75, .p-vg.VG74, .p-vg.VG73, .p-vg.VG72, .p-vg.VG71, .p-vg.VG70 {
    color: #9c9c9c;
    border-color: #9c9c9c;
}

.hidden-p {
    margin-right: 4%;
}

.nb {
    margin-left: 4%;
}

.offense .p-pos {
    color: white;
}

.p-box.border-glow {
    border-color: #858705;
    box-shadow: 0 0 25px #858705;
}

.p-box.oline {
    width: 30px;
    height: 30px;
    margin-left: 0.2%;
    margin-right: 0.2%;
    vertical-align: top;
}

.oline .p-pos {
    opacity: 0;
}

.oline .p-num {
    font-size: 18px;
}

.oline .p-vg {
    transform: translate(-20%, -40%);
}

.oline .p-inj {
    top: -6.5px;
    right: -5px;
}

.te {
    margin-right: 2%;
}
.swr {
    margin-left: 2%;
}

.middle-field-data {
    height: 310px;
    z-index: 8;
    position: relative;
}

.field-graphic {
    background-color: #77bced;
    position: absolute;
    border-width: 3px;
    border-color: #004d85;
    border-style: solid;
    border-radius: 16px;
    box-shadow: 0px 0px 9px rgba(66,66,66,.45);
    width: 89%;
    height: 646px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 20px;
    margin-bottom: 20px;
    position:absolute;
}

.endzone {
    height: 71.5px;
    width: 100%;
    opacity: 0;
}

.tenyards {
    height: 47px;
    width: 100%;
    border-style: solid;
    color: white;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-top-width: 3px;
    border-color: #b5c1c9;
    position: relative;
}

.tenyards.light {
    background-color: #ebf7ff;
}
.tenyards.dark {
    background-color: #c7e8ff;
}
.tenyards.dark.last {
    border-bottom-width: 3px;
}
.endzone.off-end {
    border-bottom-left-radius: 13px;
}

.left-field {
    float: left;
    width: 33%;
    height: 47px;
}
.mid-field {
    float: left;
    width: 34%;
    height: 47px;
}
.right-field {
    float: left;
    width: 33%;
    height: 47px;
}

.mid-right-field, .mid-left-field {
    float: left;
    width: 50%;
    height: 47px;
    position: relative;
}

.dash {
    color: #b5c1c9;
    margin: 0;
    height: 10px;
    vertical-align: middle;
    position: absolute;
    user-select: none;
    z-index: 0;
}
.right-field .dash, .mid-right-field .dash {
    right: 0;
}

.dash.d1 {
    top: -2px;
}
.dash.d2 {
    top: 8px;
}
.dash.d3 {
    top: 18px;
}
.dash.d4 {
    top: 28px;
}

.offense-data {
    margin-left: 8%;
    margin-right: 8%;
    margin-top: 1.5%;
    margin-bottom: 4%;
    width: 84%;
    height: 145px;
    position: relative;
}
.defense-data {
    margin-left: 8%;
    margin-right: 8%;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
    width: 84%;
    height: 145px;
    position: relative;
}

.left-field-stats, .middle-field-stats, .right-field-stats {
    float: left;
    width: calc(33.33% - 8px);
    height: 137px;
    opacity: .5;
    border: solid;
    border-width: 4px;
}

.field-rank {
    background-color: #e6c3c3;
    color: #b02121;
}

.field-rank.F-QB1, .field-rank.F-QB2, .field-rank.F-QB3, .field-rank.F-QB4, .field-rank.F-QB5, .field-rank.F-QB6 {
    background-color: #c3e6c3;
    border-color: #41b339;
}

.field-rank.F-QB7, .field-rank.F-QB8, .field-rank.F-QB9, .field-rank.F-QB10, .field-rank.F-QB11, .field-rank.F-QB12 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}

.field-rank.F-QB13, .field-rank.F-QB14, .field-rank.F-QB15, .field-rank.F-QB16, .field-rank.F-QB17, .field-rank.F-QB18 {
    background-color: #f2dabd;
    border-color: #db852a;
}

.field-rank.F-TE1, .field-rank.F-TE2, .field-rank.F-TE3, .field-rank.F-TE4, .field-rank.F-TE5, .field-rank.F-TE6 {
    background-color: #c3e6c3;
    border-color: #41b339;
}

.field-rank.F-TE7, .field-rank.F-TE8, .field-rank.F-TE9, .field-rank.F-TE10, .field-rank.F-TE11, .field-rank.F-TE12 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}

.field-rank.F-TE13, .field-rank.F-TE14, .field-rank.F-TE15, .field-rank.F-TE16, .field-rank.F-TE17, .field-rank.F-TE18 {
    background-color: #f2dabd;
    border-color: #db852a;
}

.field-rank.F-WR1, .field-rank.F-WR2, .field-rank.F-WR3, .field-rank.F-WR4, .field-rank.F-WR5, .field-rank.F-WR6, .field-rank.F-WR7, .field-rank.F-WR8, .field-rank.F-WR9, .field-rank.F-WR10, .field-rank.F-WR11, .field-rank.F-WR12 {
    background-color: #c3e6c3;
    border-color: #41b339;
}

.field-rank.F-WR13, .field-rank.F-WR14, .field-rank.F-WR15, .field-rank.F-WR16, .field-rank.F-WR17, .field-rank.F-WR18, .field-rank.F-WR19, .field-rank.F-WR20, .field-rank.F-WR21, .field-rank.F-WR22, .field-rank.F-WR23, .field-rank.F-WR24 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}

.field-rank.F-WR25, .field-rank.F-WR26, .field-rank.F-WR27, .field-rank.F-WR28, .field-rank.F-WR29, .field-rank.F-WR30, .field-rank.F-WR31, .field-rank.F-WR32, .field-rank.F-WR33, .field-rank.F-WR34, .field-rank.F-WR35, .field-rank.F-WR36 {
    background-color: #f2dabd;
    border-color: #db852a;
}

.field-rank.F-RB1, .field-rank.F-RB2, .field-rank.F-RB3, .field-rank.F-RB4, .field-rank.F-RB5, .field-rank.F-RB6, .field-rank.F-RB7, .field-rank.F-RB8, .field-rank.F-RB9, .field-rank.F-RB10, .field-rank.F-RB11, .field-rank.F-RB12 {
    background-color: #c3e6c3;
    border-color: #41b339;
}

.field-rank.F-RB13, .field-rank.F-RB14, .field-rank.F-RB15, .field-rank.F-RB16, .field-rank.F-RB17, .field-rank.F-RB18, .field-rank.F-RB19, .field-rank.F-RB20, .field-rank.F-RB21, .field-rank.F-RB22, .field-rank.F-RB23, .field-rank.F-RB24 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}

.field-rank.F-RB25, .field-rank.F-RB26, .field-rank.F-RB27, .field-rank.F-RB28, .field-rank.F-RB29, .field-rank.F-RB30, .field-rank.F-RB31, .field-rank.F-RB32, .field-rank.F-RB33, .field-rank.F-RB34, .field-rank.F-RB35, .field-rank.F-RB36 {
    background-color: #f2dabd;
    border-color: #db852a;
}

.F-TM1, .F-TM2, .F-TM3, .F-TM4, .F-TM5, .F-TM6, .F-TM7, .F-TM8, .F-TM9, .F-TM10 {
    background-color: #c3e6c3;
    border-color: #41b339;
}

.F-TM11, .F-TM12, .F-TM13, .F-TM14, .F-TM15, .F-TM16, .F-TM17, .F-TM18, .F-TM19, .F-TM20 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}

.F-TM21, .F-TM22, .F-TM23, .F-TM24, .F-TM25, .F-TM26, .F-TM27, .F-TM28, .F-TM29, .F-TM30, .F-TM31, .F-TM32 {
    background-color: #e6c3c3;
    border-color: #b02121;
}
.F-TMNA, .F-NA  {
    background-color: #dbdbdb;
    border-color: #636363;
}

.gen-weather {
    display: flex;
    justify-content: center;
    vertical-align: middle;
}

.temp {
    margin-top: auto;
    margin-bottom: auto;
    font-weight: 600;
    color: #000000;
    font-size: 30px;
}

.weather-img {
    width: 40px;
    height: 40px;
    margin-top: auto;
    margin-bottom: auto;
}

.weather-cred {
    position: absolute;
    margin: 0;
    bottom: 0;
    right: 0;
    transform: translate(-5%, -30%);
    font-weight: 200;
    color: #999999;
    font-style: italic;
}

#indicator-info thead th {
    font-size: 10px;
}

.widen {
    width: 60px;
}

#indicator-info .tooltip-context span {
    color: white;
}

#indicator-info table div {
    margin: 0 auto;
    width: 25px;
    height: 25px;
    border-radius: 6px;
    font-size: 18px;
}

#indicator-info .tooltip-context span {
    vertical-align: middle;
    text-align: center;
}

.I-2 div {
    background-color: #b02121 ;
}
.I-1 div {
    background-color: #e83838;
}
.I0 div {
    background-color: #dbc12a;
}
.I1 div {
    background-color: #72cf7b;
}
.I2 div {
    background-color: #32962f;
}
.I9 div {
    background-color: #999999;
}

.player-search-cards {
    display: none;
    max-height: -webkit-fill-available;
    width: 268.8px;
    overflow: auto;
    background-color: #f7f7f7;
    margin: .5% 8%;
    position: relative;
    border-radius: 8px;
    z-index: 5;
}

.data-roster-cards {
    display: block;
    height: -webkit-fill-available;
    width: 100%;
    overflow: auto;
    background-color: #f7f7f7;
    position: relative;
    border-radius: 8px;
    z-index: 5;
    border: 1px solid black;
    max-width: 800px;
}

.player-search-cards.show {
    display: block;
}

.player-search-cards .card {
    padding: 5px;
}

.card {
    height: 50px;
    display: flex;
    align-items: center;
}
.card:hover {
    background-color: #d9d9d9;
}

.user-team-delete-button {
    position: absolute;
    height: 30px;
    left: 15px;
    width: 50px;
}
.user-team-card-name {
    position: absolute;
    font-weight: 500;
    left: 90px;
    max-width: 375px;
    text-align: left;
}
.user-team-card-right-box {
    position: absolute;
    right: 15px;
    width: 140px;
}
.user-team-card-link {
    width: 480px;
    height: 75px;
    position: absolute;
    opacity: 0;
    z-index: 9;
    cursor: pointer;
}
.user-team-delete-message {
    margin: 5px 0;
    color: #b02121;
}

.team-scoring {
    font-weight: 400;
    font-size: 16px;
}
.team-roster-pos-div {
    position: absolute;
    height: 30px;
    left: 10px;
    width: 50px;
}
.team-roster-pos-div2 {
    position: absolute;
    height: 30px;
    right: 150px;
    width: 32px;
}
.team-roster-name {
    position: absolute;
    left: 90px;
}
.team-roster-team-div {
    position: absolute;
    right: 100px;
    width: 40px;
    height: 30px;
}
.team-roster-pred-div {
    position: absolute;
    right: 10px;
    width: 60px;
    height: 30px;
}
.team-roster-injury {
    position: absolute;
    right: 200px;
    font-size: 12px;
    font-weight: 600;
}

.player-card-pred {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.player-card-pos-div {
    position: absolute;
    height: 30px;
    right: 10px;
    width: 32px;
}
.player-card-pos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.player-card-team-div {
    position: absolute;
    right: 50px;
    width: 40px;
    height: 30px;
}
.player-card-team {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.player-card-href {
    width: 241.8px;
    height: 50px;
    position: absolute;
    opacity: 0;
    z-index: 9;
}
.player-roster-card-href {
    width: 536.8px;
    height: 50px;
    position: absolute;
    opacity: 0;
    z-index: 9;
}

.add-player-card-team-div {
    position: absolute;
    right: 100px;
    width: 40px;
    height: 30px;
}
.add-player-card-pos-div {
    position: absolute;
    height: 30px;
    right: 60px;
    width: 32px;
}
#user-team .add-player-card-button, #user-list .add-player-card-button {
    position: absolute;
    right: 0px;
    width: 40px;
    height: 40px;
    font-size: 32px;
    left: auto;
    transform: none;
    border-radius: 0px;
    padding: 0px;
    background-color: #c7edcc;
    border: 1px solid #32a852;
}

.QB-style {
    background: #cc3d3d;
    color: #242424;
}
.WR-style {
    background: #3fa2e0;
    color: #242424;
}
.RB-style {
    background: #3dcc50;
    color: #242424;
}
.TE-style {
    background: #e0923f;
    color: #242424;
}
.FLEX-style {
    background: #753fe0;
    color: #242424;
}
.SF-style {
    background: #e0d03f;
    color: #242424;
}
.BN-style {
    background: #dbdbdb;
    color: #242424;
}
.UNK-style {
    background-color: #dbdbdb;
    border-color: #636363;
}
.X-style {
    background-color: #e6c3c3;
    color: #b02121;
}

#player-search {
    border-style: none;
    background-color: #f7f7f7;
    width: calc(100% - 62px);
    height: 30px;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(5%,-50%);
}
#player-search:focus {
    outline: 0px;
}

.search-area.active {
    border-color: #4cc8cf;
}

.search-area {
    background-color: #f7f7f7;
    border-radius: 12px;
    position: relative;
    width: 268.8px;
    margin: .5% 8%;
    border-style: solid;
    border-color: #575757;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    height: 50px;
}

.search-btn {
    position: absolute;
    right: 0px;
    top: 26.2px;
    transform: translate(-50% , -50%);
    color: #575757;
    font-size: 26px;
    background-color: #f7f7f7;
    z-index: 9;
}
.active .search-btn:hover {
    color: #4cc8cf;
}

.player-cards-wrapper {
    padding: 10px;
}

.player-card-name {
    position: absolute;
    left: 10px;
}

.game-logs-content {
    width: 96%;
    height: 353px;
    margin: 0% 2%;
    position: relative;
    z-index: 4;
}
.game-logs-content .single-box {
    position: absolute;
    top: 60%;
    width: 94%;
}

.sidebyside-content {
    width: 96%;
    height: auto;
    margin: 0% 2%;
    position: relative;
    z-index: 4;
}

.left-half {
    float: left;
    width: 49%;
    margin-right: 1%;
    position: relative;
}
.right-half {
    float: left;
    width: 49%;
    margin-left: 1%;
    position: relative;
}

.left-half .content-box, .right-half .content-box {
    height: 332px;
    margin-bottom: 20px;
}

.content-box#user-team, .content-box#user-list, .content-box#user-dash, .content-box#user-chart {
    height: 650px;
}

.half-list-box {
    height: 515px;
}
.half-list-buttons {
    display: flex;
    margin: 10px 0;
    height: 30px;
}

.standard-button.home-button {
    margin-right: 10px;
    transform: none;
    left: 0;
}
.standard-button.confirm-button {
    transform: none;
    left: 0;
}

.user-data-metadata {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.user-data-metadata-upper, .user-data-metadata-lower {
    height: 35px;
}
.user-team-name {
    margin: 0;
}
.user-data-area {
    text-align: center;
    margin: 0 30px;
}
.user-data-roster {
    height: 430px;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.no-lower-metadata.user-data-roster {
    height: 465px;
}
.subtext-home {
    text-align: left;
    margin: 0px;
    font-size: 14px;
}
.subtext-note {
    text-align: left;
    margin: 0px;
    font-size: 12px;
    color: gray;
    margin-top: 5px;
}
.label-shift-10 {
    margin-left: 10px;
}

.user-team-player-search-cards {
    display: block;
    max-height: 200px;
    width: 65%;
    overflow: auto;
    background-color: #ccdfff;
    margin: 0 10%;
    position: absolute;
    border-radius: 8px;
    z-index: 10;
    top: 230px;
}
.user-team-player-search-cards-add-border {
    border: 1px solid #1c6fff;
}
.no-lower-metadata.user-team-player-search-cards {
    top: 195px;
}

.user-team-name-input {
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 1px 5px;
    width: 200px;
}
.user-team-format-input {
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 1px 5px;
    width: 20px;
    text-align: right;
    margin-right: 2px;
}
.user-team-format-input::-webkit-outer-spin-button,
.user-team-format-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.user-team-format-input[type=number]{
    -moz-appearance: textfield;
    appearance: textfield;
}
.user-team-search-players-input {
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    padding: 1px 5px;
    width: 400px;
    margin-bottom: 5px;
    height: 35px;
}

#user-team .select {
    display: inline-block;
    text-align: center;
    position: relative;
    right: 0;
    margin-top: 0;
}
#user-team .select option {
    font-size: 16px;
}
#user-team .select select {
    font-size: 16px;
    background-color: white;
    font-weight: 600;
    padding: 1px 5px;
    padding-right: 15px;
}

.game-logs-content h1 {
    position: absolute;
    font-size: 26px;
    top: 12%;
    left: 50%;
    transform: translate(-50% , -50%);
    margin-top: 0px;
    white-space: nowrap;
}
.game-logs-content table {
    width: 100%;
    text-align: center;
    margin-top: 1.5%;
    border-spacing: 8px;
    margin-top: 0px;
    overflow-y: scroll;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
}

.blank-space-top {
    width: calc(95% - 12px);
    height: 30px;
    background-color: #FFFFFF;
    position: absolute;
    z-index: 9;
}
.blank-space-bottom {
    width: calc(95% - 12px);
    height: 30px;
    background-color: #FFFFFF;
    position: absolute;
    bottom: 35px;
    z-index: 9;
}

.comp-game-logs th {
    font-weight: 600;
    font-size: 16px;
    color: #222222; 
    height: 26px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

html {
    overflow-x: hidden;
    margin-right: calc(-1 * (100vw - 100%));
}

.game-logs-content .gl-headers {
    width: calc(100% - 12px);
    padding-bottom: 0px;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #FFFFFF;
}
.sticky-header tr {
    background-color: #77bced;
    z-index: 9999;
}

.even-row {
    background-color: #b9d7eb;
    position: relative;
}
.odd-row {
    position: relative;
}

.team-td div {
    opacity: 1;
}

.misc-content {
    width: 96%;
    height: 353px;
    margin: 0% 2%;
    position: relative;
    z-index: 3;
}

.left-equal, .mid-equal {
    float: left;
    width: 32%;
    margin-right: 2%;
    position: relative;
}
.right-equal {
    float: left;
    width: 32%;
    position: relative;
}
.misc-content .content-box {
    height: 332px;
    margin-bottom: 20px;
}

.player-logs-content {
    width: 96%;
    margin: 0% 2%;
    height: 739px;
    position: relative;
    z-index: 2;
}
.player-logs-content .content-box {
    height: 736px;
    margin-bottom: 20px;
}

#player-game-logs th {
    font-weight: 600;
    font-size: 16px;
    color: #222222; 
    height: 26px;
}
.stat-headers th {
    border-bottom: 1px solid;
    border-top: 1px solid;
}
.cat-headers th.in-use {
    border-top: 1px solid;
}
#player-game-logs td {
    height: 24px;
    font-size: 18px;
    border-bottom: 1px solid;
}
#player-game-logs td:first-child {
    border-left: 1px solid;
}
#player-game-logs td:last-child {
    border-right: 1px solid;
}
#player-game-logs table {
    width: 100%;
    text-align: center;
    margin-top: 0px;
    border-spacing: 8px;
    margin-top: 0px;
    overflow-y: scroll;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
}

.left-bord {
    border-left: 1px solid;
}
.right-bord {
    border-right: 1px solid;
}

.left-rad {
    border-top-left-radius: 8px;
}
.right-rad {
    border-top-right-radius: 8px;
}
.left-rad-bot {
    border-bottom-left-radius: 8px;
}
.right-rad-bot {
    border-bottom-right-radius: 8px;
}

.rank.rec.QB {
    background-color: transparent;
    color: #575757;
}
.rank.pass.RB {
    background-color: transparent;
    color: #575757;
}
.rank.pass.WR {
    background-color: transparent;
    color: #575757;
}
.rank.rush.WR {
    background-color: transparent;
    color: #575757;
}
.rank.pass.TE {
    background-color: transparent;
    color: #575757;
}
.rank.rush.TE {
    background-color: transparent;
    color: #575757;
}

th.pass {
    background-color: #cc3d3d;
}
th.rush {
    background-color: #3dcc50;
}
th.rec {
    background-color: #e0923f;
}

#player-game-logs th.blank {
    background-color: transparent;
}
#player-game-logs th.gen {
    background-color: #77bced;
}
#player-game-logs tfoot {
    background-color: #77bced;
}
#player-game-logs tfoot th {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

#game-log-title {
    margin-bottom: 10px;
}

#redzone-stats table {
    table-layout: auto;
}
.fourth-col {
    width: 25%;
}
.graph-container {
    width: 100%;
    height: 30px;
}
.pct-container {
    float: left;
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
}
.pct-container span {
    font-size: 18px;
    margin: auto;
}
.bar-container {
    float: left;
    width: calc(100% - 50px);
    height: 30px;
    background-color: #d9d9d9;
    border-radius: 6px;
}
.player-bar {
    height: 30px;
    background-color: #cc3d3d;
    border-radius: 6px;
}

.pie-area {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pie {
    border-radius: 100%;
    height: 125px;
    overflow: hidden;
    position: relative;
    width: 125px;
    float: left;
}
.pie.cmp-air, .pie.shr-air {
    margin-left: 5%;
    margin-right: 5%;
}
.pie-segment {
    --a: calc(var(--over50, 0) * -100%);
    --b: calc((1 + var(--over50, 0)) * 100%);
    --degrees: calc((var(--offset, 0) / 100) * 360);
    -webkit-clip-path: polygon(var(--a) var(--a), var(--b) var(--a), var(--b) var(--b), var(--a) var(--b));
    clip-path: polygon(var(--a) var(--a), var(--b) var(--a), var(--b) var(--b), var(--a) var(--b));
    height: 100%;
    position: absolute;
    transform: translate(0, -50%) rotate(90deg) rotate(calc(var(--degrees) * 1deg));
    transform-origin: 50% 100%;
    width: 100%;
    z-index: calc(1 + var(--over50));
}
.pie-segment.player:after,
.pie-segment.player:before {
    background: #77bced;
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
}
.pie-segment.empty:after,
.pie-segment.empty:before {
    background: #d9d9d9;
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
}
.pie-segment:before {
    --degrees: calc((var(--value, 45) / 100) * 360);
    transform: translate(0, 100%) rotate(calc(var(--degrees) * 1deg));
    transform-origin: 50% 0%;
}
.pie-segment:after {
    opacity: var(--over50, 0);
}
.pie-hole {
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    transform: translate(-50% , -50%);
    background-color: white;
    z-index: 9;
    border-radius: 100%;
    display: flex;
    align-items: center;
}
.pie-hole th {
    font-size: 12px;
}
.pie-hole td {
    font-size: 20px;
}

.css-chart {
    border-left: 2px solid;
    display: inline-block;
    height: 150px;
    padding: 0;
    position: relative;
    width: 94%;
    margin: 0;
    margin-left: 3%;
}
.line-chart {
    list-style: none;
    margin: 0;
    padding: 0;
}
.data-point {
    border: 2px solid;
    border-radius: 50%;
    bottom: calc((var(--y) * 1%) - 8px);
    height: 12px;
    left: calc((var(--x) * 1%) - 8px);
    position: absolute;
    width: 12px;
    z-index: 1;
}

.line-segment-down {
    position: absolute;
    background: linear-gradient(to top right, transparent calc(50% - 2px), #5c5c5c, transparent calc(50% + 2px) );
    width: calc((var(--x) - var(--px)) * 1%);
    height: calc((var(--py) - var(--y)) * 1%);
    left: calc(var(--px) * 1%);
    top: calc((100 - var(--py)) * 1%);
}
.line-segment-up {
    position: absolute;
    background: linear-gradient(to top left, transparent calc(50% - 2px), #5c5c5c, transparent calc(50% + 2px) );
    width: calc((var(--x) - var(--px)) * 1%);
    height: calc((var(--y) - var(--py)) * 1%);
    left: calc(var(--px) * 1%);
    bottom: calc((var(--py)) * 1%);
}
.line-segment-straight {
    position: absolute;
    width: calc((var(--x) - var(--px)) * 1%);
    height: 0px;
    left: calc(var(--px) * 1%);
    bottom: calc((var(--py)) * 1%);
    border-top: 2.5px solid #5c5c5c;
    transform: translate(0% , 50%);
}
.line-segment-avg {
    position: absolute;
    width: calc(((var(--ex) + 5) - (var(--bx) - 5)) * 1%);
    left: calc((var(--bx) - 5) * 1%);
    height: 0px;
    border-top: 2px solid;
    border-color: #3dcc50;
    bottom: calc(var(--ay) * 1%);
    transform: translate(0% , 50%);
    z-index: 9;
}
.line-segment-avg span {
    position: absolute;
    right: 0px;
    font-size: 10px;
    font-weight: 600;
    color: #3dcc50;
}

.week-line {
    position: absolute;
    border-left: 2px solid;
    height: 10px;
    width: 0px;
    top: 146px;
    left: calc(var(--x) * 1%);
    transform: translate(-50% , 0%);
}
.week-label {
    position: absolute;
    top: 168px;
    left: calc(var(--x) * 1%);
    transform: translate(-50% , -50%);
}
.pt-dash {
    position: absolute;
    bottom: calc(var(--y) - 0px);
    border-bottom: 2px solid;
    width: 10px;
    height: 0px;
    left: -10px;
    transform: translate(0% , 50%);
}
.pt-label {
    position: absolute;
    bottom: calc(var(--y) - 8px);
    left: -22px;
    transform: translate(-50% , 0%);
}
.week-heading {
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translate(-50% , 0%);
}
.graph-heading {
    position: absolute;
    left: 50%;
    top: 72px;
    transform: translate(-50% , 0%);
    font-size: 18px;
}
.pt-dashline {
    position: absolute;
    bottom: calc(var(--y) - 0px);
    border-bottom: 2px dashed #d9d9d9;
    width: 100%;
    height: 0px;
    transform: translate(0% , 50%);
}
.pt-dashline-first {
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid;
    width: 100%;
    height: 0px;
    transform: translate(0% , 50%);
}

#right-logs {
    top: 50%;
}
.player-basic-avgs {
    margin-bottom: 35px;
}
.right-half .heading {
    top: 8%;
}

.rank-line {
    background-color: #e6c3c3;
    border-color: #b02121;
}
.rank-line.QB1, .rank-line.QB2, .rank-line.QB3, .rank-line.QB4, .rank-line.QB5, .rank-line.QB6 {
    background-color: #c3e6c3;
    border-color: #41b339;
}
.rank-line.QB7, .rank-line.QB8, .rank-line.QB9, .rank-line.QB10, .rank-line.QB11, .rank-line.QB12 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}
.rank-line.QB13, .rank-line.QB14, .rank-line.QB15, .rank-line.QB16, .rank-line.QB17, .rank-line.QB18 {
    background-color: #f2dabd;
    border-color: #db852a;
}
.rank-line.TE1, .rank-line.TE2, .rank-line.TE3, .rank-line.TE4, .rank-line.TE5, .rank-line.TE6 {
    background-color: #c3e6c3;
    border-color: #41b339;
}
.rank-line.TE7, .rank-line.TE8, .rank-line.TE9, .rank-line.TE10, .rank-line.TE11, .rank-line.TE12 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}
.rank-line.TE13, .rank-line.TE14, .rank-line.TE15, .rank-line.TE16, .rank-line.TE17, .rank-line.TE18 {
    background-color: #f2dabd;
    border-color: #db852a;
}
.rank-line.WR1, .rank-line.WR2, .rank-line.WR3, .rank-line.WR4, .rank-line.WR5, .rank-line.WR6, .rank-line.WR7, .rank-line.WR8, .rank-line.WR9, .rank-line.WR10, .rank-line.WR11, .rank-line.WR12 {
    background-color: #c3e6c3;
    border-color: #41b339;
}
.rank-line.WR13, .rank-line.WR14, .rank-line.WR15, .rank-line.WR16, .rank-line.WR17, .rank-line.WR18, .rank-line.WR19, .rank-line.WR20, .rank-line.WR21, .rank-line.WR22, .rank-line.WR23, .rank-line.WR24 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}
.rank-line.WR25, .rank-line.WR26, .rank-line.WR27, .rank-line.WR28, .rank-line.WR29, .rank-line.WR30, .rank-line.WR31, .rank-line.WR32, .rank-line.WR33, .rank-line.WR34, .rank-line.WR35, .rank-line.WR36 {
    background-color: #f2dabd;
    border-color: #db852a;
}
.rank-line.RB1, .rank-line.RB2, .rank-line.RB3, .rank-line.RB4, .rank-line.RB5, .rank-line.RB6, .rank-line.RB7, .rank-line.RB8, .rank-line.RB9, .rank-line.RB10, .rank-line.RB11, .rank-line.RB12 {
    background-color: #c3e6c3;
    border-color: #41b339;
}
.rank-line.RB13, .rank-line.RB14, .rank-line.RB15, .rank-line.RB16, .rank-line.RB17, .rank-line.RB18, .rank-line.RB19, .rank-line.RB20, .rank-line.RB21, .rank-line.RB22, .rank-line.RB23, .rank-line.RB24 {
    background-color: #f2eabd;
    border-color: #dbc12a;
}
.rank-line.RB25, .rank-line.RB26, .rank-line.RB27, .rank-line.RB28, .rank-line.RB29, .rank-line.RB30, .rank-line.RB31, .rank-line.RB32, .rank-line.RB33, .rank-line.RB34, .rank-line.RB35, .rank-line.RB36 {
    background-color: #f2dabd;
    border-color: #db852a;
}

#pos-logs-dd {
    margin-bottom: 2px;
    font-size: 24px;
    font-weight: 600;
    width: 100px;
    border-radius: 6px;
    text-align: center;
}
.log-option {
    font-size: 18px;
}


#stat-dd {
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    text-align: center;
}

#stat-page-dd, #season-dd {
    margin-bottom: 2px;
    font-size: 30px;
    font-weight: 600;
    width: 100px;
    border-radius: 6px;
    text-align: center;
}
.stat-log-option {
    font-size: 28px;
}

#stat-type-dd {
    margin-bottom: 2px;
    font-size: 26px;
    font-weight: 600;
    width: 150px;
    border-radius: 6px;
    text-align: center;
}
.stat-log-option {
    font-size: 24px;
}

#week-select-dd {
    margin-bottom: 2px;
    font-size: 26px;
    font-weight: 600;
    width: 200px;
    border-radius: 6px;
    text-align: center;
}

.week-select-ind-dd {
    margin-bottom: 2px;
    font-size: 26px;
    font-weight: 600;
    width: 75px;
    border-radius: 6px;
    text-align: center;
}
.select.week-select-ind-dd {
    width: auto;
}
#week-select-ind1-dd, #week-select-ind2-dd {
    margin-bottom: 2px;
    font-size: 26px;
    font-weight: 600;
    width: 75px;
    border-radius: 6px;
    text-align: center;
}

.tooltip.team-roster-tooltip {
    position: absolute;
    height: 30px;
    right: 10px;
    width: 50px;
    z-index: 10;
}
.more-info-log.team-roster-pred-rank {
    width: 90%;
    padding: 0;
    font-weight: normal;
    font-size: 18px;
    z-index: 9;
    border-radius: 16px;
    position: absolute;
    box-sizing: border-box;
    display: none;
    margin: auto;
    top: 50%;
    left: 23%;
    transform: translate(-50% , -50%);
    filter: saturate(2);
}

.tooltip {
    position: relative;
}
.tooltip.data-point {
    position: absolute;
}
.tooltip:hover .tooltip-context {
    filter: saturate(3);
}
.tooltip.data-point:hover {
    filter: saturate(3);
}
.tooltip.save-button-tooltip:hover .tooltip-context {
    filter: none;
}
.more-info, .more-info-log {
    display:inline-block;
    position:relative;
}
.tooltip .more-info {
    width: 150px; 
    top:35px;
    left:50%;
    transform:translate(-50%, 0);
    padding:7px;
    padding-bottom: 0px;
    color:#444444;
    background-color:#EEEEEE;
    font-weight:normal;
    font-size:13px;
    
    z-index:99999999;
    border-radius:8px;
    position:absolute;
    box-sizing:border-box;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
    display:none;
}
.tooltip:hover .more-info, .tooltip.data-point:hover + .more-info {
    display:inline-block;
    filter: none;
}
.tooltip .more-info i, .line-chart .more-info i {
    position:absolute;
    bottom:100%;
    left:50%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}
.tooltip .more-info i::after, .line-chart .more-info i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,50%) rotate(45deg);
    background-color:#EEEEEE;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
}
.more-info p {
    margin: 0;
    margin-bottom: 7px;
}
.tooltip .more-info span, .line-chart .more-info p, .player-basic-avgs .more-info p, #redzone-stats .more-info p, #air-yards-stats .more-info p, #usage-stats .more-info p  {
    background-color: transparent;
}
.player-basic-avgs .more-info, #redzone-stats .more-info, #air-yards-stats .more-info, #usage-stats .more-info {
    width: auto;
    white-space: nowrap;
}

.line-chart .more-info {
    width: auto; 
    bottom: calc((var(--y) * 1%) + 10px);
    left: calc((var(--x) * 1%));
    transform:translate(-50%, 0);
    padding:7px;
    padding-bottom: 0px;
    color:#444444;
    background-color:#EEEEEE;
    font-weight:normal;
    font-size:13px;
    
    z-index:99999999;
    border-radius:8px;
    position:absolute;
    box-sizing:border-box;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
    display:none;
    text-align: center;
    white-space: nowrap;
}

.all {
    position: relative;
    width: 100%;
    float: left;
}

.top-box {
    z-index: 999;
}
.bottom-box {
    z-index: 99;
}

.spread-text {
    font-size: 20px;
}
.bigger-col-spread {
    width: 40%;
}

.defense .tooltip, .offense .tooltip {
    float: left;
}
.defense .tooltip .more-info, .offense .tooltip .more-info {
    top: 45px;
}
.defense .tier-3 .tooltip, .defense .tier-2 .tooltip {
    width: 115px;
}
.tooltip.ocb {
    width: 45px;
}
.tooltip.icb {
    width: 70px;
}
.tooltip.icb .p-box {
    margin-left: 15px;
}
.tooltip.icb .more-info {
    margin-left: 7.5px;
}
.dl-box .tooltip {
    min-width: 44px;
    width: 33.3333%;
}
.tooltip.orec {
    width: 60px;
}
.tooltip.blank {
    width: 10px;
}
.tooltip.ol {
    width: 37px;
}
.offense .tooltip.ol .more-info {
    top: 37px;
}
.offense .tier-1 .tooltip {
    width: 60px;
}
.dl-box {
    width: 180px;
    position: relative;
}

.tier {
    display: flex;
    justify-content: center;
    position: relative;
}

.offense {
    position: relative;
    z-index: 7;
}

.left:hover, .mid:hover, .right:hover {
    z-index: 11;
}
.left-equal:hover, .mid-equal:hover, .right-equal:hover {
    z-index: 11;
}

#field-info .tooltip .more-info {
    white-space: nowrap;
    width: auto;
}

#field-info .more-info .p-vg {
    position: relative;
    background-color: white;
}

.player-tool:link, .player-tool:visited, .player-tool:active, .player-tool-nonew:link, .player-tool-nonew:visited, .player-tool-nonew:active {
    text-decoration: none;
    color: #1449db;
}
.player-tool:hover, .player-tool-nonew:hover {
    text-decoration: none;
    color: #858705;
}

.middle-field-data .hover-on {
    opacity: 1;
}
.middle-field-data .field-rank {
    display: flex;
    justify-content: center;
    transition: all 0.8s ease;
}
.middle-field-data .stat-area {
    margin: auto 5px;
    opacity: 0;
    transition: all 0.5s ease;
    color: black;
    font-size: 13px;
    text-align: center;
}
.middle-field-data .stat-area .first-p {
    margin: 0;
}
.middle-field-data .stat-area .other-p {
    margin: 0;
    margin-top: 10px;
}
.middle-field-data .hover-on .stat-area {
    opacity: 1;
}
.middle-field-data .no-margin {
    margin: 0;
}

.def-placeholder {
    height: 191px;
}

.pos-indicator {
    color: #41b339;
    font-size: 25px;
}
.neg-indicator {
    color: #b02121;
    font-size: 25px;
}
.week-ind-label {
    font-size: 22px;
    font-weight: 500;
    color: #575757;
    margin-top: 10px;
    margin-bottom: 10px;
}
.week-ind {
    display: flex;
    justify-content: center;
    white-space: nowrap;
}
.week-proj {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    margin-top: 10px;
}
.week-proj-label {
    font-size: 24px;
    font-weight: 500;
    color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}

.player-pred-tooltip {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 5px;
}
.player-pred-tooltip .tooltip-context {
    font-size: 20px;
    padding: 5px 10px;
}
.player-pred-tooltip .more-info-log {
    font-size: 18px;
    padding: 5px 10px;
}

.fpts-col {
    min-width: 60px;
}
.threed-col {
    min-width: 60px;
}
.twod-col {
    min-width: 45px;
}
.name-col {
    min-width: 100px;
}
.team-col {
    min-width: 60px;
}
.week-col {
    min-width: 50px;
}
.pct-col {
    min-width: 70px;
}
.pctdec-col {
    min-width: 85px;
}

.more-info-log {
    width: 90%;
    padding:0;
    font-weight:normal;
    font-size:15px;
    z-index:9;
    border-radius:16px;
    position:absolute;
    box-sizing:border-box;
    display:none;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    filter: saturate(2);
}
.more-info-log p {
    margin: auto;
}
.more-info-log.hover-on {
    display: flex;
    justify-content: center;
    transition: all 0.9s ease;
}

.play-game-logs {
    overflow: scroll;
    margin-left: 12px;
    position: relative;
}

.pie-hole .more-info {
    top: 28px;
}

.log-table tfoot {
    z-index: 10;
}

.top-logo-area {
    background-color: #2e5980;
    height: 65px;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.side-logo {
    height: 65px;
    z-index: 1000;
    position: fixed;
    left: 60px;
    display: none;
}
.top-logo {
    height: 65px;
}
.side-logo.nav-off {
    display: none;
}
.side-logo-img {
    width: 165px;
}
.top-logo.nav-off {
    display: block;
}

.z-up {
    z-index: 10;
}

.long-name {
    font-size: 15px;
}
.really-long-name {
    font-size: 13px;
}

#indicator-info .more-info {
    font-size: 13px;
    font-weight: normal;
    width: 150px;
    height: auto;
}

.more-info .no-bot-marg {
    margin-bottom: 0;
}

#indicator-info table .na {
    font-size: 20px;
}

.load-animation {
    width: 100%;
    height: calc(100vh - 60px);
    top: 65px;
    position: fixed;
    background-color: darkgray;
    opacity: .5;
    z-index: 99999;
    display: none;
}
.load-half-box {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: darkgray;
    opacity: .5;
    z-index: 99999;
    display: none;
    border-radius: 15px;
}
.load-animation.display-animation, .load-half-box.display-animation {
    display: flex;
    justify-content: center;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.credits {
    font-weight: 200;
    color: #999999;
    font-style: italic;
    padding: 10px 25px;
}

.home-all {
    width: 96%;
    height: auto;
    margin: 2%;
    margin-bottom: 8px;
    margin-top: 75px;
    position: relative;
    z-index: 5;
}
.home-all .content-box {
    height: calc(100vh - 85px);
}

#home-heading {
    margin-bottom: 20px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50% , -50%);
    margin-top: 0px;
    white-space: nowrap;
    z-index: 99999;
}

#home-matchup-info {
    padding: 0 2%;
}

.top-blank {
    position: absolute;
    height: 30px;
    top: 80px;
    width: calc(96% - 20px);
    z-index: 999;
    background-color: #FFFFFF;
    margin-left: calc(10px + 2%);
    margin-right: calc(10px + 2%);
}
.bottom-blank {
    position: absolute;
    height: 15px;
    bottom: 30px;
    width: calc(96% - 20px);
    z-index: 999;
    background-color: #FFFFFF;
    margin-left: calc(10px + 2%);
    margin-right: calc(10px + 2%);
}

.standard-table {
    max-height: calc(100% - 95px);
    overflow: auto;
    margin-left: 36px;
    position: relative;
    top: 80px;
    margin-right: 24px;
}
.standard-table table {
    width: 100%;
    text-align: center;
    margin-top: 1.5%;
    border-spacing: 8px;
    margin-top: 0px;
    overflow-y: scroll;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
}
.standard-table td {
    border-bottom: 1px solid;
    font-size: 18px;
    height: 25px;
    padding-left: 3px;
    padding-right: 3px;
}
.standard-table thead {
    position: sticky;
    top: 0px;
    z-index: 9999;
    background-color: #77bced;
}
.standard-table thead th {
    font-weight: 600;
    font-size: 14px;
    color: #222222;
    height: 26px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding-left: 5px;
    padding-right: 5px;
    white-space: nowrap;
}
.standard-table thead th:first-child {
    border-left: 1px solid;
}
.standard-table thead th:last-child {
    border-right: 1px solid;
}
.standard-table tbody td:first-child {
    border-left: 1px solid;
}
.standard-table tbody td:last-child {
    border-right: 1px solid;
}
.standard-table tfoot {
    position: sticky;
    bottom: 0px;
    z-index: 9999;
    background-color: #77bced;
}
.standard-table tfoot th {
    height: 12px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.standard-table tfoot th:first-child {
    border-left: 1px solid;
}
.standard-table tfoot th:last-child {
    border-right: 1px solid;
}
.standard-table td:first-child {
    width: 1%;
    white-space: nowrap;
}

.ind-home-width {
    min-width: 30px;
    width: 35px;
}
.indicator-home {
    border-radius: 6px;
    font-size: 20px;
}
.ind-home-width-margin {
    min-width: 40px;
    width: 45px;
}
.indicator-home-margin-left {
    border-radius: 6px;
    font-size: 20px;
    margin-left: 10px;
}
.indicator-home-margin-left .more-info {
    margin-left: 5px;
}
.indicator-home-margin-right {
    border-radius: 6px;
    font-size: 20px;
    margin-right: 10px;
}
.indicator-home-margin-right .more-info {
    margin-right: 5px;
}
.indicator-home span, .indicator-home-margin-left span, .indicator-home-margin-right span {
    vertical-align: middle;
    text-align: center;
    color: white;
}
.home-spacer {
    width: 6px;
}

.indicator-td {
    width: 45px;
    min-width: 45px;
}

#home-matchups-table .more-info {
    top: 42px;
}

.home-pos-width {
    min-width: 30px;
}

.tooltip-inline {
    display: inline-block;
}
.error-border {
    border: 1px solid #b02121;
    background-color:#e6c3c3;
}
.error-border:focus {
    outline: 1px solid #b02121;
}

.standard-button {
    background-color:#9abad6;
    border-radius:28px;
    border:1px solid #2e5880;
    display:inline-block;
    cursor:pointer;
    color:#000000;
    font-size:14px;
    padding:5px 10px;
    text-decoration:none;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all 0.5s ease;
}
.standard-button:hover {
    opacity: .7;
    border-color: #9abad6;
}
.standard-button.delete-button {
    background-color:#d69a9a;
    border: 1px solid #b02121;
}
.standard-button.cancel-button {
    background-color: #dbdbdb;
    border: 1px solid #999999;;
}
.standard-button.save-button {
    margin-left: auto;
    background-color:#c7edcc;
    border: 1px solid #32a852;
    margin-right: 0px;
}
.standard-button.delete-button:hover {
    opacity: .7;
    border-color: #d69a9a;
}
.standard-button.cancel-button:hover {
    opacity: .7;
    border-color: #dbdbdb;
}
.standard-button.save-button:hover {
    opacity: .7;
    border-color: #c7edcc;
}

#user-team .standard-button.add-player-card-button:hover {
    opacity: .7;
    border-color: #c7edcc;
}
.save-button-tooltip {
    margin-left: auto;
}
.save-button-tooltip .more-info, .user-team-search-players .more-info {
    color: #b02121;
    text-align: center;
}

.X-button {
    background-color: #d69a9a;
    color: #b02121;
    border: 1px solid #b02121;
    z-index: 999999999;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s ease;
}
.X-button:hover {
    opacity: .7;
    border-color: #d69a9a;
}

.sort-arrow {
    transform: translate(0%, 10%);
    color: #757575;
    font-size: 18px;
    cursor: pointer;
}

.filterable-home {
    white-space: nowrap;
}

.stat-heading-flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 50px;
}
.left-drop, .right-drop {
    display: flex;
    width: 250px;
    justify-content: center;
}

.move-table-up.standard-table {
    top: 6px;
    max-height: calc(100% - 121px);
}

.standard-table .tooltip-context, .standard-table .team {
    padding-left: 5px;
    padding-right: 5px;
}
.standard-table td:first-child {
    width: 1%;
    white-space: nowrap;
    position: sticky;
    left: 0;
    z-index: 99;
    border-right: 1px solid;
}
.standard-table .even-row td:first-child {
    background-color: #b9d7eb;
}
.standard-table .odd-row td:first-child {
    background-color: #FFFFFF;
}
.standard-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 99;
    background-color: #77bced;
    border-right: 1px solid;
}
.standard-table tfoot th:first-child {
    position: sticky;
    left: 0;
    z-index: 99;
    background-color: #77bced;
}

.stat-title {
    width: 300px;
    text-align: center;
}

.low-top-blank {
    top: 104px;
}

.no-bot-marg {
    margin-bottom: 0;
}

.no-marg-dash {
    margin: 0;
    width: 50px;
    text-align: center;
}

.select .unselectable-dd {
    pointer-events: none;
    cursor: default;
    background-color: #999999;
}

#filter-btn.standard-button {
    left: 0;
    transform: none;
    font-size: 18px;
}
#filter-btn.unselectable-btn {
    pointer-events: none;
    cursor: default;
    background-color: #999999;
    border-color: black;
}

#wrapper {
    display: flex;
    justify-content: right;
    transition: all 0.5s ease;
    position: relative;
    z-index: 9;
}
#wrapper.nav-off {
    justify-content: center;
}

/* Dropdown */
.select {
    position: absolute;
    right: 10px;
    margin-top: 30px;
    display: inline-block;
    text-align: center;
}    .select select {
        display: inline-block;
        width: 100%;
        cursor: pointer;
        outline: 0;
        border: 1px solid #3a3a3a;
        border-radius: 8px;
        background: #f7f7f7;
        color: #000000;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        font-size: 13px;
        padding-left: 6px;
        padding-top: 3px;
        padding-bottom: 3px;
        padding-right: 18px;
    }
        .select select::-ms-expand {
            display: none;
        }
        .select select:hover,
        .select select:focus {
            color: #000000;
            background: #cccccc;
        }
        .select select:disabled {
            opacity: 0.5;
            pointer-events: none;
        }
.select_arrow {
    position: absolute;
    top: 6.5px;
    right: 6px;
    width: 0px;
    height: 0px;
    border: solid #7b7b7b;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
    border-color: #000000;
}
.select select:disabled ~ .select_arrow {
    border-top-color: #cccccc;
}
.select option {
    font-size: 13px;
}

.stat-heading-flex .select {
    position: relative;
    margin-top: 5px;
    right: 0;
}
.stat-heading-flex .select option {
    font-size: 18px;
}
.stat-heading-flex .select_arrow {
    right: 10px;
    top: 37%;
}

.top-50 {
    margin-top: 50px;
}

.standard-table.comp-game-logs {
    top: -5px;
    max-height: 250px;
    margin-left: -6px;
    margin-right: -16px;
}

.standard-table tbody tr:hover, .standard-table table tbody tr:hover > td:first-child {
    background-color: #77bced;
}

.scoring-label {
    position: absolute;
    right: 22px;
    margin-top: 9px;
    margin-bottom: 0px;
    color: white;
    font-size: 15px;
}

.login-label {
    position: absolute;
    right: 120px;
    margin-top: 20px;
    margin-bottom: 0px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.login-label.login-label-loggedin {
    font-size: 18px;
    margin-top: 22px;
}
.login-label:hover {
    text-decoration: none;
    color: #858705;
}

.bottom-links {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}
.bottom-links a {
    padding: 5px 5px;
    text-decoration: none;
    color: #2e5980;
    font-size: 14px;
    font-weight: 400;
    z-index: 1;
}

.trademark {
    position: absolute;
    bottom: -10px;
    width: 100%;
    text-align: center;
}
.trademark p {
    padding: 5px 5px;
    text-decoration: none;
    color: #2e5980;
    font-size: 10px;
    font-weight: 400;
    z-index: 1;
}

#scoring-dd.disable-scoring {
    pointer-events: none;
    background-color: #8c8c8c;
}

.home-all .content-box.info-page {
    height: 100%;
}

.single-box-info {
    width: auto;
    padding: 3%;
    position: relative;
    padding-left: 10%;
    padding-right: 10%;
    transform: none;
}
.info-page h1 {
    font-size: 35px;
    margin-bottom: 10px;
}
.info-page h3 {
    margin-top: 50px;
}

.top-h4-info {
    margin-top: 65px;
}
.bot-h4-info {
    margin-bottom: 65px;
}

.about-logo {
    background-color: #2e5980;
    border-radius: 12px;
    border: #000000 3px solid;
}
.about-logo-img {
    width: 100%;
}

.indent {
    text-indent: 30px;
}

.center-p-err {
    text-align: center;
}

#entry-title {
    margin-bottom: 60px;
}

.entry-box {
    background-color: #f7f7f7;
    border-radius: 12px;
    position: relative;
    width: 268.8px;
    border-style: solid;
    border-color: #575757;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 30px;
    height: 50px;
}
.entry-box.entry-checkbox {
    margin: 0;
    background-color: #FFFFFF;
    border-radius: 0px;
    width: 50px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.entry-area {
    border-style: none;
    background-color: #f7f7f7;
    width: calc(100% - 62px);
    height: 30px;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(5%,-50%);
}
.entry-area-check {
    width: 24px;
    height: 24px;
}
.entry-area:focus {
    outline: 0px;
}
.entry-label {
    float: left;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    width: 145px;
    text-align: left;
}
.entry-row {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#create-acc-btn {
    font-size: 20px;
    padding: 8px 20px;
    margin-top: 60px;
}

h1 div.select {
    position: relative;
    left: 1px;
}
h1 div.select div.select_arrow {
    top: 16.5px;
}

.no-user-data-found {
    padding: 100px 50px;
}

.popup-window {
    z-index: 100;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    transition: all 0.5s ease;
}
.popup-box {
    width: 50%;
    height: 65%;
    background: white;
    opacity: 1;
    border-radius: 16px;
    position: absolute;
    top: 90px;
    animation: .5s ease-out 0s 1 float_fade;
}

@media (max-width: 1450px) {
    .wrapper {
        position: relative;
    }
    .main-content {
        position: absolute;
        filter: brightness(30%);
        pointer-events: none;
        width: 100%;
    }
    .main-content.nav-off {
        left: 0;
        filter: none;
        pointer-events: all;
    }
}

@media (max-width: 1100px) {
    .left, .mid, .right, .left-half, .right-half, .left-equal, .mid-equal, .right-equal, .all {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .graph-heading {
        top: 80px;
    }

    #stat-page-dd {
        font-size: 26px;
    }
    #stat-type-dd {
        font-size: 22px;
    }
    #week-select-dd {
        font-size: 22px
    }
    .week-select-ind-dd {
        font-size: 22px;
    }
    .filter-btn-a {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .side-logo {
        display: block;
    }
    .top-logo {
        display: none;
    }
}

@media (max-width: 800px) {
    .ind-home-width {
        min-width: 18px;
        width: 18px;
    }
    .standard-table .ind-home-width .tooltip-context {
        padding-left: 0px;
        padding-right: 0px;
    }
    .standard-table td {
        padding-left: 1px;
        padding-right: 1px;
        font-size: 15px;
    }
    .ind-home-width-margin {
        min-width: 24px;
        width: 24px;
    }
    .indicator-home {
        font-size: 14px;
    }
    .indicator-td {
        width: 40px;
        min-width: 40px;
    }
    .indicator-home-margin-left {
        font-size: 14px;
        margin-left: 6px;
    }
    .indicator-home-margin-right {
        font-size: 14px;
        margin-right: 6px;
    }
    #home-matchups-table .pos-indicator, #home-matchups-table .neu-indicator, #home-matchups-table .neg-indicator {
        font-size: 20px;
    }
    .standard-table thead th {
        font-size: 11px;
    }
    #home-heading {
        font-size: 24px;
    }
    
    .no-marg-dash {
        width: 30px;
    }
    #week-select-dd {
        font-size: 14px;
        width: 120px;
    }
    #week-select-ind1-dd, #week-select-ind2-dd {
        font-size: 12px;
        width: 45px;
        height: 20px;
        text-align: left;
    }
    #stat-page-dd {
        font-size: 14px;
        width: 50px;
    }
    #stat-type-dd {
        font-size: 14px;
        width: 90px;
    }
    #filter-btn.standard-button {
        font-size: 14px;
    }
    .stat-title h1 {
        font-size: 16px;
    }
    .stat-title {
        width: 200px;
    }
    .left-drop, .right-drop {
        width: 200px;
    }

    .standard-table {
        margin-left: 6px;
        margin-right: 6px;
    }
}

@media (max-width: 650px) {
    .navbar {
        width: 260px;
    }
    #btn {
        left: 200px;
    }
    .search-area {
        width: 208.8px;
    }
    .left-half .content-box, .right-half .content-box {
        height: 370px;
    }
    .css-chart {
        width: 92%;
        margin-left: 6%;
        height: 140px;
        top: 20px;
    }
    .week-line {
        top: 136px;
    }
    .week-label {
        top: 158px;
    }
    .graph-heading {
        top: 87px;
    }
    #right-logs {
        top: 48%;
    }
    .player-basic-avgs td {
        font-size: 24px;
    }
    .wrapper {
        z-index: 1;
    }

    .side-logo {
        left: 23px;
    }

    .scoring-label {
        font-size: 12px;
        right: 22px;
        margin-top: 15px;
    }
    .select {
        right: 8px;
    }
    .select select {
        font-size: 11px;
    }
    .select_arrow {
        padding: 1.5px;
        top: 8.5px;
    }
}

@media (max-width: 450px) {
    .home-matchups-table {
        margin-left: 0px;
    }

    #pos-logs-dd {
        font-size: 20px;
    }
}

/* Loading Animation */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 200px;
    height: 200px;
    margin: -55px;
    border: 16px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}