@charset "UTF-8";
* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Fluid Space variables */

:root {
    --fluid-min-width: 320;
    --fluid-max-width: 1920;
    --fluid-screen: 100vw;
    --fluid-bp: calc( (var(--fluid-screen) - var(--fluid-min-width) / 16 * 1rem) / (var(--fluid-max-width) - var(--fluid-min-width)));
}

@media screen and (min-width: 1920px) {
     :root {
        --fluid-screen: calc(var(--fluid-max-width) * 1px);
    }
}

:root {
    --fc-3xs-min: (var(--fc-s-min) * 0.25);
    --fc-3xs-max: (var(--fc-s-max) * 0.25);
    --fc-2xs-min: (var(--fc-s-min) * 0.5);
    --fc-2xs-max: (var(--fc-s-max) * 0.5);
    --fc-xs-min: (var(--fc-s-min) * 0.75);
    --fc-xs-max: (var(--fc-s-max) * 0.75);
    --fc-s-min: (var(--f-0-min, 10));
    --fc-s-max: (var(--f-0-max, 15));
    --fc-m-min: (var(--fc-s-min) * 1.5);
    --fc-m-max: (var(--fc-s-max) * 1.5);
    --fc-l-min: (var(--fc-s-min) * 2);
    --fc-l-max: (var(--fc-s-max) * 2);
    --fc-xl-min: (var(--fc-s-min) * 3);
    --fc-xl-max: (var(--fc-s-max) * 3);
    --fc-2xl-min: (var(--fc-s-min) * 4);
    --fc-2xl-max: (var(--fc-s-max) * 4);
    --fc-3xl-min: (var(--fc-s-min) * 6);
    --fc-3xl-max: (var(--fc-s-max) * 6);
    /* T-shirt sizes */
    --space-3xs: calc( ((var(--fc-3xs-min) / 16) * 1rem) + (var(--fc-3xs-max) - var(--fc-3xs-min)) * var(--fluid-bp));
    --space-2xs: calc( ((var(--fc-2xs-min) / 16) * 1rem) + (var(--fc-2xs-max) - var(--fc-2xs-min)) * var(--fluid-bp));
    --space-xs: calc( ((var(--fc-xs-min) / 16) * 1rem) + (var(--fc-xs-max) - var(--fc-xs-min)) * var(--fluid-bp));
    --space-s: calc( ((var(--fc-s-min) / 16) * 1rem) + (var(--fc-s-max) - var(--fc-s-min)) * var(--fluid-bp));
    --space-m: calc( ((var(--fc-m-min) / 16) * 1rem) + (var(--fc-m-max) - var(--fc-m-min)) * var(--fluid-bp));
    --space-l: calc( ((var(--fc-l-min) / 16) * 1rem) + (var(--fc-l-max) - var(--fc-l-min)) * var(--fluid-bp));
    --space-xl: calc( ((var(--fc-xl-min) / 16) * 1rem) + (var(--fc-xl-max) - var(--fc-xl-min)) * var(--fluid-bp));
    --space-2xl: calc( ((var(--fc-2xl-min) / 16) * 1rem) + (var(--fc-2xl-max) - var(--fc-2xl-min)) * var(--fluid-bp));
    --space-3xl: calc( ((var(--fc-3xl-min) / 16) * 1rem) + (var(--fc-3xl-max) - var(--fc-3xl-min)) * var(--fluid-bp));
    /* One-up pairs */
    --space-3xs-2xs: calc( ((var(--fc-3xs-min) / 16) * 1rem) + (var(--fc-2xs-max) - var(--fc-3xs-min)) * var(--fluid-bp));
    --space-2xs-xs: calc( ((var(--fc-2xs-min) / 16) * 1rem) + (var(--fc-xs-max) - var(--fc-2xs-min)) * var(--fluid-bp));
    --space-xs-s: calc( ((var(--fc-xs-min) / 16) * 1rem) + (var(--fc-s-max) - var(--fc-xs-min)) * var(--fluid-bp));
    --space-s-m: calc( ((var(--fc-s-min) / 16) * 1rem) + (var(--fc-m-max) - var(--fc-s-min)) * var(--fluid-bp));
    --space-m-l: calc( ((var(--fc-m-min) / 16) * 1rem) + (var(--fc-l-max) - var(--fc-m-min)) * var(--fluid-bp));
    --space-l-xl: calc( ((var(--fc-l-min) / 16) * 1rem) + (var(--fc-xl-max) - var(--fc-l-min)) * var(--fluid-bp));
    --space-xl-2xl: calc( ((var(--fc-xl-min) / 16) * 1rem) + (var(--fc-2xl-max) - var(--fc-xl-min)) * var(--fluid-bp));
    --space-2xl-3xl: calc( ((var(--fc-2xl-min) / 16) * 1rem) + (var(--fc-3xl-max) - var(--fc-2xl-min)) * var(--fluid-bp));
    /* Custom pairs */
    --space-xs-m: calc( ((var(--fc-xs-min) / 16) * 1rem) + (var(--fc-m-max) - var(--fc-xs-min)) * var(--fluid-bp));
}

body {
    font-family: Tahoma, Verdana, Geneva, sans-serif !important;
}

a,
a:hover,
a:focus,
button:focus {
    outline: none !important;
    color: inherit;
}

button::-moz-focus-inner {
    border: 0;
}

button {
    border: none;
    outline: none;
}

button:hover {
    filter: brightness(95%) saturate(95%);
}

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

input[type="number"] {
    -moz-appearance: textfield;
}

input,
button,
select,
textarea {
    outline: none;
}

p,
label {
    margin-bottom: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-lightgray {
    color: var(--lightgray);
}

body {
    --h-height: 50px;
    font-family: Tahoma, Verdana, Geneva, sans-serif !important;
    background-color: var(--primary-bg-color);
    color: var(--primary-font-color);
    padding-bottom: 60px;
    padding-top: var(--h-height);
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-size: 14px;
}

body::-webkit-scrollbar {
    display: none;
}

.material-icons.md-18 {
    font-size: 18px;
}

.page {
    max-width: 100vw;
    overflow-x: hidden;
}

.topbar {
    background: var(--header-bg-color);
    color: var(--header-font-color);
}

.topbar .nav-link {
    color: var(--header-font-color);
    font-weight: 600;
}

.topbar .nav-item .nav-link.active {
    background: var(--active-color);
    color: var(--active-font-color);
}

.bf-icon {
    font-family: "Sansita One" !important;
    font-weight: 800;
    font-style: italic;
}

.nav-pills .nav-link.active {
    background: unset;
}

.form_submit_button {
    background-color: var(--active-color);
    color: var(--active-font-color);
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

.gap-sm {
    gap: var(--space-s);
}

.gap-md {
    gap: var(--space-m);
}

.border {
    border: 1px solid var(--border-color) !important;
}

.b-shadow {
    box-shadow: var(--b-shadow);
}

.img-pin {
    height: 20px;
    width: 20px;
    cursor: pointer;
}


/* ---------------Default Table Style---------------- */

.table_container {
    max-width: 100vw;
    overflow-x: auto;
}

.table {
    color: var(--primary-font-color);
}

.table-sm td,
.table-sm th {
    padding: 0.3rem 0.5rem;
}

.table td,
.table th {
    font-size: calc(12px + 2 * ((100vw - 320px) / (1920 - 320)));
    padding: var(--space-2xs, 0.25rem) var(--space-s, 0.5rem);
    white-space: nowrap;
}

tr.bg-back,
tr.bg-lay {
    color: #000;
}

.bg-back {
    background: rgb(187, 228, 246);
}

.bg-lay {
    background: rgb(254, 175, 186);
}

.cursor-pointer {
    cursor: pointer;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

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


/* bet slip loader */

.ball-loader-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.ball-loader-container img {
    width: 70px;
    height: 70px;
}

.inplay_container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.open-bets-nav.active {
    border-bottom: 2px solid var(--header_color);
}


/*- ------------Default Pagination Styling-------------------- */

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.pagination-sm li:first-child a {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
    margin-left: 0;
}

.pagination-sm li:first-child a {
    display: flex;
    padding-left: 10px;
    list-style: none;
}

.pagination .disabled a {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
}

.pagination-sm a {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.pagination li a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: var(--primary-bg-color);
    border: 1px solid var(--border-color);
}

.pagination .active a,
.pagination .page-item.active .page-link {
    color: var(--active-font-color);
    background-color: var(--active-color);
    border: none;
    z-index: 3;
}

.entries_select_container {
    font-weight: 700;
    font-size: 14px;
}

.entries_select {
    width: 55px;
    height: 27px;
    border-radius: 6px;
    font-size: 14px;
    padding-left: 6px;
}

.width-140 {
    width: 140px !important;
}

.width-420 {
    width: 420px !important;
}

@media only screen and (max-width: 767px) {
    .width-420 {
        width: 140px !important;
    }
}

.tv-iframe {
    height: 235px !important;
    width: 100%;
}


/*---------------Custom Drop Down----------------- */

.c-drop-container {
    position: relative;
}

.c-drop-container.show {
    z-index: 999;
}

.c-drop-button {
    position: relative;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
}

.c-drop-button * {
    pointer-events: none;
}

.c-drop-button .fa-chevron-down {
    position: absolute;
    top: 50%;
    right: 10px;
    pointer-events: none;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.2s ease;
}

.c-drop-container.show .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
}

.c-drop-content-container {
    visibility: hidden;
    pointer-events: none;
}

.c-drop-content-container.show {
    visibility: visible;
    pointer-events: all;
}

.c-drop-overlay {
    position: fixed;
    inset: 0px;
    background-color: transparent;
    z-index: -1;
}

.c-drop-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 100%;
    max-height: 0;
    overflow-y: auto;
    border-radius: 5px;
    background: var(--primary-bg-color);
    color: var(--primary-font-color);
    transition: all 0.3s ease;
    box-sizing: border-box;
    z-index: 999;
}

.c-drop-content>* {
    padding: 1rem 0.7rem;
}

.c-drop-container.show .c-drop-content {
    max-height: calc(100vh - 110px);
}

.hidden {
    visibility: hidden !important;
}

.card {
    background: var(--primary-bg-color);
    color: var(--primary-font-color);
    border-color: var(--border-color);
}

.modal-header {
    background: var(--header-bg-color);
    color: var(--header-font-color);
    padding: 0.5rem 1rem;
}

.modal-header .close {
    color: var(--header-font-color);
}

.border-dark {
    border-color: var(--border-color) !important;
}


/* Fade Animation */

.animate {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}


/* Toast Messages Styling */

.toasted-container .toasted-primary .material-icons {
    display: none;
}

.toasted-container .toasted.toasted-primary {
    background: #777d71;
    color: #fff;
    border-radius: 4px;
    font-family: sans-serif;
}

.toasted-container .toasted-primary.error {
    background: #ca302d !important;
    color: #fff;
}

.toasted-container .toasted-primary.success {
    background: #63c132 !important;
    color: #fff;
}

.cmn-sss.alltabsmain.bookmarkers.winnig-odds-section .odds-label label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: auto;
    max-width: 100%;
}

@media only screen and (max-width: 479px){
    .both_runners_name h6{
        max-width: 70px;
        font-size: 14px;
    }
}
#live_poker_infoLabel {
    color: #fff;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 30px;
}