:root {
    /*color*/
    --blue: #0F3B52;
    --orange: #EC6533;
    --denim-blue: #0b2b3b;
    --continuous-blue: #6EA2CE;
    --light-blue: #4881B1;
    --survive-blue: #7F86D8;
    --white: #ffffff;
    --white2: rgba(255, 255, 255, 0.06);
    --black: #2E2D2C;
    --black2: #000000;
    --black3: #12151b;
    --black4: rgba(22, 25, 32, 0.54);
    --black5: rgba(22, 25, 32, 0.7);
    --grey: #666666;
    --grey1: #B9B9B9;
    --grey2: #C7D0D3;
    --grey3: #F3F3F3;
    --grey4: #5b5858;
    --grey5: #EBEBEB;
    --darkgreen: #4C5558;
    --green: #1BA178;
    --green2: #22CE68;
    --green3: #1E634F;
    --green4: rgba(34, 206, 104, 0.05);
    --pink: #F191BC;
    --red: #c20736;
    --yellow: #FA9A48;
    --yellow2: #FABC48FF;
    --finish-yellow: #C9C931;
    --bold: montserratbold;
    --semibold: montserratsemibold;
    --italic: montestellaitalic;
    --teamColorOne: rgb(0, 0, 128);
    --teamColorTwo: rgb(0, 128, 128);
    --teamColorThree: rgb(128, 0, 128);
    --teamColorFour: rgb(227, 11, 92);
    --teamColorFive: rgb(128, 0, 0);
    --bs-btn-active-color: var(--white) !important;
    --bs-btn-active-bg: var(--orange) !important;
    --bs-btn-active-border-color: none !important;
    --bs-btn-hover-bg: var(--white) !important;
    --bs-btn-hover-border-color: var(--white) !important;
    --bs-btn-hover-color: var(--black) !important;
}
/*********************Fonts****************/
@font-face {
    font-family: 'montserratsemibold';
    src: url('../fonts/montserrat-semibold/montserrat-semibold1-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-semibold/montserrat-semibold1-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratbold';
    src: url('../fonts/montserrat-bold/montserrat-bold1-webfont.woff2') format('woff2'),
    url('../fonts/montserrat-bold/montserrat-bold1-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montestellaitalic';
    src: url('../fonts/montestella-italic/montestella_trial_it-webfont.woff2') format('woff2'),
    url('../fonts/montestella-italic/montestella_trial_it-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'icomoon';
    src: url('../icons/fonts/icomoon.eot?1v2b18');
    src: url('../icons/fonts/icomoon.eot?1v2b18#iefix') format('embedded-opentype'),
    url('../icons/fonts/icomoon.ttf?1v2b18') format('truetype'),
    url('../icons/fonts/icomoon.woff?1v2b18') format('woff'),
    url('../icons/fonts/icomoon.svg?1v2b18#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
.semibold {
    font-family: var(--semibold);
}
.bold {
    font-family: var(--bold);
}
.italic {
    font-family: var(--italic);
    font-weight: bold;
    letter-spacing: 0.075rem;
}
/**************Colors*********/
.bg-black {
    background-color: var(--black2);
}
.bg-black-op {
    background: rgba(0, 0, 0, 0.80);
}
.bg-white {
    background-color: var(--white);
}
.bg-orange {
    background-color: var(--orange);
}
.bg-red {
    background-color: var(--red);
}
.orange {
    color: var(--orange) !important;
}
.white {
    color: var(--white);
}
.black {
    color: var(--black2);
}
.grey1 {
    color: var(--grey1);
}
.icon-orange:before {
    color: var(--orange);
}
.greyscale {
    filter: grayscale(1) !important;
    opacity: 0.7;
    pointer-events: none;
}
.lightgreen {
    color: var(--green2) !important;
}
.lightred {
    color: red !important;
}
/**********End of Colors*******/
div {
    font-family: var(--semibold);
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--semibold);
}
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../images/batfast_logo.png) center no-repeat var(--black2);
    background-size: 15rem;
}
/*******Font Scales********/
.fs-0-5 {
    font-size: 0.5em !important;
}
.fs-0-75 {
    font-size: 0.75em !important;
}
.fs-1 {
    font-size: 1em !important;
}
.fs-1-5 {
    font-size: 1.5em !important;
}
.fs-3 {
    font-size: 3em !important;
}
/*******General Elements********/
html, body {
    height: 100%;
    margin: 0;
}
body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.orange-btn {
    background: var(--orange);
    color: var(--white);
    text-transform: uppercase;
    width: max-content;
    padding: 0.5rem 2rem;
    transition: 0.35s all ease;
    border: 0.2rem solid var(--orange) !important;
    text-align: center;
    font-size: 1rem;
    font-family: var(--bold);
    cursor: pointer;
}
.orange-btn:hover, .orange-btn:active, .orange-btn:focus-visible {
    background: var(--white) !important;
    color: var(--orange) !important;
}
.round-btn {
    border-radius: 0.25rem;
    outline: none;
}
a, a:hover, a:focus {
    text-decoration: none;
}
.bottom-line {
    position: relative;
    width: max-content;
}
.bottom-line:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 0.5rem;
    background: var(--orange);
    bottom: -0.5rem;
    right: 0;
}
input, select {
    outline: none !important;
    box-shadow: none !important;
}
.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
.form-check-input:focus-within, .form-check-input:focus, .form-check-input {
    border-color: var(--grey2);
}
.box-animate {
    animation: box-animate 0.75s 1;
    box-shadow: 0 0 0 var(--grey2);
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes box-animate {
    0% {
        opacity: 0;
    }
    50% {
        box-shadow: 0 0 var(--grey2);
        opacity: 0.5;
    }
    100% {
        box-shadow: 1rem 1.5rem 0 var(--grey2);
        opacity: 1;
    }
}
.bg-tech {
    background: url("../images/bg-1.png") no-repeat;
    background-size: cover;
}
.dashed-bg {
    border: 0.3rem solid var(--grey2);
    background: var(--white) url(../images/dashed-lines.png);
}
.bg-grey {
    background: var(--grey5);
}
/* width */
.orange-scrollbar::-webkit-scrollbar {
    height: 0.4rem;
    width: 0.4rem;
}
/* Track */
.orange-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
.orange-scrollbar::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 0.2rem;
}
.bf-container {
    width: 80%;
}
.bf-small-container {
    width: 50%;
}
.bf-wide-container {
    width: 80%;
}
.menu-padding {
    flex: 1 0 auto;
    padding-top: 8rem;
}
.menu-padding-frame {
    padding-top: 4rem;
}
.width-95 {
    width: 95%;
}
.min-height-95 {
    min-height: 95vh;
}
.cursor-pointer, .ball-info {
    cursor: pointer !important;
}
.badge {
    border-radius: 0.2rem;
}
.navbar-toggler {
    color: var(--white);
    border: 0;
}
.modal {
    opacity: 0;
    transition: 0.25s all ease-in-out;
    transform: scale(0);
}
.modal.show {
    opacity: 1;
    transform: scale(1);
}
.modal-header .close {
    background: transparent;
    border: 0;
    font-size: 3rem;
    padding: 0;
    margin: 0;
    color: var(--red);
    height: unset;
    display: block;
}
.icon-popup-close-white.icon-orange:before {
    color: var(--orange);
}
/****Toaster Css*******/
#bf-toast {
    z-index: 9999999;
}
.batfast-toast {
    background: var(--white);
    color: var(--black);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: 999999;
    width: 85%;
    transition: 0.25s all ease-in-out;
}
.sliding-bf-toast.show {
    transform: translateY(25%);
}
.sliding-bf-toast.hide {
    display: block;
}
#bf-toast.indefinite.hide {
    transform: translateY(25%);
    opacity: 1;
    z-index: 9;
}
.batfast-toast.error {
    background: var(--red);
    color: var(--white);
}
.batfast-toast.warning {
    background: var(--yellow);
    color: var(--white);
}
.sliding-bf-toast.toast:not(.showing):not(.show) {
    z-index: 0;
    transform: translateY(-120%);
    opacity: 1;
}
.batfast-toast .toast-body button {
    background: none;
    opacity: 1;
    font-size: 3vmin;
}
.batfast-toast .toast-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vmin;
    position: relative;
}
.bf-toast p {
    font-size: 3vmin;
    text-align: left;
}
.error-highlight {
    background-color: red !important;
    color: white !important;
}
/*****Login Page Css******/
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-page-container {
    padding: 3rem;
}
.login-form {
    text-align: left;
}
.form-input:focus-within, .form-control:focus-within, .form-control-container input:focus-within {
    border: 0.2rem solid var(--orange);
}
.form-control::placeholder {
    color: var(--grey1) !important;
    opacity: 0.7;
}
.form-control {
    border: 0.2rem solid var(--grey2);
    max-height: 4rem;
    height: 3rem;
    border-radius: 0.2rem;
    appearance: auto;
    padding: .25rem .25rem;
    font-size: 1rem;
    line-height: 1rem;
}
.form-control-container input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 0.2rem solid var(--grey2);
    max-height: 4rem;
    height: 4rem;
    border-radius: 0.2rem;
}
.login-form .form-group, .signup .form-group, .password-reset .form-group {
    margin-bottom: 1rem;
}
.form-control.select {
    appearance: auto !important;
    min-height: 4rem;
}
.form-control.min-height-2rem {
    height: 2rem;
}
.social-logins a {
    display: block;
    margin: 0 0.5rem;
    width: 2.5rem !important;
}
.show-hide {
    position: absolute;
    top: 25%;
    right: 2%;
    display: block;
    cursor: pointer;
}
.show-hide img {
    width: 1.75rem;
}
.show-hide.active:after {
    content: '';
    position: absolute;
    width: 1.75rem;
    height: 0.2rem;
    background: var(--black);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
    transform: rotate(23deg);
    transition: 0.5s all ease;
}
.navbar-brand img {
    width: 4rem;
}
#batfast-nav-bar {
    background: rgba(0, 0, 0, 0.80);
}
.social-icons {
    position: absolute;
    right: 1rem;
}
.page-footer {
    background: rgba(0, 0, 0, 0.80);
    color: var(--white);
    padding: 1rem;
    margin-top: 2.5rem;
    flex-shrink: 0;
}
#batfast-nav-bar ul li a {
    color: var(--white);
}
#main-navbar {
    flex-grow: unset;
}
.navbar-toggler {
    color: var(--white);
}
.navbar-toggler:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}
.page-topic {
    width: max-content;
    margin: auto;
    border-bottom: 0.25rem solid var(--white);
}
/***********General Animations*********/
.rotate-y-animate {
    transform: rotateX(90deg);
    opacity: 0;
    transition-delay: 1s !important;
    transition: 0.75s all cubic-bezier(0.81, 0.06, 0.05, 0.89);
}
.page-loaded .rotate-y-animate {
    transform: rotateX(0deg);
    opacity: 1;
}
.translate-y-animate {
    transform: translateY(100%);
    opacity: 0;
    transition-delay: 1s !important;
    transition: .75s all cubic-bezier(0.81, 0.06, 0.05, 0.89);
}
.page-loaded .translate-y-animate {
    transform: translateY(0%);
    opacity: 1;
}
.slide-x-left {
    transform: translateX(-100%);
    opacity: 0;
    transition-delay: 1s !important;
    transition: .75s all cubic-bezier(0.81, 0.06, 0.05, 0.89);
}
.page-loaded .slide-x-left {
    transform: translateX(0%);
    opacity: 1;
}
.slide-x-right {
    transform: translateX(100%);
    opacity: 0;
    transition-delay: 1s !important;
    transition: .75s all cubic-bezier(0.81, 0.06, 0.05, 0.89);
}
.page-loaded .slide-x-right {
    transform: translateX(0%);
    opacity: 1;
}
/********Leaderboard Css*******/
.bg {
    background-attachment: fixed !important;
    background-size: cover !important;
}
.bg-cricket {
    background: url(../images/cricket-full-bg.png) no-repeat;
}
.bg-baseball {
    background: url(../images/baseball-full-bg.png) no-repeat;
}
.bg-tennis {
    background: url(../images/tennis-full-bg.png) no-repeat;
}
.bg-lacrosse {
    background: url(../images/lacrosse-full-bg.png) no-repeat;
}
.opacity-table-white {
    background: rgba(255, 255, 255, 0.76);
}
.opacity-table-white td, .opacity-table-white th {
    background: none;
    border: 0;
}
.landing-table-container {
    margin: auto;
    border-radius: 0 0 0.2rem;
    padding: 1rem !important;
}
.landing-table-header {
    margin: 1rem auto;
}
.landing-table-header #available_filters .form-row {
    background-color: black;
    display: flex;
    padding: 0.75rem 1rem 1rem;
    align-items: center;
    border-radius: 0.2rem;
}
.bf-input-box {
    padding: 0.5rem;
    border-radius: 0.2rem;
    font-family: var(--semibold);
    text-transform: uppercase;
    border: 0.2rem solid var(--grey2);
}
.custom-select-arrow {
    position: relative;
}
.custom-select-arrow .bf-input-box {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: relative;
}
.custom-select-arrow:after {
    content: "";
    position: absolute;
    top: 60%;
    left: calc(100% - 30px);
    pointer-events: none;
    border: 0.5rem solid transparent;
    border-color: var(--orange) transparent transparent transparent;
}
#available_filters .orange-btn {
    height: 3rem;
}
.landing-table-header #available_filters .form-group {
    padding: 0 0.4rem;
}
.landing-table-header #available_filters .form-group label {
    text-transform: uppercase;
    font-size: 0.75rem;
}
.landing-table {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0.8rem;
}
.table-header th {
    background: var(--orange);
    padding: 0.5rem;
    color: white;
    font-family: var(--bold);
    font-size: 1rem;
    text-transform: uppercase;
    vertical-align: middle;
}
.landing-table tbody td {
    color: var(--white);
    background: var(--black2);
    padding: 0.5rem;
    font-family: var(--bold);
}
.landing-table .profile-row {
    position: relative;
    top: -15px;
}
.landing-table .profile-row td, .landing-table .profile-row td:hover {
    background: var(--grey5);
}
.profile_table thead td:hover {
    background: var(--orange) !important;
}
.profile-row td {
    border-bottom-left-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}
.profile_table td {
    border-radius: 0;
}
.profile-row .black-small-box, .profile-row .black-big-box {
    animation-delay: 1s;
    animation: 0.5s scale-up-box cubic-bezier(0.81, 0.06, 0.05, 0.89);
}
@keyframes scale-up-box {
    0% {
        opacity: 0.5;
        transform: scale(0.75);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.small-box-stats {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5rem;
}
.rr-page-boxes .small-box-stats {
    grid-template-columns: repeat(2, 15%);
    justify-content: center;
}
.black-small-box {
    background: var(--black2) !important;
    display: flex;
    clip-path: polygon(7% 11%, 100% 0%, 83% 100%, 0% 100%);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}
.black-small-box span p, .black-small-box span p a, .data-card p, .data-card p a {
    color: var(--grey1);
    font-family: var(--bold);
    word-wrap: break-word;
    white-space: normal;
    font-size: 1rem;
    padding: 0.5rem 0;
}
.black-small-box span h4, .data-card h4 {
    font-family: var(--bold);
    font-size: 2rem;
}
.big-box-inn .table-header td {
    background: var(--orange);
    color: var(--white);
    font-family: var(--bold);
}
.big-box-inn tbody td {
    background: black !important;
}
.big-box-inn table {
    border-spacing: 0.5rem 1rem;
    border-collapse: separate;
    min-height: 100%;
}
.separator-line td {
    background: none !important;
    padding: 0 !important;
}
.separator-line hr {
    opacity: 1;
    border-top: 0.3rem solid var(--orange);
}
.separator-line:hover {
    --bs-table-hover-color: none;
}
.profile-container {
    padding-bottom: 2rem;
}
.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination {
    background: var(--grey);
    padding: 0.75rem 1.5rem;
    margin-top: 2rem;
    border-radius: 0.3rem;
    overflow-x: scroll;
}
.pagination::-webkit-scrollbar {
    display: none;
}
.page-item.active a {
    background: var(--orange);
    border-color: var(--white);
}
.page-item a {
    background: var(--black2);
    color: var(--white);
}
.page-item a:hover {
    background: var(--white);
    color: var(--orange);
    transition: 0.5s all ease;
    cursor: pointer;
}
.ld-not-avail {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.ld-not-avail-inn img {
    width: 8rem;
    margin: 1rem 0;
}
.ld-not-avail-inn {
    padding: 2rem;
    width: 100%;
}
.dropdown-menu {
    background: var(--black);
    border: 0.1rem solid var(--orange);
    font-size: 0.85rem;
}
#track-stats .dropdown-menu {
    max-height: 15rem;
    overflow-y: auto;
}
.dropdown-menu a, .dropdown-menu .dropdown-item {
    transition: 0.25s all ease;
    color: var(--white);
    cursor: pointer;
    text-transform: capitalize;
}
.dropdown-menu a:hover, .dropdown-menu .dropdown-item:hover {
    background: var(--orange);
    color: var(--white);
}
.dropdown-toggle:hover .ev-search-container {
    display: block;
}
.ev-search-container {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    left: 100%;
    top: 10%;
    max-height: 15rem;
}
.ev-search-container input {
    width: 90%;
    padding: 0.5rem;
    font-size: 0.75rem;
    margin: auto;
    height: 2rem;
}
.leagues-bar {
    z-index: 1;
}
.dropdown-toggle {
    position: relative;
    cursor: pointer;
}
.dropdown-menu {
    animation: slideDown 0.45s ease-out;
}
.slide-down {
    animation: slideDown 1s cubic-bezier(0.25, 0.75, 0.3, 1);
}
@keyframes slideDown {
    from {
        transform: translateY(-1rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.bf-tabs {
    border-radius: 0.2rem;
    overflow: hidden;
}
.bf-tabs .nav-tabs {
    background: var(--black2);
    list-style: none;
}
.bf-tabs .nav-link.active {
    background: var(--orange);
    color: var(--white);
    border: 0;
    border-radius: 0;
    text-transform: uppercase;
    padding: 0.75rem;
}
.bf-tabs .nav-link {
    text-transform: uppercase;
    color: var(--white);
    border: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    --bs-nav-tabs-border-radius: 0;
}
.tab-content {
    border-radius: 0;
}
.detailed_table tbody tr, .detailed_table tbody td, #game-mode tbody tr, #game-mode tbody td, #detailed tbody tr, #detailed tbody td,
#round-robin-tab tbody tr, #round-robin-tab tbody td, #events-played-tab tbody td {
    border: 0.1rem solid var(--black2);
}
.detailed_table tbody tr td, .detailed_table tbody tr th, #game-mode tbody tr td, #game-mode tbody tr th, #detailed tbody tr td, #detailed tbody tr th,
#round-robin-tab tbody tr td, #round-robin-tab tbody tr th, #events-played-tab tr th, #events-played-tab tr td {
    font-weight: bold;
    font-size: 0.7rem;
    white-space: nowrap;
    padding: 0.3rem;
}
.detailed_table thead tr:nth-child(1) th, #game-mode thead tr:nth-child(1) th, #detailed thead tr:nth-child(1) th {
    top: 0;
}
.detailed_table thead tr:nth-child(2) th {
    top: 2em;
}
.detailed_table thead tr th, #game-mode thead tr th, #detailed thead tr th, #round-robin-tab thead tr th {
    position: sticky;
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
    background-color: var(--orange);
    padding: 0.2rem;
    border: 0.1rem solid var(--black2);
}
.table-header {
    background-color: var(--orange);
}
#game-mode .table-header {
    background-color: var(--orange);
    color: var(--white);
}
.text-rotate-90 {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    writing-mode: vertical-lr;
}
.connected-player-splits {
    background: var(--grey5);
    padding: 1rem;
    margin: 1rem 0 2rem 0;
    border-radius: 0.2rem;
    box-shadow: 0.1rem 0.1rem 1.5rem 0.3rem var(--grey);
}
.connected-player-splits .topic {
    font-size: 1rem;
    margin: 0.5rem 0 !important;
}
.player-stats-box {
    background: var(--black2);
    margin: 0.75rem;
    box-shadow: 0.2rem 0.2rem 1rem 0.2rem var(--grey);
}
.player-stats-box .list-group-item {
    background: none;
    color: var(--white);
    padding: 0.75rem 0.25rem;
    border-color: var(--orange);
}
.account-settings-cont {
    padding: 1rem;
    background: var(--grey5);
}
#swing-stats, #events-played-tab, #round-robin-tab {
    min-height: 50vh;
}
.filter-user-stats .dropdown-toggle, #events-played-tab .dropdown-toggle, #round-robin-tab .dropdown-toggle {
    padding: 0.75rem 1.5rem;
    color: var(--white) !important;
    background: var(--orange);
    width: max-content;
    display: block;
    text-align: center;
}
.player-stats-box .icon-circle-user {
    color: var(--orange);
    font-size: 4rem;
    position: relative;
    top: -2rem;
    background: var(--black2);
    border-radius: 50%;
}
#swing-stats .dropdown, #events-played-tab .dropdown, #round-robin-tab .dropdown {
    width: max-content;
    margin: auto;
}
.client-summary .splits .black-small-box span p {
    white-space: normal;
}
.table-list {
    padding: 0 1rem;
}
.table-list .list-group-item {
    background: var(--black2);
    color: var(--white);
    border: 0;
    margin: 0.25rem 0;
    font-size: 1rem;
    padding: 0.5rem !important;
}
.table-list .head-text {
    background: var(--orange);
    color: var(--white);
    font-size: 1rem;
}
#round-robin-tab table .orange-btn, #track-table table .orange-btn, #events-played-tab .orange-btn {
    font-size: 0.65rem;
    padding: 0.25rem 0.35rem;
}
#round-robin-tab table .link-td {
    padding: 10px;
}
.js-plotly-plot .plotly .main-svg {
    background: transparent !important;
}
.round-robin-topics .badge {
    min-width: 5vw;
    margin: 0.15rem 0;
}
.icon-game-mode {
    font-size: 8rem;
    background: var(--orange);
    border-radius: 50%;
}
#tracking-video-source {
    width: 100%;
}
.share-btns {
    align-items: center;
}
.share-btns a {
    display: block;
    margin-right: 1rem;
    z-index: 1;
}
.share-btns a span {
    color: var(--orange);
    font-size: 1.5rem;
}
.vid-del-btn-sec {
    position: relative;
}
.vid-del-btn-sec input {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border: 0;
}
.video-holder {
    height: 75vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 1.5rem;
}
.video-holder .carousel-indicators [data-bs-target] {
    width: 100%;
    height: 100%;
    text-indent: unset;
    padding: 0;
    background: transparent;
    opacity: 1;
}
.video-holder .carousel-indicators {
    position: relative;
    display: block;
    margin: 0;
}
#video-replay .video-tracking {
    border: 0.25rem solid transparent;
}
#video-replay .carousel-indicators .video-content.active {
    background: var(--white);
    border: 0.25rem solid var(--orange);
    border-radius: 6px;
    position: relative;
}
#video-replay .video-tracking {
    transition: 0.1s all ease;
}
#video-replay .carousel-indicators .video-content.active:after {
    content: 'Now Playing';
    position: absolute;
    height: 100%;
    width: 100%;
    color: var(--white);
    bottom: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-vid-cap {
    font-size: 1rem;
    font-style: italic;
}
/***********Validation Css***************/
.cr-acc-val-required {
    position: relative;
}
.cr-acc-val-required:after {
    content: 'REQUIRED';
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1.25vmin;
    color: var(--white);
    background: var(--red);
    padding: 0.25vmin 1.5vmin;
    z-index: 9;
}
.cr-acc-val-invalid {
    position: relative;
}
.cr-acc-val-invalid:after {
    content: 'INVALID';
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1.25vmin;
    color: var(--white);
    background: var(--yellow);
    padding: 0.25vmin 1.5vmin;
    z-index: 9;
}
#form-validation {
    top: 0;
    right: 0;
    bottom: 0;
    position: relative;
    width: 100%;
    margin: 2rem 0;
}
.batfast-toast .toast-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vmin;
    position: relative;
}
.validation-toast {
    background: var(--red);
    color: var(--white);
    width: max-content;
    height: max-content;
}
.validation-toast .toast-body {
    justify-content: center;
    padding: 1rem;
}
.validation-toast p {
    font-size: 1rem;
    text-transform: uppercase;
    animation: val-scale-up 1.5s cubic-bezier(0.81, 0.06, 0.05, 0.89);
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    text-align: center;
}
.validation-toast .toast-body:after {
    content: '';
    position: absolute;
    bottom: -3rem;
    border-color: transparent transparent var(--red) transparent;
    border-style: solid;
    border-width: 1.5rem;
    height: 0;
    width: 0;
    transform: rotateX(180deg);
}
@keyframes val-scale-up {
    0% {
        transform: scale(0.96);
    }
    100% {
        transform: scale(1);
    }
}
#signup_form .form-check-input {
    margin: 0;
    background: transparent;
    border: 0;
    position: absolute;
}
#signup_form .form-check-input:checked {
    background: transparent;
    border-color: transparent;
}
#signup_form .form-check {
    padding: 0;
}
.custom-radio-list label {
    background: var(--grey1);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0;
    max-height: 2rem;
    min-height: 2rem;
    width: max-content;
}
.custom-radio-list label {
    margin-right: 0.25rem;
    padding: 0.5rem;
    cursor: pointer;
}
.custom-radio-list li label {
    margin-right: 0.25rem;
    padding: 0.5rem;
}
.custom-radio-list li:first-child label {
    border-radius: 20px 0 0 20px;
}
.custom-radio-list li:last-child label {
    border-radius: 0 20px 20px 0;
}
.custom-radio-list input:checked + label {
    background: var(--blue);
}
#id_gender .form-check:nth-child(4) label, #id_gender.custom-radio-list li:nth-child(4) label {
    font-size: 0.65rem;
}
.video-container {
    text-align: center;
    background: var(--black2);
}
.video-js {
    width: 100%;
}
.vjs-control-bar {
    background: var(--orange) !important;
}
.checkin-existing {
    width: 50%;
    margin: auto;
}
.vjs-volume-panel {
    display: none;
}
.existing-players {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: 0.15rem solid var(--grey2);
    margin: 1rem auto;
    padding: 1rem 2rem;
}
.existing-players a {
    margin: 0 0 0 auto;
}
.custom-radio-list {
    list-style: none;
    padding: 0;
}
.custom-radio-list {
    display: flex;
    font-size: 0.75rem;
    max-height: 1.5rem;
}
.custom-radio-list input {
    visibility: hidden;
    position: absolute;
}
.video-js .vjs-big-play-button {
    width: 5rem;
    height: 5rem;
    background: var(--orange) !important;
    border: 0;
    border-radius: 50%;
}
.vjs-icon-play, .video-js .vjs-play-control .vjs-icon-placeholder, .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    position: initial;
}
#video-replay .carousel-control-prev .icon-circle-chevron-left, #video-replay .carousel-control-next .icon-circle-chevron-right {
    font-size: 3rem;
}
.prev-next-sec .icon-circle-chevron-left, .prev-next-sec .icon-circle-chevron-right {
    font-size: 2rem;
}
#video-replay .carousel-control-prev, #video-replay .carousel-control-next {
    width: max-content;
    height: max-content;
}
#video-replay .carousel-control-prev {
    top: 45%;
    left: 3%;
}
#video-replay .carousel-control-next {
    top: 45%;
    right: 3%;
}
.ex-date {
    color: var(--red);
    font-size: 0.75rem;
    font-style: italic;
}
.vid-topic {
    color: var(--black2);
    font-style: italic;
    font-size: 0.75rem;
}
.vid-ply-name {
    color: var(--grey4);
}
.show-hide {
    position: absolute;
    top: 45%;
    right: 2%;
    display: block;
    cursor: pointer;
}
.score-btn {
    background: var(--denim-blue);
    color: var(--white);
    border-radius: 50%;
    border: 2px solid var(--white);
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.score-btn.green {
    background: var(--green);
}
.score-btn.edited {
    border-color: var(--orange);
}
.score-btn.red {
    background: var(--red);
}
.score-btn.removed {
    opacity: 0.4;
}
.highlights {
    width: 30%;
    margin: auto;
}
.long-dd-list {
    max-height: 15rem;
    overflow-y: auto;
    overflow-x: hidden;
}
#video-replay .video-js {
    height: 75vh;
    width: 100%;
}
.click-more-sec {
    padding: 1rem 2rem 0.5rem 2rem;
    display: flex;
    align-items: center;
    color: var(--black);
    border-radius: 0.2rem 0.2rem 0 0;
}
.sort-by .dropdown-menu {
    top: 2rem;
    right: 0;
    left: auto;
}
#participation-board .small-box-stats {
    grid-template-columns: auto auto auto auto;
    padding: 1rem 2rem;
}
#batfast-nav-bar .navbar-nav .nav-link {
    color: var(--white);
}
#batfast-nav-bar .dropdown-item:hover {
    background-color: lightsalmon;
    color: var(--white);
}
#batfast-nav-bar .dropdown .dropdown-menu {
    display: none;
}
#batfast-nav-bar .dropdown:hover > .dropdown-menu, #batfast-nav-bar .dropend:hover > .dropdown-menu {
    display: block;
}
#feedback-btn {
    transform: rotate(-90deg);
    transform-origin: 100% 100%;
    position: fixed;
    right: 0;
    bottom: 20rem;
    z-index: 100;
}
/***********Cookie CSS**************/
.cookie-bar {
    position: fixed;
    bottom: 0;
    background-color: #333;
    opacity: 0.95;
    color: var(--white);
    padding-top: 35vh;
    text-align: center;
    z-index: 1000;
    font-size: 1rem;
    height: 100vh;
    width: 100%;
}
.cookie-group-table {
    border-collapse: collapse;
    width: 100%;
}
.cookie-group-table th, .cookie-group-table td {
    border: 1px solid var(--grey3);
    padding: 8px;
    text-align: left;
}
.cookie-group-table th {
    background-color: var(--orange);
    font-weight: bold;
    color: var(--white);
}
.cookie-group-table tr:nth-child(even) {
    background-color: var(--grey3);
}
.cookie-group-table tr:hover {
    background-color: var(--grey2);
}
.cookie-group-form {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--grey3);
    padding: 10px;
    border: 1px solid var(--grey2);
    border-radius: 5px;
}
.cookie-consent-accepted {
    font-weight: bold;
}
.cookie-consent-decline {
    margin-left: auto;
}
.cookie-consent-declined {
    font-weight: bold;
    margin-left: auto;
}
.cookie-btns {
    margin-top: 2rem;
}
#tracking-video-container .video-js {
    width: 50vh;
    height: 50vh;
}
#video-container .video-js {
    height: 50vh;
}
#feedback-highlighter {
    height: auto;
}
#menu-bar-click {
    font-size: 1.5em;
}
#batfast-nav-bar .navbar-toggler.collapsed #menu-bar-click:before {
    content: "\e916";
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#batfast-nav-bar .navbar-toggler #menu-bar-click:before {
    content: "\e922";
    color: var(--white);
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.separate-video-page {
    width: 100%;
    height: 90vh;
}
.sep-vid-details p {
    font-size: 0.75rem;
}
.filter-desc h6 {
    margin: 0.5rem 0;
}
.filter-desc .badge {
    min-width: 10%;
}
#round-robin-table .primary-color {
    background: var(--grey2);
}
.sep-vid-container {
    text-align: center;
}
.sep-vid-container .share-btns.vid-main {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}
.social-sharing-linkedin {
    display: none !important;
}
.social-sharing-whatsapp {
    display: none !important;
}
/*******End of Cookie*****/
/**Status Page****/
#status-page-bg {
    background: url("../images/allsports.png") no-repeat fixed;
    padding: 1rem;
}
#status-carousel .carousel-indicators {
    position: relative;
    width: 90%;
    margin: auto;
    text-align: center;
    display: block;
}
#status-carousel .carousel-indicators button {
    width: auto;
    height: auto;
    text-indent: 0;
    display: none;
}
#status-carousel .carousel-indicators button.active {
    display: block;
}
.current-issues-inn {
    height: 97vh;
}
div#status-carousel .sim-status-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 1rem;
}
.sim-status-block {
    background: var(--black2);
    border-radius: 6px;
    padding: 0.5rem;
    height: 28vh;
}
.sim-status-head {
    color: var(--white);
    font-family: var(--italic);
    font-size: 1rem;
}
.sim-status-block p, .live-issues-block p {
    padding: 0.15rem 1rem;
    border-radius: 6px;
    margin: 0.25rem 0;
    color: var(--black) !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.sim-status-block p.grey {
    background: #c2c2c2;
}
.sim-status-block p.green {
    background: var(--green);
}
.sim-status-block p.orange {
    background: var(--orange);
}
.sim-status-block p.red {
    background: var(--red);
}
.sim-status-block p.yellow {
    background: var(--yellow2);
}
.live-issues-block {
    background: var(--black2);
    color: var(--white);
    border-radius: 6px;
    padding: 1rem;
    height: auto !important;
}
.severity-badge {
    border-radius: 6px;
    border: 1px solid var(--black);
    width: 2rem;
    text-align: center;
}
.issue-duration {
    display: block;
    font-size: 0.65rem;
}
.sim-status-block p.no-live-issues {
    color: var(--white) !important;
    justify-content: center;
}
/******End of Status Page*********/
/***Responsive css****/
@media only screen and (max-width: 768px) {
    .bf-container, .bf-small-container, .bf-wide-container {
        width: 90%;
    }

    .login-page-container {
        padding: 1rem;
    }

    .black-small-box span p {
        word-break: break-word;
        white-space: normal;
    }

    .big-box-inn table {
        border-spacing: 0.25rem;
    }

    .black-small-box span {
        overflow: hidden;
    }

    .pagination {
        display: -webkit-inline-box;
        padding: 0.5rem;
    }

    #available_filters .orange-btn {
        margin-top: 2rem;
    }

    #batfast-nav-bar ul li a {
        word-wrap: break-word;
        white-space: normal;
        padding: 0.5rem;
        margin: 0 0.5rem;
    }

    .social-icons ul {
        flex-direction: unset;
        width: 100%;
        justify-content: space-evenly !important;
        text-align: center;
    }

    .checkin-existing {
        width: 100%;
    }

    .existing-players p {
        text-align: center;
        margin: 2rem 0;
    }

    .video-js .vjs-time-control {
        padding: 0;
    }

    .highlights .video-js, .highlights .share-btns {
        width: 100%;
        margin: auto;
    }

    .highlights {
        width: 100%;
        margin: auto;
    }

    #video-replay .video-js {
        height: 50vh;
        width: 100%;
    }

    .rr-page-boxes .small-box-stats {
        grid-template-columns: repeat(2, 50%);
    }

    .round-robin-topics .badge {
        min-width: 15vw;
        margin: 0.15rem 0;
    }

    #participation-board .small-box-stats {
        grid-template-columns: auto auto;
        padding: 1rem 2rem;
    }

    #participation-board .black-small-box span h4 {
        font-family: var(--bold);
        font-size: 1rem;
    }

    #feedback-btn {
        font-size: 0.5rem;
        padding: 0.25rem 1rem;
    }

    .table-header th {
        padding: 0.25rem;
        font-size: 0.75rem;
    }

    .landing-table tbody td {
        font-size: 0.75rem;
        padding: 0.75rem 0.25rem;
    }

    .landing-table {
        border-spacing: 2px;
    }

    #batfast-nav-bar {
        max-height: 100vh;
        overflow: scroll;
    }

    .bf-tabs .nav-link {
        font-size: 0.75rem !important;
    }

    .filter-nav {
        text-align: center;
    }

    .filter-nav li {
        margin: 0.5rem 0;
    }

    .filter-desc .badge {
        min-width: 25%;
    }

    .table-desc {
        font-size: 0.85rem;
    }

    .social-sharing-whatsapp {
        display: block !important;
    }

    .current-issues-inn, #status-carousel .carousel-item {
        height: auto;
    }

    div#status-carousel .sim-status-container {
        display: block;
    }

    .sim-status-block {
        height: auto;
        margin: 0.5rem 0;
    }

    #status-page-bg {
        padding: 1rem;
    }

    #status-page-bg .col-12 {
        padding: 0;
    }
}
@media only screen and (min-width: 992px) {
    #main-navbar {
        flex-grow: unset;
        display: block !important;
    }
}
@media only screen and (max-width: 991px) {
    .social-icons ul {
        flex-direction: unset;
        width: 100%;
        justify-content: space-evenly !important;
        text-align: center;
    }

    .navbar-nav .dropdown-menu {
        padding: 1rem;
    }

    #batfast-nav-bar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-toggle:hover > .ev-search-container {
        display: block !important;
    }

    .dropdown-submenu {
        margin: 0.5rem 0;
    }

    .orange-btn:hover, .orange-btn:active, .orange-btn:focus-visible {
        background: var(--orange) !important;
        color: var(--white) !important;
    }

    #batfast-nav-bar .ev-search-container {
        margin: 1rem 0;
    }

    .cookie-btns a {
        display: block;
        margin: 1rem auto !important;
    }

    .orange-btn {
        font-size: 0.85rem;
    }

    .ld-not-avail {
        min-height: 95vh;
    }

    #feedback-welcome, #feedback-highlighter, #feedback-overview, #feedback-submit-loading, #feedback-submit-success, #feedback-submit-error {
        width: 100%;
    }

    #feedback-note-tmp {
        width: 100%;
    }

    #feedback-welcome {
        left: auto;
        margin: auto;
    }

    #feedback-highlighter {
        right: auto;
        height: auto;
    }

    .video-section {
        display: none;
    }
    .team-bar-disp h1{
        font-size: 1.5rem;
    }
}
@media only screen and (max-width: 500px) {
    .black-small-box span {
        overflow: hidden;
    }

    .black-small-box span p, .black-small-box span p a {
        font-size: 0.75rem;
    }

    .black-small-box span h4 {
        font-size: 1.5rem;
    }

    .small-box-stats {
        grid-template-columns: repeat(3, 30%);
    }

    .connected-player-splits .small-box-stats {
        grid-template-columns: repeat(2, 45%);
    }

    .landing-table-container {
        padding: 0 !important;
    }
    .team-bar-disp h1 {
        font-size: 1.25rem;
        padding:1rem;
        width: 80%;
    }
    .team-sb-icon {
        font-size: 5rem;
        top:0.5rem;
    }
}
@media screen and (min-width: 992px) {
    #batfast-nav-bar .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }
}
.vjs-icon-backward-1:before, .vjs-skip-backward-1 .vjs-icon-placeholder:before {
    content: "\e92a";
    color: var(--white);
}
.icon-skip-1-backward:before {
    content: "\e92a";
    color: var(--white);
}
table#track_data th:nth-child(16), table#track_data td:nth-child(16),
table#track_data th:nth-child(17), table#track_data td:nth-child(17),
table#track_data th:nth-child(18), table#track_data td:nth-child(18) {
    display: none;
}
table#track_data th:nth-child(19), table#track_data td:nth-child(19) {
    padding: 0;
}
#tracking-video-modal .modal-header {
    padding: 0;
}
#tracking-video-modal .modal-header .close {
    position: fixed;
    margin-top: 1.1em;
    right: 0.5em;
    font-size: 3em;
    z-index: 1;
    background: white;
    border-radius: 0.5rem;
    line-height: 0.7em;
    padding: 0.1em;
}
#ball-tracking-tab {
    position: absolute;
}
.new-profile-bt #ball-tracking-tab {
    position: relative;
}
.video-section {
    position: fixed;
    background: white;
    border-radius: 1em;
    padding: 1em;
}
#ball-tracking-tab button.play-button {
    position: fixed;
    font-size: 2em;
    padding-left: 0.4em;
    color: white;
    margin: 0.2em;
    width: 5rem;
    height: 5rem;
    background: var(--orange) !important;
    border: 0;
    border-radius: 50%;
}
#ball-tracking-tab button.play-button::before {
    content: '\25B6';
    margin-right: 5px;
}
#ball-tracking-fps {
    position: absolute;
    bottom: 0;
    left: 0;
}
.mini-play-button {
    font-size: 1em;
    padding-left: 0.4em;
    color: white;
    margin: 0.2em;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--orange) !important;
    border: 0;
    border-radius: 50%;
    display: inline-block;
}
.mini-play-button::before {
    content: '\25B6';
    top: 5px;
    left: -1px;
    position: relative;
}
.ball-tracking-stats {
    position: fixed;
    bottom: 2em;
    right: 2em;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.5rem;
}
.ball-tracking-box {
    background: var(--black2) !important;
    display: flex;
    clip-path: polygon(7% 11%, 100% 0%, 83% 100%, 0% 100%);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}
.ball-tracking-box span p {
    color: var(--grey1);
    font-family: var(--bold);
    word-wrap: break-word;
    white-space: normal;
    font-size: 0.8rem;
    padding: 0.5rem 0;
}
.ball-tracking-box span h5 {
    padding: 0 1em 0 0.5em;
}
.current-sport {
    text-decoration: underline;
}
.svg-container {
    width: 100% !important;
}
.updatemenu-item-rect, .selector-rect {
    fill: var(--orange) !important;
    stroke-opacity: 0 !important;
    rx: 0 !important;
}
.updatemenu-item-text, .updatemenu-header-arrow, .selector-text {
    fill: var(--white) !important;
}
.social-sharing-whatsapp, .social-sharing-linkedin, .social-sharing-twitter, .social-sharing-facebook, .download-video {
    transition: 0.2s all ease;
    transform-origin: center center;
    cursor: pointer;
}
.social-sharing-whatsapp:active,
.social-sharing-linkedin:active,
.social-sharing-twitter:active,
.social-sharing-facebook:active,
.download-video:active {
    transform: scale(1.1);
    outline: none;
}
.team-bar-disp {
    clip-path: polygon(5% 11%, 100% 0%, 85% 100%, 0% 100%);
    background: var(--black2);
    color: #fff;
    height: 12vh;
    display: flex;
    align-items: center;
}
.team-bar-disp h1 {
    padding:2rem;
    font-size: 1.75rem;
}
.team-sb-icon {
    font-size: 7rem;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: -0.5rem;
}
.team-position-bar{
    width: 75%;
    margin: 1rem auto;
    justify-content: center;
}
.team-position-bar.first-place{
    background-color: #d19205;
}
.team-position-bar.second-place{
    background-color: #676565;
}
.team-pos-icons{
    position: absolute;
    top: 0;
    left: 11%;
    font-size: 3rem;
    z-index: 1;
}