<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');

@font-face {
    src: url(../fonts/poppins-font/Poppins-Black.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-Bold.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-ExtraBold.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-ExtraLight.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-Light.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-Medium.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-Regular.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-SemiBold.ttf), format('ttf');
}

@font-face {
    src: url(../fonts/poppins-font/Poppins-Thin.ttf), format('ttf');
}

/* Twentieth Century font start */
@import url('https://fonts.cdnfonts.com/css/tw-cen-mt');

@font-face {
    src: url(../fonts/tw-cen-mt-font/Tw\ Cen\ MT.ttf), format('ttf');
}
/* Twentieth Century font end*/

:root {
    --col-white: #ffffff;
    --col-black: #000000;
    --col-page-bg: #F1F2F9;
}


/** BASIC CSS **/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}


html,
body {
    height: auto;
    max-width: 100%;
    min-width: 100%;
    background: var(--col-page-bg);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    font-weight: normal;
    font-style: normal;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

    body.modal-open {
        padding-right: 0 !important;
    }

    body .footer {
        margin-top: auto;
    }

p {
    font-size: 15px;
    color: #848484;
    line-height: 23px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #555;
}

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

a {
    text-decoration: none;
    outline: none;
    color: #4b5460;
}

    a:focus {
        outline: none;
    }

    a:hover,
    a:focus {
        color: #24a784;
        text-decoration: none;
    }

hr {
    border-top: 1px solid #a1a3a6;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    text-shadow: none;
    background: #24a784;
    color: #fff;
}

::-moz-selection {
    text-shadow: none;
    background: #24a784;
    color: #fff;
}

a,
input,
select,
textarea,
img {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

input,
select,
textarea {
    border: 1px solid transparent;
}

.clearfix {
    clear: both;
    font-size: 0;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none !important;
}

.show {
    display: block !important;
}

.floatl {
    float: left;
}

.floatr {
    float: right;
}

.nopad {
    padding: 0 !important;
}

.nopadl {
    padding-left: 0;
}

.nopadr {
    padding-right: 0;
}

.nomar {
    margin: 0;
}

.nomarl {
    margin-left: 0;
}

.nomarr {
    margin-right: 0;
}

.porel {
    position: relative;
}

body &gt; .main-wrapper {
    padding-top: 83px;
}

.main-wrapper {
    width: 100%;
    height: auto;
}

/** Basic css end here **/
/* home page css start */
.banner-wrap {
    overflow-x: hidden;
}
.main-banner-image {
    position: relative;
    height: 100%;
}

    .main-banner-image img {
        background-repeat: no-repeat;
        top: 0px;
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

.banner-slogans {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: start;
    position: absolute;
    padding: 20px;
    height: 100%;
    pointer-events: none;
}

.banner-slogan {
    display: inline-block;
    border-radius: 10rem;
    padding: 5px 20px;
    background-color: gray;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 1px 30px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.main-banner-text h1 {
    color: #2c5f80;
    margin-bottom: 9px;
    font-size: 66px;
    font-weight: 900;
    line-height: 61px;
    text-transform: uppercase;
    white-space: normal;
}

.main-banner-text p {
    line-height: 30px;
    color: #fff;
}

.main-banner-btn {
    margin-top: 25px;
}

.solid-btn {
    background: #008cd6;
    color: #fff !important;
    font-size: 18px;
    padding: 16px 34px;
    border-radius: 5px;
    transition: 0.6s ease all;
    display: inline-block;
    font-weight: 500;
}

    .solid-btn:hover {
        background: #2c5f80;
    }

.home-page-main-banner {
    position: relative;
    z-index: 9;
    height: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.home-page-banner-inner-section {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.banner-basketball-team-list {
    margin: 25px 0px;
}

    .banner-basketball-team-list ul li {
        display: inline-block;
        font-size: 19px;
        color: #2e2e2e;
        font-weight: 600;
    }

    .banner-basketball-team-list span {
        font-size: 19px;
        color: #2e2e2e;
        margin: 0px 15px;
        font-weight: 600;
    }

@media (max-width: 1199.98px) {
    .main-banner-image img {
        object-position: 40% center;
    }

    .banner-slogans {
        padding: 18px;
    }

    .banner-slogan {
        padding: 4px 18px;
        margin: 1px 20px;
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .main-banner-image img {
        object-position: 30% center;
    }

    .banner-slogans {
        padding: 16px;
    }

    .banner-slogan {
        padding: 3px 16px;
        margin: 1px 10px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .main-banner-image img {
        object-position: 20% center;
    }

    .banner-slogans {
        padding: 14px;
    }

    .banner-slogan {
        padding: 2px 14px;
        margin: 1px 10px;
        font-size: 12px;
    }

    .main-banner-btn {
        margin-top: 20px;
    }

    .main-banner-text {
        padding-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .banner-slogans {
        padding: 12px;
    }

    .bs-left {
        display: none;
    }
}

@media (max-width: 480px) {
    .banner-slogans {
        padding: 10px;
        justify-content: space-between;
    }

    .main-banner-btn {
        margin-top: 15px;
    }

    .k-scrollview-nav-wrap {
        display: none;
    }
}

/* wimbledon-banner start */
.wimbledon-banner .main-banner-text h1 {
    color: #abdc65;
    margin-bottom: 9px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    text-transform: none;
}

.wimbledon-banner .banner-basketball-team-list ul li {
    display: block;
    margin-bottom: 10px;
    color: var(--col-white);
    font-weight: normal;
    font-size: 18px;
}

    .wimbledon-banner .banner-basketball-team-list ul li:first-of-type {
        font-size: 22px;
        font-weight: 700;
    }

    .wimbledon-banner .banner-basketball-team-list ul li:last-of-type {
        font-size: 18px;
        font-weight: 700;
    }

.wimbledon-banner .solid-btn {
    background: #3c265c;
}

    .wimbledon-banner .solid-btn:hover {
        background: #5a3988;
    }

.wimbledon-banner .banner-text-separator {
    display: none;
}

.wimbledon-banner .bs-left {
    background: #569200;
}

.wimbledon-banner .bs-center {
    background: #008cd6;
}

.wimbledon-banner .bs-right {
    background: #7e5bc6;
}

@media (max-width: 1199.98px) {
    .wimbledon-banner .main-banner-text h1 {
        font-size: 30px;
    }

    .wimbledon-banner .banner-basketball-team-list ul li {
        margin-bottom: 8px;
        font-size: 16px;
    }

        .wimbledon-banner .banner-basketball-team-list ul li:first-of-type {
            font-size: 19px;
        }

        .wimbledon-banner .banner-basketball-team-list ul li:last-of-type {
            font-size: 16px;
        }

    .wimbledon-banner .solid-btn {
        padding: 12px 22px;
    }
}

@media (max-width: 767.98px) {
    .wimbledon-banner .main-banner-text h1 {
        font-size: 24px;
    }

    .wimbledon-banner .banner-basketball-team-list ul li {
        margin-bottom: 5px;
        font-size: 13px;
    }

        .wimbledon-banner .banner-basketball-team-list ul li:first-of-type {
            font-size: 15px;
        }

        .wimbledon-banner .banner-basketball-team-list ul li:last-of-type {
            font-size: 13px;
        }

    .wimbledon-banner .solid-btn {
        padding: 8px 18px;
    }
}
/* wimbledon-banner end */


/* NCAA 2025 Banner start */

.ncaa2025 .bs-left {
    background: #008cd6;
}

.ncaa2025 .bs-center {
    background: #eb862c;
}

.ncaa2025 .bs-right {
    background: #2c5f80;
}

@media (max-width: 575.98px) {
    .ncaa2025 .banner-basketball-team-list ul li {
        display: block;
        margin-bottom: 5px;
    }

    .ncaa2025 .banner-basketball-team-list ul .banner-text-separator {
        display: none;
    }
}

/* NCAA 2025 Banner end */

.main-banner-slider-section &gt; .k-scrollview {
    height: 300px !important;
    background: var(--col-page-bg);
    border: 0 !important;
}

@media (min-width: 768px) {
    .main-banner-slider-section &gt; .k-scrollview {
        height: 400px !important;
    }
}

@media (min-width: 1200px) {
    .main-banner-slider-section &gt; .k-scrollview {
        height: 495px !important;
    }
}


.main-banner-slider-section .k-scrollview.k-scrollview-light .k-scrollview-nav-wrap {
    background-color: transparent;
    background: none;
}

.main-banner-slider-section .k-scrollview-elements {
    position: relative;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    pointer-events: none;
    max-width: 94%;
}

    .main-banner-slider-section .k-scrollview-elements .k-scrollview-prev,
    .main-banner-slider-section .k-scrollview-elements .k-scrollview-next {
        pointer-events: all;
    }

        .main-banner-slider-section .k-scrollview-elements .k-scrollview-prev svg,
        .main-banner-slider-section .k-scrollview-elements .k-scrollview-next svg {
            background-color: rgba(0,0,0,0.2);
            border-radius: 50%;
            transition: all 0.2s ease-in-out;
        }

        .main-banner-slider-section .k-scrollview-elements .k-scrollview-prev:hover svg,
        .main-banner-slider-section .k-scrollview-elements .k-scrollview-next:hover svg {
            background-color: rgba(0,140,214,1);
        }

        .main-banner-slider-section .k-scrollview-elements .k-scrollview-prev svg {
            padding: 2.5px 5px 2.5px 0;
        }

        .main-banner-slider-section .k-scrollview-elements .k-scrollview-next svg {
            padding: 2.5px 0 2.5px 5px;
        }

@media (min-width:1400px) {

    .main-banner-slider-section .k-scrollview-elements {
        max-width: 1420px
    }
}

@media (max-width: 575.98px) {
    .main-banner-slider-section .k-scrollview-next .k-icon {
        text-align: right;
    }

    .main-banner-slider-section .k-scrollview-prev .k-icon {
        text-align: left;
    }

    .main-banner-slider-section .k-scrollview-elements .k-scrollview-prev svg,
    .main-banner-slider-section .k-scrollview-elements .k-scrollview-next svg {
        height: 30px;
        width: 30px;
    }

    .main-banner-slider-section .k-scrollview-elements .k-scrollview-prev svg {
        padding: 1px 3px 1px 0;
    }

    .main-banner-slider-section .k-scrollview-elements .k-scrollview-next svg {
        padding: 1px 0 1px 3px;
    }
}



/* latest score owl slider css start */
.home-banner-slider .owl-theme .owl-dots,
.owl-theme .owl-nav {
    -webkit-tap-highlight-color: transparent;
}

.home-banner-slider .owl-dots button {
    outline: none !important;
    border: 1px solid #000 !important;
    width: 24px;
    height: 24px;
    border-radius: 50px;
    margin: 0px 5px;
}

.home-banner-slider .owl-dots .owl-dot span {
    background: #2c5f80;
    margin: 6px;
}

.home-banner-slider .owl-dots .owl-dot:hover span {
    background: #008cd6;
}

.home-banner-slider .owl-dots .owl-dot.active span {
    background: #008cd6;
}

.home-banner-slider .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -15%;
}

.home-banner-slider .owl-nav button {
    border: none !important;
    outline: none !important;
}

.home-banner-slider .owl-prev {
    position: absolute;
    top: 47%;
    transform: translate(-50%);
    font-weight: bolder !important;
    color: #1d1d1d !important;
    font-size: 24px !important;
    width: 53.5px;
    height: 53.5px;
    display: inline-block;
    border-radius: 50px !important;
    transition: 0.6s ease all;
}

.home-banner-slider .owl-next {
    position: absolute;
    top: 47%;
    transform: translate(-50%);
    font-weight: bolder !important;
    color: #1d1d1d !important;
    font-size: 24px !important;
    width: 53.5px;
    height: 53.5px;
    display: inline-block;
    border-radius: 50px !important;
    transition: 0.6s ease all;
}

.home-banner-slider .owl-prev {
    left: 9%;
}

.home-banner-slider .owl-next {
    right: 2%;
}

.home-banner-slider .owl-prev:hover {
    background: #008cd6 !important;
    color: #fff !important;
}

.home-banner-slider .owl-next:hover {
    background: #008cd6 !important;
    color: #fff !important;
}

.home-banner-slider .owl-item {
    opacity: 0;
    transition: opacity .75s linear;
}

    .home-banner-slider .owl-item.active {
        opacity: 1;
    }

.home-banner-slider .owl-stage-outer {
    overflow: initial;
}

/* banner css end */

/* Banner BS start */
.home-page-main-banner .carousel-item &gt; img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
}
.home-page-main-banner .carousel-control-next,
.home-page-main-banner .carousel-control-prev {
    z-index: 100;
}

.home-page-main-banner .carousel-item {
    height: 300px;
}

.home-page-main-banner .carousel-control-next-icon,
.home-page-main-banner .carousel-control-prev-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    background-size: 75%;
    background-position: 60% 50%;
}

    .home-page-main-banner .carousel-control-next-icon:hover,
    .home-page-main-banner .carousel-control-prev-icon:hover {
        background-color: rgba(0,140,214,1);
    }

.home-page-main-banner .carousel-control-prev-icon {
    background-position: 30% 50%;
}

.home-page-main-banner .carousel-control-next-icon {
    background-position: 70% 50%;
}

@media (max-width: 575.98px) {
    .home-page-main-banner .carousel-control-next-icon,
    .home-page-main-banner .carousel-control-prev-icon {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 768px) {
    .home-page-main-banner .carousel-item {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .home-page-main-banner .carousel-item {
        height: 495px;
    }
}
/* Banner BS end */


/* pricing-options-section css start */

.pricing-options-section {
    margin: 60px 0px;
}

    .pricing-options-section .section-title-text h4 {
        font-family: 'Tw Cen MT', sans-serif;
        font-weight: bold;
        font-size: 36px;
        color: #000;
        margin-bottom: 20px;
    }
    .pricing-options-section .section-title-text h5 {
        color: #2a2a2a;
        font-size: 21px;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 10px;
    }


.pricing-option-card {
    border-radius: 20px;
    border: solid 1px #c9cad2;
    padding: 25px;
    background: #fff;
    height: 100%;
    box-shadow: 0px 3px 8px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
    position: relative;
}

    .pricing-option-card h3,
    .pricing-option-card h4,
    .pricing-option-card h5 {
        margin-bottom: 30px;
    }

    .pricing-option-card h3 &gt; .badge {
        margin-bottom: 30px;
        font-size:14px;
        font-weight:400;
    }
    .pricing-option-card h4 {
        font-size: 16px;
        font-weight: 400;
    }

    .pricing-option-card h5 {
        color: #2a2a2a;
        font-size: 24px;
        font-weight: 600;
    }

        .pricing-option-card h5 &gt; span {
            color: #555;
            font-size: 16px;
            font-weight: 400;
            display: inline-block;
            letter-spacing: 0.02em;
            padding: 0 3px;
        }

    .pricing-option-card ul {
        display: block;
        margin: 20px 0 40px 0;
    }

    .pricing-option-card ul li {
        margin-bottom: 20px;
        display: block;
        position: relative;
        padding-left: 28px;
        line-height: 1.2;
    }

        .pricing-option-card ul li::before {
            position: absolute;
            content: "";
            left: 0;
            top: 3px;
            font-family: 'Font Awesome 6 Pro';
            font-size: 14px;
            font-variant: normal;
            line-height: 1;
            display: inline-block;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\f00c";
            font-weight: 900;
            color: #008cd6;
        }

/* Customer Group Pricing */
.group-pricing .pricing-option-card {
    cursor: pointer;
    position: relative;
}

    .group-pricing .pricing-option-card::before {
        cursor: pointer;
        content: "";
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 15px;
        height: 26px;
        width: 26px;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: inset 0 0 0 4px #fff;
        border: solid 2px #627079;
        transition: all 0.2s ease-in-out;
    }

    .group-pricing .pricing-option-card:hover,
    .group-pricing .pricing-option-card:active,
    .group-pricing .pricing-option-card.poc-active {
        box-shadow: 0px 3px 8px 0 rgba(0, 0, 0, 0.2), inset 0 0 0 2px #00BAF2;
    }

        .group-pricing .pricing-option-card:hover::before {
            border-color: #2d5f80;
            background-color: #a5dcf7;
        }

        .group-pricing .pricing-option-card:active::before,
        .group-pricing .pricing-option-card.poc-active::before {
            border-color: #2d5f80;
            background-color: #2d5f80;
        }

    .group-pricing .pricing-option-card.poc-active {
        cursor: default;
        z-index: 6 !important;
    }

.group-pricing .pricing-option-cards-row &gt; div {
    padding-top: 0 !important;
}
.group-pricing.pricing-option-card ul {
    margin-bottom: 10px;
}

.group-pricing .pricing-option-card h3 {
    color: #3A4178;
}

.group-pricing .pricing-option-card.poc-active h3 {
    color: #008cd6;
}

.subscription-free-pricing-options-modal .group-pricing .container-max-w-1400 {
    max-width: 800px;
}

.subscription-free-pricing-options-modal .group-create-entry-list {
    max-height: initial;
}

.subscription-free-pricing-options-modal .modal-body .group-create-entry-list {
    padding: 10px 30px !important;
}

.subscription-free-pricing-options-modal .pricing-options-section {
    margin: 20px 0 0 0;
}

.subscription-free-pricing-options-modal .group-name-short-name-field-input-label label,
.subscription-free-pricing-options-modal .h5-label-style {
    font-size: 16px;
}

.subscription-free-pricing-options-modal .input-group &gt; .btn {
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
}

@media (max-width:991.98px) {
    .subscription-free-pricing-options-modal .modal-dialog.modal-xl {
        max-width: calc(100% - 30px);
    }
}

    @media (min-width: 992px) {

        .subscription-free-pricing-options-modal .pricing-option-cards-row .col-lg-4 {
            flex: 0 0 auto;
            width: 50%
        }

        .pricing-option-card {
            border-radius: 30px;
            box-shadow: 0px 3px 20px 0 rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
        }

            .pricing-option-card.poc-unlimited,
            .pricing-option-card.poc-center-card {
                position: relative;
                z-index: 5;
            }

        .pricing-option-cards-row [class*="col"] .pricing-option-card {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .pricing-option-cards-row [class*="col"]:first-child .pricing-option-card.poc-active {
            margin-right: -3px;
        }

        .group-pricing .pricing-option-card.poc-center-card.poc-active {
            margin-left: -2px;
            margin-right: -2px;
        }

        .pricing-option-cards-row [class*="col"]:last-child .pricing-option-card.poc-active {
            margin-left: -3px;
        }

        .group-pricing .pricing-option-card.poc-unlimited,
        .group-pricing .pricing-option-card.poc-center-card {
            border-radius: 0;
        }

        .pricing-option-cards-row [class*="col"]:first-child .pricing-option-card {
            border-top-right-radius: 0;
            border-right: 0;
        }

        .pricing-option-cards-row [class*="col"]:last-child .pricing-option-card {
            border-top-left-radius: 0;
            border-left: 0;
        }
    }

    /* pricing-options-section css end */


    /* player-score-section css start */
    .player-score-section {
        margin: 60px 0px;
    }

    .section-title-text h4 {
        font-family: 'Tw Cen MT', sans-serif;
        font-weight: bold;
        font-size: 36px;
        color: #000;
    }

    .basketball-team-pts-card-section {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 10px;
        padding: 25px;
        background: #fff;
    }

    .basketball-team-pts-team-name h5 {
        color: #2c5f80;
        font-size: 21px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .basketball-team-pts-list-name-section {
        display: flex;
        align-items: center;
    }

    .basketball-team-pts-player-name-first-later h5 {
        width: 35px;
        height: 35px;
        border-radius: 50px;
        border: 2px solid #008cd6;
        color: #008cd6;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        font-size: 19px;
        font-weight: 700;
    }

    .basketball-team-pts-player-name h5 {
        color: #2a2a2a;
        font-weight: 600;
        margin-left: 15px;
        font-size: 19px;
    }

    .basketball-team-pts-list ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 2px dotted #b7b6b6;
        padding-bottom: 15px;
        padding-top: 15px;
    }

        .basketball-team-pts-list ul li:last-child {
            border-bottom: none;
            padding-bottom: 0px;
        }

    .basketball-team-pts-number h5 {
        color: #3d3d3d;
        font-weight: 400;
        font-size: 19px;
    }

    .basketball-team-pts-list ul {
        height: 318px;
        overflow-x: hidden;
        overflow-y: auto;
        padding-right: 10px;
    }

        .basketball-team-pts-list ul::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            background-color: #F5F5F5;
            border-radius: 10px;
        }

        .basketball-team-pts-list ul::-webkit-scrollbar {
            width: 5px;
            background-color: #008cd6;
            border-radius: 10px;
        }

        .basketball-team-pts-list ul::-webkit-scrollbar-thumb {
            background-color: #008cd6;
            border-radius: 10px;
        }

    .basketball-team-pts-section {
        margin-top: 40px;
    }

    /* player-score-section css end */

    /* tournament-challenge-destination-section css start */
    .tournament-challenge-destination-section {
        margin: 60px 0px;
    }

    .section-title-text p {
        color: #3d3d3d;
        font-size: 19px;
        line-height: 37px;
        font-weight: 400;
    }

    .bracket-text {
        position: relative;
    }

        .bracket-text h5 {
            font-weight: 700;
            font-size: 36px;
            margin-bottom: 18px;
            color: #000;
        }

        .bracket-text h6 {
            color: #2a2a2a;
            font-size: 23px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .bracket-text p {
            color: #3d3d3d;
            font-size: 19px;
            line-height: 37px;
            font-weight: 400;
            margin-bottom: 0px;
        }

    .bracket-left-image-text-card-section,
    .bracket-right-image-text-card-section {
        margin-bottom: 60px;
        position: relative;
    }

        .bracket-left-image-text-card-section:last-child,
        .bracket-right-image-text-card-section:last-child {
            margin-bottom: 40px;
        }

        .bracket-left-image-text-card-section::before,
        .bracket-right-image-text-card-section::before {
            display: block;
            content: "";
            position: absolute;
            left: 5%;
            right: 0;
            top: -20px;
            bottom: -20px;
            background: #f5fbff;
            border-radius: 10px;
        }

        .bracket-right-image-text-card-section::before {
            left: 0;
            right: 5%;
        }

    .bracket-home-paragraph-with-image {
        display: flex;
        align-items: center;
    }

    .tournament-challenge-destination-section .bracket-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        border-radius: 10px;
        object-fit: cover;
        object-position: center;
        transition: all 0.2s ease-in-out;
    }

    .bracket-left-image-text-card-section .bracket-image,
    .bracket-right-image-text-card-section .bracket-image {
        flex-shrink: 0;
        margin-right: 20px;
        position: relative;
    }

    .bracket-right-image-text-card-section .bracket-image {
        margin-right: 0;
        margin-left: 20px;
    }

    .bracket-image-text-total-section {
        margin-top: 30px;
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .tournament-challenge-destination-section .bracket-image {
            max-width: 300px;
        }
    }

    @media (min-width: 768px) {
        .bracket-left-image-text-card-section {
            padding-left: 0;
            padding-right: 20px;
        }

        .bracket-right-image-text-card-section {
            padding-left: 20px;
            padding-right: 0;
        }

            .bracket-left-image-text-card-section:last-child,
            .bracket-right-image-text-card-section:last-child {
                margin-bottom: 20px;
            }
    }

    @media (max-width: 767.98px) {
        .bracket-home-paragraph-with-image {
            display: flex;
            flex-direction: column;
        }

        .bracket-right-image-text-card-section .bracket-text {
            order: 2;
        }

        .bracket-left-image-text-card-section::before,
        .bracket-right-image-text-card-section::before {
            left: 0;
            right: 0;
        }

        .bracket-left-image-text-card-section .bracket-image,
        .bracket-right-image-text-card-section .bracket-image {
            margin-right: auto;
            margin-left: auto;
        }
    }

    /* tournament-challenge-destination-section css end*/


    /* latest-scores-section css start */
    .latest-scores-section {
        margin: 60px 0px;
    }

    .section-title-text h5 {
        color: #2A2A2A;
        font-size: 21px;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .latest-scores-inner-section {
        margin-top: 35px;
    }

    .latest-scores-inner-card-section {
        padding: 27px 30px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 10px;
        background: #fff;
    }

    .top-score-latest-score {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px dashed #757171;
        padding-bottom: 21px;
        margin-bottom: 20px;
    }

        .top-score-latest-score:last-child {
            margin-bottom: 0px;
            padding-bottom: 0px;
            border: none;
        }

    .latest-scores-name h5 {
        font-weight: 600;
        color: #2a2a2a;
        font-size: 17px;
    }

    .top-score-number .latest-scores-number-text h5 {
        color: #2c5f80;
        font-size: 17px;
        font-weight: 600;
        position: relative;
    }

        .top-score-number .latest-scores-number-text h5::after {
            content: '';
            display: block;
            position: absolute;
            width: 9px;
            height: 9px;
            border-radius: 50px;
            background: #2c5f80;
            right: -21px;
            top: 5px;
            z-index: 2;
        }

    .top-score-number {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .low-score-number {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .low-score-number .latest-scores-number-text h5 {
            color: #ababab;
            font-size: 17px;
            font-weight: 600;
        }

    .latest-scores-final-text h5 {
        color: #797979;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .top-score-low-score-section {
        width: 80%;
        position: relative;
    }

        .top-score-low-score-section::after {
            content: '';
            display: block;
            width: 1px;
            height: 47px;
            position: absolute;
            right: -17px;
            top: 5px;
            border-right: 2px dotted #8d8d8d;
        }

    /* latest score owl slider css start */
    .latest-scores-slider .owl-theme .owl-dots,
    .owl-theme .owl-nav {
        -webkit-tap-highlight-color: transparent;
    }

    .latest-scores-slider .owl-dots button {
        /* border: none !important; */
        outline: none !important;
        border: 1px solid #000 !important;
        width: 24px;
        height: 24px;
        border-radius: 50px;
        margin: 0px 5px;
    }

    .latest-scores-slider .owl-dots .owl-dot span {
        background: #fff;
        margin: 6px;
    }

    .latest-scores-slider .owl-dots .owl-dot:hover span {
        background: #008cd6;
    }

    .latest-scores-slider .owl-dots .owl-dot.active span {
        background: #008cd6;
    }

    .latest-scores-slider .owl-dots {
        width: 100%;
        text-align: center;
        position: relative;
        margin-top: 24px !important;
    }

    .latest-scores-slider .owl-nav button {
        border: none !important;
        outline: none !important;
    }

    .latest-scores-slider .owl-prev {
        position: absolute;
        top: 24%;
        transform: translate(-50%);
        font-weight: bolder !important;
        color: #767676 !important;
        font-size: 24px !important;
        width: 53.5px;
        height: 53.5px;
        display: inline-block;
        border-radius: 50px !important;
        transition: 0.6s ease all;
    }

    .latest-scores-slider .owl-next {
        position: absolute;
        top: 24%;
        transform: translate(-50%);
        font-weight: bolder !important;
        color: #767676 !important;
        font-size: 24px !important;
        width: 53.5px;
        height: 53.5px;
        display: inline-block;
        border-radius: 50px !important;
        transition: 0.6s ease all;
    }

    .latest-scores-slider .owl-prev {
        left: -48px;
    }

    .latest-scores-slider .owl-next {
        right: -103px;
    }

    .latest-scores-slider .owl-prev:hover {
        background: #008cd6 !important;
        color: #fff !important;
    }

    .latest-scores-slider .owl-next:hover {
        background: #008cd6 !important;
        color: #fff !important;
    }

    .latest-scores-slider .owl-item {
        opacity: 0;
        transition: opacity .75s linear;
    }

        .latest-scores-slider .owl-item.active {
            opacity: 1;
        }

    .latest-scores-slider .owl-stage-outer {
        overflow: initial;
    }

    /* latest score owl slider css end*/
    /* latest-scores-section css end*/

    /* join-now-section css start */
    .join-now-section {
        margin: 60px 0px;
    }

    .join-now-inner-section {
        background: #008cd6;
        padding: 40px 33px;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        z-index: 2;
    }

    .join-now-inner-section-background-image {
        position: absolute;
        right: 0;
        bottom: -136px;
        z-index: -1;
    }

        .join-now-inner-section-background-image img {
            opacity: 0.2;
        }

    .join-now-inner-section-text-btn p {
        font-size: 20px;
        font-weight: 500;
        line-height: 37px;
        color: #fff;
    }

    .join-now-inner-section-btn {
        margin-top: 25px;
    }

        .join-now-inner-section-btn a {
            background: #2c5f80;
            color: #fff;
            font-size: 18px;
            padding: 16px 43px;
            border-radius: 5px;
            transition: 0.6s ease all;
            display: inline-block;
            font-weight: 500;
        }

            .join-now-inner-section-btn a:hover {
                background: #fff;
                color: #008cd6;
            }

    /* join-now-section css end*/


    /* interior page css start */
    .interior-section {
        margin: 60px 0px;
        min-height: 0px !important;
    }

    /* interior page css end*/

    .bottom-section-text {
        margin-top: 35px;
    }

        .bottom-section-text p {
            font-weight: 500;
        }

    .score-title-text h5 {
        color: #2b6080;
        margin-bottom: 18px;
        font-weight: 600;
        font-size: 19px;
    }

    .total-score {
        height: 349px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 15px;
    }

        .total-score::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            background-color: #F5F5F5;
        }

        .total-score::-webkit-scrollbar {
            width: 2px;
            background-color: #F5F5F5;
        }

        .total-score::-webkit-scrollbar-thumb {
            background-color: #000000;
            border: 2px solid #555555;
        }

    /* home page css end*/
    /* dashboard desktop css start */

    .individual-group-table-section {
        margin: 50px 0px 70px 0;
    }

    .individual-group-section-title h4 {
        font-family: 'Tw Cen MT', sans-serif;
        font-weight: bold;
        font-size: 35px;
        color: #0E0E0E;
    }

    /* custome radio input css start */
    .individual-group-radio-input-section input[type="radio"] {
        display: none;
    }

    .individual-group-radio-input-section label {
        cursor: pointer;
        position: relative;
        display: inline-block;
        font-size: 20px;
        color: #8B91C1;
        font-weight: 600;
        padding: 15px 25px 15px 50px;
        border-radius: 6px;
    }

    .select-group-label {
        margin-left: 36px;
    }

    .individual-group-radio-input-section label::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        background-color: transparent;
        border: 2px solid #464646;
        border-radius: 50%;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
        transition: border-color 400ms ease;
    }

    .individual-group-radio-input-section label::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: #2D5F80;
        border: 2px solid #2D5F80;
        border-radius: 50%;
        top: 50%;
        left: 19px;
        transform: translateY(-50%) scale(0);
        transition: transform 400ms ease;
    }

    .individual-group-radio-input-section input[type="radio"]:checked + label::before {
        border-color: #2D5F80;
    }

    .individual-group-radio-input-section input[type="radio"]:checked + label {
        background: #E3F9FF;
        color: #3A4178;
    }

        .individual-group-radio-input-section input[type="radio"]:checked + label::after {
            transform: translateY(-50%) scale(0.55);
        }

    /* custome radio input css end*/
    .individual-group-radio-input-section {
        background: #fff;
        padding: 5px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 6px;
        display: inline-block;
    }

    .individual-group-select-section {
        text-align: right;
    }

    /* custom select css start */
    .custom-select-wrapper {
        position: relative;
        display: inline-block;
        user-select: none;
        margin-right: 10px;
    }

        .custom-select-wrapper select {
            display: none;
        }

    .custom-select {
        position: relative;
        display: inline-block;
    }

    .custom-select-trigger {
        position: relative;
        display: block;
        width: 100%;
        padding: 16px 50px 16px 25px;
        font-size: 19px;
        font-weight: 400;
        color: #3A4178;
        background: #fff;
        border-radius: 9px;
        cursor: pointer;
    }

        .custom-select-trigger:after {
            position: absolute;
            display: block;
            content: '';
            width: 10px;
            height: 10px;
            top: 50%;
            right: 17px;
            margin-top: -3px;
            border-bottom: 2px solid #3A4178;
            border-right: 2px solid #3A4178;
            transform: rotate(45deg) translateY(-50%);
            transition: all .4s ease-in-out;
            transform-origin: 50% 0;
        }

    .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
    }

    .custom-options {
        position: absolute;
        display: block;
        top: 100%;
        left: 0;
        right: 0;
        min-width: 100%;
        margin: 15px 0;
        border: 1px solid #b5b5b5;
        border-radius: 4px;
        box-sizing: border-box;
        box-shadow: 0 2px 1px rgba(0, 0, 0, .07);
        background: #fff;
        transition: all .4s ease-in-out;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
    }

    .custom-select.opened .custom-options {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }

    .custom-options:before {
        position: absolute;
        display: block;
        content: '';
        bottom: 100%;
        right: 25px;
        width: 7px;
        height: 7px;
        margin-bottom: -4px;
        border-top: 1px solid #b5b5b5;
        border-left: 1px solid #b5b5b5;
        background: #fff;
        transform: rotate(45deg);
        transition: all .4s ease-in-out;
    }

    .option-hover:before {
        background: #f9f9f9;
    }

    .custom-option {
        position: relative;
        display: block;
        padding: 0 22px;
        border-bottom: 1px solid #b5b5b5;
        font-size: 16px;
        font-weight: 600;
        color: #3A4178;
        line-height: 38px;
        cursor: pointer;
        transition: all .4s ease-in-out;
    }

        .custom-option:first-of-type {
            border-radius: 4px 4px 0 0;
        }

        .custom-option:last-of-type {
            border-bottom: 0;
            border-radius: 0 0 4px 4px;
        }

        .custom-option:hover,
        .custom-option.selection {
            background: #f9f9f9;
        }

    /* custom select css end*/


    .select-view-bracket-field-section {
        display: flex;
        align-items: center;
    }

    .view-bracket-button-section {
        text-align: right;
    }

        .view-bracket-button-section a,
        .view-bracket-button-section button {
            display: inline-block;
            background: #F38A29;
            color: #fff;
            padding: 15px 25px;
            font-size: 20px;
            font-weight: 600;
            border-radius: 9px;
        }

            .view-bracket-button-section a:hover,
            .view-bracket-button-section button:hover {
                background: #3A4178;
            }


    .input-label-button-group .view-bracket-button-section .create-btn {
        width: 100%;
    }

    .btn-orange-blue-hover {
        background: #F38A29;
    }

        .btn-orange-blue-hover:hover {
            background: #3A4178;
        }

    .select-view-bracket-section {
        margin-top: 40px;
    }

    .individual-group-table-total-section .table {
        background: #fff;
        border-color: #CDD3FC;
    }

    .individual-group-table thead {
        background: #DFE1ED;
    }

    .individual-group-table-total-section {
        margin: 47px 0px;
    }

    .individual-group-table th {
        padding: 22px 11px;
        font-size: 16px;
        color: #181E47;
        font-weight: 500;
    }


    .individual-group-table td {
        padding: 22px 11px;
        font-size: 16px;
        color: #3A4178;
        font-weight: 500;
    }

    .motb-message-grid-container {
        background: #fff;
        padding: 10px 20px;
        scrollbar-width: thin;
    }

    .quickgrid[theme="default"].table.motb-message-grid {
        background: none;
        box-shadow: none;
    }

        .quickgrid[theme="default"].table.motb-message-grid,
        .quickgrid[theme="default"].table.motb-message-grid tr td,
        .quickgrid[theme="default"].table.motb-message-grid tr th {
            padding: 0;
            margin: 0;
            border: 0;
        }

            .quickgrid[theme="default"].table.motb-message-grid thead {
                background: none;
            }

            .quickgrid[theme="default"].table.motb-message-grid th {
                padding: 0;
                font-weight: 400;
            }

            .quickgrid[theme="default"].table.motb-message-grid td {
                padding: 0;
                font-weight: 400;
            }

    .quickgrid[theme="default"].table tr:has(&gt; td:not(:empty)) &gt; td {
        display: table-cell;
    }

    .quickgrid[theme="default"].table td:empty {
        display: none;
    }

    .team-logo-cell {
        vertical-align: middle;
    }

        .team-logo-cell img {
            width: 100%;
            max-width: 40px;
            height: auto;
        }

    .table-number-section {
        width: 4%;
    }

    .bracket-name-section {
        width: 23%;
        text-align: center;
    }

    .palyer-section {
        width: 18%;
    }

    .points-section {
        width: 10%;
    }

    .bracket-image img {
        width: 45px;
        height: 30px;
        border-radius: 5px;
        object-fit: cover;
    }

    .bracket-name h5 {
        font-size: 16px;
        color: #3A4178;
        font-weight: 500;
    }

    .bracket-name-image-section {
        display: flex;
        align-items: center;
    }

    .bracket-name {
        margin-left: 13px;
    }

    .table-number {
        text-align: center;
    }

    .player-image img {
        width: 38px;
        height: 38px;
        border-radius: 50px;
        object-fit: cover;
        object-position: top center;
    }

    .player-name-image-section {
        display: flex;
        align-items: center;
    }

    .individual-group-table {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 4px;
    }

    .table-number {
        color: #3A4178 !important;
    }

    /* footer css start */
    .footer {
        margin: 40px 0px 0px 0px;
        background: #d2ecec;
        padding: 30px 0px;
        background: #00baf2;
    }

    .footer-copy-right-text p {
        margin-bottom: 0px;
        color: #434343;
        font-size: 16px;
        font-weight: 500;
    }

    .hide-footer-social-button .footer-social,
    .for-mobile.hide-footer-social-button .footer-social-media-link {
        display: none;
    }

    @media (min-width:992px) {
        .hide-footer-social-button .footer-copyright {
            flex: 0 0 auto;
            width: 50%
        }
    }

    @media (max-width: 767.98px) {
        .footer-copyright-social-media-section {
            display: block !important;
        }

        .footer-copy-right-text p, .footer-social-media-link {
            text-align: center;
            display: block;
        }

            .footer-copy-right-text p &gt; span {
                display: block;
                text-align: center;
            }
    }

    .footer-link ul {
        text-align: right;
    }

        .footer-link ul li {
            display: inline-block;
        }

    @media (max-width: 575.98px) {
        .footer-link ul li {
            display: block !important;
        }

        .footer-link ul .separator {
            display: none;
        }
    }

    .footer-link ul li a {
        color: #434343;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        margin: 0px 12px;
    }

        .footer-link ul li a:hover {
            color: #fff;
        }

    .footer-link ul .separator {
        opacity: 0.3;
    }

    .footer-social-media-link {
        text-align: right;
    }

        .footer-social-media-link a {
            font-size: 25px;
            color: #5a79d3;
            display: inline-block;
        }

    .active-footer-link {
        color: #008cd6 !important;
    }

    /* footer css end*/

    /* dashboard desktop css end*/


    /* dashboard desktop menu css start */

    .menu-section {
        display: flex;
        align-items: center;
    }

    /* nav css start */
    .nav {
        background: #fff;
        position: relative;
        z-index: 9999;
        width: 100%;
    }

    .header {
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        z-index: 999;
        margin: 0 auto;
        box-shadow: 0px 4px 16px 0 rgba(0, 0, 0, 0.1);
        position: fixed;
        background-color: var(--col-white);
        width: 100%;
        transition: all 0.2s ease-in-out;
    }

        .main-wrapper &gt; .container,
        .main-wrapper &gt; [class*="container"],
        .main-wrapper &gt; section &gt; [class*="container"],
        .header &gt; .container,
        .tournament-challenge-destination-section &gt; .container,
        .bracket-image-text-total-section &gt; .container,
        .individual-group-table-section &gt; .container,
        .group-name-short-name-pricing-field-section &gt; .container,
        .official-tournament-dashboard-group-card-total-section &gt; .container,
        .official-tournament-dashboard-my-group-section &gt; .container,
        .select-view-bracket-section &gt; .container,
        .tournament-card-total-section &gt; .container,
        .official-tournament-dashboard-search-card-section &gt; .container {
            max-width: 1920px !important;
        }

    .main-wrapper &gt; section &gt; .container.container-max-w-1400 {
        max-width: 1400px !important;
    }

    .sticky {
        top: 0 !important;
        background-color: #fff;
        position: fixed;
        box-shadow: 0px 5px 25px 0px rgb(0,0,0,0.2);
        z-index: 999;
        width: 100%;
    }

    .header .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        max-width: 100%;
        height: auto;
        padding: 0.75rem 0;
    }

    .nav-btn {
        background: #33B6EF;
        color: #fff !important;
        padding: 12px 25px !important;
        border-radius: 10px;
        transition: 0.6s ease all;
        line-height: 34px !important;
        text-align: center;
        font-size: 18px !important;
    }

        .nav-btn:hover {
            background: #000;
        }

    .header .burger {
        position: relative;
        display: block;
        cursor: pointer;
        width: 2rem;
        height: auto;
        border: none;
        opacity: 1;
        visibility: visible;
        background: none;
        outline: none;
    }

    .brand img {
        width: 200px;
    }

    .header-phone-number-section i {
        font-size: 18px;
    }

    .responsive-phone-icon {
        display: none;
    }

    .circle-badge {
        position: absolute;
        border-radius: 50rem;
        transform: translate(-50%, -50%);
        left: 88%;
        top: 2px;
        background-color: #2C5F80;
        color: #fff;
        height: 18px;
        min-width: 18px;
        line-height: 18px;
        text-align: center;
        font-size: 11px;
        font-weight: 500;
    }

    .current-subscription-text {
        color: #3b3b3b;
    }

    .icon-subscription {
        background-color: #2C5F80 !important;
    }

        .icon-subscription img {
            width: 75%;
            height: auto;
            object-fit: contain;
            object-position: center;
        }


    @media only screen and (min-width: 1200px) {
        .header .burger {
            display: none;
            opacity: 0;
            visibility: hidden;
        }
    }

    .header .burger-line {
        display: block;
        cursor: pointer;
        width: 100%;
        height: 2px;
        margin: 6px auto;
        background: #008cd6;
        transform: rotate(0deg);
        transition: all 0.3s ease-in-out;
    }

    .header .menu {
        position: fixed;
        top: 0;
        left: -19rem;
        width: 19rem;
        height: 100%;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: all 0.5s ease;
    }

    @media only screen and (min-width: 1200px) {
        .header .menu {
            position: relative;
            top: 0;
            left: 0;
            width: auto;
            opacity: 1;
            visibility: visible;
            background: none;
            box-shadow: none;
        }
    }

    .header .menu.is-active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }

    .header .menu-block {
        height: auto;
        margin: 2rem 0;
    }

    @media only screen and (min-width: 991px) {
        .header .menu-block {
            margin: 16px auto;
            margin-right: 10px;
        }
    }

    .header .menu-item {
        display: block;
        margin: 0;
    }

    @media only screen and (min-width: 991px) {
        .header .menu-item {
            position: relative;
            display: inline-block;
            margin: 0px;
        }
    }

    .header .menu-link {
        display: block;
        font-family: inherit;
        line-height: inherit;
        padding: 0px 10px;
        border: none;
        text-rendering: optimizeLegibility;
        transition: all 0.35s ease;
        font-weight: 500;
        font-size: 17px;
        letter-spacing: -0.01em;
        line-height: 30px;
        color: #3b3b3b;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        font-weight: 600;
    }

    .header .menu-item .dropdown-toggle {
        background: none;
        border: 0;
        box-shadow: none;
    }

        .header .menu-item .dropdown-toggle.show {
            background: none;
            border: 0;
            box-shadow: none;
            color: #008cd6;
        }

    .header .menu-item .dropdown-menu .dropdown-item {
        padding: 0 12px;
    }

        .header .menu-item .dropdown-menu .dropdown-item:hover {
            background: none;
        }

    .header .menu-item .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid #3b3b3b;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
        transition: all 0.2s ease-in-out;
    }

    .header .menu-item .dropdown-toggle:hover::after,
    .header .menu-item .dropdown-toggle.show::after {
        border-top-color: #008cd6;
    }

    .active-header-link {
        color: #008cd6 !important;
    }

    .header .menu-link:hover {
        color: #008cd6;
    }

    .header-phone-number-section a {
        font-weight: 400;
        font-size: 16px;
        text-transform: capitalize;
        color: #000000;
    }

        .header-phone-number-section a:hover {
            color: #FF0034;
        }

    .header-phone-number-section {
        margin: 0px 33px;
    }

    .header-get-call-section a, .btn-base {
        border-radius: 5px;
        color: #fff !important;
        padding: 12px 30px;
        transition: 0.6s ease all;
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
        margin-left: 15px;
        text-align: center;
    }

        .btn-base.telerik-blazor.k-button {
            line-height: 18px;
            border: 0;
        }

    .btn-base {
        margin-left: 0;
    }


    @media (max-width: 767.98px) {
        .btn-group-responsive-max-768 {
            display: flex !important;
        }

            .btn-group-responsive-max-768 .btn-base {
                display: flex !important;
                font-size: 14px;
                text-align: center;
                align-items: center !important;
                padding: 8px 14px;
                line-height: 1.1;
                flex-grow: 1;
                text-align: center;
                justify-content: center;
            }

        .input-label-button-group .view-bracket-button-section .create-btn {
            padding-top: 10.5px;
            padding-bottom: 10.5px;
        }
    }

    @media (max-width: 575.98px) {

        .btn-group-responsive-max-768 .btn-base {
            margin-right: 10px;
            font-size: 12px;
            padding: 7px 13px;
        }

            .btn-group-responsive-max-768 .btn-base:last-child {
                margin-right: 0;
            }
    }


    .btn-default, .view-bracket-button-section .btn-default {
        background: #717695;
        transition: all 0.2s ease-in-out;
    }

        .btn-default:hover, .view-bracket-button-section .btn-default {
            background: #5b5f78;
        }

    .btn-logout, .btn-gray-hover-red, .view-bracket-button-section .btn-gray-hover-red {
        background: #717695;
        transition: all 0.2s ease-in-out;
    }

        .btn-logout:hover, .btn-gray-hover-red:hover, .view-bracket-button-section .btn-gray-hover-red:hover {
            background: #cc3d47;
        }

    .btn-padd-sm, .view-bracket-button-section .btn-padd-sm {
        padding: 10px;
        height: 48px;
        min-width: 50px;
        text-align: center;
    }

    .header-login-btn, .btn-sky-blue, .view-bracket-button-section .btn-sky-blue {
        background: #008cd6 !important;
    }

        .header-login-btn:hover, .btn-sky-blue:hover, .view-bracket-button-section .btn-sky-blue:hover {
            background: #2c5f80 !important;
        }

    .header-sign-up-btn {
        background: #2c5f80;
    }

    .mobile-menu .header-login-btn,
    .mobile-menu .header-login-btn:hover {
        background: none !important;
    }

    .header-sign-up-btn:hover {
        background: #008cd6;
    }

    .below-title-btn-container .btn-base {
        margin-right: 15px;
        margin-bottom: 10px;
    }

        .below-title-btn-container .btn-base:last-child {
            margin-right: 0;
        }

    .pick-for-me-popup .k-popup {
        border: 0 !important;
        border-radius: 9px !important;
    }

        .pick-for-me-popup .k-popup .pick-for-me-dropdown {
            border-radius: 9px;
        }

    @media only screen and (min-width: 991px) {
        .header .menu-link {
            padding: -0.5rem 19px;
        }
    }

    @media only screen and (max-width: 991px) {
        .header .menu-link {
            color: var(--color-black);
        }
    }

    .header .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.7);
        transition: all 0.35s ease-in-out;
    }

        .header .overlay.is-active {
            display: block;
            opacity: 1;
            visibility: visible;
        }
    /* nav css link end */

    .header-user-avatar-section {
        position: relative;
        top: -2px;
    }

    .header .menu.has-user-avatar {
        overflow-y: visible;
    }

    .user-avatar .dropdown-toggle {
        padding: 0;
        box-shadow: none;
    }

    .user-avatar {
        margin-left: 10px;
    }


        .user-avatar .dropdown-toggle:focus {
            box-shadow: none;
        }

        .user-avatar .dropdown-menu {
            max-height: 0;
            transition: all 0.4s ease-in-out;
            display: block;
            visibility: hidden;
            overflow: hidden;
            opacity: 0;
            padding: 0;
            left: 60%;
            transform: translateX(-50%);
            border-radius: 15px;
            min-width: 319px;
            max-width: 320px;
            box-shadow: 0px 7px 29px 0px rgba(90, 90, 112, 0.2);
            padding: 20px 25px;
            text-align: center;
        }

            .user-avatar .dropdown-menu[data-bs-popper] {
                margin-top: 0.5rem;
            }

    @media (max-width: 2200px) {
        .user-avatar .dropdown-menu {
            left: auto;
            transform: none;
            right: 0;
        }
    }

    @media (max-width: 480px) {
        .user-avatar .dropdown-menu {
            left: 10px;
            right: 10px;
            position: fixed;
            top: 70px;
            max-width: 100%;
        }
    }

    .user-avatar .dropdown-menu.show {
        max-height: 400px;
        visibility: visible;
        opacity: 1;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-toggle.show .avatar {
        box-shadow: 0 0 0 5px rgba(90, 90, 112, 0.2);
    }

    .avatar, .avatar-big {
        display: inline-block;
        height: 3rem;
        width: 3rem;
        line-height: 3rem;
        text-align: center;
        color: #fff;
        font-weight: 600;
        border-radius: 50%;
        background-color: #398bd3;
        position: relative;
        overflow: hidden;
    }

    .avatar-big {
        height: 7rem;
        width: 7rem;
        line-height: 7rem;
        font-size: 40px;
        margin-bottom: 1rem;
    }

        .avatar img, .avatar-big img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            object-position: center;
            position: absolute;
            left: 0;
            top: 0;
        }

    .avatar-email {
        margin-bottom: 1rem;
        display: block;
        color: #0e4e9c;
    }

        .avatar-email:hover {
            color: #001742;
        }

    .avatar-name {
        font-weight: 600;
        color: #2a2a2a;
        font-size: 18px;
        display: block;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .user-avatar:hover .dropdown-toggle::before {
        opacity: 0.75;
    }

    .user-avatar-dropdown-links {
    }

        .user-avatar-dropdown-links.btn-block-vertical .btn-base,
        .btn-block-vertical .btn-base,
        .user-avatar-dropdown-links.btn-block-vertical a,
        .btn-block-vertical a,
        .user-avatar-dropdown-links.btn-block-vertical *[type=button],
        .btn-block-vertical *[type=button] {
            display: block;
            width: 100%;
            min-width: 100%;
            margin: 0 0 1rem 0;
        }

    .user-avatar .dropdown-menu .dropdown-item {
        transition: all 0.5s ease-in-out;
        transition-delay: 0.1s;
        opacity: 0;
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
    }

    .user-avatar .dropdown-menu.show .dropdown-item {
        opacity: 1;
        transition: all 0.2s ease-in-out;
    }

    .avatar, .avatar-big {
        display: inline-block;
        height: 3rem;
        width: 3rem;
        line-height: 3rem;
        text-align: center;
        color: #fff;
        font-weight: 600;
        border-radius: 50%;
        background-color: #398bd3;
        position: relative;
        overflow: hidden;
    }

    .avatar-big {
        height: 7rem;
        width: 7rem;
        line-height: 7rem;
        font-size: 40px;
        margin-bottom: 1rem;
    }

        .avatar img, .avatar-big img {
            object-fit: cover;
            width: 100%;
            height: 100%;
            object-position: center;
            position: absolute;
            left: 0;
            top: 0;
        }

    .avatar-email {
        margin-bottom: 1rem;
        display: block;
        color: #0e4e9c;
    }

        .avatar-email:hover {
            color: #001742;
        }

    .avatar-name {
        font-weight: 600;
        color: #2a2a2a;
        font-size: 18px;
        display: block;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .user-avatar:hover .dropdown-toggle::before {
        opacity: 0.75;
    }

    .user-avatar-dropdown-links {
    }

        .user-avatar-dropdown-links.btn-block-vertical .btn-base,
        .btn-block-vertical .btn-base,
        .user-avatar-dropdown-links.btn-block-vertical a,
        .btn-block-vertical a,
        .user-avatar-dropdown-links.btn-block-vertical *[type=button],
        .btn-block-vertical *[type=button] {
            display: block;
            width: 100%;
            min-width: 100%;
            margin: 0 0 1rem 0;
        }

    .user-avatar .dropdown-menu .dropdown-item {
        transition: all 0.5s ease-in-out;
        transition-delay: 0.1s;
        opacity: 0;
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
    }

    .user-avatar .dropdown-menu.show .dropdown-item {
        opacity: 1;
        transition: all 0.2s ease-in-out;
    }

    .user-avatar .dropdown-menu .dropdown-item.logout:hover {
        background-color: #cc5252;
        color: #fff;
    }

    /* dashboard desktop menu css end*/


    /* user profile start */
    .group-user-profile-form .group-name-short-name-field-input-label {
        margin-bottom: 2rem;
    }
    /* user profile end */

    /* group create desktop css start */
    .group-create-section .individual-group-select-section {
        text-align: left;
        margin-top: 30px;
    }

    .group-name-short-name-field-input-label {
        position: relative;
    }

        .group-name-short-name-field-input-label label,
        .group-name-short-name-field-input-label.group-label-small label,
        .h5-label-style {
            color: #181E47;
            font-size: 18px;
            font-weight: 500;
            display: block;
            margin-bottom: 15px;
            text-align: left;
        }

        .group-name-short-name-field-input-label.group-label-small label {
            font-size: 14px;
            margin-bottom: 10px;
        }

    .red-color {
        color: #FF0000;
    }

    .group-name-short-name-field-input-label label .red-color {
        margin-left: 5px;
        margin-right: 5px;
    }

    .group-name-short-name-field-input-label input,
    .group-name-short-name-field-input-label .input-mask,
    .group-name-short-name-field-input-label .input-mask-read-only {
        width: 100%;
        padding: 15px 25px;
        border-radius: 9px;
        color: #000;
        font-size: 16px;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.025);
        height: 57px;
    }

        .group-name-short-name-field-input-label input:focus,
        .group-name-short-name-field-input-label .input-mask:focus {
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
        }

    .group-name-short-name-field-input-label .input-mask,
    .group-name-short-name-field-input-label .input-mask-read-only {
        background-color: rgba(255,255,255,0.5);
        line-height: 25px;
        border: solid 1px #cdd3fc;
        border-radius: 0;
    }

        .group-name-short-name-field-input-label .input-mask-read-only,
        .group-name-short-name-field-input-label .input-mask-read-only:focus {
            border-radius: 0;
            line-height: 25px;
            box-shadow: none;
        }

        .group-name-short-name-field-input-label input::placeholder,
        .group-name-short-name-field-input-label .input-mask::placeholder {
            color: #7178A7;
            font-size: 16px;
        }

    .text-danger,
    .text-warning,
    .text-info {
        font-size: 0.75rem;
        margin-top: 0.3rem;
    }

    .group-name-short-name-field-input-label .text-danger,
    .group-name-short-name-field-input-label .text-warning,
    .group-name-short-name-field-input-label .text-info {
        margin-top: 5px;
        display: block;
    }

    .input-with-btn-r {
        position: relative;
    }

        .input-with-btn-r .checkbox-container {
            position: absolute;
            right: 0;
            top: 0;
            margin: 0 !important;
            height: 100%;
        }

        .input-with-btn-r &gt; input {
            padding-right: 50px !important;
        }

        .input-with-btn-r .checkbox-container label {
            font-size: 24px;
            cursor: pointer;
            padding-right: 10px;
            color: #8fa2b3;
        }

            .input-with-btn-r .checkbox-container label .fa-eye {
                padding-right: 1px;
            }

            .input-with-btn-r .checkbox-container label .fa-eye {
                display: none;
            }

            .input-with-btn-r .checkbox-container label:hover {
                color: #008cd6;
            }

        .input-with-btn-r .checkbox-container &gt; input {
            visibility: hidden;
        }

            .input-with-btn-r .checkbox-container &gt; input:checked + label {
                color: #008cd6;
            }

                .input-with-btn-r .checkbox-container &gt; input:checked + label .fa-eye {
                    display: inline-block;
                }

                .input-with-btn-r .checkbox-container &gt; input:checked + label .fa-eye-slash {
                    display: none;
                }

    .group-name-short-name-pricing-field-section {
        margin-top: 30px;
    }

    .group-create-pricing-section {
        margin-top: 30px;
    }

    /* custome radio input css start */
    .select-pricing-total-section input[type="radio"] {
        display: none;
    }

    .select-pricing-total-section label {
        cursor: pointer;
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 40px 35px;
        border-radius: 6px;
        background: #fff;
        height: 206px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border: 1px solid transparent;
    }

    .select-group-label {
        margin-left: 36px;
    }

    .select-pricing-total-section label::before {
        content: "";
        position: absolute;
        width: 22px;
        height: 22px;
        background-color: transparent;
        border: 2px solid #464646;
        border-radius: 50%;
        top: 32px;
        right: 30px;
        transform: translateY(-50%);
        transition: border-color 400ms ease;
    }

    .select-pricing-total-section label::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: #2D5F80;
        border: 2px solid #2D5F80;
        border-radius: 50%;
        top: 32px;
        right: 31px;
        transform: translateY(-50%) scale(0);
        transition: transform 400ms ease;
    }

    .select-pricing-total-section input[type="radio"]:checked + label::before {
        border-color: #2D5F80;
    }

    .select-pricing-total-section input[type="radio"]:checked + label {
        border: 2px solid #00BAF2;
        box-shadow: rgba(0, 139, 214, 0.2) 0px 7px 29px 0px;
    }

        .select-pricing-total-section input[type="radio"]:checked + label::after {
            transform: translateY(-50%) scale(0.55);
        }

    /* custome radio input css end*/
    .pricing-title-text h5 {
        color: #3A4178;
        font-size: 33px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .pricing-offer-list ul li {
        list-style-type: disc;
        font-size: 16px;
        color: #3A4178;
        font-weight: 400;
        margin-bottom: 15px;
    }

    .pricing-offer-list ul {
        margin-left: 18px;
    }

    .sup-text {
        color: #181E47;
        font-size: 18px;
    }

    .sub-text {
        color: #181E47;
        font-size: 18px;
    }

    .group-create-cancel-create-btn {
        text-align: right;
    }

        .group-create-cancel-create-btn a,
        .group-create-cancel-create-btn button,
        .group-create-cancel-create-btn *[type=button] {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            display: inline-block;
            padding: 16px 50px;
            border-radius: 9px;
            margin-left: 15px;
            cursor: pointer;
        }

            .group-create-cancel-create-btn a:disabled,
            .group-create-cancel-create-btn button:disabled,
            .group-create-cancel-create-btn *[type=button]:disabled {
                opacity: 0.4;
                pointer-events: none;
            }


    .cancel-btn {
        background: #717695;
    }

        .cancel-btn:hover {
            background: #cc3d3d;
        }

    .back-btn, .edit-btn {
        background: #008cd6;
    }

        .back-btn:hover, .edit-btn:hover {
            background: #2c5f80;
        }


    .btn-turquoise {
        background: #2c5f80;
    }

        .btn-turquoise:hover {
            background: #3881a6;
        }

    .create-btn {
        background: #008AA8;
    }

        .create-btn:hover {
            background: #008cd6;
        }

    .btn-generate {
        border: 0;
        background: #F38A29;
        color: #fff;
        border-radius: 7px;
        box-shadow: none;
        font-weight: 600;
        padding-left: 25px;
        padding-right: 25px;
    }

        .btn-generate:hover,
        .btn-generate:active,
        .btn-generate:focus {
            color: #fff;
            background: #3A4178;
            box-shadow: none;
        }

    .pick-for-me-dropdown {
        width: 300px;
        height: 100%;
        background-color: #fff;
    }

    .group-create-cancel-create-btn {
        margin-top: 40px;
    }

    .url-text {
        text-align: right;
        margin: 18px 0px;
    }

        .url-text h5 {
            color: #181E47;
            font-size: 16px;
            font-weight: 400;
        }

    /* group create desktop css end*/

    /* new tournament desktop css start */
    .group-name-short-name-field-input-label select {
        background: #fff;
        padding: 15px 25px;
        border-radius: 9px;
        width: 100%;
        color: #3A4178;
        font-size: 18px;
        -webkit-appearance: none;
        -moz-appearance: window;
    }

    .group-name-short-name-field-input-label .form-select {
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 16px 12px;
        padding: 15px 25px;
        border-radius: 9px;
        border: 0;
        height: 57px;
    }

    .new-tournament-section .group-name-short-name-field-input-label {
        position: relative;
        margin-bottom: 40px;
    }

    .group-name-short-name-field-input-label i {
        position: absolute;
        right: 18px;
        top: 48px;
        font-size: 21px;
        color: #3A4178;
    }

    /* custom checkbox css start */
    .prize-pool-checkbox input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .prize-pool-checkbox label {
        position: relative;
        cursor: pointer;
        font-weight: 500;
        font-size: 20px;
        color: #3A4178;
    }

        .prize-pool-checkbox label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 2px solid #838E95;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            padding: 8px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 11px;
            margin-top: -4px;
            border-radius: 2px;
        }

    .prize-pool-checkbox input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 7px;
        width: 6px;
        height: 10px;
        border: solid rgb(26, 29, 59);
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    /* custom checkbox css end */
    .prize-pool-checkbox-bottom-text p {
        color: #6E7186;
        font-size: 13px;
        margin-bottom: 0px;
        line-height: 20px;
        margin-top: 10px;
    }

    .new-tournament-section .group-create-cancel-create-btn {
        margin-top: 16px;
    }

    /* new tournament desktop css end*/


    /* join to tournament payment start */

    .payment-message {
        display: flex;
        align-items: center;
        border: solid 1px lightgray;
        border-radius: 0.25rem;
        padding: 0.75rem
    }

    .payment-message-content,
    .payment-message-content &gt; label {
        display: block;
        font-weight: 500;
    }

    .payment-message-icon {
        flex-shrink: 0;
        margin-right: 10px;
    }

    .pm-status-icon {
        line-height: 18px;
        left: auto;
        right: 2px;
        font-size: 18px;
        top: -7px;
        background: var(--col-white);
        border-radius: 100%;
        display: inline-block;
        width: auto;
        border: solid 2px var(--col-page-bg);
    }

        .pm-status-icon::before {
            position: relative;
            z-index: 5;
        }

        .pm-status-icon::after {
            display: block;
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            background-color: var(--col-white);
            border-radius: 50%;
            height: 0.75em;
            width: 0.75em;
            z-index: 1;
            transform: translate(-50%,-50%);
        }

    @media (min-width: 768px) {
        .g-0 .payment-message.col-md-6 {
            width: calc(50% - 0.75rem);
        }
    }

    .get-note-message {
        position: relative;
        top: -2.1rem;
        margin-bottom: 1rem;
    }

    .select-label-paid {
        background-color: #198754;
        color: #fff;
    }

    .select-label-paid-alt {
        background-color: #1e9f64;
        color: #fff;
    }

    .select-label-paid-light {
        background-color: #d1eddf;
    }

    .bill-description {
        font-size: 1.5rem;
        color: #7d7f80;
        display: block;
        font-weight: 500;
        display: flex;
        max-width: 500px;
        align-items: center;
    }

        .bill-description.bd-total {
            font-size: 1.75rem;
            color: #181E47;
        }

    .bill-label {
        margin-right: 20px;
        flex: 1;
    }

    .bill-value {
        font-size: 24px;
        font-weight: 600;
        flex-shrink: 0;
        min-width: 90px;
    }

.bd-total .bill-value {
    font-size: 30px;
}
.fee-tournament-list {
    font-size: 18px;
    margin-bottom: 1.75rem;
}

    .fee-tournament-list .list-group-item {
        padding: 0.75rem 1rem;
    }

@media (max-width: 767.98px) {
    .bill-description {
        font-size: 1rem;
    }

        .bill-description.bd-total {
            font-size: 1.1rem;
        }

        .bill-label {
            margin-right: 10px;
        }

    .bill-value {
        font-size: 20px;
        min-width: 60px;
    }

    .bd-total .bill-value {
        font-size: 22px;
    }
    }

    .payment-message .fa-stack {
        position: relative;
    }

    /*Paid*/
    .payment-message.payment-message-paid {
        color: #198754;
        border-color: #198754;
    }

    .pm-custom-text {
        position: absolute;
        bottom: 3px;
        left: 50%;
        transform: translateX(-50%);
        text-transform: uppercase;
        font-size: 12px;
        color: #fff;
        line-height: normal;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    /*Not Paid*/
    .payment-message.payment-message-notpaid {
        color: #dc3545;
        border-color: #dc3545;
    }

    .text-notpaid {
        color: #dc3545 !important;
    }

    /*Free*/
    .payment-message.payment-message-free {
        color: #008cd6;
        border-color: #008cd6;
    }

        .payment-message.payment-message-free .fa-credit-card {
            top: -4px;
        }
    /* join to tournament payment end */


    /* login desktop css start */
    .login-desktop-section {
        margin: 60px 0px;
    }

    /* custom checkbox css start */
    .forgot-password-checkbox input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer;
    }

    .forgot-password-checkbox label {
        position: relative;
        cursor: pointer;
        font-weight: 400;
        font-size: 16px;
    }

        .forgot-password-checkbox label:before {
            content: '';
            -webkit-appearance: none;
            background-color: transparent;
            border: 2px solid #838E95;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
            padding: 7px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 11px;
            margin-top: -4px;
            border-radius: 2px;
        }

    .forgot-password-checkbox input:checked + label:after {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 6px;
        width: 6px;
        height: 10px;
        border: solid rgb(26, 29, 59);
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    /* custom checkbox css end */
    .login-card {
        padding: 30px 50px;
        background: #fff;
        border-radius: 5px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .login-card-title h5 {
        color: #0E0E0E;
        font-weight: 700;
        font-size: 35px;
        text-align: center;
    }

    .user-form-title {
        margin-bottom: 3rem;
    }

        .user-form-title h5 {
            color: #0E0E0E;
            font-weight: 600;
            font-size: 20px;
            text-align: center;
        }

    .btn-user-form {
        width: 100%;
        padding: 15px 20px;
    }

        .btn-user-form:disabled {
            background-color: #375e7e;
            border-color: #375e7e;
            opacity: 0.4;
        }

    .login-form-input input {
        width: 100%;
        background: var(--col-page-bg);
        padding: 15px 20px;
        font-size: 16px;
        color: #000;
        border-radius: 9px;
    }

    .login-form-input br {
        display: block;
    }

    .login-form-input input::placeholder {
        font-size: 16px;
        color: #8086AD;
    }

    .login-form-input {
        margin-bottom: 15px;
        position: relative;
    }

    .password-show-hide-eye-icon {
        position: absolute;
        right: 13px;
        top: 50%;
        transform: translateY(-44%);
        cursor: pointer;
    }

        .password-show-hide-eye-icon .fa-eye {
            padding-right: 1px;
        }

        .password-show-hide-eye-icon .fa-eye-slash:hover {
            color: #008cd6;
        }

        .password-show-hide-eye-icon .fa-eye,
        .password-show-hide-eye-icon .fa-eye:hover {
            color: #008cd6;
        }

        .password-show-hide-eye-icon span {
            color: #939AC9;
            font-size: 18px;
        }

    .forgot-password-checkbox {
        text-align: right;
    }

    .login-form {
        margin-top: 35px;
    }

    .login-btn {
        margin-top: 35px;
    }

        .login-btn input {
            padding: 18px 0px;
            width: 100%;
            display: inline-block;
            background: #008BD6;
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            transition: 0.6s ease all;
            border-radius: 9px;
        }

            .login-btn input:hover {
                background: #181E47;
            }

    .sign-up-now-text-btn {
        text-align: center;
        margin-top: 40px;
    }

        .sign-up-now-text-btn p {
            color: #464C76;
            font-weight: 400;
            font-size: 15px;
        }

    .sign-up-text-button {
        color: #008BD6;
        font-weight: 500;
        text-decoration: underline;
    }

        .sign-up-text-button:hover {
            color: #181E47;
        }

    /* login desktop css end*/

    /* sign up desktop css start */
    .sign-up-btn input {
        background: #2D5F80;
        width: 100%;
    }

    .sign-up-btn .btn, .login-btn .btn {
        padding: 15px 20px;
    }

        .sign-up-btn .btn:disabled, .login-btn .btn:disabled {
            background-color: #375e7e;
            border-color: #375e7e;
            opacity: 0.4;
        }

    .terms-and-privacy {
        margin-bottom: 1.5rem;
        padding-left: 1.8em;
    }

        .terms-and-privacy .form-check-label {
            font-size: 13px;
            color: #464C76;
        }

    @media (min-width: 1200px) {
        .terms-and-privacy .form-check-label {
            font-size: 12px;
        }
    }

    .terms-and-privacy .form-check-input {
        box-shadow: none !important;
        height: 18px;
        width: 18px;
        margin-left: -1.8em;
        margin-top: 0;
    }

    /* sign up desktop css end*/


    /* group desktop css start */
    .join-group-table-btn {
        text-align: center;
    }

        .join-group-table-btn a {
            border-radius: 5px;
            color: #050505 !important;
            padding: 15px 30px;
            transition: 0.6s ease all;
            font-size: 15px;
            font-weight: 500;
            display: inline-block;
            background: #A6EAFE;
        }

            .join-group-table-btn a:hover {
                background: #181E47;
                color: #fff !important;
            }

    /* group desktop css end*/

    /* my-entries-desktop css start */
    .my-entries-desktop-table-section .bracket-name {
        margin-left: 0px;
    }

    .bracket-name-bottom-text h5 {
        font-size: 16px;
        color: #3A4178;
        font-weight: 500;
        margin-top: 5px;
    }

    .table-action-btn {
        text-align: center;
    }

        .table-action-btn button {
            background: none;
            color: #3A4178;
            font-size: 20px;
            display: inline-block;
            margin: 0px 10px;
            transition: 0.6s ease all;
        }

            .table-action-btn button:hover {
                color: #008BD6;
            }

    /* my-entries-desktop css end*/

    /* tournament-entry-desktop css start */
    .name-bracket-label-input {
        display: flex;
        align-items: center;
    }

        .name-bracket-label-input input {
            width: 100%;
            padding: 19px 20px;
            font-size: 16px;
            color: #000;
            background: #fff;
            border-radius: 9px;
        }

            .name-bracket-label-input input::placeholder {
                font-size: 16px;
                color: #7178A7;
            }

        .name-bracket-label-input label {
            color: #181E47;
            font-size: 18px;
            font-weight: 500;
            display: block;
            margin-right: 15px;
        }

    .name-bracket-submit-input-btn input {
        padding: 19px 20px;
        background: #008AA8;
        color: #fff;
        border-radius: 9px;
        font-size: 20px;
        font-weight: 600;
        transition: 0.6s ease all;
    }

        .name-bracket-submit-input-btn input:hover {
            background: #008AA8;
        }

    .tournament-entry-btn a {
        display: inline-block;
        color: #fff;
        padding: 15px 25px;
        font-size: 20px;
        font-weight: 600;
        border-radius: 9px;
        margin-right: 12px;
    }

    .pick-for-me-btn {
        background: #F38A29;
    }

    .link-existing-entry-btn {
        background: #73778D;
    }

    .copy-existing-entry-btn {
        background: #73778D;
    }

    .tournament-entry-btn a:hover {
        background: #181E47;
    }

    .tournament-entry-btn-section {
        margin: 25px 0px;
    }

    .draft-team-card-total-section {
        background: #fff;
        padding: 5px;
        border-radius: 5px;
        position: relative;
        margin-bottom: 12px;
    }

        .draft-team-card-total-section:last-child {
            margin-bottom: 0px;
        }

    .draft-team-correct-icon {
        position: absolute;
        right: 38px;
        top: 38px;
    }

    .draft-team-plus-icon {
        position: absolute;
        right: 38px;
        top: 38px;
    }

        .draft-team-plus-icon i {
            font-size: 22px;
            color: #2D5F80;
        }

    .draft-team-correct-icon i {
        font-size: 22px;
        color: #30BD79;
    }

    .draft-team-icon {
        width: 111px;
        height: 89px;
        background: var(--col-page-bg);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .draft-team-name-text h5 {
        color: #3A4178;
        font-weight: 500;
        font-size: 30px;
    }

    .draft-team-name-text p {
        margin-bottom: 0px;
        color: #3A4178;
        font-weight: 500;
        font-size: 16px;
        margin-top: 10px;
    }

    .draft-team-price-text h4 {
        padding: 16px 20px;
        background: var(--col-page-bg);
        color: #008CD6;
        font-weight: 500;
        font-size: 30px;
        border-radius: 5px;
        display: inline-block;
    }

    .draft-your-teams-scroll-section {
        height: 765px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 20px;
    }

        .draft-your-teams-scroll-section::-webkit-scrollbar-track {
            background-color: #DBDCE5;
        }

        .draft-your-teams-scroll-section::-webkit-scrollbar {
            width: 4px;
            background-color: #DBDCE5;
        }

        .draft-your-teams-scroll-section::-webkit-scrollbar-thumb {
            background-color: #73778D;
        }

    .draft-teams-total-price-card-section {
        background: #fff;
        border-radius: 5px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .draft-teams-name-price-flex-section {
        padding: 30px 25px;
        border-bottom: 1px solid #E8E8E8;
    }

    .draft-teams-name-price-total-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .draft-teams-name h5 {
        color: #3A4178;
        font-size: 18px;
        font-weight: 500;
    }

    .draft-teams-name-price h5 {
        color: #3A4178;
        font-size: 18px;
        font-weight: 600;
    }

    .total-price-text-section {
        text-align: right;
        padding: 22px 25px;
    }

        .total-price-text-section h5 {
            color: #3A4178;
            font-size: 19px;
            font-weight: 600;
        }

    .draft-your-teams-title-text-icon {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-right: 20px;
    }

    .draft-your-teams-title-text h5 {
        color: #181E47;
        font-size: 22px;
        font-weight: 500;
    }

    .draft-your-teams-title-icon i {
        color: #2D5F80;
        font-size: 24px;
    }

    /* tournament-entry-desktop css end*/

    /* official-tournament-dashboard-desktop css start */
    .official-tournament-dashboard-inner-title-section h5 {
        font-size: 24px;
        font-weight: 500;
        color: #000;
    }

    .official-tournament-dashboard-my-group-section {
        margin: 30px 0px;
    }

    .official-tournament-dashboard-group-card-title-rocket-icon {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .official-tournament-dashboard-group-card-title h4 {
        color: #3A4178;
        font-weight: 600;
        font-size: 25px;
    }

    @media (min-width: 768px) {
        .official-tournament-dashboard-icon-number-section {
            display: flex;
            flex-direction: column;
            min-height: 190px;
        }
    }

    .official-tournament-dashboard-group-card-rocket-icon i {
        color: #00BAF2;
        font-size: 24px;
    }

    .official-tournament-dashboard-icon-number {
        border: 1px solid #008CD6;
        position: relative;
        border-radius: 6px;
        min-height: 60px;
    }

    .official-tournament-dashboard-icon {
        width: 60px;
        height: 100%;
        background: #008CD6;
        position: absolute;
        display: flex;
        align-items: center;
        left: -2px;
        top: 0;
        justify-content: center;
        border-radius: 6px 0px 0px 6px;
    }

        .official-tournament-dashboard-icon i {
            font-size: 24px;
            color: #fff;
        }

    .official-tournament-dashboard-number {
        text-align: center;
        position: absolute;
        left: 60px;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .official-tournament-dashboard-number h5 {
            font-size: 18px;
            font-weight: 400;
            color: #3A4178;
        }

    @media (min-width: 768px) {
        .official-tournament-card-team-name-icon {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
    }

    @media (max-width: 767.98px) {
        .official-tournament-card-team-name-icon {
            margin-top: 35px;
        }
    }


    .official-tournament-card-team-name-text h5 {
        font-size: 16px;
        font-weight: 400;
        color: #3A4178;
    }

    .official-tournament-card-team-icon i {
        font-size: 22px;
        color: #008CD6;
    }


    @media (min-width: 1200px) {
        .official-tournament-dashboard-group-card {
            display: flex;
            height: 100%;
        }
    }

    .official-tournament-dashboard-group-card a {
        width: 100%;
        background: #fff;
        padding: 38px 25px;
        display: inline-block;
        border-radius: 6px;
        border: 2px solid transparent;
        height: 100%;
    }


        .official-tournament-dashboard-group-card a:hover {
            border: 2px solid #00BAF2;
            box-shadow: rgba(0, 186, 242, 0.2) 0px 7px 29px 0px;
        }

    .create-new-group {
        height: 100%;
        display: flex;
    }


        .create-new-group a {
            width: 100%;
            background: #008AA8;
            display: inline-block;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 254px;
            height: 100%;
            border-radius: 6px;
        }

    @media (max-width: 767.98px) {
        .create-new-group a {
            min-height: 170px;
        }
    }

    @media (max-width: 575.98px) {
        .create-new-group a {
            min-height: 120px;
        }
    }


    .create-new-group-plus-icon {
        text-align: center;
        margin-bottom: 25px;
    }

        .create-new-group-plus-icon i {
            color: #fff;
            font-size: 32px;
        }

    .create-new-group-text {
        text-align: center;
    }

        .create-new-group-text h5 {
            color: #fff;
            font-size: 20px;
            font-weight: 600;
        }

    .create-new-group a:hover {
        background: #181E47;
    }

    .official-tournament-dashboard-group-card-total-section {
        margin-top: 30px;
    }

    .official-tournament-dashboard-search-card-section {
        margin: 60px 0px;
    }

    .official-tournament-dashboard-search-field-section &gt; label {
        color: #0E0E0E;
    }

        .official-tournament-dashboard-search-field-section &gt; label .red-color {
            padding-left: 0.25rem;
        }

    .official-tournament-dashboard-search-field-section input {
        width: 100%;
        padding: 11px 50px 11px 25px;
        line-height: 24px;
        border-radius: 9px;
        color: #000;
        font-size: 16px;
        background: #fff;
    }

        .official-tournament-dashboard-search-field-section input::placeholder {
            color: #3A4178;
        }

    .official-tournament-dashboard-search-field-section {
        position: relative;
    }

    .search-icon {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 50px;
    }

        .search-icon button {
            color: #6B6B6B;
            font-size: 19px;
            background: none;
            width: 100%;
            height: 100%;
        }

            .search-icon button:hover {
                color: #008CD6;
            }


    .official-tournament-dashboard-inner-title-section p {
        color: #3A4178;
        font-size: 19px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .official-tournament-dashboard-group-card-section-two {
        width: 100%;
        background: #fff;
        padding: 38px 25px;
        display: inline-block;
        border-radius: 6px;
        border: 1px solid transparent;
    }

    @media (min-width: 768px) {
        .official-tournament-dashboard-group-card-section-two .official-tournament-dashboard-icon-number-section {
            min-height: 215px;
        }
    }

    @media (max-width: 767.98px) {
        .official-tournament-card-bottom-btn {
            margin-top: 25px;
        }
    }

    .official-tournament-card-bottom-btn a {
        display: inline-block;
        width: 100%;
        padding: 15px 25px;
        text-align: center;
        border-radius: 9px;
        font-size: 20px;
        font-weight: 600;
    }

        .official-tournament-card-bottom-btn a:hover {
            background: #181E47;
            color: #fff;
        }

    .view-entries-btn {
        background: #A6EAFE;
        color: #0A2B3C;
    }

    .play-now-btn {
        background: #008AA8;
        color: #fff;
    }

    .my-group-side-panel .official-tournament-dashboard-group-card-total-section {
        background-color: var(--col-white);
        border-radius: 6px;
    }

    .my-group-row {
        margin: 0;
    }

        .my-group-row .official-tournament-dashboard-icon-number-section {
            min-height: initial;
        }

    .my-group-side-panel .official-tournament-dashboard-group-card-total-section &gt; .container {
        padding: 15px;
    }

    .my-group-side-panel .official-tournament-dashboard-group-card a {
        border: 1px solid #c0c8cc;
        padding: 20px;
        border-radius: 9px;
    }

        .my-group-side-panel .official-tournament-dashboard-group-card a:hover {
            border-color: #00BAF2;
        }

    .create-or-search-section .btn-create-group {
        padding: 1rem;
        width: 100%;
    }

    .create-or-search-section .official-tournament-dashboard-search-field-section .form-control {
        background-color: #f1f2f9;
        box-shadow: none !important;
        transition: all 0.2s ease-in-out;
        box-shadow: none !important;
    }

        .create-or-search-section .official-tournament-dashboard-search-field-section .form-control:focus {
            background-color: #e5e7fa;
            box-shadow: none !important;
        }

    .separator-or-white-bg {
        position: relative;
        height: 27px;
        background-color: #fff;
    }

        .separator-or-white-bg::before {
            content: "";
            position: absolute;
            left: 11px;
            right: 11px;
            top: 13px;
            height: 1px;
            background-color: #9da2a6;
        }

        .separator-or-white-bg .central-label {
            display: inline-block;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            padding: 1px 10px;
            background-color: #fff;
            color: #9da2a6;
        }

    @media (min-width: 768px) and (max-width: 1199.98px) {
        .separator-or-white-bg::before {
            left: 7px;
            right: 7px;
        }
    }

    @media (max-width: 767.98px) {
        .my-group-side-panel .official-tournament-dashboard-group-card-total-section .my-group-row &gt; [class*="col"] {
            padding: 0;
        }
    }

    @media (min-width: 1200px) {
        .my-group-side-panel .official-tournament-dashboard-group-card-total-section .my-group-row &gt; [class*="col"] {
            padding: 0;
        }

        .my-group-row {
            margin: 0 -8px;
            height: calc(100vh - 460px);
            padding: 10px;
            scrollbar-width: thin;
            border: 1px solid #d8e1e5;
            border-radius: 9px;
            overflow: auto;
            overflow-x: hidden;
        }

        .official-tournament-scroller {
            height: calc(100vh - 270px);
            overflow: auto;
            overflow-x: hidden;
            border: 1px solid #c0c8cc;
            padding-top: 10px;
            border-radius: 9px;
            scrollbar-width: thin;
        }

        .dashboard-2-col {
            margin: 0 !important;
        }
    }

    /* official-tournament-dashboard-desktop css end*/


    /* group-dashboard-home-desktop css start */
    .group-dashboard-home-desktop-sub-text {
        font-size: 16px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        color: #525779;
    }

    .group-dashboard-home-desktop-top-icon {
        margin-left: 20px;
        display: flex;
        align-items: center;
    }

        .group-dashboard-home-desktop-top-icon a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            background: #008CD6;
            color: #fff;
            font-size: 20px;
            margin-right: 6px;
            vertical-align: middle;
        }

            .group-dashboard-home-desktop-top-icon a:hover {
                background: #181E47;
            }

    .per-entry-notice {
        text-align: center;
        display: inline-block;
        color: #2C5F80;
        font-weight: 600;
        line-height: 1.2;
    }

    .per-entry-value {
        letter-spacing: 0.02em;
    }

    .per-entry-notice &gt; label {
        display: block;
        margin: 0;
        font-size: 0.94em;
    }

    .group-dashboard-home-desktop-top-title-icon-section {
        display: flex;
        align-items: center;
    }

    .pool-eight-icon {
        background: #2C5F80 !important;
    }

        .pool-eight-icon:hover {
            background: #181E47 !important;
        }

    .group-dashboard-home-table-title h5,
    h5.group-subtitle {
        color: #181E47;
        font-size: 22px;
        font-weight: 500;
    }

    .group-dashboard-home-table-title h6,
    h6.group-subtitle {
        color: #181E47;
        font-size: 20px;
        font-weight: 500;
    }

    .group-dashboard-home-desktop-table-leader-board-chat-section .individual-group-table {
        margin-top: 25px;
    }

    .active-tournaments-table-section {
        margin-bottom: 40px;
    }

        .active-tournaments-table-section:last-child {
            margin-bottom: 0px;
        }

        .active-tournaments-table-section .bracket-name {
            margin-left: 0px;
        }

    .all-time-leaderboard-card-section {
        background: #fff;
        border-radius: 5px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .all-time-leaderboard-card-section-title {
        background: #DFE1ED;
        text-align: center;
        width: 100%;
        padding: 28px 22px;
        border-radius: 5px 5px 0px 0px;
    }

        .all-time-leaderboard-card-section-title h5 {
            font-size: 16px;
            font-weight: 500;
            color: #181E47;
        }

    .leader-board-pts-section .draft-teams-name h5 {
        font-size: 16px;
    }

    .leader-board-pts-section .draft-teams-name-price h5 {
        font-size: 16px;
        font-weight: 500;
    }

    .leader-board-pts-section .draft-teams-name-price-total-section {
        padding: 25px 25px;
        margin-bottom: 0px;
        border-bottom: 1px solid #E8E8E8;
    }

        .leader-board-pts-section .draft-teams-name-price-total-section:last-child {
            border-bottom: none;
        }

    .group-dashboard-home-desktop-table-chat-section {
        background: #fff;
        border-radius: 9px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        margin-top: 50px;
    }

    .chat-user-image img {
        width: 34px;
        height: 34px;
        border-radius: 50px;
        object-fit: cover;
        object-position: top center;
    }

    .chat-user-name-text {
        margin-left: 12px;
    }

        .chat-user-name-text h5 {
            font-size: 19px;
            color: #181E47;
            font-weight: 500;
        }

    .chat-left-arrow-btn button {
        background: none;
        font-size: 17px;
        color: #181E47;
        display: inline-block;
        margin-right: 10px;
    }

    .chat-text-section,
    .create-entry-selected {
        border-top: 1px solid #E8E8E8;
        padding: 16px 16px;
        border-bottom: 1px solid #E8E8E8;
    }

    .chat-text-section {
        padding: 0 5px 0 0;
    }

    .chat-text-left {
        text-align: left;
    }

        .chat-text-left .chat-text {
            display: inline-block;
            background: var(--col-page-bg);
            border-radius: 10px 10px 10px 0px;
            padding: 16px 20px;
        }

    .chat-text-right {
        text-align: right;
        margin: 12px 0px;
    }

        .chat-text-right .chat-text {
            display: inline-block;
            background: #008BD6;
            border-radius: 10px 10px 0px 10px;
            padding: 16px 20px;
        }

    .chat-text-left .chat-text p {
        color: #4B5077;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .chat-text-left .chat-text h6 {
        color: #8187B7;
        font-size: 11px;
        text-align: right;
    }

    .chat-text-right .chat-text p {
        color: #fff;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .chat-text-right .chat-text h6 {
        color: #fff;
        font-size: 11px;
        text-align: right;
    }

    .chat-type-section {
        padding: 16px 16px;
    }

    .chat-type-section-input input {
        background: var(--col-page-bg);
        width: 100%;
        padding: 12px 44px;
        font-size: 14px;
        color: #000;
        border-radius: 5px;
    }

        .chat-type-section-input input::placeholder {
            color: #8187B7;
        }

    .chat-type-section-input {
        position: relative;
    }

    .chat-type-emoji-icon {
        position: absolute;
        left: 15px;
        top: 15px;
    }

        .chat-type-emoji-icon i {
            font-size: 16px;
            color: #B8BBCB;
            transition: 0.6s ease all;
        }

            .chat-type-emoji-icon i:hover {
                color: #181E47;
            }

    .chat-type-send-icon {
        position: absolute;
        right: 15px;
        top: 15px;
    }

        .chat-type-send-icon button {
            background: none;
        }

        .chat-type-send-icon i {
            font-size: 16px;
            color: #008BD6;
            transition: 0.6s ease all;
        }

            .chat-type-send-icon i:hover {
                color: #181E47;
            }

    .group-dashboard-home-top-link-ul {
        border-bottom: 2px solid #DFE1ED;
        margin: 40px 0px 30px 0px;
    }

        .group-dashboard-home-top-link-ul ul li {
            display: inline-block;
            margin-right: 60px;
        }

            .group-dashboard-home-top-link-ul ul li a {
                color: #9095B5;
                font-size: 16px;
                font-weight: 500;
                display: inline-block;
                border-bottom: 5px solid transparent;
                padding-bottom: 25px;
            }

                .group-dashboard-home-top-link-ul ul li a:hover {
                    color: #181E47;
                    border-bottom: 5px solid #008CD6;
                }

    .active-top-link-btn {
        color: #181E47 !important;
        border-bottom: 5px solid #008CD6 !important;
    }

    /* group-dashboard-home-desktop-section css end */

    /* group-dashboard-stats-desktop-section css start */
    .group-dashboard-stats-desktop-section .select-view-bracket-section {
        margin-top: 0px;
    }

    .group-dashboard-stats-desktop-section .individual-group-table-total-section {
        margin: 0px 0px;
    }

    .group-dashboard-stats-desktop-section .select-view-bracket-field-section .form-select {
        margin-right: 1rem;
    }

    /* group-dashboard-stats-desktop-section css end*/

    /* group-dashboard-member-desktop-section css start */
    .group-dashboard-member-invite-btn .view-bracket-button-section a,
    .group-dashboard-member-invite-btn .view-bracket-button-section button {
        background: #008CD6;
    }

        .group-dashboard-member-invite-btn .view-bracket-button-section a:hover,
        .group-dashboard-member-invite-btn .view-bracket-button-section button:hover {
            background: #181E47;
        }

    /* group-dashboard-member-desktop-section css end*/

    /* group-dashboard-chatbox-desktop css start */
    .group-dashboard-chatbox-section .group-dashboard-home-desktop-table-chat-section {
        margin-top: 0px;
    }

    .group-dashboard-chatbox-left-side-contact,
    .group-create-entry-left-side {
        background: #fff;
        border-radius: 9px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        height: 586px;
    }

    .group-dashboard-chatbox-left-side-contact-title-search-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 22px;
        background: #DFE1ED;
        border-radius: 9px 9px 0px 0px;
    }

    .group-dashboard-chatbox-left-side-contact-title h5 {
        font-size: 16px;
        font-weight: 500;
        color: #181E47;
    }

    .group-dashboard-chatbox-left-side-contact-search-btn button {
        background: none;
        font-size: 16px;
        color: #181E47;
    }

    .group-dashboard-chatbox-contact-user-image-user-name {
        display: flex;
        align-items: center;
    }

    .group-dashboard-chatbox-contact-user-image img {
        width: 46px;
        height: 46px;
        object-fit: cover;
        object-position: top center;
    }

    .group-dashboard-chatbox-contact-user-name {
        margin-left: 15px;
    }

        .group-dashboard-chatbox-contact-user-name h5 {
            font-size: 16px;
            font-weight: 500;
            color: #3A4178;
            margin-bottom: 0px;
        }

        .group-dashboard-chatbox-contact-user-name p {
            color: #9095B5;
            font-size: 13px;
            margin-bottom: 0px;
        }

    .chatbox-user-total-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .chatbox-timing-text h6 {
        color: #9095B5;
        font-size: 13px;
        font-weight: 400;
    }

    .chatbox-message-number-text {
        text-align: center;
        margin-top: 2px;
    }

        .chatbox-message-number-text h6 {
            font-size: 14px;
            display: inline-flex;
            background: #4EBA66;
            font-weight: 600;
            color: #fff;
            width: 24px;
            height: 24px;
            padding: 5px;
            border-radius: 50px;
            align-items: center;
            justify-content: center;
        }

    .group-dashboard-chatbox-contact-user-name-section,
    .group-create-entry-list {
        padding: 22px 22px;
    }

    .group-dashboard-chatbox-contact-user-btn a {
        display: block;
        padding: 12px 15px;
        border-bottom: 1px solid #E8E8E8;
        margin-bottom: 7px;
    }

        .group-dashboard-chatbox-contact-user-btn a:hover {
            background: var(--col-page-bg);
            border-bottom: 1px solid transparent;
            border-radius: 9px;
        }

        .group-dashboard-chatbox-contact-user-btn a:last-child {
            border: none;
        }

    .active-chatbox-user-btn {
        background: var(--col-page-bg);
        border-radius: 9px;
        border-bottom: none !important;
    }

    .border-bottom-none {
        border-bottom: none !important;
    }

    .chat-box-images-section {
        text-align: left;
    }

    .chat-box-images {
        display: inline-block;
        background: var(--col-page-bg);
        border-radius: 10px 10px 10px 0px;
        padding: 16px 20px;
    }

        .chat-box-images img {
            width: 80px;
            height: 74px;
            object-fit: cover;
            border-radius: 10px;
        }

    .group-dashboard-home-mobile-chat-section {
        margin: 30px 0px;
    }

    .chat-user-name-image-section {
        display: flex;
        align-items: center;
        padding: 22px 22px;
        position: relative;
    }

    .three-dot-line {
        position: absolute;
        right: 26px;
        top: 26px;
    }

        .three-dot-line button {
            background: none;
            font-size: 20px;
            color: #181E47;
        }

    /* group-dashboard-chatbox-desktop css end*/

    /* create entry start */
    .group-create-entry-right-section {
        background: #fff;
        border-radius: 9px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .create-entry-title-section {
        display: flex;
        align-items: center;
        padding: 22px 22px;
        position: relative;
    }

    .create-entry-title-section {
        justify-content: center;
    }

    .group-create-entry-left-side, .group-create-entry-right-section {
        height: 100%;
        padding-bottom: 15px;
    }

    .group-create-entry-left-side-title h4, .create-entry-title-section h4 {
        color: #3A4178;
    }

    .group-create-entry-list {
        padding: 22px;
    }

    .group-create-entry-list-row {
        align-items: center;
        padding: 5px 0;
        margin-bottom: 5px;
    }

    .group-create-entry-list, .create-entry-selected {
        height: 100%;
        max-height: 52vh;
        overflow: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        border-bottom: 1px solid #E8E8E8;
    }

    .group-create-entry-team-image img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        object-position: center center;
    }

    .btn-circle {
        --btn-circle-dimension: 48px;
        width: var(--btn-circle-dimension);
        height: var(--btn-circle-dimension);
        border-radius: 50%;
        padding: 0;
        line-height: var(--btn-circle-dimension);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0 !important;
    }

    .team-title h3 {
        color: #000;
        line-height: 1.1;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        font-size: 1.4rem;
    }

    .entry-selected-label {
        margin-bottom: 10px;
        font-size: 18px;
        align-items: center;
    }

        .entry-selected-label .btn-circle-xs {
            margin-left: auto;
        }

        .entry-selected-label .team-title h3 {
            font-size: 1.1rem;
        }

    .btn-circle-sm {
        --btn-circle-sm-dimension: 36px;
        width: var(--btn-circle-sm-dimension);
        height: var(--btn-circle-sm-dimension);
        line-height: var(--btn-circle-sm-dimension);
    }

    .btn-circle-xs {
        --btn-circle-xs-dimension: 30px;
        width: var(--btn-circle-xs-dimension);
        height: var(--btn-circle-xs-dimension);
        line-height: var(--btn-circle-xs-dimension);
    }

    .group-create-entry .mobile-spec-responsive .official-tournament-dashboard-search-field-section input {
        padding: 11px 25px;
    }

    .group-create-entry .view-bracket-button-section {
        height: 100%;
    }

        .group-create-entry .view-bracket-button-section .btn-orange-blue-hover {
            text-align: center;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .entry-info {
        text-align: center;
    }

    .team-title .seed {
        display: inline-block;
        min-width: 1.5em;
        border: solid 1px #00BAF2;
        border-radius: 3px;
        padding: 0 0.15em;
        text-align: center;
        margin-right: 0.3em;
    }

    .team-name {
        display: inline-block;
    }

    .group-create-entry .individual-group-section-title h4 {
        line-height: 1;
    }

    @media (min-width:768px) {
        .entry-info {
            flex-direction: column;
        }
    }

    @media (max-width:767.98px) {
        .group-create-entry-list {
            padding: 10px;
        }

            .group-create-entry-list .btn-circle {
                --btn-circle-sm-dimension: 36px;
                width: var(--btn-circle-sm-dimension);
                height: var(--btn-circle-sm-dimension);
                line-height: var(--btn-circle-sm-dimension);
            }

        .group-create-entry .official-tournament-dashboard-search-field-section input {
            padding: 5px 25px;
            line-height: 1;
            border-radius: 9px;
            font-size: 16px;
        }

        .group-create-entry .view-bracket-button-section .btn-orange-blue-hover {
            padding: 5px 10px;
            line-height: 1;
        }

        .group-create-entry .group-dashboard-home-desktop-top-title-icon-section {
            margin-bottom: 10px;
        }

        .group-create-entry-list, .create-entry-selected {
            max-height: 24vh;
        }

        .group-create-entry .group-dashboard-chatbox-left-side-contact-title-search-btn,
        .create-entry-title-section {
            padding: 15px;
        }

        .group-create-entry-team-image img {
            width: 50px;
            height: 50px;
        }

        .group-create-entry-list h3 {
            font-size: 18px;
        }

        .group-create-entry-list .group-dashboard-chatbox-contact-user-btn a {
            padding: 10px 12px;
        }

        .entry-info {
            font-size: 13px;
        }

        .entry-selected-label {
            margin-bottom: 9px;
            font-size: 16px;
        }

            .entry-selected-label .team-title h3 {
                font-size: 1.05rem;
            }
    }

    @media (max-width:575.98px) {

        .group-create-entry-list .btn-circle {
            --btn-circle-xs-dimension: 30px;
            width: var(--btn-circle-xs-dimension);
            height: var(--btn-circle-xs-dimension);
            line-height: var(--btn-circle-xs-dimension);
        }

        .group-create-entry-list {
            padding: 5px;
        }

        .group-create-entry .group-dashboard-chatbox-left-side-contact-title-search-btn,
        .create-entry-title-section {
            padding: 10px;
        }

        .group-create-entry-team-image img {
            width: 40px;
            height: 40px;
        }

        .group-create-entry-list h3 {
            font-size: 16px;
        }

        .group-create-entry-list .group-dashboard-chatbox-contact-user-btn a {
            padding: 8px 9px;
        }

        .entry-info {
            font-size: 12px;
        }

        .entry-selected-label {
            margin-bottom: 8px;
            font-size: 14px;
        }

            .entry-selected-label .team-title h3 {
                font-size: 1rem;
            }
    }

    /* create entry end */
    /* group dashboard setting desktop css start */
    .group-dashboard-setting-form-field-section .individual-group-select-section {
        text-align: left;
    }

    .group-dashboard-setting-form-field-section .individual-group-radio-input-section label {
        font-size: 20px;
        padding: 23px 55px 23px 60px;
    }

    .group-dashboard-setting-filed-input-label {
        color: #3A4178;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .group-dashboard-settig-save-btn {
        background: #008CD6;
        padding: 16px 60px !important;
    }

        .group-dashboard-settig-save-btn:hover {
            background: #181E47;
        }

    .group-dashboard-setting-the-gun-text P {
        text-align: right;
        color: #7178A7;
        font-weight: 400;
    }

    .group-dashboard-setting-form-field-section .group-name-short-name-field-input-label {
        margin-bottom: 22px;
    }

    .group-dashboard-setting-form-field-section .individual-group-radio-input-section {
        display: inline-flex;
        width: 100%;
        justify-content: space-between;
    }

    .group-dashboard-setting-form-field-section {
        margin-bottom: 287px;
    }

    /* group dashboard setting desktop css end*/

    /* dashboard desktop responsive css start */


    /* X-Large devices (large desktops, less than 1500px) */
    @media (max-width: 1440.98px) {

        /* for mobile menu responsive section responsive css start */
        .header .menu-link {
            font-size: 16px;
        }

        .header-phone-number-section a {
            font-size: 16px;
        }

        .header-get-call-section a {
            font-size: 16px;
        }

        .header-phone-number-section {
            margin: 0px 20px;
        }

        /* for mobile menu responsive section responsive css end */
        .group-dashboard-setting-form-field-section {
            margin-bottom: 168px;
        }

            .group-dashboard-setting-form-field-section .individual-group-radio-input-section label {
                font-size: 20px;
                padding: 23px 41px 23px 52px;
            }
    }

    /* X-Large devices (large desktops, less than 1400px) */
    @media (max-width: 1399.98px) {
        .header .menu-item {
            margin: 0px 3px;
        }

        .header .menu-link {
            font-size: 15px;
        }

        .custom-select-trigger {
            font-size: 15px;
        }

        .view-bracket-button-section a,
        .view-bracket-button-section button {
            font-size: 16px;
        }

        .individual-group-section-title h4 {
            font-size: 33px;
        }

        .individual-group-radio-input-section label {
            font-size: 18px;
        }

        .bracket-name h5 {
            font-size: 15px;
        }

        .individual-group-table th {
            font-size: 15px;
        }

        .individual-group-table td {
            font-size: 15px;
        }

        .footer-link ul li a {
            font-size: 15px;
            margin: 0px 6px;
        }

        .individual-group-table-section {
            margin: 27px 0px;
        }

        .draft-team-name-text h5 {
            font-size: 26px;
        }

        .official-tournament-dashboard-group-card a {
            padding: 38px 11px;
        }
    }

    /* Large devices (desktops, less than 1200px) */
    @media (max-width: 1199.98px) {

        /* for mobile menu responsive section responsive css start */
        .header .menu-link {
            padding: 0px 4px;
        }

        .header .menu-item {
            margin: 0px 0px;
        }

        .header .menu-item {
            display: block;
        }

        .menu-section {
            display: block;
        }

        .header .menu-link {
            display: block;
            padding: 9px 15px;
            font-size: 18px;
        }

        .header .menu-item {
            margin: 0px 0px;
            border-bottom: 1px solid #eee;
        }

        .header-get-call-section {
            text-align: center;
            margin-top: 30px;
        }

        .header-phone-number-section a {
            display: none;
        }

        .responsive-phone-icon {
            display: block;
            margin-right: 15px;
            position: relative;
            width: 45px;
            height: 45px;
            border-radius: 50px;
            background: #32CD32;
            color: #fff;
            font-size: 25px;
        }

            .responsive-phone-icon:hover {
                color: #fff;
            }

            .responsive-phone-icon i {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

        .burger-phone-icon-section {
            display: flex;
            align-items: center;
        }

        .header .menu-block {
            margin: 0px auto;
        }

        /* for mobile menu responsive section responsive css end */
        .group-dashboard-setting-form-field-section .individual-group-radio-input-section label {
            font-size: 20px;
            padding: 23px 19px 23px 49px;
        }
    }

    /* dashboard desktop responsive css end*/



    .mobile-menu {
        display: none;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        background-color: var(--col-white);
        z-index: 999;
        min-width: 320px;
    }

    .for-mobile {
        display: none;
    }

    .for-desktop {
        display: block;
    }


    /* traditional tournament entry css start */
    .bracket-tournament-card {
        background: #fff;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        display: inline-block;
        width: 140px;
        padding: 12px 6px;
        border-radius: 5px;
    }

    .bracket-tournament-image-name-score {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }

        .bracket-tournament-image-name-score:last-child {
            margin-bottom: 0px;
        }

    .bracket-tournament-image-name {
        display: flex;
        align-items: center;
    }

    .bracket-tournament-name h5 {
        font-weight: 600;
        font-size: 13px;
        margin-left: 8px;
    }

    .bracket-tournament-score h5 {
        font-weight: 600;
        font-size: 12px;
        margin-right: 5px;
    }

    .blue-text {
        color: #3A4178;
    }

    .gray-text {
        color: #A1A5BE;
    }

    .bracket-tournament-image img {
        width: 18px;
        height: 18px;
        object-fit: cover;
    }

    .bracket-tournament-section {
        margin: 33px 33px;
    }

    .first-bracket-div {
        margin-bottom: 10px;
    }

    .total-bracket-div {
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }

        .total-bracket-div::after {
            content: '';
            display: block;
            position: absolute;
            background-image: url(../images/first-bracket-angel.png);
            background-repeat: no-repeat;
            background-position: center;
            width: 23px;
            height: 82px;
            top: 36px;
            left: 138px;
            z-index: -1;
        }

    .bracket-tournament-card {
        position: relative;
    }

        .bracket-tournament-card::after {
            content: '';
            display: block;
            position: absolute;
            background-image: url(../images/bracket-div-arrow.png);
            background-repeat: no-repeat;
            background-position: center;
            width: 10px;
            height: 10px;
            top: 15px;
            right: -1px;
        }

    .first-bracket-second-bracket {
        display: flex;
        align-items: center;
    }

    .second-bracket-total {
        margin-left: 20px;
        margin-top: -6px;
    }

    .bracket-time-date p {
        font-size: 10px !important;
        color: #4D5068 !important;
        margin-bottom: 0px !important;
        text-align: center !important;
        margin-top: -5px !important;
        font-weight: 500 !important;
    }

    .bracket-tournament-image-name-score-background-color1 {
        background: #DAFFF6;
        border-radius: 5px;
        padding: 3px 5px;
    }

    .bracket-tournament-image-name-score-background-color2 {
        background: #FFF1F1;
        border-radius: 5px;
        padding: 3px 5px;
    }

    .first-bracket-under-second-bracket-tournamet-div .bracket-tournament-card::after {
        top: 19px;
    }

    .second-bracket-after-line {
        position: relative;
        z-index: 2;
    }

        .second-bracket-after-line::after {
            content: '';
            display: block;
            position: absolute;
            background-image: url(../images/second-bracket-angel.png);
            background-repeat: no-repeat;
            background-position: center;
            width: 23px;
            height: 177px;
            top: 60px;
            left: 138px;
            z-index: -1;
        }

    .bracket-tournament-image-name-score-background-color1 .bracket-tournament-name h5 {
        color: #07956A;
    }

    .bracket-tournament-image-name-score-background-color2 .bracket-tournament-name h5 {
        color: #FE4141;
    }

    .first-bracket-second-bracket-third-bracket-tournament-card {
        display: flex;
        align-items: center;
    }

    .first-to-fourth-tournament-entry-card {
        display: flex;
        align-items: center;
    }

    .first-to-third-tournament-entry-card {
        position: relative;
        z-index: 2;
    }

        .first-to-third-tournament-entry-card::after {
            content: '';
            display: block;
            position: absolute;
            background-image: url(../images/third-bracket-angel.png);
            background-repeat: no-repeat;
            background-position: center;
            width: 23px;
            height: 358px;
            top: 186px;
            right: -18px;
            z-index: -1;
        }

    .right-side-tournament-bracket-card .first-to-fourth-tournament-entry-card {
        flex-direction: row-reverse;
    }

    .right-side-tournament-bracket-card .first-to-third-tournament-entry-card::after {
        left: -18px;
        transform: rotate(180deg);
    }

    .right-side-tournament-bracket-card .first-bracket-second-bracket-third-bracket-tournament-card {
        flex-direction: row-reverse;
    }

    .right-side-tournament-bracket-card .second-bracket-total {
        margin-left: 0px;
        margin-right: 20px;
    }

    .right-side-tournament-bracket-card .first-bracket-second-bracket {
        flex-direction: row-reverse;
    }

    .right-side-tournament-bracket-card .second-bracket-after-line::after {
        right: 138px;
        transform: rotate(180deg);
        left: inherit;
    }

    .right-side-tournament-bracket-card .total-bracket-div::after {
        transform: rotate(180deg);
    }

    .trophy-cup-winner-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trophy-cup-image img {
        width: 22px;
        height: 30px;
        object-fit: contain;
    }

    .winner-text h5 {
        font-family: 'Tw Cen MT', sans-serif;
        font-size: 24px;
        text-transform: uppercase;
        font-weight: 700;
        color: #FF462D;
        margin-left: 15px;
    }

    .tournament-winner-section {
        background: #DAFFF6;
        border-radius: 5px;
        padding: 22px 45px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .winner-team-name {
        background: #fff;
        padding: 15px 20px;
        border-radius: 5px;
        margin-top: 15px;
    }

        .winner-team-name .bracket-tournament-image img {
            width: 24px;
            height: 24px;
        }

        .winner-team-name .bracket-tournament-name h5 {
            font-weight: 600;
            font-size: 17px;
            margin-left: 8px;
            color: #07956A;
        }

        .winner-team-name .bracket-tournament-score h5 {
            font-size: 19px;
            color: #3A4178;
        }

    .championship-game-section {
        background: #fff;
        border-radius: 5px;
        padding: 22px 45px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        margin-top: 16px;
    }

    .championship-game-title-text h5 {
        color: #008BD6;
        font-size: 24px;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
    }

    .championship-game-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .championship-game-card {
        padding: 11px 14px;
        border-radius: 5px;
    }

    .championship-game-card-background-color1 {
        background: #DAFFF6;
    }

    .championship-game-card-team-logo {
        text-align: center;
        margin-bottom: 5px;
    }

        .championship-game-card-team-logo img {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }

    .championship-game-card-team-name h5 {
        font-size: 13px;
        font-weight: 600;
    }

    .championship-game-card-team-score h5 {
        font-size: 19px;
        font-weight: 600;
    }

    .championship-game-card-background-color1 .championship-game-card-team-name h5 {
        color: #07956A;
    }

    .championship-game-card-background-color1 .championship-game-card-team-score h5 {
        color: #3A4178;
    }

    .championship-game-card-background-color2 {
        background: #FFF1F1;
    }

    .championship-game-two-team {
        margin-top: 15px;
    }

    .championship-game-card-background-color2 .championship-game-card-team-name h5 {
        color: #FE4141;
    }

    .championship-game-card-background-color2 .championship-game-card-team-score h5 {
        color: #3A4178;
    }

    .championship-game-all-total-section {
        position: relative;
        z-index: 2;
    }

        .championship-game-all-total-section::after {
            content: '';
            position: absolute;
            display: block;
            width: 78%;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            background: #AFB4D4;
        }

        .championship-game-all-total-section .second-bracket-total {
            margin-left: 0px;
            text-align: center;
        }

    .tournament-winner-chaampionship-section {
        margin-top: -140px;
    }

    /* traditional tournament entry css end*/

    .clickable-row {
        cursor: pointer;
    }

        .clickable-row:hover {
            background-color: #f5f5f5;
        }

    /* tournament section css start */
    .tournament-card-total-section {
        margin-top: 30px;
    }

    .tournament-card-image {
        text-align: center;
        margin-bottom: 25px;
    }

        .tournament-card-image img {
            width: 100%;
            height: 140px;
            object-fit: cover;
        }

    .tournament-card-team-name h4 {
        color: #181E47;
        font-size: 26px;
        font-weight: 500;
        line-height: 43px;
        margin-bottom: 20px;
    }

    .tournament-card-timing-date h5 {
        color: #3A4178;
        font-size: 21px;
        font-weight: 400;
        margin-bottom: 8px;
    }

        .tournament-card-timing-date h5:last-child {
            margin-bottom: 0px;
        }

    .tournament-card-timing-section {
        margin-top: 25px;
    }

    .tournament-card-timing-icon-text-section {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }

        .tournament-card-timing-icon-text-section:last-child {
            margin-bottom: 0px;
        }

    .tournament-card-timing-icon i {
        font-size: 25px;
        color: #008BD6;
    }

    .tournament-card-timing-text h5 {
        font-size: 25px;
        color: #3A4178;
        font-weight: 500;
        margin-left: 15px;
    }

    .tournament-card {
        background: #fff;
        border-radius: 6px;
        padding: 35px 38px;
    }

    .progress {
        background: #DDDDDD;
        justify-content: flex-start;
        border-radius: 100px;
        align-items: center;
        position: relative;
        display: flex;
        height: 13px;
        width: 180px;
    }

    .progress-value {
        animation: load 3s normal forwards;
        border-radius: 100px;
        background: #F38A29;
        height: 9px;
        width: 0;
    }

    @keyframes load {
        0% {
            width: 0;
        }

        100% {
            width: 30%;
        }
    }

    .tournament-card-progress-bar {
        margin-left: 15px;
    }

    .tournament-progress-bar {
        width: 100%;
        background-color: #e9ecef;
    }

        .tournament-progress-bar .k-progressbar-value {
            background-color: #F38A29;
        }
    /* tournament section css end*/

    /* how to play page */
    .bracket-image-text-total-row-section {
        margin-bottom: 60px;
    }

        .bracket-image-text-total-row-section:last-child {
            margin-bottom: 0px;
        }

    .how-to-play-section {
        margin: 60px 0px !important;
    }

        .how-to-play-section .bracket-text p {
            color: #3A4178;
        }
    /* how to play page end */
    /* view entries page css start */
    .my-entries-checkbox {
        margin-bottom: 25px;
    }

    .view-entries-section .group-dashboard-home-desktop-table-chat-section {
        margin-top: 0px !important;
    }

    .view-entries-table-chatbox-section {
        margin-top: 20px;
    }

    .view-entries-section .official-tournament-dashboard-icon-number {
        background: #fff;
    }
    /* view entries page css end*/
    /* spin css start */
    .individual-group-section-title p {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 0px;
        margin-top: 15px;
        color: #3A4178;
    }

    .teams-owned-section {
        background: #fff;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 40px 25px;
        height: 370px;
        border-radius: 5px;
    }

    .teams-owned-section-title {
        border-bottom: 1px solid #BEB0B0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

        .teams-owned-section-title h5 {
            font-weight: 500;
            font-size: 23px;
            color: #181E47;
        }

    .owned-list ul li {
        color: #3A4178;
        font-size: 18px;
        font-weight: 500;
    }

    .wheel {
        position: relative;
        overflow: hidden;
        transition: all ease 7s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .spin-button {
        position: absolute;
        width: 75px;
        height: 75px;
        border-radius: 50%;
        border: 2px solid #fff;
        background-color: black;
        color: #fff;
        box-shadow: 0 5px 20px #000;
        font-weight: bold;
        font-size: 22px;
        cursor: pointer;
        animation: pulse 2s infinite;
        z-index: 2;
    }

    @keyframes pulse {
        0% {
            transform: scale3d(1, 1, 1);
        }

        50% {
            transform: scale3d(1.09, 1.09, 1.09);
        }

        100% {
            transform: scale3d(1, 1, 1);
        }
    }

    .spin-button:active {
        width: 70px;
        height: 70px;
        font-size: 20px;
        background: #ffe605;
    }

    .wheel img {
        width: 796px;
        height: auto;
    }

    .spiner-inner-section {
        margin-top: 60px;
    }

    .wheel-section {
        position: relative;
    }

    .perspin-section {
        position: absolute;
        right: 45px;
        top: 0;
        background: url(../images/rupes-spin-background.png);
        width: 120px;
        height: 128px;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

        .perspin-section h5 {
            font-size: 23px;
            font-weight: 800;
            color: #fff;
        }
    /* spin css end*/

    /* quickgrid table start */
    .quickgrid[theme="default"].table, .table-default {
        border: solid 1px #cdd3fc;
        background-color: #fff;
    }

        .quickgrid[theme="default"] &gt; thead, .table-default thead {
            background: #DFE1ED;
        }

            .quickgrid[theme="default"] &gt; thead &gt; tr &gt; th,
            .table-default thead tr th {
                padding: 0;
            }

        .table-default &gt; :not(:last-child) &gt; :last-child &gt; *,
        .quickgrid[theme="default"].table &gt; :not(:last-child) &gt; :last-child &gt; * {
            border-color: #cdd3fc;
        }

    .quickgrid[theme="default"] &gt; thead &gt; tr &gt; th,
    .quickgrid[theme="default"] &gt; tbody &gt; tr &gt; td {
        min-width: initial;
        max-width: initial;
    }

    .quickgrid[theme="default"] &gt; tbody &gt; tr &gt; td,
    .table-default tbody tr td {
        padding: 22px 11px !important;
        font-size: 16px;
        color: #3A4178;
        font-weight: 500;
    }

    .quickgrid[theme="default"] .col-header-content {
        padding-right: 0;
        min-height: 63px;
    }

    .quickgrid[theme="default"] .col-title,
    .table-default .col-title {
        padding: 22px 11px;
        font-size: 16px;
        color: #181E47;
        font-weight: 500;
        min-height: 63px;
        display: flex;
        align-items: center;
    }

    .quickgrid[theme="default"] .col-title-text {
        display: flex;
        align-items: center;
        white-space: normal;
        line-height: 1.3;
    }

    .quickgrid[theme="default"] .col-title:hover,
    .table-default .col-title:hover {
        background-color: rgba(0,36,237,0.05) !important;
        transition: all 0.3s ease;
    }

    .paginator {
        border-top: 0 !important;
        font-size: 16px;
        color: #181E47;
        position: sticky;
        left: 0;
    }

        .paginator .pagination-text strong {
            background-color: #fff;
            padding: 1px 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
            margin: 0 5px;
        }

    @media (max-width: 575.98px) {
        .paginator {
            font-size: 14px;
        }

            .paginator .pagination-text strong {
                padding: 1px 5px;
                border-radius: 4px;
                margin: 0 3px;
            }
    }

    @media (max-width: 480px) {
        .paginator {
            font-size: 13px;
        }

            .paginator .pagination-text strong {
                padding: 1px 4px;
                border-radius: 4px;
                margin: 0 3px;
            }
    }

    @media (max-width: 360px) {
        .paginator {
            font-size: 12px;
        }

            .paginator .pagination-text strong {
                padding: 1px 3px;
                border-radius: 3px;
                margin: 0 2px;
            }
    }

    .is-public-col .fa-check {
        color: #00983d;
    }

    .is-public-col .fa-ban {
        color: #d7dcde;
    }

    /* quickgrid table end */


    /* smaller table start */
    .individual-group-table-sm {
        box-shadow: 0 4px 16px 0 rgba(100, 100, 111, 0.2);
    }

        .individual-group-table-sm thead {
            background: #DFE1ED !important;
        }

            .individual-group-table-sm thead tr th {
                font-size: 14px;
                color: #181E47;
                font-weight: 500;
            }

        .individual-group-table-sm .col-title {
            padding: 18px 9px;
            min-height: initial;
            font-size: 15px;
        }

        .individual-group-table-sm th.col-title {
            background: none;
        }

        .individual-group-table-sm tbody tr td {
            padding: 14px 9px;
            font-size: 14px;
            color: #3A4178;
            font-weight: 500;
        }
    /* smaller table end */

    /* forms start */
    .form-select-compact {
        position: relative;
    }

        .form-select-compact .form-select-label {
            position: absolute;
            top: 0;
            font-size: 11px;
            padding-left: 7.5px;
            padding-right: 5px;
            color: #8d92b3;
            max-width: 100%;
        }

    .form-input-force-mt-2 .form-select-compact,
    .form-input-force-mt-2 .col-md &gt; .my-3 {
        margin-top: 0.5rem !important;
    }

    .row-input-with-image {
        vertical-align: middle;
        display: flex;
        align-items: end;
    }

        .row-input-with-image .group-name-short-name-field-input-label {
            flex-grow: 1;
        }

        .row-input-with-image .team-logo {
            width: 100%;
            max-width: 40px;
            height: auto;
            margin: 14px 0 14px 16px;
        }

    /* forms end */



    /* dashboard start */
    .dashboard-rectangle-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: auto;
        width: 100%;
        padding: 2rem 0;
    }

    .dashboard-rectangle {
        flex: 1 1 20%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 40px 35px;
        border-radius: 6px;
        background: #fff;
        min-height: 150px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border: 2px solid transparent;
    }

    @media (max-width: 767.98px) {
        .dashboard-rectangle {
            flex: 1 1 30%;
        }
    }

    .dashboard-rectangle .value {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #112633;
    }

    .dashboard-rectangle .label {
        font-size: 14px;
        color: #717695;
    }

    .defined {
        background-color: #e5f9ff;
        border-color: #00BAF2;
    }

    .notdefined {
        background-color: #ffe6e6;
        border-color: #ff9999;
    }
    /* dashboard end */

    /* buttons start */
    .btn-motb {
        display: inline-block;
        padding: 15px 25px;
        font-size: 20px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 9px;
        cursor: pointer;
    }

    .btn-motb-orange {
        background: #F38A29;
        color: #fff;
    }

        .btn-motb-orange:hover {
            background: #3A4178;
        }


    .cta-fake-btn {
        border: solid 2px #008CD6 !important;
        border-radius: 7px;
        position: relative;
        padding-left: 30px !important;
        padding-right: 25px !important;
        margin-left: -15px;
        margin-right: -15px;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
    }

        .cta-fake-btn:hover, .cta-fake-btn:active {
            background-color: #008CD6;
            color: #fff !important;
        }

            .cta-fake-btn:hover h5, .cta-fake-btn:active h5 {
                color: #fff !important;
            }

        .cta-fake-btn .bracket-name-image-section {
            margin-top: 5px !important;
        }

    .cta-fake-btn-icon, .faq-tab li .cta-fake-btn-icon {
        color: #008CD6;
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        right: auto;
        font-size: 24px;
    }

    .cta-fake-btn:hover .cta-fake-btn-icon, .faq-tab li .cta-fake-btn:hover .cta-fake-btn-icon,
    .cta-fake-btn:active .cta-fake-btn-icon, .faq-tab li .cta-fake-btn:active .cta-fake-btn-icon {
        color: #fff;
    }

    .cta-fake-btn-icon {
        display: none;
    }

    .cta-fake-btn .cta-fake-btn-icon {
        display: inline-block;
    }

    /* buttons end */
    /* motb message start */
    .motb-message {
        display: flex;
        margin-bottom: 20px;
    }

    .motb-message-container {
        flex-grow: 1;
        border-radius: 0 10px 10px 10px;
        margin-right: 10%;
        padding: 6px 8px;
        background-color: var(--col-page-bg);
    }

    .motb-message.motb-message-actual-user .motb-message-container {
        order: 1;
        margin-right: 0;
        margin-left: 10%;
        background-color: #008BD6;
        color: #fff;
    }

    .motb-message-container &gt; span {
        display: block;
    }

    .motb-message .avatar {
        margin-right: 15px;
        display: inline-flex;
        flex-shrink: 0;
    }

    .motb-message.motb-message-actual-user .avatar {
        order: 2;
        margin-right: 0;
        margin-left: 15px;
    }

    .motb-message-user-name {
        font-size: 11px;
        font-weight: 600;
        color: #008BD6;
    }

    .motb-message.motb-message-actual-user .motb-message-user-name {
        color: #fff;
    }

    .motb-message-body {
        font-size: 12px;
    }

    .motb-message-date {
        font-size: 10px;
        text-align: right;
        opacity: 0.6;
    }


    /* Tab chat messages modification */

    .motb-message .avatar {
        display: none;
    }

    .motb-message-grid thead {
        display: none;
    }

    .quickgrid[theme="default"].motb-message-grid &gt; tbody &gt; tr &gt; td {
        padding: 0 !important;
    }

    .motb-message-user-name {
        font-size: 10px;
    }

    .motb-message-body {
        font-size: 11px;
        line-height: 1.3;
        padding: 5px 0 4px 0;
    }

    .motb-message-date {
        font-size: 9px;
    }

    .chat-type-section-input input {
        min-height: 52px;
    }

    .chat-text-section .individual-group-table-total-section motb-message-grid-container {
    }


    .official-group-to-tournament-edit .group-dashboard-home-desktop-table-chat-section {
        margin-top: 3.25rem;
    }

    @media (min-width:768px) {
        .motb-message-container {
            padding: 8px 9px;
        }

        .motb-message-user-name {
            font-size: 13px;
        }

        .motb-message-body {
            font-size: 15px;
            line-height: 1.4;
            padding: 6px 0 5px 0;
        }

        .motb-message-date {
            font-size: 12px;
        }

        .chat-type-section-input input {
            min-height: 94px;
        }

        .tabstrip-chat-sm-up-md .motb-message-user-name {
            font-size: 11px;
        }

        .tabstrip-chat-sm-up-md .motb-message-body {
            font-size: 12px;
            line-height: 1.3;
            padding: 5px 0 4px 0;
        }

        .tabstrip-chat-sm-up-md .motb-message-date {
            font-size: 10px;
        }

        .tabstrip-chat-sm-up-md .chat-type-section-input input {
            min-height: 52px;
        }
    }

    @media (min-width:992px) {
        .tabstrip-chat-sm-up-lg .motb-message-user-name {
            font-size: 11px;
        }

        .tabstrip-chat-sm-up-lg .motb-message-body {
            font-size: 12px;
            line-height: 1.3;
            padding: 5px 0 4px 0;
        }

        .tabstrip-chat-sm-up-lg .motb-message-date {
            font-size: 10px;
        }

        .tabstrip-chat-sm-up-lg .chat-type-section-input input {
            min-height: 52px;
        }
    }

    @media (min-width:1200px) {
        .tabstrip-chat-sm-up-xl .motb-message-user-name {
            font-size: 11px;
        }

        .tabstrip-chat-sm-up-xl .motb-message-body {
            font-size: 12px;
            line-height: 1.3;
            padding: 5px 0 4px 0;
        }

        .tabstrip-chat-sm-up-xl .motb-message-date {
            font-size: 10px;
        }

        .tabstrip-chat-sm-up-xl .chat-type-section-input input {
            min-height: 52px;
        }
    }

    .chat-type-section .chat-type-emoji-icon,
    .chat-type-section .chat-type-send-icon {
        top: calc(50% - 7.5px);
        transform: translateY(-50%);
    }

    .chat-type-section .csla-messages {
        min-height: 15px;
        display: block;
    }

    /* motb message end */


    /* Random pick spinning wheel start */

    @media (min-width: 1200px) and (max-width: 1399.98px) {
        .random-pick-spinning-wheel .create-entry-title-section h4 {
            font-size: 1.275rem;
        }
    }

    @media (min-width: 1400px) {
        .random-pick-spinning-wheel .containerDiv {
            transform: scale(1.1) !important;
        }
    }

    @media (min-width: 1600px) {
        .random-pick-spinning-wheel .containerDiv {
            transform: scale(1.2) !important;
        }
    }


    /* Random pick spinning wheel end */


    /* table responsive start */
    /* Fix height and enable scrolling */
    .grid-responsive-v-h {
        max-height: 25rem;
        overflow-y: auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        margin-bottom: 1rem;
    }

    .grid-shadow {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .grid-shadow table, .table-responsive table {
            box-shadow: none;
        }

    .grid-responsive-v-h table {
        min-width: 100%;
        box-shadow: none;
        margin: 0;
    }

    .table-responsive {
        margin-bottom: 1rem;
        scrollbar-width: thin;
        position: relative;
    }

        .table-responsive table {
            margin: 0;
        }


    /* Sticky header while scrolling */
    .grid-responsive-v-h table thead {
        position: sticky;
        top: 0;
        z-index: 1;
    }
    /* table responsive end */


    /* privacy start */
    .privacypolicy-content h5 {
        font-size: 16px;
        font-weight: 500;
        line-height: 25px;
        color: #386080;
    }

    .privacypolicy-content h4 {
        color: #313131;
        padding-top: 30px;
        margin-bottom: 1em;
    }

        .privacypolicy-content h4 i {
            font-size: 20px;
            color: #4bb8ef;
            padding-right: 12px;
        }

    .privacy-content {
        margin: 0;
    }

        .privacy-content i {
            font-size: 14px;
            color: #ff6600;
            margin-right: 5px;
        }

    .contactbox-top {
        margin-top: 45px;
    }

    .ppcontactbox {
        display: block;
        width: 100%;
        max-width: calc(100% - 34px);
        height: 90px;
        background-color: #e4ebf0;
        transform: skewX(-15deg);
        margin: auto;
    }

        .ppcontactbox h4 {
            font-size: 20px;
            font-weight: normal;
            color: #24282b;
            transform: skewX(15deg);
            line-height: 90px;
            text-align: center;
        }

    .button-contactbox {
        text-align: center;
        position: relative;
        bottom: 13px;
        z-index: 1;
    }

        .button-contactbox .btn {
            padding: 0;
            min-width: 230px;
            height: 44px;
            font-size: 15px;
            font-weight: 600;
            font-style: normal;
            text-transform: uppercase;
            text-align: center;
            border-radius: 0;
            letter-spacing: 1.40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

            .button-contactbox .btn p {
                color: #ffffff;
                font-weight: 600;
                transform: skewX(15deg);
                margin: 0;
            }

        .button-contactbox .btn-default {
            background-color: #76c045;
            border: none;
            outline: none;
            transform: skewX(-15deg);
            margin-right: 74px;
        }

        .button-contactbox .btn-danger {
            background-color: #ff6600;
            border: none;
            outline: none;
            transform: skewX(-15deg);
        }

    .privacy-img img {
        object-fit: contain;
        height: auto;
        width: 100%;
        margin: auto;
        max-width: 400px;
        display: block;
        border-radius: 9px;
    }

    .orcall {
        font-size: 15px;
        font-weight: 600;
        color: #61676c;
        text-align: center;
        position: relative;
        bottom: 43px;
    }

    @media (max-width: 767.98px) {
        .ppcontactbox {
            width: initial;
            max-width: initial;
            height: auto;
            transform: none;
            padding: 20px;
        }

            .ppcontactbox h4 {
                transform: none;
                line-height: 1.3;
            }

        .button-contactbox .btn {
            margin-top: 40px;
        }

        .button-contactbox .btn {
            display: flex;
            margin-left: auto;
            margin-right: auto;
        }

        .button-contactbox .btn-default {
            margin-left: auto;
            margin-right: auto;
        }

        .orcall {
            bottom: 90px;
        }
    }
    /* privacy end */

    /* global and helpers start */

    html body .check-red, html body div .check-red, .check-red {
        border: solid 3px red !important;
    }

    html body .check-blue, html body div .check-blue, .check-blue {
        border: solid 3px blue !important;
    }

    .icon-child-reset [class^="fa"] {
        position: initial;
        top: initial;
        left: initial;
        right: initial;
        bottom: initial;
    }

    .motb-danger-note {
        color: #262626;
    }

    .c-red-dark {
        color: #b32424 !important;
    }

    .mixed-icons {
        position: relative;
    }

        .mixed-icons .mixed-icon-1 {
        }

        .mixed-icons .mixed-icon-2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            font-size: 0.5em;
        }


    .motb-rounded-btn {
        border-radius: 9px !important;
    }

    ul.blue-dot {
        list-style: disc;
    }

        ul.blue-dot li {
            margin-bottom: 1rem;
        }

            ul.blue-dot li::marker {
                color: #008cd6;
            }

    .element-highlighted {
        border: 2px solid #00BAF2 !important;
        background: #f2fcff !important;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
    }

    .panel-motb, .panel-motb-highlighted {
        position: relative;
        padding: 40px 35px;
        border-radius: 6px;
        background: rgba(255,255,255,0.4);
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .panel-motb-highlighted {
        border: 2px solid #00BAF2;
    }

    .panel-root {
        position: relative;
        padding: 40px 35px;
        border-radius: 6px;
        background-color: #f5fbff;
        box-shadow: rgba(100, 100, 111, 0.1) 0px 5px 20px 0px;
    }

.hr-panel-root-w100 {
    margin-left: -35px !important;
    margin-right: -35px !important;
}

.border-root-panel {
    border: solid 1px #dae3e5 !important;
}

    .bg-root-panel {
        background-color: #f5fbff !important;
    }

    .title-subtext-inline {
        display: inline-block;
        color: #7d7f80;
    }

    .edit-tournament .panel-motb-highlighted {
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
    }

    .title-m-p-fix {
        padding-top: 6px !important;
        margin-top: 0;
        margin-bottom: 20px;
    }

    @media (min-width: 1200px) {
        .multi-button-rounded {
            white-space: nowrap;
            vertical-align: middle;
        }
    }

    .multi-button-rounded .btn {
        border-radius: 7px !important;
    }

    .mb-child-remove .mb-4 {
        margin-bottom: 0 !important;
    }

    .c-sky-blue {
        color: #008cd6 !important;
    }

    .bg-sky-blue {
        background-color: #008cd6 !important;
    }

    .d-flex-items-vh-center {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .d-flex-items-h-center {
        display: flex !important;
        justify-content: center !important;
    }

    .d-flex-items-v-center {
        display: flex !important;
        align-items: center !important;
    }

    .pr-075 {
        padding-right: 0.75rem !important;
    }

    .px-4-05 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important;
    }

    .px-2-05 {
        padding-right: 0.75rem !important;
        padding-left: 0.75rem !important;
    }

    .img-h-100-w-auto {
        height: 100% !important;
        width: auto !important;
    }

    .img-w-h-100 {
        width: 100% !important;
        height: 100% !important;
    }

    .ls-01 {
        letter-spacing: 0.01em;
    }

    .ls-02 {
        letter-spacing: 0.02em;
    }

    .ls-03 {
        letter-spacing: 0.03em;
    }

    .ls-04 {
        letter-spacing: 0.04em;
    }

    .ls-05 {
        letter-spacing: 0.05em;
    }

    .overflow-x-hidden {
        overflow-x: hidden !important;
    }

    .overflow-x-auto {
        overflow-x: auto;
    }

    .body-page-color {
        background-color: var(--col-page-bg) !important;
    }

    .view-toggle .form-check-label &gt; input {
        vertical-align: baseline;
    }

    .mx-n1 {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }

    .mt-4-025 {
        margin-top: 1.875rem !important;
    }

    .mt-4-05 {
        margin-top: 2.25rem !important;
    }

    .p-r-neg-t-2rem {
        position: relative;
        top: -2rem;
    }

    .cursor-pointer {
        cursor: pointer !important;
    }

    .c-motb-dark {
        color: #0E0E0E !important;
    }

    .cursor-pointer-blue-line {
        cursor: pointer !important;
        border: 2px solid transparent !important;
        transition: all 0.2s ease-in-out;
    }

    .fa-check-pseudo::before {
        content: "";
        font-family: 'Font Awesome 6 Pro';
        font-size: 14px;
        font-variant: normal;
        line-height: 1;
        display: inline-block;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f00c";
    }

    .rounded-4 {
        border-radius: .5rem !important
    }

    .rounded-5 {
        border-radius: .75rem !important
    }

    .rounded-6 {
        border-radius: 1rem !important
    }

    .z-0 {
        z-index: 0 !important;
    }

    .z-1 {
        z-index: 1 !important;
    }

    .z-2 {
        z-index: 2 !important;
    }

    .z-3 {
        z-index: 3 !important;
    }

    .z-4 {
        z-index: 4 !important;
    }

    .z-5 {
        z-index: 5 !important;
    }

    .cursor-pointer-blue-line:hover {
        border-color: #00BAF2 !important;
        box-shadow: rgba(0, 186, 242, 0.2) 0px 7px 29px 0px !important;
    }

    .fade-in {
        -webkit-animation: fadeIn 2s;
        animation: fadeIn 2s;
        opacity: 0;
    }

    @-webkit-keyframes fadeIn {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .fade-in-05 {
        -webkit-animation: fadeIn05 2s;
        animation: fadeIn05 2s;
        opacity: 0;
    }

    @-webkit-keyframes fadeIn05 {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 0.5;
        }
    }

    @keyframes fadeIn05 {
        0% {
            opacity: 0;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 0.5;
        }
    }

    .fs-20px {
        font-size: 20px !important;
    }

    .fs-30px {
        font-size: 30px !important;
    }

    .fw-semi-bold {
        font-weight: 600 !important
    }

    @media (min-width: 768px) {
        .mt-n-70px-md-up {
            margin-top: -70px !important;
        }
    }


    @media (min-width: 768px) and (max-width: 991.98px) {
        .col-md-6-768-992 {
            flex: 0 0 auto;
            width: 50%;
        }

        .col-md-4-768-992 {
            flex: 0 0 auto;
            width: 33.33333333%;
        }
    }

    @media (max-width: 767.98px) {
        .px-4-down-md {
            padding-right: 1.5rem !important;
            padding-left: 1.5rem !important;
        }

        .w-100-down-md {
            width: 100% !important;
        }
    }

    @media (max-width: 991.98px) {
        .px-4-down-lg {
            padding-right: 1.5rem !important;
            padding-left: 1.5rem !important;
        }

        .mx-n1-down-lg {
            margin-left: -0.25rem !important;
            margin-right: -0.25rem !important;
        }

        .w-900px-down-lg {
            width: 990px !important;
        }

        .overflow-x-auto-down-lg {
            overflow-x: auto !important;
        }

        .mx-auto-down-lg {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    @media (max-width: 1199.98px) {
        .px-4-down-xl {
            padding-right: 1.5rem !important;
            padding-left: 1.5rem !important;
        }

        .pr-075-down-xl {
            padding-right: 0.75rem !important;
        }
    }

    @media (max-width: 575.98px) {
        mx-auto-down-sm {
            margin-left: auto !important;
            margin-right: auto !important;
        }
    }

    /* global and helpers end */




    /* bootstrap mod start */

    @media (max-width:1399.98px) {

        .container,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl,
        .container-xxl {
            max-width: 100%;
        }
    }

    .text-info {
        color: #008cd6 !important
    }


    .border-primary {
        border-color: #008cd6 !important
    }

    .btn-primary {
        background: #008cd6;
        border-color: #008cd6;
    }

    .text-primary {
        color: #008cd6 !important;
    }

    .text-bg-primary,
    .bg-primary {
        background-color: #008cd6 !important;
    }

    .form-check-input-lg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .form-check-input:checked {
        background-color: #008cd6;
        border-color: #008cd6;
    }

    .form-check-input-xl {
        width: 1.5rem;
        height: 1.5rem;
    }

    .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
        background: #2c5f80;
        border-color: #2c5f80;
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 .25rem rgba(0, 136, 255, .2) !important;
    }


    .btn-primary:disabled {
        background: #008cd6;
        border-color: #008cd6;
        opacity: 0.4;
        pointer-events: none;
    }


    .btn-outline-primary {
        border-color: #008cd6;
        color: #008cd6;
    }

        .btn-outline-primary:active, .btn-outline-primary:hover {
            background: #008cd6;
            border-color: #008cd6;
        }

    .form-control, .form-select {
        height: 48px;
        border-radius: 9px;
        font-weight: 400;
        color: #3A4178;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.025);
        border: 0;
    }

        .form-control:focus, .form-select:focus {
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
        }

    .form-select {
        cursor: pointer;
    }

    .dropdown-section .form-select, .tournament-names-section .form-select {
        height: 57px;
    }
    /* Modals */
    .modal-backdrop {
        z-index: 10005;
    }

    .modal {
        z-index: 10010;
    }

    .modal-content {
        background-color: var(--col-page-bg);
        border-radius: 0.75rem;
    }

    .modal-header {
        border-top-left-radius: calc(0.75rem - 2px);
        border-top-right-radius: calc(0.75rem - 2px);
    }

    .modal-create-new-entry .modal-content {
        background-color: #fff;
    }

    .modal-create-new-entry .close {
        color: #717695;
        padding: 2px 10px;
        background-color: #fff;
        transition: all 0.2s ease-in-out;
    }

        .modal-create-new-entry .close:hover {
            color: #e52e2e;
            transform: rotate(90deg);
        }

    .modal-create-new-entry .modal-title h4 {
        font-size: 1rem;
    }

    .modal-create-new-entry .modal-title h4 {
        color: #0E0E0E;
        font-family: 'Tw Cen MT', sans-serif;
        font-weight: 600;
        font-size: 1.75rem;
    }

    .modal-header-blue {
        background-color: #008cd6;
        color: #fff;
    }

        .modal-header-blue .modal-title h4 {
            color: #fff;
        }

        .modal-header-blue .modal-title h5 {
            color: rgba(255,255,255,0.75);
        }

        .modal-header-blue .close {
            background-color: transparent;
            color: #fff;
        }

    .modal-create-new-entry .modal-body {
        padding: 0;
    }

        .modal-create-new-entry .modal-body .group-create-entry-list {
            padding: 30px;
            border: 0;
        }

    .modal-popup-image {
        padding-right: 0 !important;
    }

        .modal-popup-image .btn-close {
            height: 18px;
            width: 18px;
            background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
            transition: all 0.2s ease-in-out;
            background-size: 100%;
            position: fixed;
            top: 17px;
            z-index: 1050;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.5;
        }

            .modal-popup-image .btn-close:hover {
                opacity: 1;
            }

        .modal-popup-image .modal-dialog {
            max-width: 1600px;
        }

        .modal-popup-image, .modal-popup-image .modal-dialog, .modal-popup-image .modal-content, .modal-popup-image .modal-header, .modal-popup-image .modal-body, .modal-popup-image .modal-footer {
            background: none;
            border: 0;
            padding: 0;
            box-shadow: none;
        }

    .bracket-image img + .icon-hover {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 3em;
        color: #fff;
        opacity: 0;
        transition: all 0.2s ease-in-out;
        z-index: 5;
    }

    .bracket-image:hover img + .icon-hover {
        opacity: 0.5;
    }
    /* bootstrap mod end */


    /* telerik notification start */
    .custom-notification-parent {
        /*  position: absolute;
    left: auto;
    transform: none;
    z-index: 9876;*/
    }

    .custom-positioned-notifications {
        position: relative;
        flex-wrap: nowrap !important;
    }

    .custom-notification-parent .k-notification-group.CustomTelerikNotification {
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .custom-notification-parent .k-notification-container .k-notification {
        min-width: 300px;
        width: auto;
        max-width: 600px;
        height: 42px !important;
        font-size: 1rem;
        text-align: center;
        align-items: center;
        position: fixed;
        bottom: 50px;
        top: auto !important;
        left: auto !important;
        right: 50px;
    }

    /* telerik notification end */


    /* telerik mod start ------------------------------- */
    .telerik-datepicker-label-fix {
        margin-bottom: -4px !important;
    }

    /* telerik tooltip */
    .game-box.tooltip-target {
        transition: all 0.2s ease-in-out;
        cursor: pointer;
    }

        .game-box.tooltip-target:hover {
            box-shadow: inset 0 0 0 2px #008cd6;
        }

    .telerik-blazor.k-tooltip {
        background: #2c5f80;
        max-width: 280px;
        border-radius: 5px;
        padding: 10px;
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    }

        .telerik-blazor.k-tooltip .k-callout {
            /* same as tooltip background */
            color: #2c5f80;
        }

    .bracket-tooltip {
        color: #fff;
    }

        .bracket-tooltip h5 {
            font-size: 14px;
            margin-bottom: 6px;
            color: #fff;
            letter-spacing: 0.03em;
        }

        .bracket-tooltip p {
            margin-bottom: 5px;
            color: #fff;
            font-size: 12px;
        }

            .bracket-tooltip p.separator {
                display: block;
                position: relative;
                text-align: center;
                color: rgba(255,255,255,0.8);
            }

                .bracket-tooltip p.separator::before {
                    display: block;
                    content: "";
                    position: absolute;
                    height: 1px;
                    width: 100%;
                    background-color: rgba(255,255,255,0.2);
                    left: 0;
                    top: 50%;
                    z-index: 1;
                }

                .bracket-tooltip p.separator span {
                    display: inline-block;
                    padding: 0 4px;
                    background: #2c5f80;
                    position: relative;
                    z-index: 5;
                }


        .bracket-tooltip ul {
            font-size: 12px;
            margin: 0 0 5px 0;
            color: rgba(255,255,255,0.8);
        }

            .bracket-tooltip ul li {
                margin-bottom: 3px;
            }

                .bracket-tooltip ul li:last-of-type {
                    margin-bottom: 0;
                }

            .bracket-tooltip ul .value {
                color: #fff;
                font-size: 13px;
                font-weight: 600;
            }

            .bracket-tooltip ul:last-of-type {
                margin-bottom: 1px;
            }
    /* telerik tab strip start */
    .group-name-short-name-field-input-label .k-datetimepicker {
        border-radius: 9px !important;
    }

        .group-name-short-name-field-input-label .k-datetimepicker .k-input-inner {
            padding-left: 25px;
            background-color: #fff;
        }

        .group-name-short-name-field-input-label .k-datetimepicker .k-button {
            width: 50px;
            background-color: #008cd6;
            transition: all 0.2s ease-in-out;
        }

            .group-name-short-name-field-input-label .k-datetimepicker .k-button:hover {
                background: #2c5f80;
            }

            .group-name-short-name-field-input-label .k-datetimepicker .k-button .k-button-icon,
            .group-name-short-name-field-input-label .k-datetimepicker .k-button .k-svg-icon svg {
                height: 30px !important;
                width: 30px !important;
                fill: #fff;
            }

    .motb-tab-strip .k-tabstrip-content {
        padding: 0;
        overflow: visible;
        outline: 0 !important;
        border: 0;
        background: none;
    }

    .motb-tab-strip.k-tabstrip-top {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
    }

        .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item {
            color: #9095B5;
            font-size: 16px;
            font-weight: 500;
            padding: 0 20px 20px;
            position: relative;
            background: none;
            border: 0;
        }

            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item:hover {
                background: none;
            }

            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item::after {
                display: block;
                content: "";
                position: absolute;
                bottom: 0;
                right: 20px;
                left: 20px;
                transition: all 0.2s ease-in-out;
                visibility: hidden;
            }


            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item:active,
            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item.k-active {
                color: #181E47;
            }

            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item::after {
                border-bottom: solid 5px transparent;
                border-color: transparent;
            }

            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item.k-active::after {
                color: #181E47;
                border-color: #008CD6;
                visibility: visible;
            }

            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item,
            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item.k-active:focus,
            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item.k-active:active,
            .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item.k-active:active:focus {
                box-shadow: none !important;
            }

                .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item:hover::after {
                    border-color: #008CD6;
                    visibility: visible;
                }


                .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item &gt; .k-link {
                    padding-left: 0;
                    padding-right: 0;
                }

        .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-tabstrip-items {
            text-transform: none;
        }

    @media (min-width: 576px) {
        .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item:first-child {
            padding-left: 0;
        }

        .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item:last-child {
            padding-right: 0;
        }

        .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item:first-child::after {
            left: 0;
        }

        .motb-tab-strip.k-tabstrip-top &gt; .k-tabstrip-items-wrapper .k-item:last-child::after {
            right: 0;
        }
    }

    @media (max-width: 1198.98px) {
        .motb-tab-strip .k-tabstrip-items-wrapper {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            overflow-x: visible;
            scrollbar-width: thin;
        }

            .motb-tab-strip .k-tabstrip-items-wrapper .k-tabstrip-items {
                display: block;
            }

                .motb-tab-strip .k-tabstrip-items-wrapper .k-tabstrip-items .k-item {
                    display: inline-block;
                }
    }

    /* telerik tab strip end */
    /* telerik mod end ------------------------------- */

    /* Group list, official group row for public view */
    tr:has(.group-is-official), tr:has(.group-is-official) td {
        background-color: #c1f7d0 !important;
    }</pre></body></html>