@font-face {
    font-family: 'satoshi-variable-700';
    src: url('../fonts/WEB/fonts/Satoshi-Variable.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'satoshi-500';
    src: url('../fonts/WEB/fonts/Satoshi-Light.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'oswald-500';
    src: url('../fonts/WEB/oswald/Oswald-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'oswald-700';
    src: url('../fonts/WEB/oswald/Oswald-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: var(--font-satoshi-700), sans-serif;
    font-weight: 700;
}

:root {
    --main-clr: #002C5F;
    --main-clr-rgb: 240, 0, 0;
    --main-hover: #00AAD2;
    --main-active: #001125;
    --font-satoshi-500: "satoshi-500", sans-serif;
    --font-satoshi-700: "satoshi-variable-700", sans-serif;
    --font-oswald-500: "oswald-500", sans-serif;
    --font-oswald-700: "oswald-700", sans-serif;
    --aufc-clr: #2254DB;
}

a {
    color: var(--main-clr);
}

a:hover {
    color: var(--main-hover);
}

a:active {
    color: var(--main-active);
}

.v-error {
    color: #ed1a3c;
    font-weight: bold;
}

.solid-btn-gen {
    background: var(--main-clr);
    color: #FFFFFF;
    text-transform: uppercase;
}

.solid-btn-gen:hover {
    text-decoration: none;
    background: var(--main-hover) !important;
    transition: 0.3s ease-in-out !important;
}

.solid-btn-gen:active {
    background: var(--main-active) !important;
    transition: 0.3s ease-in-out !important;
}


.trans-btn {
    border-radius: 12px;
    border: 2px solid var(--main-clr);
    padding: 15px 20px;
    font-family: var(--font-oswald-700);
    text-transform: uppercase;
    text-align: center;
}

.trans-btn:hover {
    text-decoration: none;
    border-color: var(--main-hover);
    transition: 0.3s ease-in-out !important;
}

.trans-btn:active {
    outline: none !important;
}

.trans-btn:focus {
    outline: none !important;
}

.solid-clr-btn {
    border-radius: 12px;
    background: var(--main-clr);
    padding: 15px 24px;
    color: #FFF;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out !important;
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-oswald-700);
}

.solid-clr-btn:hover {
    background-color: var(--main-hover);
    color: #FFF;
    text-decoration: none;
}

.solid-clr-btn:active {
    outline: none !important;
}

.solid-clr-btn:focus {
    outline: none !important;
}

.btm-timeline-dv .sport-btn:hover {
    text-decoration: none;
    background: #FFFFFF;
    transition: 0.3s ease-in-out !important;
}

.btm-timeline-dv .sport-btn:active {
    background: #79A3F8;
    transition: 0.3s ease-in-out !important;
}

.no-decr:hover {
    text-decoration: none;
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    box-shadow: 0px 8px 16px 0px rgba(109, 123, 144, 0.24), 0px -1px 0px 0px rgba(109, 123, 144, 0.16) inset;
    bottom: 75px;
    right: 20px;
    z-index: 99999999999999999999999999;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    padding: 15px 20px;
    cursor: pointer;
    transition: opacity 0.4s;
    cursor: pointer;
}

#scrollToTopBtn:hover {
    opacity: 0.7;
}

.img-wrapper img {
    transform: scale(1) !important;
    transition: transform .3s ease-in-out !important;
}

.video-listing-card:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.img-wrapper {
    overflow: hidden !important;
    width: 100%;
    border-radius: 8px !important;
}

.img-wrapper img:hover {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.stretched-link:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.container-fluid-zp {
    padding: 0;
    margin: 0 15px;
}

.container-fluid {
    max-width: 1650px !important;
    margin: auto;
    padding: 0 15px;
}

.vm-btn .vm-arrow {
    padding-left: 10px;
    vertical-align: bottom;
}

.zero-pad-col {
    padding: 0;
}

/* .container-fluid .col-md-12{
padding: 0;
} */
/** News Listing page **/
.news-top-sec {
    padding: 3rem 0 3rem 0;
}

.back-btn a {
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--main-clr);
    padding: 12px 16px;
    color: var(--main-clr) !important;
    text-transform: uppercase !important;
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.36px;
}

.back-btn a:hover {
    text-decoration: none;
    color: var(--main-hover) !important;
    border-color: var(--main-hover);
    transition: 0.2s ease-in-out;
}

.back-btn a:active {
    text-decoration: none;
    color: var(--main-active) !important;
    border-color: var(--main-active);
}

.social-details a:hover {
    color: var(--main-hover) !important;
}

.social-details a:active {
    color: var(--main-active) !important;
}

.news-top-sec .back-btn a {
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--main-clr);
    padding: 12px 16px;
    color: var(--main-clr) !important;
    text-transform: uppercase !important;
}

.news-top-sec .back-btn a:hover {
    color: var(--main-hover) !important;
    text-decoration: none;
    border-color: var(--main-hover) !important;
    transition: 0.2s ease-in-out;
}

.news-top-sec .back-btn a:active {
    color: var(--main-active) !important;
    text-decoration: none;
    border-color: var(--main-active) !important;
}

.ancher-news {
    display: block;
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    color: var(--main-clr);
    margin-top: 6px;
}

.ancher-news:hover {
    text-decoration: underline;
    color: var(--main-hover);
    transition: 0.2s ease-in-out;
}

.ancher-news:active {
    text-decoration: none;
    color: var(--main-active);
    transition: 0.2s ease-in-out;
}

.ancher-news .fa-arrow-right {
    padding-left: 2px !important;
}

.ancher-news:hover .fa-arrow-right {
    padding-left: 6px !important;
    text-decoration: none !important;
    transition: 0.2s ease-in-out;
}

.news-top-sec .heading-buttons {
    padding: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.news-top-sec .heading-buttons h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
}

.news-top-sec .heading-buttons .form-control {
    padding: 9px 10px;
    height: 45px;
    width: 100px !important;
    border-radius: 7px;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
    color: #000;
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.news-top-sec .heading-buttons .form-control .option {
    font-weight: normal;
    font-size: 12px;
    display: block;
    min-height: 1.2em;
    padding: 0px 2px 1px;
    white-space: nowrap;
}

.card-hero .hero-img {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.card-hero .hero-img .img-text {
    border-radius: 10px;
    aspect-ratio: 680/383;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.card-hero .hero-img h1 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-top: 20px !important;
    /* padding: 15px; */
    /* min-height: 120px; */
    display: flex;
    align-items: center;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 18.81%, rgba(0, 0, 0, 0.00) 102.41%); */
    position: relative !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.right-img img {
    width: 350px;
    aspect-ratio: 200/112;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

/** no post csss  **/
.no-post-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.no-post-div img {
    width: 42px;
    margin: 15px 0 0 0;
}

.no-post-div h4 {
    color: #000000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
    margin: 0;
}

.no-post-div p {
    color: #14161B;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

/** no post css ends **/
.card-hero .hero-img .date {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    padding-top: 15px;
}

.card-hero .hero-img .short-desc {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.card-hero a {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.card-hero a:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%) !important;
}

.card-hero {
    position: relative;
}

/** Hover on img wrapper **/
.sub-news-div:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
    overflow: hidden;
}

.main-right {
    position: relative;
}

.main-right:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
    overflow: hidden;
}

.single-card-home,
.single-card {
    position: relative;
}

.single-card-home:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.single-card :hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.sub-news-div {
    display: flex;
    position: relative !important;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    gap: 10px;
}

/** recent added CSS **/
.sub-news-div .left-content {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.sub-news-div h3 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.sub-news-div .date {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    padding-top: 15px;
}

.sub-news-div .short-desc {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.sub-news-div a {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

/* .sub-news-div a img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(90%) saturate(2866%) hue-rotate(349deg) brightness(96%) contrast(137%);
}

.sub-news-div a:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%) !important;
} */

.fa-circle-play {
    margin-left: 4px;
}

.pb-vl:hover .fa-circle-play {
    transform: scale(1.07);
    transition: all 0.3s ease-in-out;
}

.vm-btn,
.mec-vm-btn .fa-arrow-right {
    margin-left: 6px;
}

.stck-pos {
    position: sticky !important;
    top: 135px !important;
}

.right-box-form {
    border-radius: var(--components-gap-rad-500, 16px);
    background: linear-gradient(180deg, var(--main-clr) 14.95%, var(--main-hover) 95.61%);
    background-blend-mode: hue, normal;
    margin: auto;
    /* width: 91.5%; */
    width: 100%;
    padding: 24px;
    border-radius: 16px;
}

.right-box-form .text-subs {
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.right-box-form .text-news {
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
    text-transform: uppercase;
}

.right-box-form p {
    color: #FFF;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.right-box-form .form-group .form-input {
    height: 45px;
    border-radius: 12px;
    padding-left: 35px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
    color: var(--Neutral-300, #B3B8C2);
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.right-box-form .form-group .icon-01 {
    position: absolute;
    transform: translate(12px, -30px);
}

.right-box-form .btn-black {
    border-radius: var(--components-gap-rad-300, 12px);
    background: var(--main-clr);
    color: #fff;
    text-transform: uppercase;
    padding: 16px 24px;
    /* height: 45px; */
    border-radius: 12px;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
}

.right-box-form .btn-black:hover {
    background-color: var(--main-hover);
    transition: 0.2s ease-in-out;
}

.right-box-form .btn-black:active {
    background-color: var(--main-active);
    transition: 0.2s ease-in-out;
    outline: none !important;
    border: none !important;
}

.right-box-form .chck-subs {
    margin-left: 20px;
    padding: 5px 0 20px 0;
}

.right-box-form .form-check-label {
    color: #FFF;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
}

.aufc-news-pgn {
    margin-top: 2rem !important;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.aufc-news-pgn ul {
    justify-content: center !important;
    margin-top: 2rem !important;
}

.aufc-news-pgn .page-item {
    margin: 0 5px !important;
}

.aufc-news-pgn .page-link {
    border-radius: var(--components-gap-rad-300, 12px) !important;
    border: 2px solid var(--main-clr) !important;
    color: var(--main-clr);
}

.aufc-news-pgn span {
    color: var(--main-clr);
}

.aufc-news-pgn span:hover {
    color: #fff;
}

.page-link:hover {
    color: #fff;
    background: var(--main-clr);
}

.page-link:hover span {
    color: #fff;
}

.page-link:hover .aufc-news-pgn span {
    color: #fff !important;
}

.aufc-news-pgn span .page-link:hover {
    color: #fff !important;
}

.aufc-news-pgn .page-item.active .page-link {
    background-color: var(--main-clr);
}

.stck-pos .banner-img {
    margin-top: 30px !important;
    max-width: 160px;
    display: block;
    margin: auto;
    max-height: 600px;
}

.stck-pos .banner-img .carousel-inner {
    width: 160px;
    height: 600px;
}

.stck-pos .ad-img {
    margin: auto;
    display: block;
    width: 160px;
    height: 600px;
    object-fit: contain;
}

/** News Listing page ends**/
/** News Template single page **/
#news-temp-sec {
    background-image: url('../images/news-template-top-bg.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

#news-temp-sec .news-temp-row {
    padding-top: 2rem;
}

.back-btn-blk a {
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--Neutral-900, var(--main-clr));
    padding: 12px 16px;
    color: var(--main-clr);
    font-size: 12px;
    text-transform: uppercase;
}

.back-btn-blk a:hover {
    color: var(--main-active);
    border-color: var(--main-active);
    text-decoration: none;
}

.news-temp-top-div {
    padding: 3rem 0 2rem 0;
}

.news-temp-row .heading {
    width: 85%;
    padding: 2rem 0;
}

.news-temp-top-div .heading h1 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
}

.news-temp-top-div .heading h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
}

.news-temp-top-div .temp-post-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    /* justify-content: center;
    align-items: flex-start; */
}

.date-logo-part {
    display: flex;
    gap: 10px;
}

.news-temp-top-div .temp-post-detail .logo-img-news {
    padding: 10px 0;
    height: 55px;
}

.news-temp-top-div .temp-post-detail p {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    border-left: solid 1px rgba(102, 112, 133, 0.35);
    border-right: solid 1px rgba(102, 112, 133, 0.35);
    padding: 15px 15px;
    margin: 0;
}

.news-temp-top-div .temp-post-detail .social-links-news-temp {
    padding: 10px 10px;
}

/* #main-thumbnail-news-page {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 22.49%, rgba(0, 0, 0, 0.70) 100%), url('../images/news-thumbnail.png'), lightgray 50% / cover no-repeat;
    height: 800px;
    background-repeat: no-repeat;
    background-size: cover;
} */
/* .main-news-section .top-main-image {
    object-fit: cover;
    width: 100%;
    padding: 20px 20px;
    max-width: 1200px;
    margin: auto;
    display: block;
} */
.news-thumbnail-wrapper {
    max-width: 1200px;
    max-height: 675px;
    overflow: hidden;
    margin: auto;
    display: block;
}

.main-news-section .top-main-image {
    height: auto;
    object-fit: cover !important;
    /* object-position: center 50% !important; */
    object-position: center center !important;
    padding: 20px 20px;
    width: 100%;
    margin: auto;
    display: block;
}

.main-news-section .instagram-media {
    position: unset !important;
}

.main-news-section iframe {
    position: unset;
    width: 100%;
}

.video-section .mn-vid-sec {
    padding: 20px 0;
}

.mn-col-main-content {
    padding-bottom: 2rem;
}

.mn-col-main-content .main-content-news-page {
    background: #fff;
    /* margin-top: -250px; */
    margin-top: 0;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 60px 20px 60px;
    color: #14161B !important;
    font-family: var(--font-satoshi-500) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

/* .main-content-news-page span {
    color: #14161B !important;
    font-family: var(--font-satoshi-500) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

.main-content-news-page p {
    color: #14161B !important;
    font-family: var(--font-satoshi-500) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

.main-content-news-page strong {
    color: #14161B !important;
    font-family: var(--font-satoshi-700) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
} */

.main-content-news-page img {
    height: auto;
    padding: 20px 0;
    width: 100% !important;
    border-radius: 10px;
}

/* .internal-content-news-page{
    padding: 60px;
} */
.mn-col-main-content .main-content-news-page .internal-img-news-temp {
    /* width: calc(100% + 120px);
    float: left !important; */
    margin: auto;
    /* margin-left: -60px; */
    height: auto;
    padding: 20px 0;
    width: 100%;
    border-radius: 10px;
}

.mn-col-main-content .main-content-news-page .news-page-quotes {
    padding: 1rem 0;
}

.mn-col-main-content .main-content-news-page .news-page-quotes p {
    color: var(--main-clr);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.mn-col-main-content .main-content-news-page .news-page-quotes h4 {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/** Carousel part **/
.carousel-wrap {
    width: 100%;
    margin: auto;
    position: relative;
}

.owl-carousel .owl-nav {
    overflow: hidden;
    height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #2caae1;
}

.owl-carousel .item {
    text-align: center;
}

.owl-carousel .nav-btn {
    height: 65px;
    position: absolute;
    width: 53px;
    cursor: pointer;
    top: 60px !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.2;
}

/* .owl-carousel .prev-slide {
    background: url('../images/left-arrow.png') no-repeat scroll 0 0;
    left: -8px;
}
.owl-carousel .next-slide {
    background: url('../images/right-arrow.png') no-repeat scroll -24px 0px;
    right: -19px;
} */
.owl-carousel .prev-slide:hover {
    /* background-position: 0px -53px; */
    opacity: 0.5;
}

.owl-carousel .next-slide:hover {
    opacity: 0.5;
}

.owl-theme .item img {
    border-radius: 8px;
    aspect-ratio: 360 / 203;
}

/** Carousel part ends **/
.related-news-container .related-news-hdng {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.related-news-container .related-news-hdng h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.vm-btn {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--main-clr);
}

.vm-btn:hover {
    border: 2px solid var(--main-hover) !important;
    transition: 0.2s ease-in-out !important;
    color: var(--main-hover) !important;
    text-decoration: none;
}

.vm-btn:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%);
}

.vm-btn:active {
    transition: 0.2s ease-in-out !important;
    border-color: var(--main-active) !important;
    color: var(--main-active) !important;
}

.vm-btn:active img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(5082%) hue-rotate(349deg) brightness(96%) contrast(115%);
}

.vm-btn:active {
    color: var(--main-active) !important;
}

/* .mec-vm-btn {
    color: var(--main-clr) !important;
    border: 2px solid var(--Neutral-900, var(--main-clr)) !important;
} */
/* .mec-vm-btn:hover{
    border:2px solid var(--main-hover) !important;
    transition: 0.2s ease-in-out !important;
    text-decoration: none;
    color: var(--main-hover) !important;
} */
/* .mec-vm-btn:hover img{
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%);
}
.mec-vm-btn:active{
    border-color: var(--main-active) !important;
    color: var(--main-active) !important;
}
.mec-vm-btn:active img{
    filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(5082%) hue-rotate(349deg) brightness(96%) contrast(115%);
} */
/* .mec-vm-btn:active {
    border-color: var(--main-active) !important;
} */
/* .mec-rm-link {
    color: var(--main-clr) !important;
    text-decoration: none !important;
    font-family:var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: underline;
    display: block;
}
.mec-rm-link:hover {
    text-decoration: underline !important;
}
.mec-rm-link:hover {
    text-decoration: underline !important;
    transition: 0.2s ease-in-out !important;
} */
.card-hero a:hover {
    color: var(--main-hover) !important;
    transition: 0.2s ease-in-out !important;
    text-decoration: underline;
}

.card-hero a:active {
    color: var(--main-active) !important;
}

.sub-news-div a:hover {
    color: var(--main-hover) !important;
    transition: 0.2s ease-in-out !important;
    text-decoration: underline;
}

.sub-news-div a:active {
    color: var(--main-active) !important;
}

.mec-rm-link .arrow-icon-right {
    width: 17px;
}

.acc-vm-btn {
    color: var(--main-clr) !important;
    border: 2px solid var(--main-clr) !important;
}

.acc-rm-link {
    color: var(--main-clr) !important;
    text-decoration: none !important;
}

.acc-rm-link:hover {
    text-decoration: underline !important;
    transition: 0.2s ease-in-out;
}

.acc-rm-link .arrow-icon-right {
    width: 17px;
}

.awc-vm-btn {
    color: #00B451 !important;
    border: 2px solid #00B451 !important;
}

.awc-rm-link {
    color: #00B451 !important;
    text-decoration: none !important;
}

.awc-rm-link:hover {
    text-decoration: underline !important;
    transition: 0.2s ease-in-out;
}

.awc-rm-link .arrow-icon-right {
    width: 17px;
}

.auttc-vm-btn {
    color: #0055B8 !important;
    border: 2px solid #0055B8 !important;
}

.auttc-rm-link {
    color: #0055B8 !important;
    text-decoration: none !important;
}

.auttc-rm-link:hover {
    text-decoration: underline !important;
    transition: 0.2s ease-in-out;
}

.auttc-rm-link .arrow-icon-right {
    width: 17px;
}

.related-news-container .related-news-cards {
    padding-top: 2rem;
    padding-bottom: 2rem;
    /* display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 17px; */
}

.related-news-container .related-news-cards .single-card {
    /* width: 24%; */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.single-card {
    position: relative;
}

.single-card:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
    overflow: hidden;
}

.ideo-listing-card .video-info .ply-btn-btm {
    width: 21px;
}

.vm-btn-mob {
    display: none;
}

.single-card-img {
    border-radius: 11.455px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) -0.19%, rgba(0, 0, 0, 0.00) 51.41%), lightgray 50% / cover no-repeat;
    /* height: 180px; */
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 320/180;
    object-position: center center;
}

/** Media Kit Portion **/
.media-kit-div {
    border-radius: 16px;
    background: linear-gradient(180deg, #920100 14.95%, #f90203 95.61%);
    padding: 40px;
}

.media-kit-div .main-internal-media-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.media-kit-div .left-internal-media-part {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-basis: 55%;
}

.media-kit-div .left-internal-media-part h5 {
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.media-kit-div .left-internal-media-part h4 {
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
}

.media-kit-div .left-internal-media-part p {
    color: #FFF;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.right-internal-media-part .download-media-btn {
    border-radius: 12px;
    background: #E0E2E7;
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.right-internal-media-part a:hover {
    background-color: #fff !important;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

/** Media Kit Portion ends**/
.related-news-container .related-news-cards .single-card h5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    min-height: 72px;
}

.related-news-container .related-news-cards .single-card .date {
    color: #333842;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    margin: 0;
}

.related-news-container .related-news-cards .single-card .desc {
    overflow: hidden;
    color: #14161B;
    text-overflow: ellipsis;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.rm-link {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
}

.rm-link:hover {
    text-decoration: underline;
    transition: 0.2s ease-in-out;
    color: var(--main-hover);
}

.rm-link:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%);
}

.rm-link:active {
    text-decoration: underline;
    transition: 0.2s ease-in-out;
    color: var(--main-active);
}

.rm-link:active img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(5082%) hue-rotate(349deg) brightness(96%) contrast(115%);
}

.rm-link:hover .arrow-icon-right {
    margin-left: 4px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.related-news-container .related-news-cards .single-card .rm-link:hover {
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

/* .news-temp-top-div .back-btn a:hover .arrow-icon-left {
    padding-right: 2px;
    transition: 0.2s ease-in-out;
}
.news-temp-top-div .back-btn a:hover {
    text-decoration: none;
} */
.share-now-mob {
    display: none;
}

/** News Template single ends **/
/** News Highlights starts **/
#news-highlght-sec {
    background: url(../images/news-template-top-bg.png), linear-gradient(180deg, #00296D 14.95%, #0055B8 95.61%);
    background-repeat: no-repeat;
    background-position: right center;
}

#news-highlght-sec .news-temp-top-div {
    padding: 2.5rem 0 1rem 0;
}

.back-btn-wht a {
    border-radius: 12px;
    border: 2px solid #fff;
    padding: 12px 16px;
    color: #E0E2E7;
    font-size: 12px;
    text-transform: uppercase;
}

.back-btn-wht a:hover {
    color: #fff;
    text-decoration: none;
}

#news-highlght-sec .news-temp-top-div .back-btn a:hover .arrow-icon-left {
    padding-right: 2px;
    transition: 0.2s ease-in-out;
}

#news-highlght-sec .news-temp-top-div .back-btn a:hover {
    text-decoration: none;
}

#news-highlght-sec .news-temp-row .heading-nh {
    width: 85%;
    padding: 2rem 0;
}

#news-highlght-sec .news-temp-top-div .heading-nh h1 {
    color: #fff;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

#news-highlght-sec .news-temp-top-div .heading-nh h2 {
    color: #fff;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

.tournament-news-row {
    padding-top: 2rem !important;
    padding-bottom: 2rem;
}

#recent-news .recent-news-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#recent-news .recent-news-row .desc-date-card span {
    border-radius: 23.42px;
    margin: 1rem 0 1rem 0;
    padding: 4px 8px;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
}

#recent-news .recent-news-row .desc-date-card .auf-ccs-itm {
    background: #FFD600;
    color: #000;
}

.auf-mec-itm {
    background: #ED1A3C;
    color: #fff;
}

.auf-wcs-itm {
    background: #00B451;
    color: #fff;
}

.auf-uttcs-itm {
    background: #0055B8;
    color: #fff;
}

#recent-news .recent-news-row .related-news-cards .single-card h5 {
    padding-top: 10px;
}

.img-nd-logo-text .logo-img-news {
    margin-right: 15px;
    width: 66px;
}

.img-nd-logo-text {
    display: flex;
}

.tournament-name {
    display: flex;
    flex-direction: column;
}

.tournament-name h5 {
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
}

#tournament-section {
    background: url(../images/tournament-part-logo.png), linear-gradient(0deg, #E0E2E7 0%, #FFF 100%);
    background-repeat: no-repeat;
    background-position: right center;
}

.main-tournament-row .mn-tournament-part {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}

.main-tournament-row .mn-tournament-part .inner-left-tournament-part h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.main-tournament-row .mn-tournament-part .inner-left-tournament-part h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    font-weight: 700;
    line-height: 88px;
    /* 100% */
    letter-spacing: -1.76px;
    text-transform: uppercase;
}

.main-tournament-row .mn-tournament-part .inner-right-tournament-part {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-tournament-row .mn-tournament-part .single-tournament-part {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 16px;
    border: 1px solid #E0E2E7;
    background: #FFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
    width: 188px;
}

.main-tournament-row .mn-tournament-part .inner-logo-tournaments {
    width: 80px;
    aspect-ratio: 80 / 108;
    max-width: 100%;
}

.trmnt-link:hover {
    text-decoration: none;
}

/* .main-tournament-row .mn-tournament-part .single-tournament-part:hover {
    background: rgb(145 174 212 / 25%);
    text-decoration: none;
} */
.mn-tournament-part .amec-part:hover {
    background: var(--main-clr);
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .amec-part:active {
    background: var(--main-hover);
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .amec-part:hover .title-tournament h5 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .amec-part:hover .title-tournament h4 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .acc-part:hover {
    background: #FFD600;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .acc-part:active {
    background: #8A4B02;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .acc-part:hover .title-tournament h5 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .acc-part:hover .title-tournament h4 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .awc-part:hover {
    background: #00B451;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .awc-part:active {
    background: #005A28;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .awc-part:hover .title-tournament h5 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .awc-part:hover .title-tournament h4 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .auttc-part:hover {
    background: #0055B8;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .auttc-part:active {
    background: #002A5C;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .auttc-part:hover .title-tournament h5 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

.mn-tournament-part .auttc-part:hover .title-tournament h4 {
    color: #fff !important;
    -moz-transition: all 0.3s ease-in;
    /* WebKit */
    -webkit-transition: all 0.3s ease-in;
    /* Opera */
    -o-transition: all 0.3s ease-in;
    /* Standard */
    transition: all 0.3s ease-in;
}

/* .mn-tournament-part .title-tournament h5 .amec-part:hover{
    color: #fff !important;
} */
.main-tournament-row .mn-tournament-par .single-tournament-part .inner-logo-tournaments {
    width: 100%;
}

.single-tournament-part .title-tournament h5 {
    color: #14161B;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.single-tournament-part .title-tournament h5:hover {
    text-decoration: none;
}

.single-tournament-part .title-tournament h4 {
    color: #14161B;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 125% */
}

/** News Highlights ends **/
/** championship  match listings page  **/
.inside-mob-btm-watch {
    display: none;
}

#ml-modal-sec .modal.show {
    display: none;
}

.nav-tabs-match {
    border-bottom: 1px solid #dee2e6;
    align-items: center;
    display: flex;
    gap: 10px;
}

.nav-tabs-match .fa-chevron-left,
.fa-chevron-right {
    border-radius: 50px;
    border: 2px solid #000;
    padding: 12px 16px;
}

.nav-tabs-match .fa-chevron-left {
    margin-right: 30px;
}

.nav-tabs-match .fa-chevron-right {
    margin-left: 30px;
}

.nav-tabs-match .nav-item .nav-link {
    color: #14161B;
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    border-radius: 99px;
    border: 2px solid #14161B;
    padding: 12px 20px;
    transition: all 0.3s ease-out;
}

.nav-tabs-match .nav-item .nav-link.active {
    color: #FFF;
    background-color: var(--main-clr);
    border: 2px solid var(--main-clr);
}

/* 
a {
    text-decoration: none;
    font-weight: bold;
}
.outer{border: 1px solid;}
.srcl {
    display: flex;
    margin: auto;
    width: 1100px;
    margin: 10px auto;
    justify-content: space-between;
}
.srcl div {
    border: 1px solid #888;
    padding: 5px;
    width: 80px;
    position: relative;
margin-right:5px;
background:#e1e1e1;
}
.slide-sample{
    margin: auto;
    position: relative;
    display: table;
}
.slideouter {
    width: 700px;
    overflow-x: scroll;
    margin: auto;
    display: flex;
}
.preSlide {
    left: -23px;
    position: absolute;
    top: 11px;
    font-size: 27px;
    color: #0080cd;
}
.nextSlide {
    right: -24px;
    position: absolute;
    top: 11px;
    font-size: 27px;
    color: #0080cd;
} */
.match-listings {
    position: sticky;
    top: 112px;
    z-index: 9999;
    background: #E0E2E7;
}

/* .match-listings .nav-div-top {
    background: #E0E2E7;
    justify-content: center;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
} */
.nav-div-top .inside-div-match {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* .nav-div-top .inside-div-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow-x: scroll;
} */
/* .nav-div-top .inside-div-match ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 0;
    margin-block-start: 0em !important;
    padding-inline-start: 0px !important;
} */
/* .inside-div-match ul>li {
    list-style: none;
    margin: 10px 0;
    width: max-content;
    
} */
/* 
.inside-div-match ul li a {
    color: #14161B;
    font-family:var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    border-radius: 99px;
    border: 2px solid #14161B;
    padding: 8px 14px;
}
.inside-div-match ul li a:hover {
    text-decoration: none;
    border-color: var(--main-clr);
    color: #000;
}
.inside-div-match ul li .active {
    background: var(--main-clr);
    color: #fff;
    border-color: var(--main-clr);
} */
/* .inside-div-match ul li a:visited {
    text-decoration: none;
    border-color: rgb(0, 115, 255);
    color: #FFF;
} */
/* .inside-div-match ul li a.active {
    text-decoration: none;
    border-color: rgb(60, 255, 0);
    color: var(--main-clr);
}  */
.flex-match-scroll-spy .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    border: 2px solid var(--main-clr) !important;
    background: var(--main-clr) !important;
    border-radius: 50px !important;
}

.flex-match-scroll-spy .nav-item .nav-link {
    color: #000;
    border: 2px solid #14161B;
    padding: 8px 12px;
    border-radius: 50px !important;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
}

.flex-match-scroll-spy .nav-item .nav-link:hover {
    border-color: var(--main-clr);
    color: var(--main-clr);
}

/* .flex-match-scroll-spy .nav-item .nav-link:visited{
    color: #fff !important;
    border: 2px solid red !important;
    background: red !important;
    border-radius: 50px !important;
} */
.flex-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow-x: scroll;
    scrollbar-width: none;
}

.flex-horizontal ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 0;
    white-space: nowrap;
}

.prev .fa-chevron-left,
.fa-chevron-right {
    border-radius: 50px;
    border: 2px solid #000;
    padding: 12px 16px;
}

.match-listings .horizontal-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 2px 0px;
}

.flex-match-scroll-spy {
    display: flex;
    align-items: center;
}

.nav-div-top .fa-chevron-left,
.fa-chevron-right {
    border-radius: 50px;
    border: 2px solid #000;
    padding: 12px 16px;
}

.prev,
.nex {
    cursor: pointer;
}

.match-listing-main .row {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.match-listing-main .mn-dt-part {
    padding: 2rem 0;
}

.match-listing-main .hdng-div-match {
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
    padding-bottom: 10px;
    margin-bottom: 1rem;
}

.hdng-div-match .btm-div-hdngs {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.hdng-div-match h4 {
    overflow: hidden;
    color: var(--main-clr);
    text-overflow: ellipsis;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.hdng-div-match .btm-div-hdngs h3 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.vs-dtl-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 0 0;
    /* flex-basis: 240px; */
}

.match-listing-main .match-card-box .first-card-match {
    justify-content: space-around;
    padding: 20px 16px;
}

.vs-dtl-main h3 {
    color: #000;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    /* 100% */
    text-transform: uppercase;
}

.match-listing-main .match-card-box .team-flag-name-nd-score {
    justify-content: center;
}

.match-listing-main .match-card-box {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.live-box {
    /* Other styles for match-card-box */
    /* Add grey color pulse */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(128, 128, 128, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(128, 128, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(128, 128, 128, 0);
    }
}

.right-sticky-watch {
    border-radius: 16px;
    border: 4px solid var(--main-clr);
    max-width: 400px;
    float: right;
    position: sticky !important;
    top: 196px !important;
}

.right-sticky-watch .top-watch-box {
    background: var(--main-clr);
    padding: 12px;
}

.right-sticky-watch .btm-watch-box {
    /* padding: 0 10px; */
    padding: 25px 10px;
}

.right-sticky-watch .top-watch-box h3 {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.right-sticky-watch .top-watch-box h2 {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    letter-spacing: -1.44px;
    text-transform: uppercase;
}

.right-sticky-watch .sub-btm-watch-box {
    display: flex;
    padding: 16px;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    align-self: stretch;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.right-sticky-watch .sub-btm-watch-box .left-btm-watch-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right-sticky-watch .sub-btm-watch-box .right-btm-watch-box p {
    color: #000;
    text-align: left;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    margin: 0;
}

.left-btm-watch-box img {
    width: 70px;
}

.btm-watch-p1 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.btm-watch-p2 {
    color: #14161B;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

/** New HTW box **/
/** New HTW box **/
.right-sticky-watch {
    width: 100%;
}

.new-right-sticky-watch {
    max-width: 440px;
}

.btm-new-watch-box {
    display: flex;
    padding: 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    height: 376px;
    overflow-y: scroll;
}

.inner-team-cntry-hdr {
    background: #000;
    padding: 8px 16px;
    width: 100%;
}

.inner-team-cntry-hdr p {
    color: #FFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

.btm-new-watch-box::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

.btm-new-watch-box::-webkit-scrollbar-thumb {
    background-color: #e0e2e6;
    /* Color of the scrollbar thumb */
    border-radius: 50px;
    /* Rounded corners for the scrollbar thumb */
}


.inner-sml-new-watch-box {
    display: flex;
    padding: 4px 16px 4px 16px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 4px 0px;
    align-self: stretch;
    flex-wrap: wrap;
    width: 100%;
}

.wth-brdr-btm {
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
}

.tv-chnl-nm-mn {
    width: 30%;
}

.inner-sml-new-watch-box h4 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 2px;
}

.tv-chnl-nm {
    width: 30%;
}

.tv-chnl-nm h5 {
    color: #000;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.tv-chnl-nm h5:nth-child(1) {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 3px;
}

.tv-chnl-nm h5:nth-child(2) {
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 0px;
}

.tv-chnl-nm h5:nth-child(3) {
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 0px;
}

.tv-chnl-nm h5:nth-child(4) {
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 0px;
}

.nom-div {
    width: 40%;
}

.inner-sml-new-watch-box p {
    color: #000;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 2px;
}

.brdr-btm-ln {
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
    padding-bottom: 3px;
}

/** championship  match listings page  ends**/
/** Videos listing page **/
.card-hero .video-info {
    margin-top: -50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 18.81%, rgba(0, 0, 0, 0.00) 102.41%);
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.video-listing-card {
    position: relative;
}

.card-hero {
    position: relative;
}

.card-hero:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.video-listing-card .hero-img h2 {
    padding-top: 1rem;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    display: flex;
    align-items: start;
}

.video-listing-card .video-info .date-n-duration {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

.video-listing-card .video-info .date-n-duration p {
    margin: 05px 0px;
    padding: 0px 10px;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
}

.play-btn-dv a {
    color: #fff;
    font-size: 20px;
}

.card-hero .video-info .date-n-duration p:first-child {
    border-right: solid #FFFFFF80 1px;
}

.video-info .ply-btn-hero:hover {
    transform: scale(1.07);
    transition: all 0.3s ease-in-out;
}

.pb-vl-sml-rght:hover {
    transform: scale(1.07) !important;
    transition: all 0.3s ease-in-out;
}

.pb-vl:hover .fa-circle-play {
    transform: scale(1.07) !important;
}

.vidoeslst-play-button-btm {
    padding-left: 2px;
    margin-bottom: 2px;
}

.video-listing-card .hero-img .pb-vl {
    margin-top: 12px;
    /* display: flex; */
}

.pb-vl:hover {
    text-decoration: none;
}

.pb-vl:hover .vidoeslst-play-button-btm {
    transform: scale(1.07);
}

.videos-listing-sec .sub-videos-div {
    padding: 2rem 0;
}

.sub-videos-div .right-img .video-img {
    width: 350px;
    aspect-ratio: 200 / 112;
    border-radius: 8px;
    object-fit: cover;
}

.right-img .date-n-duration-btm {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    /* margin-top: -30px; */
}

.right-img .date-n-duration-btm p {
    margin: 2px 0px;
    padding: 0px 5px;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
}

.video-info-sml .date-n-duration-btm p:first-child {
    border-right: solid #FFFFFF80 1px;
}

.right-img .ply-btn-btm {
    width: 20px !important;
    aspect-ratio: 1 / 1;
}

.right-img .video-info-sml {
    margin-top: -30px;
    display: flex;
    justify-content: space-between;
    padding: 5px 5px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 18.81%, rgba(0, 0, 0, 0.00) 102.41%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: relative;
}

.sub-videos-div .pb-vl-sml {
    display: block !important;
    padding-top: 6px;
}

.sub-videos-div .pb-vl-sml:hover {
    text-decoration: underline;
}

.sub-videos-div .pb-vl-sml:hover .vidoeslst-play-button-btm {
    transform: scale(1.07);
}

.sub-videos-div .pb-vl-sml-rght:hover .ply-btn-btm {
    transform: scale(1.07);
}

/* .mec-w-link {
    color: var(--main-clr) !important;
    text-decoration: none !important;
} */
.mec-w-link:hover {
    text-decoration: underline !important;
}

.acc-w-link {
    color: #FFD600 !important;
    text-decoration: none !important;
}

.acc-w-link:hover {
    text-decoration: underline !important;
}

.awc-w-link {
    color: #00B451 !important;
    text-decoration: none !important;
}

.awc-w-link:hover {
    text-decoration: underline !important;
}

.auttc-w-link {
    color: #0055B8 !important;
    text-decoration: none !important;
}

.auttc-w-link:hover {
    text-decoration: underline !important;
}

/** Videos listing page ends**/
/** Video single Detail page **/
.video-thumbnail {
    width: 100%;
}

.video-inside {
    width: 100%;
}

.mn-vid-sec iframe {
    aspect-ratio: 16 / 9 !important;
    width: 100%;
}

.video-section .col-md-12 {
    padding: 0 1px;
}

.related-videos-row .related-news-hdng {
    padding-top: 3rem !important;
}

.video-card {
    position: relative;
}

.video-card:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.video-card .single-card-img {
    width: 100%;
}

.video-card .video-info {
    margin-top: -45px;
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 18.81%, rgba(0, 0, 0, 0.00) 102.41%);
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.video-card .video-info .date-n-duration {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

.video-card .video-info .date-n-duration p {
    margin: 5px 0px;
    padding: 0px 10px;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
}

.video-card .video-info .date-n-duration .date-btm {
    /* border-right: solid #FFFFFF80 1px; */
    border-right: none;
}

.duration-btm {
    display: none;
}

.date-n-duration {
    border-right: none !important;
}

.date-btm {
    border-right: none !important;
}

.video-card .play-btn-dv .ply-btn-hero {
    width: 20px;
}

.video-card a {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
}

.video-card a:hover {
    color: var(--main-hover) !important;
    text-decoration: underline !important;
    transition: 0.2s ease-in-out !important;
}

.video-card a:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%) !important;
}

.video-card a:active {
    color: var(--main-active) !important;
}

.video-card a:active img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(5082%) hue-rotate(349deg) brightness(96%) contrast(115%) !important;
}

.title-nd-link .pb-vl:hover {
    color: var(--main-hover) !important;
    text-decoration: underline !important;
    transition: 0.2s ease-in-out !important;
}

.title-nd-link .pb-vl:hover img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%) !important;
}

.title-nd-link .pb-vl:active {
    transition: 0.2s ease-in-out !important;
    border-color: var(--main-active) !important;
    color: var(--main-active) !important;
}

.title-nd-link .pb-vl:active img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(5082%) hue-rotate(349deg) brightness(96%) contrast(115%) !important;
}

.play-btn-dv .pb-vl-sml-rght .ply-btn-btm {
    width: 22px;
}

.ad-cntnr {
    padding-bottom: 40px;
}

/** Video single Detail page **/
/** Site down **/
.site-down {
    margin-top: 50px;
}

.site-down .logo-nd-txt-500 {
    display: flex;
    align-items: flex-start;
    padding: 64px 0;
    gap: 8px;
}

.site-down a:hover {
    text-decoration: none;
}

.site-down .logo-nd-txt-500 h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
}

.site-down h1 {
    color: var(--Base-Black, #000);
    font-family: var(--font-oswald-700);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 40px;
}

.site-down .err-cd {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.site-down .err-cd span {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.site-down .err-cd-desc {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

/** Page not found 404 **/
.mn-pnf-content {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.mn-pnf-content .left-pic-part {
    background-image: url(../images/page-not-found-img.png);
    flex-basis: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mn-pnf-content .left-pic-part h1 {
    color: #FFFFFF;
    text-shadow: 0px 24px 48px rgba(102, 112, 133, 0.48);
    font-family: var(--font-oswald-700);
    font-size: 288px;
    font-style: normal;
    font-weight: 700;
    line-height: 288px;
    /* 100% */
    letter-spacing: -5.76px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mn-pnf-content .right-info-part {
    display: flex;
    flex-direction: column;
    padding: 64px 144px;
    align-self: center;
    justify-content: center;
    gap: 10px;
    flex-basis: 50%;
}

.right-info-part .hand-img {
    width: 50px;
}

.right-info-part h2 {
    color: #000;
    /* Heading/500 */
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 3rem;
}

.right-info-part p {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.pnf-link:hover {
    text-decoration: none;
}

.right-info-part .small-box-pnf:hover {
    transition: 0.2s ease-in-out;
    background: var(--AUFC-a100, rgba(0, 41, 109, 0.20));
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 24px 48px 0px rgba(102, 112, 133, 0.24);
}

.right-info-part .small-box-pnf:active {
    background: var(--AUFC-300, #2254DB);
}

.right-info-part .small-box-pnf {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    justify-content: flex-start;
    border-radius: 16px;
    border: 1px solid var(--Neutral-100, #E0E2E7);
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.small-box-pnf .pnf-inner-img {
    max-width: 100%;
    width: 55px;
}

.small-box-pnf .content-part-pnf h4 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: auto;
    /* 125% */
}

.small-box-pnf .content-part-pnf p {
    color: var(--Neutral-700, #333842);
    /* Body/300 */
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
    /* 157.143% */
}

.right-info-part .hmp-link {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    padding: 15px 0;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: underline;
}

/** Page not found 404 ends**/
/** Terms and conditions and other static pages **/
.static-section {
    background-image: url(../images/news-template-top-bg.png);
    background-repeat: no-repeat;
    background-position: right center;
}

.static-section .static-row {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.static-row h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    /* 100% */
    letter-spacing: -1.44px;
    text-transform: uppercase;
}

.miscellaneous-dtl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
}

.miscellaneous-dtl img {
    height: 25px;
    border-right: solid 1px rgba(102, 112, 133, 0.35);
    padding-right: 10px;
}

.miscellaneous-dtl p {
    overflow: hidden;
    color: #000;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
    /* 157.143% */
}

.static-inner-row .static-inner-col {
    max-width: 792px;
    padding-top: 3rem;
}

.static-inner-row .static-inner-col span {
    color: #14161B !important;
    font-family: var(--font-satoshi-500) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

.static-inner-row .static-inner-col p {
    color: #14161B !important;
    font-family: var(--font-satoshi-500) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

.static-inner-row p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.static-inner-col h3 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
    padding: 10px 0;
}

.static-inner-col ul,
ol li {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    padding: 10px 0;
}

.static-section .back-btn-blk {
    display: none;
}

/** Terms and conditions and other static pages ends**/
/** Register page CSS **/
.reg-page {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.left-dynamic-image {
    position: relative;
}

.img-nd-hd {
    position: absolute;
    left: 15%;
    top: 35%;
    width: 360px;
}

.img-nd-hd .logo-inside-dynamic {
    width: 100%;
    max-width: 350px;
}

.dynamic-img-part {
    display: block;
    margin-left: auto;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.reg-page .left-pic-part {
    /* background: linear-gradient(rgb(224 226 231 / 0%) 0%, rgb(255 255 255) 100%) right center / cover no-repeat, linear-gradient(0deg, rgb(255 255 255) 0%, rgba(255, 255, 255, 0.5) 100%),  url(../images/registration-page-bg.png), #d3d3d324 ;  */
    background: linear-gradient(rgb(224 226 231 / 0%) 0%, rgb(255 255 255) 100%) right center / cover no-repeat, linear-gradient(0deg, rgb(222 222 222) 1%, rgba(255, 255, 255, 0.5) 100%);
    /* background-blend-mode: darken; */
    background-position: right center;
    flex-basis: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    /* display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center; */
    min-height: 820px;
}

.reg-page .left-pic-part h4 {
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    padding-top: 20px;
    /* 140% */
}

.reg-page .right-info-part {
    display: flex;
    flex-direction: column;
    padding: 64px 125px;
    align-self: center;
    justify-content: center;
    gap: 40px;
    flex-basis: 50%;
}

.reg-page .right-info-part p {
    color: #14161B;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
}

.reg-right-part h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 0.5rem;
}

.reg-right-part .sign-in-reg {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: underline;
    padding-left: 5px;
}

.reg-right-part .sign-in-reg:hover {
    text-decoration: none;
}

.reg-right-part {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reg-right-part .reg-form label {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    display: block;
    text-transform: uppercase;
}

.reg-right-part .reg-form .form-input {
    height: 55px;
    border-radius: 12px;
    padding-left: 35px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
    color: var(--Neutral-300, #B3B8C2);
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.6px var(--main-clr) !important;
}

.form-control:focus {
    border-color: var(--main-clr) !important;
}

.reg-right-part .reg-form .reg-form-group select:focus-visible {
    box-shadow: 0 0 0 0.6px rgb(0 123 255 / 92%) !important;
    border: 1px solid rgb(0 123 255 / 92%) !important;
}

.reg-right-part .reg-form .reg-form-group {
    position: relative;
}

.reg-right-part .reg-form .icon-01 {
    position: absolute;
    transform: translate(12px, -35px);
}

.reg-right-part .reg-form .reg-form-group select {
    height: 55px;
    border-radius: 12px !important;
    padding-left: 8px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
    color: #030303;
    ;
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}

.reg-form .sub-btn-custom {
    border-radius: var(--components-gap-rad-300, 12px) !important;
    background: var(--Neutral-900, #14161B) !important;
    width: 100% !important;
    padding: 14px !important;
    font-family: var(--font-oswald-700) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    outline: none !important;
    border: none;
    color: #fff;
}

.reg-form .sub-btn-custom:focus-within {
    box-shadow: 0 0 0 0.6px rgb(0 123 255 / 92%) !important;
}

.reg-form .sub-btn-custom:hover {
    background: #14161bd6 !important;
}

.reg-right-part .reg-with-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 3px 0 20px 0;
}

.reg-right-part .img1 {
    background: var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    width: calc(33% - 0px);
    padding: 16px;
    text-align: center;
    border-radius: 12px;
}

.reg-right-part .social-link-reg-with {
    background: var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    width: calc(33% - 0px);
    padding: 16px;
    text-align: center;
    border-radius: 12px;
}

.reg-right-part .social-link-reg-with:hover {
    background: var(--Neutral-a100, rgba(102, 112, 133, 0.50));
}

.btm-box-right p {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.btm-box-right .sml-link {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    text-decoration: underline;
}

.btm-box-right .sml-link:hover {
    text-decoration: none;
}

/** Register page ends **/
/** Register OTP page **/
.reg-page .reg-right-part .back-btn-blk {
    padding-bottom: 2rem !important;
}

.right-info-part p span {
    font-family: var(--font-satoshi-700);
    font-weight: 700;
    color: var(--Neutral-900, #14161B);
    display: block;
}

.bold-link {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    text-decoration: underline;
}

.bold-link:hover {
    text-decoration: none;
    color: #000000;
    transition: 0.2s ease-in-out;
}

.bold-link:hover .bold-link-newtab-img {
    transform: scale(1.07);
    color: #000000;
    transition: 0.2s ease-in-out;
}

.right-info-part .bold-link-newtab-img {
    margin-top: -2px;
}

.reg-form .opt-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 0px 0 20px 0;
}

.reg-form .opt-div .otp-control {
    text-align: center;
    border-radius: var(--components-gap-rad-300, 12px) !important;
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20)) !important;
    background: #FFFFFF !important;
    padding: 28px 12px !important;
}

.reg-right-part .cnrecieve {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: underline;
    text-align: center !important;
    margin-top: -10px !important;
}

.reg-right-part .cnrecieve:hover {
    text-decoration: none;
    color: var(--Neutral-900, #14161B);
}

/** Register OTP page **/
/** Register password **/
.reg-form .field-icon {
    right: 15px;
    bottom: 20px;
    position: absolute;
    z-index: 2;
}

.feild-icon1 {
    right: 15px !important;
    bottom: 130px !important;
    position: absolute !important;
    z-index: 2 !important;
}

.eye-icon {
    right: 15px !important;
    top: 45px !important;
    position: absolute !important;
    z-index: 2 !important;
    color: #000;
    cursor: pointer;
}

.eye-icon1 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: #000;
    cursor: pointer;
}

.error-message {
    color: #ff0000;
    padding-top: 1rem;
}

.reg-form .pass-field {
    height: 55px;
    border-radius: 12px;
    padding-left: 15px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
    color: var(--Neutral-300, #B3B8C2);
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0px 0px 20px 0;
}

/**register funnel **/
.reg-right-part .tick-succ {
    margin: 12px 0;
}

.reg-right-part .mn-div-success {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.mn-div-success .pnf-link {
    display: contents;
}

/** Register funnel ends **/
/** Videos listing highlight **/
#vid-highlight-sec {
    padding: 1.5rem 0 2rem 0;
}

.video-listing-card .title-nd-link .auf-ccs-itm {
    background: #FFD600;
    color: #000;
}

.video-listing-card .title-nd-link span {
    border-radius: 23.42px;
    margin: 1rem 0 1rem 0;
    padding: 4px var(--components-gap-rad-100, 8px);
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    align-self: self-start;
    display: block;
}

.video-listing-card .title-nd-link h5 {
    padding-top: 10px;
}

.video-listing-card .vh-tl h5 {
    padding-top: 0px;
}

/** Videos listing highlights page ends **/
/** Sign in page starts **/
.field-icon {
    color: #14161a;
    cursor: pointer;
}

.field-icon:hover {
    color: #14161a;
    cursor: pointer;
}

.reg-right-part .sign-in-form .rem-frgt-box {
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sign-in-form .rem-frgt-box label {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.sign-in-form .rem-frgt-box a {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
}

.sign-in-form .rem-frgt-box a:hover {
    text-decoration: none;
}

/**Sign in css ends **/
/** About us section **/
#top-blue-section {
    background: url(../images/news-template-top-bg.png), linear-gradient(0deg, var(--main-clr) 14.95%, #800000 95.61%);
    background-repeat: no-repeat;
    background-position: right center;
}

#top-blue-section .blue-top-div {
    padding: 2.0rem 0 1rem 0;
}

.blue-top-div .heading-bs {
    width: 85%;
    padding: 1rem 0;
}

.blue-top-div .heading-bs h1 {
    color: #fff;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

.blue-top-div .heading-bs h2 {
    color: #fff;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

.mn-hero-img-top img {
    max-width: 1200px;
    /* width: 100vw; */
    margin: auto;
    display: block;
    text-align: center;
}

.main-inner-sect-about .mw-920 {
    width: 100%;
    max-width: 920px;
    margin: auto;
}

.main-inner-sect-about p {
    color: #14161B !important;
    font-family: var(--font-satoshi-500) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

.main-inner-sect-about span {
    color: #14161B !important;
    font-family: var(--font-satoshi-500) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 26px !important;
}

.main-inner-sect-about img {
    margin: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

.main-inner-sect-about .mn-content-section {
    padding-top: 3rem;
}

.main-inner-sect-about .mn-content-section h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    /* 100% */
    letter-spacing: -1.44px;
    text-transform: uppercase;
    text-align: left;
}

.main-inner-sect-about .mn-content-section p {
    color: #000;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.main-inner-sect-about .mn-content-section h3 {
    color: var(--AUFC-300, #2254DB);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.main-inner-sect-about .mn-content-section .inner-principles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 10px 0;
}

.mn-content-section .inner-principles h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.mn-content-section .btm-details {
    padding-top: 12px;
}

.mn-content-section .btm-details h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    text-align: center;
}

.mn-content-section .btm-details p {
    text-align: center;
}

.abt-hero-col {
    padding: 0 !important;
}

/** About us section ends **/
.reg-page p strong {
    font-family: var(--font-satoshi-700);
}

/** My account page **/
.my-acnt .back-btn-wht {
    display: none;
}

.mw-680 {
    max-width: 680px;
    padding: 2rem 0;
}

.my-account .main-card-header {
    border-radius: 16px;
    border: 1px solid var(--Neutral-100, #E0E2E7);
    background: #FFFFFF;
    /* padding: 16px; */
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
    cursor: pointer;
    margin: 10px 0px;
}

/* .my-account .iside-content:hover {
    background: var(--AUFC-a100, rgba(0, 41, 109, 0.20));
    border-radius: 16px;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
} */
.my-account .main-card-header:active {
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.my-account .main-card-header:visited {
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.my-account .main-card-header:focus-within {
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.my-account .main-card-header:focus-visible {
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.my-account .main-card-header:target {
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.my-account .inner-div {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.my-account .first-part-inner {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.my-account .first-part-inner img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.user-avatar {
    width: 70px;
    height: 70px;
    margin: 8px;
}

form #avatar {
    height: 64px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
}

.my-account .inner-div .inner-part-first h5 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
}

.my-account .inner-div .inner-part-first p {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    margin: 0;
}

.my-account .inner-div .inner-part-first p span {
    color: #84BF40;
}

.my-account .card-body-inside {
    border-top: solid 1px #efefef;
    padding: 20px 100px 30px 100px;
}

.my-account .account-form {
    position: relative;
}

.my-account .account-form .eye-icon-acc {
    position: absolute;
    right: 0;
    bottom: 90px;
}

form .cus-form-field {
    height: 55px;
    border-radius: 12px;
    padding: 16px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
    color: var(--Neutral-300, #B3B8C2);
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.account-form label {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-oswald-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.cust-submit-btn {
    border-radius: var(--components-gap-rad-300, 12px) !important;
    background: var(--Neutral-900, #14161B) !important;
    width: 100% !important;
    padding: 14px !important;
    font-family: var(--font-oswald-700) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    outline: none !important;
    border: none;
    color: #fff;
}

.card-body-inside .confirm-btn-custom {
    border-radius: var(--components-gap-rad-300, 12px) !important;
    background: var(--Neutral-900, #14161B) !important;
    width: 100% !important;
    padding: 14px !important;
    font-family: var(--font-oswald-700) !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    outline: none !important;
    border: none;
    color: #fff;
}

.card-body-inside .confirm-btn-custom:hover {
    background: #14161bd6 !important;
}

/** Switch buttons **/
.cb-inner {
    display: flex;
    flex-direction: column;
}

.cb-inner h4 {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.cb-inner p {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
}

.on-toggle {
    display: flex;
    justify-content: space-between !important;
    align-items: flex-start;
    gap: 15px;
}

.off-toggle {
    display: flex;
    justify-content: space-between !important;
    align-items: flex-start;
    gap: 15px;
}

.input_wrapper {
    width: 80px;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.input_wrapper input[type="checkbox"] {
    width: 55px;
    height: 30px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #E1E2E7;
    border-radius: 50px;
    position: relative;
    outline: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.input_wrapper input[type="checkbox"]:after {
    position: absolute;
    content: "";
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    z-index: 2;
    border-radius: 50px;
    -webkit-transition: all .35s;
    transition: all .35s;
}

.input_wrapper .is_checked {
    width: 13px;
    left: 18%;
    -webkit-transform: translateX(190%) translateY(-30%) scale(0);
    transform: translateX(190%) translateY(-30%) scale(0);
}

.input_wrapper .is_unchecked {
    width: 12px;
    right: 38%;
    -webkit-transform: translateX(0) translateY(-30%) scale(1);
    transform: translateX(0) translateY(-30%) scale(1);
}

/* Checked State */
.input_wrapper input[type="checkbox"]:checked {
    background: #000;
}

.input_wrapper input[type="checkbox"]:checked:after {
    left: calc(100% - 28px);
}

.input_wrapper input[type="checkbox"]:checked+.is_checked {
    -webkit-transform: translateX(0) translateY(-30%) scale(1);
    transform: translateX(0) translateY(-30%) scale(1);
}

.input_wrapper input[type="checkbox"]:checked~.is_unchecked {
    -webkit-transform: translateX(-190%) translateY(-30%) scale(0);
    transform: translateX(-190%) translateY(-30%) scale(0);
}

/* Frrst checkbox css End */
/* 2nd checkbox css Start */
.input_wrapper-01 {
    width: 80px;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.input_wrapper-01 input[type="checkbox"] {
    width: 55px;
    height: 30px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #000;
    border-radius: 50px;
    position: relative;
    outline: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.input_wrapper-01 input[type="checkbox"]:after {
    position: absolute;
    content: "";
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #B5B9C4;
    z-index: 2;
    border-radius: 50px;
    -webkit-transition: all .35s;
    transition: all .35s;
}

.input_wrapper-01 .is_checked {
    width: 13px;
    left: 18%;
    -webkit-transform: translateX(190%) translateY(-30%) scale(0);
    transform: translateX(190%) translateY(-30%) scale(0);
}

.input_wrapper-01 .is_unchecked {
    width: 12px;
    right: 38%;
    -webkit-transform: translateX(0) translateY(-30%) scale(1);
    transform: translateX(0) translateY(-30%) scale(1);
}

/* Checked State */
.input_wrapper-01 input[type="checkbox"]:checked {
    background: #E1E2E7;
}

.input_wrapper-01 input[type="checkbox"]:checked:after {
    left: calc(100% - 28px);
}

.input_wrapper-01 input[type="checkbox"]:checked+.is_checked {
    -webkit-transform: translateX(0) translateY(-30%) scale(1);
    transform: translateX(0) translateY(-30%) scale(1);
}

.input_wrapper-01 input[type="checkbox"]:checked~.is_unchecked {
    -webkit-transform: translateX(-190%) translateY(-30%) scale(0);
    transform: translateX(-190%) translateY(-30%) scale(0);
}

/** Switch buttons ends **/
/** Account CSS ends **/
/** clock css **/
/** clock css **/
.main-count-down {
    border-radius: 0px 0px 16px 16px;
    background: linear-gradient(180deg, #002971 0%, #002971 69.74%);
    padding: 16px;
    /* display: none; */
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: var(--components-gap-rad-900, 24px);
    max-width: 745px;
    /* margin-left: auto;
    margin-right: auto; */
}

.second-div-inner {
    /* display: none; */
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-count-down .logo-part-timer {
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: var(--components-gap-rad-100, 8px);
    /* background: #FFF; */
    padding: 8px 16px 8px 8px;
}

.main-count-down .logo-part-timer img {
    width: 39px;
    /* max-width: 100%; */
}

.main-count-down .timer-part {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.timer-part .timer-sub-part {
    border-radius: 5.957px;
    background: var(--main-clr);
    padding: 16px;
    display: flex;
    width: 128px;
    justify-content: center;
    align-items: center;
    gap: var(--components-gap-rad-100, 8px);
    align-self: stretch;
}

.timer-part .timer-sub-part p {
    color: #FFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 35.741px;
    font-style: normal;
    font-weight: 700;
    line-height: 35.741px;
    text-transform: uppercase;
    margin: 0;
    /* width: 35px; */
    width: 48px;
}

.timer-part .timer-sub-part span {
    color: #FFF;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 17.871px;
    font-style: normal;
    font-weight: 500;
    line-height: 29.784px;
    text-transform: uppercase;
    margin: 0;
}

.main-count-down .logo-part-timer h4 {
    color: #FFF;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    text-align: right;
    text-transform: uppercase;
}

.credits-part {
    display: none;
}

/** clock css ends **/
/** Homepage/ MEC News CSS **/
.heading-nd-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amec-mn-cntnr {
    margin-top: 1rem;
    background: var(--Neutral-100, #E0E2E7);
}

.heading-nd-btn h1 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-nd-btn h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-nd-btn .arrow-btn {
    color: #E0E2E7;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--Neutral-900, #E0E2E7);
    text-decoration: none;
}

.heading-nd-btn .arrow-btn:hover {
    color: #FFFFFF;
    border: 2px solid var(--Neutral-900, #FFFFFF);
}

.mn-standing-contnr {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.left-right-arrow {
    display: none;
}

.flex-table {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.first-part-table,
.second-part-table {
    flex: 2 1 auto;
}

.above-mn-table {
    margin-top: 20px;
    border-radius: 12px;
    border: 1.439px solid var(--AUFC-a100, rgba(0, 41, 109, 0.20));
    background: #FFF;
    /* padding: 0 15px 0 15px; */
    overflow-x: auto;
    max-width: 100%;
}

.trnament-cus-table {
    position: relative;
    margin-bottom: 0rem;
}

.trnament-cus-table thead th:first-child {
    text-align: start !important;
    width: 33%;
}

.trnament-cus-table thead th {
    width: 11%;
    border-top: none !important;
    border-bottom: none !important;
    color: #00296D;
    font-family: var(--font-satoshi-700);
    font-size: 18px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 144.444% */
    text-transform: uppercase;
}

.trnament-cus-table th,
td {
    border-top: none !important;
    color: var(--Neutral-700, #333842);
    text-align: left;
    border-bottom: none;
}

.trnament-cus-table td {
    color: var(--color-grey-800, #3E3E3E);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    text-align: center;
    font-weight: 400;
    line-height: 18px;
    /* 137.5% */
    letter-spacing: -0.23px;
    vertical-align: middle;
}

.trnament-cus-table th {
    font-family: var(--font-satoshi-700);
    font-size: 17.27px;
    font-style: normal;
    font-weight: 700;
    line-height: 23.027px;
    /* 133.333% */
}

.trnament-cus-table tbody tr {
    border-bottom: solid 1px rgba(0, 41, 109, 0.20);
}

.trnament-cus-table tbody tr:hover {
    background-color: #efefef;
}

/* .trnament-cus-table tbody tr:last-child {
    border-bottom: none;
} */

.trnament-cus-table tbody tr:last-child:hover {
    background-color: transparent;
}

.trnament-cus-table tbody .flg-th img {
    width: 30px;
    height: 30px;
    margin-right: 3px;
}

.qlfd-team:after {
    content: "";
    width: 30px;
    height: 35px;
    background: url(../images/border-left-ql.svg);
    background-repeat: no-repeat;
    left: 03px;
    bottom: 7px;
    position: absolute;
    display: inline-block;
}

.trnament-cus-table tbody .qlfd {
    color: var(--ColourSet-Sky, #0EA5E9);
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.trnament-cus-table tbody .qlfd:after {
    content: "";
    width: 30px;
    height: 30px;
    background: url("../images/border-left-ql.svg");
    background-repeat: no-repeat;
    left: 3px;
    bottom: 7px;
    position: absolute;
    display: inline-block;
}

.btm-standings .btm-nav {
    align-items: center !important;
    justify-content: center !important;
    padding-top: 15px !important;
}

.btm-standings .btm-nav .nav-link-bld {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.btm-standings .btm-nav .nav-link {
    color: var(--Neutral-500, #667085);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding: 0 8px;
    transition: all 0.3s ease-out;
}

.left-act {
    background: #fff !important;
}

.mn-trophy-dv {
    /* display: flex;
justify-content: space-between;
align-items: center;
gap: 10px; */
    border-radius: 16px;
    background: #002C5Fd9;
    width: 100%;
    position: relative;
    padding: 0 24px;
}

.mn-trophy-dv .trphy-img {
    position: absolute;
    bottom: 0;
    width: 165px;
}

.trophy-title-part {
    display: flex;
    padding: 20px 10px 20px 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mn-trophy-dv .trophy-title-part h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #FFFFFF;
    text-align: center;
    text-overflow: ellipsis;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-bottom: 4px;
    border-bottom: 1.5px solid #fff;
    width: 80%;
    margin: auto;
    margin: 0;
}

.mn-trophy-dv .trophy-title-part h2 {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.mn-trophy-dv .trophy-title-part h5 {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-oswald-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    text-transform: uppercase;
}

.desk-leaderboard-ad {
    margin-top: 2rem;
    width: 728px;
    height: 90px;
}

.desk-leaderboard-ad .carousel-inner {
    width: 728px;
    height: 90px;
}

.desk-leaderboard-ad .desk-leaderboard-ad-img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    display: block;
    margin: auto;
}

/** pre draw MEC tournament ends **/
/** post draw MEC tournament starts **/
/** New Match Schedule Div **/
.nt-scrbl-dv {
    /* height: 440px; */
    background: rgba(109, 123, 144, 0.16);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 10px 0px 10px 0;
}

.main-right-new .bottom-card-box-hd {
    color: #FFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin: 0;
}
.match-schdl-btm-btn {
    margin-top: 8px;
    display: flex;
}

.match-schdl-btm-btn a {
    margin-left: auto;
    padding: 16px 20px;
    gap: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.28px;
}

.match-schdl-btm-btn .view-standings-btn{
    /* margin-right: auto; */
    margin-left: 1%;
}

.asean-championship-tab .match-schdl-btm-btn a {
    color: var(asean-championship-clr);
    border-color: var(asean-championship-clr);
}

.asean-championship-tab .match-schdl-btm-btn a:hover {
    color: var(--asean-championship-scndry-clr);
    border-color: var(--asean-championship-scndry-clr);
}


/** New Match Schedule Div **/
.main-right-new {
    border-radius: 16px;
    border: 1px solid var(--Neutral-100, #E0E2E7);
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.mw-520 {
    max-width: 520px;
}

.main-right-new .top-box-header {
    background: #000;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
}

.top-box-header .flex-mob {
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-right-new .top-box-header h2 {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.main-right-new .top-box-header p {
    color: var(--Neutral-300, #B3B8C2);
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    margin: 0;
}

.main-right-new .top-box-header .timer-in {
    border-radius: var(--components-gap-rad-100, 8px);
    background: var(--main-clr);
    display: flex;
    width: 80px;
    height: 60px;
    padding: 4px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-right-new .top-box-header img {
    width: 101px;
}

.timer-in h3 {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.timer-in span {
    color: var(--Championship-100, #FCC);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
}

.bottom-card-box .box-nav-tabs {
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(109, 123, 144, 0.16) inset, 0px 8px 16px 0px rgba(109, 123, 144, 0.24);
}

.bottom-card-box .box-nav-tabs .nav-tabs {
    padding-top: 2px;
}

.bottom-card-box .nav-tabs .nav-item.show .nav-link {
    border-color: transparent;
    background-color: transparent;
    border-bottom: 4px solid var(--main-clr);
    color: var(--main-clr) !important;
    border-radius: 0px !important;
    padding-bottom: 7px !important;
    color: var(--main-clr);
    text-align: center !important;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.3s ease-out;
    /* 120% */
}

.bottom-card-box .nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom: 4px solid transparent;
    border-radius: 0px !important;
    padding-bottom: 7px !important;
}

.bottom-card-box .nav-tabs .nav-link.active {
    border-color: transparent;
    background-color: transparent;
    border-bottom: 4px solid var(--main-clr);
    color: var(--main-clr) !important;
    border-radius: 0px !important;
    padding-bottom: 7px !important;
    text-align: center !important;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.bottom-card-box .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.3s ease-out;
    /* 120% */
}

.mw-740{
    max-width: 740px;
    margin-left: auto;
}

.scrbl-dv {
    height: max-content;
    /* max-height: 500px; */
    overflow-y: scroll;
    background: rgba(109, 123, 144, 0.16);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 10px 0px 10px 0;
}

/* .match-card-box .box-nav-tabs nav{
    display: flex;
    gap: 5px;   
} **/
.bottom-card-box .box-nav-tabs .nav-item {
    flex-basis: 50%;
}

.main-right-new .match-card-box {
    padding: 4px 16px;
    position: relative;
}

.bottom-box-tw {
    padding: 16px;
}

.match-card-box .first-card-match {
    border-radius: 16px;
    border: 1px solid var(--Neutral-100, #E0E2E7);
    padding: 16px;
    background: #FFFFFF;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* cursor: pointer; */
}

.match-card-box .first-card-match:hover {
    border: 1px solid var(--Neutral-100, #E0E2E7);
    /* background: var(--Neutral-a100, rgba(102, 112, 133, 0.20)); */
    background-color: rgb(224 226 231);
    transition: 0.2s ease-in-out;
}

.match-card-box .first-card-match:active {
    background: var(--main-clr);
    transition: 0.2s ease-in-out;
}

.match-card-box .first-card-match:active .vs-dt-a {
    color: #fff !important;
    transition: 0.2s ease-in-out;
}

.match-card-box .team-flag-name-nd-score {
    display: flex;
    flex-direction: row;
    /* justify-content: flex-start; */
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* width: 33%; */
    flex: 1 0 0;
}

.flag-nd-name img {
    width: 60px;
}

.match-card-box .scnd-team {
    flex-direction: row-reverse !important;
}

.match-card-box .team-flag-name-nd-score h3 {
    color: #000;
    text-align: center;
    font-family: var(--font-oswald-700);
    /* font-size: 56px; */
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.match-card-box .flag-nd-name {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
}

.ttb-img-desc img {
    width: 130px;
    margin-top: 1px;
    border-radius: 0 0 0px 16px;
    height: 135px;
}

.match-card-box .flag-nd-name h4 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 120% */
    align-items: center;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.match-card-box .other-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.other-details .grp-dtl {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.grp-dtl p {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
    text-align: center;
}

.grp-dtl span {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700) !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 20px;
}

.other-details .vs-dtl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.vs-dtl .vs-live {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background-color: var(--main-clr);
    padding: 0 5px;
    border-radius: 5px;
}

.vs-dtl .vs-live p {
    color: #fff;
    text-transform: uppercase;
}

.other-details a {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    text-align: center;
}

.vs-dtl h4 {
    color: var(--Neutral-500, #667085);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.vs-dtl p {
    color: var(--Neutral-500, #667085);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
    margin: 0;
}

/** Live match CSS for sticky nav **/
.mid-part .score-inside-mid-part .scr-dtl-insd h4 {
    color: #FFFFFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 5px;
}

@keyframes pulseBorder {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        left: 0;
        width: 50%;
        /* Decreased from 100% to 80% */
    }

    100% {
        left: 100%;
        width: 0;
    }
}

.scr-dtl-insd {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scr-dtl-insd h4,
.scr-dtl-insd .live-minutes-nav {
    margin: 0;
}

.scr-dtl-insd .live-minutes-nav {
    color: #84BF40;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.scr-dtl-insd .live-minutes-nav::before {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Adjust as needed to align with the bottom */
    left: 10%;
    /* Start position to center the animation */
    height: 2px;
    /* Thickness of the bottom border */
    width: 0;
    background-color: #84BF40;
    animation: pulseBorder 1.5s infinite;
    z-index: 0;
}

/* Specific style for the span with ID "live-time-span-2" */
#live-time-span-2 {
    color: #84BF40;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

#live-time-span-2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Adjust as needed to align with the bottom */
    left: 10%;
    /* Start position to center the animation */
    height: 2px;
    /* Thickness of the bottom border */
    width: 0;
    background-color: #84BF40;
    animation: pulseBorder 1.5s infinite;
    z-index: 0;
}

/** Live match CSS for sticky nav ends **/

/** Live match CSS **/
@keyframes pulseBorder {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        left: 0;
        width: 80%;
        /* Decreased from 100% to 80% */
    }

    100% {
        left: 100%;
        width: 0;
    }
}

.time-dtl {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-dtl p,
.time-dtl .live-minutes {
    margin: 0;
}

.time-dtl .live-minutes {
    color: #84BF40;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.time-dtl .live-minutes::before {
    content: '';
    position: absolute;
    bottom: -2px;
    /* Adjust as needed to align with the bottom */
    left: 10%;
    /* Start position to center the animation */
    height: 2px;
    /* Thickness of the bottom border */
    width: 0;
    background-color: #84BF40;
    animation: pulseBorder 1.5s infinite;
    z-index: 0;
}

/** Live match CSS ends **/

/* .box-nav-tabs .nav .nav-item button.active {
    background-color: transparent;
    color: var(--bs-danger) !important;
  }
.box-nav-tabs .nav .nav-item button.active::after {
    content: "";
    border-bottom: 4px solid var(--bs-danger);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0;
  } */
/* .heading-nd-btn .arrow-btn:active{
    color: #0055B8;
    border: 2px solid var(--Neutral-900, #0055B8);
} */
.home-card-big {
    margin-top: 22px;
}

.home-card-big .home-card-img {
    border-radius: 10px;
    aspect-ratio: 680 / 383;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.home-card-big:hover .img-wrapper img {
    transform: scale(1.1) !important;
    transition: transform .3s ease-in-out !important;
}

.home-card-big .tag-nd-heading {
    position: relative !important;
    padding-top: 1rem;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start
}

.home-card-big .tag-nd-heading h3 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.home-big-card-lower-div {
    padding-top: 20px;
}

.home-big-card-lower-div span {
    color: #333842;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: block;
    /* 157.143% */
}

.home-big-card-lower-div p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    padding-top: 10px;
}

.rm-link-wht {
    color: #fff;
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    text-transform: uppercase;
    text-decoration: underline;
    cursor: pointer;
}

.rm-link-wht:hover {
    text-decoration: none;
    color: #fff;
}

.rm-right-arrow {
    padding-left: 05px;
}

.rm-link-wht:hover .rm-right-arrow {
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.right-col .main-right {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-basis: 100%;
    justify-content: space-between;
    position: relative;
}

.right-col .heading-nd-btn {
    align-items: center !important;
}

.main-right .inside-img-content-right .card-img-sml {
    width: 200px;
    height: 111px;
    aspect-ratio: 200 / 111;
    object-fit: cover;
    border-radius: 8px;
}

/* .mn-cntnr-amec-star .right-col:nth-child(2){
    padding-bottom: 50px !important;
    border-bottom: solid 1px rgba(102, 112, 133, 0.35) !important;
} */
.right-col .main-right:nth-child(1) {
    padding-top: 20px;
    padding-bottom: 15px !important;
    /* border-bottom: solid 1px rgba(102, 112, 133, 0.35) !important; */
}

.right-col .main-right:nth-child(2) {
    padding-top: 15px;
}

.right-col .main-right:nth-child(3) {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* .custome-hr-home-cards{
    margin: 50px 0px;
} */
.ame-tag {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    border-radius: 28px;
    background: var(--main-clr);
    padding: 4px 8px;
}

.mn-cntnr-amec-star {
    background: url(..//images/red-star.png) no-repeat 100% -3% !important;
    background-position: right;
    background-size: contain;
    padding-top: 4rem;
    padding-bottom: 3rem;
    /* background-repeat: no-repeat !important; */
}

.mn-cntnr-amec-star .right-col {
    padding-top: 30px;
    background: #ffffffd4;
}

/* .mn-cntnr-amec-star .cards-sec-home {
    padding-top: 5px;
    background: #ffffffd4;
} */
.right-col .main-right h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    padding: 5px 0 2px 0;
    align-self: stretch;
}

.right-col .main-right .card-date {
    color: #333842;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: block;
    /* 157.143% */
}

.right-col .main-right p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    margin-top: 5px;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.card-rows-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

.card-rows-bottom .single-card-home {
    /* width: 24%; */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aufc-tag {
    color: #2254DB;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    border-radius: 23.42px;
    background: #FFF;
    padding: 4px;
}

.awch-tag {
    color: #fff;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    border-radius: 23.42px;
    background: var(--Women-500, #00B451);
    padding: 4px;
}

.card-rows-bottom .single-card-home h5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    padding-top: 10px;
}

.card-rows-bottom .single-card-home .card-date {
    color: #333842;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.card-rows-bottom .single-card-home p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.bn-btn-mob .arrow-btn {
    display: none;
}

.ad-box-home {
    padding: 20px 0;
    width: 728px;
    height: 430px;
    /* aspect-ratio: 16/9; */
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    /* padding: 20px 0; */
    display: block;
    margin: auto;
}

.ad-box-home img {
    width: 100%;
    /* object-fit: contain; */
}

#home-videos-section {
    background: var(--Neutral-100, #E0E2E7);
}

.heading-nd-btn-blck {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0px;
}

.heading-nd-btn-blck h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
}

.heading-nd-btn-blck .arrow-btn {
    color: #14161B;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--Neutral-900, #14161B);
    text-decoration: none;
}

.heading-nd-btn-blck .arrow-btn:hover {
    color: #000;
    border: 2px solid #000;
}

.arrow-btn img {
    padding-left: 3px;
}

#tournament-section-home {
    background: url(../images/tournament-part-logo.png), linear-gradient(0deg, #E0E2E7 0%, #FFF 100%);
    background-repeat: no-repeat;
    background-position: right center;
}

#tournament-section-home .main-tournament-row .mn-tournament-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}

/** Tabs on homepage **/
/* Set a fixed height for the tabs container */
.horizontal-scroll ul.nav-tabs {
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
}

.horizontal-scroll {
    overflow-x: overlay;
    overflow-y: hidden;
    height: 40px;
    /* border-bottom: solid 4px rgba(102, 112, 133, 0.35); */
    z-index: 0 !important;
}

/* .horizontal-scroll .nav-tabs {
    position: absolute;
    z-index: 999999999;
  } */
/* Ensure each tab has enough space */
.horizontal-scroll .nav-item {
    flex: 0 0 auto;
    padding: 3px 1rem 0px;
    /* margin-right: 15px; Adjust as needed */
}

/* Optional: Style the active tab differently */
.horizontal-scroll .nav-link.active {
    font-weight: bold;
    color: #2254DB;
    /* Adjust color as needed */
}

.horizontal-scroll .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: transparent;
    background-color: transparent;
    border-bottom: 4px solid #2254DB;
    color: #2254DB !important;
    border-radius: 0px !important;
    padding-bottom: 7px !important;
    transition: all 0.3s ease-out;
}

.horizontal-scroll .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    color: #495057 !important;
}

.horizontal-scroll .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom: 4px solid #2254DB;
    border-radius: 0px !important;
}

.horizontal-scroll .nav-link {
    display: block;
    padding: 0px 0px !important;
    color: #000;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 19.573px;
    font-style: normal;
    font-weight: 700;
    line-height: 24.466px;
    padding-bottom: 7px !important;
    transition: all 0.3s ease-in;
    /* 125% */
}

/* width */
.horizontal-scroll::-webkit-scrollbar {
    width: 5px;
    height: 0px;
    margin-top: 10px;
    opacity: 0.1;
}

/* Track */
.horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/** Tabs CSS ends **/
.home-videos-cntnr .card-hero .hero-img {
    display: flex;
    flex-direction: column;
}

.home-videos-cntnr .card-hero .video-info {
    margin-bottom: 1rem;
}

.home-videos-cntnr .sub-videos-div .right-img .video-img {
    width: 200px;
    aspect-ratio: 200 / 112;
    border-radius: 8px;
    object-fit: cover;
}

.home-videos-cntnr .ame-tag {
    display: flex;
    align-self: flex-start;
    margin-bottom: 10px;
}

.home-videos-cntnr .acch-tag {
    display: flex;
    align-self: flex-start;
    margin-bottom: 10px;
}

.home-videos-cntnr .aufc-tag {
    display: flex;
    align-self: flex-start;
    margin-bottom: 5px;
}

.home-videos-cntnr .awch-tag {
    display: flex;
    align-self: flex-start;
    margin-bottom: 10px;
}

.home-videos-cntnr .title-nd-link {
    display: flex;
    flex-direction: column;
}

.home-videos-cntnr .video-listing-card .title-nd-link h5 {
    padding-top: 0px;
}

.home-videos-cntnr .video-listing-card .hero-img h2 {
    padding-top: 5px;
}

.home-videos-cntnr .sub-news-div {
    padding: 2.3rem 0px
}

.home-videos-cntnr .sub-news-div:last-child {
    border-bottom: 0px;
}

.home-videos-cntnr .video-listing-card .title-nd-link h5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    min-height: 72px;
}

.home-videos-cntnr .card-hero .hero-img {
    border-bottom: 0px;
}

.home-videos-cntnr .related-videos-row {
    padding-bottom: 2rem;
}

.com-row {
    margin-top: 5rem;
    padding-bottom: 4rem;
}

/* .comm-part{
    border-radius: var(--components-gap-rad-500, 16px);
background: url('../images/community-background-image.png');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
position: relative;
} */
.container-fluid .comm-part {
    margin-top: 40px !important;
}

.comm-part .bg-com {
    position: relative;
    width: 100%;
    height: 436px;
}

.comm-part .left-img-part {
    width: unset;
    flex: none;
}

.comm-part .right-con-part {
    flex: none;
    max-width: none;
}

.left-img-part .player-img {
    position: absolute;
    left: 15px;
    bottom: 0px;
    width: 465px;
}

.right-con-part {
    position: relative;
}

.inner-con-part {
    position: absolute;
    padding-right: 20px;
    padding: 15px 20px 15px 0px;
    left: 500px;
    bottom: 60px;
    /* top: -340px; */
}

.inner-con-part h5 {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.inner-con-part h3 {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 88px;
    font-style: normal;
    font-weight: 700;
    line-height: 88px;
    /* 100% */
    letter-spacing: -1.76px;
    text-transform: uppercase;
}

.inner-con-part p {
    color: #FFFFFF;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    padding-top: 30px;
    padding-bottom: 40px;
}

.solid-btn {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    border-radius: var(--components-gap-rad-300, 12px);
    background: var(--Neutral-100, #E0E2E7);
    padding: 16px 24px;
    margin-top: 1rem;
}

.solid-btn:hover {
    background-color: #fff;
    color: #030303;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.solid-btn:active {
    background: var(--main-active);
    text-decoration: none;
    transition: 0.2s ease-in-out;
    color: #FFFFFF;
}

/** homepage ends **/
/** our partners css starts **/
.our-partners .mw-920 {
    width: 100%;
    max-width: 920px;
    margin: auto;
}

.our-partners .sub-div-top-partners {
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    display: flex;
    padding: 40px var(--gap-padding-500, 16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.our-partners .sub-div-top-partners h3 {
    color: #000;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.sub-div-top-partners .partner-images {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 135px;
}

/** our partners css ends/
/** Championship match overview page starts **/
#match-overview {
    background: #00296d;
}

#match-overview .mn-outr-dv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

#match-overview .mn-left-part-scr,
.mn-right-part-scr {
    /* flex-basis: 50%; */
    flex-basis: 65%;
}

#away-score, #home-score{
    font-size: 32px;
    color: #FFFFFF;
}

.mn-outr-dv .mn-left-part-scr {
    background-color: #00296d;
    height: 472px;
    width: 100%;
    padding: 0 15px;
}

.mn-left-part-scr .first-card-match {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 140px;
    gap: 5px;
}

.mn-left-part-scr .first-card-match .flag-nd-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

#away-score, #home-score {
    font-size: 32px;
    color: #FFFFFF;
}

.mn-left-part-scr .team-flag-name-nd-score {
    width: 33.3%;
    /* width: 30%; */
}

.mn-left-part-scr .vs-dtl-main {
    width: 33.3%;
    /* width: 40%; */
}

.team-flag-name-nd-score a:hover {
    text-decoration: none !important;
}

.mn-left-part-scr .first-card-match .vs-dtl-main h3 {
    color: #fff;
    margin: 0;
}

.mn-left-part-scr .first-card-match .flag-nd-name h4 {
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    /* 116.667% */
}

.mn-left-part-scr .first-card-match .other-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mn-left-part-scr .first-card-match .grp-dtl p {
    color: #fff;
}

.mn-left-part-scr .first-card-match .grp-dtl span {
    color: #fff;
}

.mn-outr-dv .mn-right-part-scr {
    position: relative;
}

.mn-left-part-scr .first-card-match .time-dtl h4 {
    font-family: var(--font-oswald-700);
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.mn-left-part-scr .first-card-match .time-dtl p {
    color: #fff;
    margin: 0;
    text-align: center;
}

.other-details .mtch-dtl-mo p {
    color: #FFF;
    font-family: var(--font-satoshi-700);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 125% */
    margin: 0;
}

.other-details .mtch-dtl-mo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mn-right-part-scr .ban-img-mo {
    height: 472px;
    width: 100%;
    object-position: center;
    object-fit: cover;
    /* position: relative; */
}

.mn-right-part-scr .notify-btn {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    border-radius: var(--components-gap-rad-300, 12px);
    background: var(--main-clr);
    padding: 16px 24px;
    position: absolute;
    top: 40%;
    left: 35%;
}

.notify-btn .notify-img {
    padding-left: 20px;
    vertical-align: bottom;
}

.tabs-mo-fst .nav-tabs {
    justify-content: center;
    background: #FFFFFF;
    border: none;
    box-shadow: 0px -1px 0px 0px rgba(109, 123, 144, 0.16) inset, 0px 8px 16px 0px rgba(109, 123, 144, 0.24);
}

.tabs-mo-fst .nav-tabs .nav-link {
    color: #000 !important;
    padding-bottom: 7px;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all 0.15s ease-in;
    /* 120% */
}

.tabs-mo-fst .nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--main-clr) !important;
}

.tabs-mo-fst .nav-tabs .nav-link.active {
    border-color: transparent;
    background-color: transparent;
    border-bottom: 4px solid var(--main-clr);
    color: var(--main-clr) !important;
    /* padding-left: 50px; */
}

#tabs-content-sec .tabs-mo-fst-cntnr {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.rd-box {
    border-radius: 16px;
    background: linear-gradient(0deg, var(--main-clr) 0%, rgba(255, 0, 0, 0.00) 100%), linear-gradient(0deg, var(--main-hover) 0%, var(--main-hover) 100%), lightgray 50% / cover no-repeat;
    background-blend-mode: plus-darker, soft-light, normal;
    padding: 40px;
    /* max-width: 680px; */
    margin-bottom: 30px;
}

.rd-box h3 {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.rd-box h2 {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    /* 100% */
    letter-spacing: -1.44px;
    text-transform: uppercase;
}

/* form-check start */
.full-wdth {
    width: 100% !important;
}

.cart-md input[type=checkbox] {
    display: none;
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    line-height: 40px;
}

.cart-md label {
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.20);
    display: flex;
    padding: 0px 0px 14px 12px;
    gap: 8px;
    align-self: stretch;
    /* border: solid 2px green; */
    height: 45px;
    width: 100%;
    margin-top: 1px;
    font-family: var(--font-oswald-700);
    font-size: 22px;
    color: #fff;
    line-height: 40px;
    /* width: calc(100% - 130px); */
    width: 470px;
}

.rd-box .cart-md:hover {
    opacity: 0.8;
    transition: all 0.3s;
}

.pool-submit-div .cart-md label {
    width: 50%;
    cursor: default;
    line-height: 24px;
}

.cart-md {
    position: relative;
}

.cart-md:hover {
    position: relative;
}

.cart-md input+label:hover {
    background: #f78484;
    cursor: pointer;
}

.cart-md input:checked+label:before {
    content: "\f00c";
    font: normal normal normal 14px / 1 FontAwesome;
    position: absolute;
    right: 15px;
    transform: translate(0px, 8px);
    background: #fd7575;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: -5px -3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

input[type="checkbox"]:enabled:checked {
    background-color: blue !important;
    color: white;
}

.cart-md input:checked+label {
    background: var(--main-clr);
}

.chk-form-mo .btn {
    color: var(--Neutral-100, #E0E2E7);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    padding: 16px 20px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--Neutral-100, #E0E2E7);
    background: transparent;
    margin-top: 10px;
}

/** after votes pool results percentage div **/
.cart-md label {
    border: none !important;
    background: transparent !important;
    width: 66%;
    padding: 0px 0px 0px 0px !important;
    align-items: center;
    margin-bottom: 0px;
}

.headinf-flex-h5 {
    margin-bottom: -9px;
    color: #FFFFFF;
    text-align: right;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 15px;
}

.fs-para {
    font-size: 12px;
    color: #FFFFFF;
    text-align: right;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
    padding-bottom: 5px;
}

.chk-form-mo input[type=radio] {
    display: none;
}

.cart-md input:checked+label:before {
    top: 6px;
}

.flex-heading-content {
    display: flex;
    flex-direction: column;
    align-items: end;
    /* display: none; */
}

.cart-md {
    border-radius: 8px;
    border: 2px solid var(--Base-w300, rgba(255, 255, 255, 0.35));
    background: var(--Base-w100, rgba(255, 255, 255, 0.20));
    display: flex;
    padding: 0px 0px 0px 12px !important;
    gap: 8px;
    align-self: stretch;
    height: auto !important;
    width: 100%;
    margin-top: 1px;
    font-family: var(--font-oswald-700);
    font-size: 22px;
    color: #fff;
    line-height: 40px;
    /* width: 470px; */
    margin-bottom: 15px;
}

.hdng-nd-flg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.hdng-nd-flg img {
    width: 80px;
}

.inisde-mn-dv-ov .trnament-cus-table tbody .qlfd:after {
    bottom: 3px;
}

/** after votes pool results percentage div ends**/
/* form-check end */
/* .tabs-mo-fst .nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom: 4px solid #2254DB;
} */
.tabs-mo-fst-cntnr .inisde-mn-dv-ov {
    border-radius: var(--components-gap-rad-500, 16px);
    border: 1px solid var(--Neutral-100, #E0E2E7);
    background: #FFFFFF;
    padding: 18px;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
}

.inisde-mn-dv-ov h3 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
}

.inisde-mn-dv-ov .mtch-div-sml {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
}

.inisde-mn-dv-ov .mtch-div-sml a {
    color: #333842;
    flex-basis: 49.5%;
}

.inisde-mn-dv-ov .trnament-cus-table .flg-th a {
    font-size: 14px;
    line-height: 16px;
}

.inisde-mn-dv-ov .mtch-div-sml a:hover {
    text-decoration: none;
}

.inisde-mn-dv-ov .mtch-div-sml a:hover p {
    text-decoration: none !important;
    color: var(--main-hover);
}

.inisde-mn-dv-ov .insd-tm-flg {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    align-items: center;
}

.inisde-mn-dv-ov .insd-rvrs {
    flex-direction: row-reverse;
}

.inisde-mn-dv-ov .insd-tm-flg p {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    /* 125% */
    margin: 0;
    text-transform: uppercase;
}

.inisde-mn-dv-ov .insd-tm-flg img {
    width: 30px;
}

.inisde-mn-dv-ov .table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-top: 20px;
}

.inisde-mn-dv-ov .table td,
.inisde-mn-dv-ov .table th {
    /* border-bottom: 1px solid #ddd; */
    padding: 8px;
    text-align: center;
}

/* .inisde-mn-dv-ov .table th {
    background-color: #f2f2f2;
} */
.inisde-mn-dv-ov .table td {
    color: #000;
}

.inisde-mn-dv-ov .table .text-td {
    color: var(--Neutral-500, #667085);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.inisde-mn-dv-ov .location-right-insd {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    margin-top: 10px;
}

.loc-nd-stg-dv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.loc-nd-stg-dv h4 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.loc-nd-stg-dv h5 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    margin: 0;
}

.loc-nd-stg-dv h6 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 157.143% */
    margin: 0;
}

/** For sticky nav in match overview **/
.tabs-nav.stcky-nav {
    background: #EFF9FF;
    position: sticky;
    /* position: fixed;
    width: 100%; */
    top: 0;
    /* transition: all 0.6s ease-in-out; */
    z-index: 111110;
    opacity: 0;
    display: none;
}

.tabs-nav.stcky-nav.fixed {
    background: #00296d;
    /* position: sticky; */
    position: fixed;
    width: 100%;
    top: 110px;
    /* padding: 10px 0 0 0; */
    /* transition: all 0.6s ease-in-out !important; */
    z-index: 111110;
    opacity: 1;
    display: block;
    z-index: 9999;
    animation: slideDown 0.35s ease-out;
    padding-top: 7px;
    padding-bottom: 7px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-tab-sticky.fixed {
    background: #000;
    position: fixed;
    width: 100%;
    top: 186px;
    transition: all 0.6s ease-in-out;
    z-index: 9999;
}

/* .tabs-nav.stcky-nav .cnt-d-nn{
display: none;
}
.tabs-nav.stcky-nav .cnt-db{
display: block;
} */
.tabs-nav .stcky-nav-cntnr {
    padding-top: 5px;
    padding-bottom: 10px;
}

.match-listings .stcky-nav-cntnr {
    padding-top: 10px;
    padding-bottom: 10px;
}

.tabs-nav .inside-top-stcky-dv-mo {
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inside-top-stcky-dv-mo .frst-part {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ag-scr-md {
    font-size: 16px;
    font-family: var(--font-satoshi-500);
    color: #FFF;
}

.mn-left-part-scr .first-card-match .time-dtl p,  .mn-left-part-scr .first-card-match .time-dtl span{
    color: #fff;
    margin: 0;
    text-align: center;
}

.inside-top-stcky-dv-mo .frst-part .insd-frst-prt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.inside-top-stcky-dv-mo .frst-part p {
    color: #FFFFFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
}

.inside-top-stcky-dv-mo .frst-part img {
    height: 20px;
}

.inside-top-stcky-dv-mo .mid-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-basis: 50%;
}

.inside-top-stcky-dv-mo .mid-part a:hover {
    text-decoration: none;
}

.mid-part .team-fp {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mid-part .team-fp h4 {
    color: #FFFFFF;
    font-family: var(--font-satoshi-700);
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    /* 116.667% */
    margin: 0;
    text-transform: uppercase;
}

.mid-part .team-fp img {
    width: 36px;
}

.mid-part .team-fp-rvrs {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.mid-part .score-inside-mid-part {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex: 1 1 auto;
    gap: 5px;
}

.mid-part .score-inside-mid-part p {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.mid-part .score-inside-mid-part .scr-dtl-insd {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mid-part .score-inside-mid-part .scr-dtl-insd h3 {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.mid-part .score-inside-mid-part .scr-dtl-insd span {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 13px;
    /* 166.667% */
}

.inside-top-stcky-dv-mo .btn-dv .notify-btn {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: var(--components-gap-rad-300, 12px);
    background: var(--main-clr);
}

/** Group stage tab inside match overview **/
#stage-tab .tab-gs-main-dv {
    margin-top: 20px;
    border-radius: 12px;
    border: 1.439px solid var(--AUFC-a100, rgba(0, 41, 109, 0.20));
    background: #FFF;
    /* padding: 0 15px 0 15px; */
    overflow-x: auto;
}

.trnament-cus-table .flg-th {
    /* width: 30%; */
    display: flex;
    gap: 2px;
    align-items: center;
    position: relative;
    text-transform: uppercase;
}

.trnament-cus-table .flg-th a {
    color: #333842;
    display: flex;
    align-items: center;
    text-align: left;
}

.trnament-cus-table .flg-th a:hover {
    color: var(--main-hover);
    text-decoration: none;
}

/** group stage ends **/
/** lineups under match overview pages **/
.tab-lu-main-dv .mn-team-stats {
    /* display: flex; */
    max-width: 920px;
}

.mn-team-stats-internal {
    display: flex;
}

.mn-team-stats-internal table {
    border-collapse: collapse;
    width: 50%;
    padding: 24px 0;
}

.mn-team-stats-internal table th,
td {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
}

.mn-team-stats-internal th,
td {
    border-bottom: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    border-top: none !important;
    padding: 24px;
    /* text-align: left; */
}

.mn-team-stats-internal .table-bg-top {
    background: var(--Neutral-a100, rgba(102, 112, 133, 0.20));
}

.table-trans-top-internal th {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mn-team-stats-internal table th .cflg {
    width: 30px;
}

.table-trans-top th {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.table-bg-top th {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
}

.teams-data {
    display: flex;
}

.teams-data .team-1,
.team-2 {
    width: 50%;
}

.teams-data .lu-team table {
    width: 100%;
}

.teams-data .lu-team td,
th {
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    border-top: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20)) !important;
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.teams-data .lu-team .scr {
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.teams-data .team-2 {
    direction: rtl;
}

.teams-data .team-2 table {
    background: var(--Neutral-a100, rgba(102, 112, 133, 0.20));
}

/* .lu-player {
    width: 80%;
} */
.mn-team-stats h3 {
    color: #f0f0f0;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    padding: 15px 0 15px 0;
    background: var(--main-clr);
    margin-bottom: 0;
    margin-top: 3rem;
}

.tab-lu-main-dv .insd-main-ho-dv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    border-top: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    padding-top: 10px;
    padding-bottom: 10px;
}

.tab-lu-main-dv .insd-main-ho-dv .fst-insd-main-ho-dv {
    width: 33.3%;
}

.tab-lu-main-dv .insd-main-ho-dv .scnd-insd-main-ho-dv {
    width: 33.3%;
}

.tab-lu-main-dv .insd-main-ho-dv .thrd-insd-main-ho-dv {
    width: 33.3%;
}

.tab-lu-main-dv .insd-main-ho-dv h5 {
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.tab-lu-main-dv .insd-main-ho-dv h4 {
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.tab-lu-main-dv .insd-main-ho-dv p {
    color: var(--Neutral-700, #333842);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
    margin: 0;
}

/**Field in lineups **/
.football_ground {
    background: url('../images/football-field-group.png');
    background-size: contain !important;
    /* background: url(../icons/field-patches.svg), #84BF40; */
    /* background-color: #84BF40; */
    background-repeat: no-repeat;
    /* padding: 4rem 2rem 2rem 2rem; */
    padding: 2rem 2rem 2rem 2rem;
    /* max-width: 1100px; */
    margin: auto;
    border-radius: 10px;
}

.football_ground .fg-all-content {
    /* background-image: url("../icons/football-field.svg"); */
    /* height: 660px; */
    height: 771px;
    background-repeat: no-repeat;
    background-size: contain;
}

.football_ground .fg-all-content .fg-content {
    /* background-image: url("../icons/field-patches.svg"); */
    display: flex;
    align-items: center;
    height: 100%;
}

.football_ground .fg-all-content .fg-content .team-box {
    width: 50%;
    height: 100%;
    position: relative;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .player {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: -moz-max-content;
    width: max-content;
    gap: 10px;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .player span {
    flex-shrink: 0;
    color: #000;
    background-color: white;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .player p {
    color: white;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    width: 60px;
    text-align: center;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_1 {
    top: 18rem;
    left: 70px;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_2 {
    top: 10rem;
    left: 8.75rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_3 {
    bottom: 10rem;
    left: 8.75rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_4 {
    top: 3rem;
    left: 14rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_5 {
    bottom: 3rem;
    left: 14rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_6 {
    top: 18rem;
    left: 18rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_7 {
    top: 8rem;
    left: 22rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_8 {
    bottom: 8rem;
    left: 22rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_9 {
    top: 18rem;
    left: 22rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_10 {
    top: 3rem;
    right: 1rem;
}

.football_ground .fg-all-content .fg-content .team-box .inner-box .p_11 {
    bottom: 3rem;
    right: 1rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .player span {
    background-color: black;
    color: white;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .player p {
    color: black;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_1 {
    left: 0;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_2 {
    top: 8.5rem;
    left: 5rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_3 {
    bottom: 8.5rem;
    left: 5rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_4 {
    top: 6.5rem;
    left: 12.5rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_5 {
    bottom: 6.5rem;
    left: 12.5rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_6 {
    left: 9rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_7 {
    top: 12rem;
    left: 18rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_8 {
    bottom: 12rem;
    left: 18rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_10 {
    top: 4rem;
    right: 9rem;
}

.football_ground .fg-all-content .fg-content .team_b .inner-box .p_11 {
    bottom: 4rem;
    right: 9rem;
}

/*# sourceMappingURL=football.css.map */
/**Field in lineups ends **/
/** Timeline under overview CSS **/
.goal-comm-div-top {
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.first-hlf-goal-comm {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.first-hlf-goal-comm h4,
.scnd-hlf-goal-comm h4 {
    color: #FFFFFF;
    text-align: right;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.first-hlf-goal-comm span,
.scnd-hlf-goal-comm span {
    color: var(--Neutral-300, #B3B8C2);
    text-align: right;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.plyr-info {
    gap: 10px;
}

.mid-prt-goal-comm {
    flex-shrink: 0;
}

.scnd-hlf-goal-comm {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tab-tl-main-dv {
    padding: 10px 0 8rem 0;
}

.mn-tl-dv {
    border-radius: 16px;
    border: 1px solid var(--Neutral-100, #E0E2E7);
    align-items: center;
    justify-content: center;
}

.mn-tl-dv .top-scr-dv {
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 24px 5px;
}

.top-scr-dv .cntry-dtl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 33.3%;
}

.top-scr-dv .cntry-dtl a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-scr-dv .cntry-dtl a:hover {
    color: var(--main-hover);
    text-decoration: none;
}

.top-scr-dv .inr-scr-dv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 33.3%;
}

.top-scr-dv .inr-scr-dv h3 {
    color: #000;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.top-scr-dv .inr-scr-dv h4 {
    color: #000;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.top-scr-dv .cntry-dtl h3 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
    margin: 0;
    text-transform: uppercase;
}

.top-scr-dv .cntry-dtl img {
    width: 35px;
}

.mn-tl-dv .btm-timeline-dv {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.time-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btm-timeline-dv .sport-btn {
    border-radius: 8px;
    background: var(--Neutral-100, #E0E2E7);
    padding: 8px 16px;
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.btm-timeline-dv .inr-stage {
    position: relative;
    padding-bottom: 1.5rem;
    margin-top: 2rem;
    /* width: 700px; */
}

.btm-timeline-dv .inr-stage::after {
    content: "";
    border: dashed 2px #E0E2E7;
    height: 100%;
    /* background: url(../icons/tl-line.svg);
     width: 3px;
    height: 50px;
    background-repeat: no-repeat; */
    left: 49.5%;
    top: 38px;
    /* bottom: 7px; */
    position: absolute;
    display: block;
}

.btm-timeline-dv .inr-stage:last-child::after {
    display: none;
}

.inr-stage .min-dur {
    color: var(--Neutral-500, #667085);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    border-radius: 999px;
    border: 1px solid var(--Neutral-100, #E0E2E7);
    background: #FFFFFF;
    padding: 10px;
}

.inr-stage .inr-stg-dv {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 36px;
    margin-left: -12.6rem;
}

.inr-stg-dv-right {
    display: flex;
    gap: 5px;
    align-items: center;
    /* width: 320px; */
    margin-left: 12.5rem !important;
    /* margin-left: 7.7rem !important; */
}

.inr-stg-dv .player-dtl h3 {
    align-self: flex-end;
    color: var(--Neutral-900, #14161B);
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.inr-stg-dv-right .player-dtl h3 {
    align-self: flex-start;
    color: var(--Neutral-900, #14161B);
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.inr-stg-dv .player-dtl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 220px;
}

.inr-stg-dv-right .player-dtl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 220px;
}

.inr-stg-dv .player-dtl h4 {
    color: #667085;
    align-self: flex-end;
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.inr-stg-dv-right .player-dtl h4 {
    color: #667085;
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.inr-stg-dv h4 {
    color: #667085;
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.inr-stg-dv-right h4 {
    color: #667085;
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.inr-stg-dv .in-out {
    width: 32px;
    /* height: 32px; */
    object-fit: cover;
    margin-bottom: 0.4rem;
}

.inr-stg-dv .out-in {
    width: 32px;
    /* height: 32px; */
    object-fit: cover;
    margin-bottom: 0.4rem;
    rotate: 180deg !important;
}

.inr-stg-dv-right .in-out {
    width: 32px;
    height: 32px;
    object-fit: cover;
    margin-bottom: 0.4rem;
}

.inr-stg-dv-right .out-in {
    width: 32px;
    height: 32px;
    object-fit: cover;
    margin-bottom: 0.4rem;
    rotate: 180deg !important;
}

.main-comm-part {
    margin-top: 2rem;
}

.time-nd-comm-parts {
    display: flex;
    gap: 10px;
    /* position: relative; */
}

.left-timeline-div {
    /* position: relative; */
    display: flex;
    flex-direction: column;
}

.left-timeline-div .time-line {
    position: relative;
    height: 100%;
}

.left-timeline-div .time-line .img-dv::after {
    content: "";
    border: dashed 1.5px #E0E2E7;
    height: 100%;
    left: 16px;
    top: 30px;
    position: absolute;
    display: block;
}

.left-timeline-div .icn-tl {
    width: 34px;
    height: auto;
    /* margin-top: -7px; */
    flex-shrink: 0;
    background: #fff;
    z-index: 11;
    position: relative;
}

.left-timeline-div .out-in {
    rotate: 180deg;
}

.right-comm-div {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    flex-direction: column;
}

.inside-com-part-main {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex: 1 0 0;
    /* min-height: 81px; */
    padding: 2px 0;
    margin: 3px 0;
    flex-shrink: 0;
    flex-basis: content;
}

.goal-div {
    display: flex;
    flex-direction: column;
    background: var(--main-clr);
    /* padding: 4px 0 0 3px; */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    /* min-height: 250px; */
}

.goal-hdr {
    display: flex;
    padding: 8px 0 0 8px;
    gap: 10px;
    align-items: center;
    /* background: var(--main-clr); */
}

.goal-hdr p {
    color: #fff !important;
    font-family: var(--font-satoshi-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    width: 60px;
    flex-shrink: 0;
    padding: 0 0 0 4px;
}

.goal-hdr .cntry-flg {
    width: 32px;
}

.goal-hdr h4 {
    color: #fff;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
}

.goal-div .btm-cntnt {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: var(--Neutral-100, #E0E2E7);
    padding: 10px;
}

.goal-div .btm-cntnt .insd-dv-btm-cntnt {
    padding: 10px 10px 20px 105px;
}

.insd-dv-btm-cntnt p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.btm-cntnt .insd-dv-btm-cntnt .goal-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btm-cntnt .insd-dv-btm-cntnt .goal-by img {
    border-radius: 50px;
    width: 70px;
}

.btm-cntnt .insd-dv-btm-cntnt .goal-by h5 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    margin: 0;
}

.btm-cntnt .insd-dv-btm-cntnt .goal-by p {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
    margin: 0;
}

.btm-cntnt .insd-dv-btm-cntnt .goal-by p span {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
}

.inside-com-part-main .flag-part {
    flex-shrink: 0;
    width: 34px;
}

.inside-com-part-main .mins-part {
    width: 64px;
    flex-shrink: 0;
}

.inside-com-part-main .flag-part img {
    width: 32px;
}

.inside-com-part-main .mins-part p {
    color: #667085 !important;
    font-family: var(--font-satoshi-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    margin: 0;
}

.inside-com-part-main .mins-part span {
    color: #667085 !important;
    font-family: var(--font-satoshi-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    margin: 0;
}

.main-time-line .comm-part {
    margin: 0px 0px 12px 0px;
    flex-grow: 1;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.main-time-line .comm-part h3 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    align-self: stretch;
}

.main-time-line .comm-part h5 {
    color: var(--Neutral-500, #667085);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    align-self: stretch;
    margin: 0;
}

.main-time-line .comm-part h6 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    align-self: stretch;
}

.main-time-line .comm-part p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    align-self: stretch;
    margin: 0;
}

/** New Timeline CSS **/
.goal-div {
    min-height: 81px;
}

.main-time-line {
    position: relative;
}

.main-time-line::before {
    position: absolute;
    content: "";
    border: dashed 2px #E0E2E7;
    height: 100%;
    left: 16px;
    top: 30px;
}

.img-timeline-01 {
    width: 34px;
    z-index: 11;
    flex-shrink: 0;
    flex-basis: 34px;
    background: #fff;
}

.img-timeline-01 img {
    margin-left: 1.5px;
    width: 32px;
}

.goal-div {
    display: none;
}

.flag-imgs img {
    width: 32px;
}

.heading-h5 h6 {
    font-size: 15px;
}

.comm-part-001 {
    width: 100%;
    border-bottom: 1px solid;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.heading-h5 {
    width: 60px;
}

.heading-h5 h5 {
    color: var(--Neutral-500, #667085);
    font-family: var(--font-satoshi-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

.gaol-dv {
    border: none !important;
    align-self: center;
}

.comm-part-001 h4 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.comm-part-001 p {
    color: var(--Neutral-500, #667085);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.comm-part-001 h6 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: capitalize;
    /* 120% */
}

.flex-content {
    display: flex;
    gap: 15px;
    align-items: baseline;
}

.flex-content-flag {
    display: flex;
    width: 100%;
    gap: 10px;
    /* align-items: center; */
}

.img-hidden {
    visibility: hidden;
}

.flex-content-heading-bg {
    display: flex;
    width: 100%;
    background: var(--main-clr);
    padding: 10px 10px 10px 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    align-items: center;
}

.flex-content-heading-bg-grey {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background: var(--Neutral-100, #E0E2E7);
    padding: 10px;
    width: 100%;
    padding-left: 80px;
    padding-right: 40px;
}

.goal-by img {
    /* border-radius: 50px; */
    width: 30px;
    height: auto;
}

.goal-by {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.heading-001 {
    /* align-items: center; */
    display: flex;
    gap: 10px;
    /* flex-direction: column; */
    margin-top: 22px;
    margin-left: 13px;
}

.heading-001 span {
    color: #667085;
}

.flag-imgs {
    flex-shrink: 0;
    width: 30px;
}

.loadmorebtn {
    margin-top: 50px;
}

.loadmorebtn .lm-btn {
    text-align: center;
    display: block;
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 2px solid var(--main-clr);
    padding: 12px 18px;
    width: 150px;
    margin: auto;
    cursor: pointer;
}

.loadmorebtn .lm-btn:hover {
    text-decoration: none;
    color: var(--main-hover);
    border-color: var(--main-hover);
}

/** New Timeline CSS ends **/
/** Timeline under overview CSS ends **/
/** Statistics under overview CSS **/
.mn-stts-dv .top-scr-dv {
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.mn-stts-dv .btm-stts-dv .innr-btm-stts-dv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

@keyframes growProgressBar {

    0%,
    33% {
        --pgPercentage: 0;
    }

    100% {
        --pgPercentage: calc(var(--value) / var(--value-max) * 100);
    }
}

[property*="--pgPercentage"] {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}

.btm-stts-dv .progress-bar {
    --size: 56px;
    --fg: var(--main-clr);
    --bg: #E0E2E7;
    --pgPercentage: calc(var(--value) / var(--value-max) * 100);
    animation: growProgressBar 3s 1 forwards;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0),
        conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.btm-stts-dv .pb-blck {
    --fg: #000 !important;
    --bg: #E0E2E7;
}

.btm-stts-dv .innr-btm-stts-dv p {
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
    /* 144.444% */
}

.btm-stts-dv .progress-bar::before {
    counter-reset: percentage calc(var(--value) / var(--value-max) * 100);
    content: counter(percentage) '';
}

/* segmented lines */
.btm-stts-dv .sgmnt-bars {
    margin-top: 5rem;
    position: relative;
}

.sgmnt-bars .segmented-bar {
    display: flex;
    height: 6px;
    margin-bottom: 15px;
}

.sgmnt-bars .segment {
    flex-grow: 1;
    text-align: center;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    transition: width 0.5s;
    /* Smooth transition for width changes */
    position: relative;
}

.segment .nmbr-spn {
    position: absolute;
    top: -45px;
    left: 15px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #14161B;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.sgmnt-bars .player1 {
    background-color: #000;
    /* background-image: linear-gradient(133deg, #000000 98%, #ffffff00 93%); */
}

.sgmnt-bars .player2 {
    background-color: var(--main-clr);
    /* background-image: linear-gradient(316deg, var(--main-clr) 98%, #ffffff 96%); */
}

.segment .nmbr-spn-rght {
    position: absolute;
    color: #14161B;
    top: -45px;
    right: 15px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.segment-data {
    position: absolute;
    display: block;
    margin-left: auto;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--Neutral-900, #14161B);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

.btm-stts-dv h4 {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    background: var(--main-clr);
    padding: 16px 0;
    margin: 3rem 0 0 0;
}

/** Statistics under overview CSS ends**/
.table-trans-top th a {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.table-trans-top th a:hover {
    text-decoration: none;
    color: var(--main-hover);
}

.table-trans-top tr a {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
}

.table-trans-top tr a:hover {
    text-decoration: none;
    color: var(--main-hover);
}

.table-bg-top tr a {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
}

.table-bg-top tr a:hover {
    text-decoration: none;
    color: var(--main-hover);
}

/** match overview ends **/
/** match reminder modal **/
#match-reminder-mod .modal-open .modal {
    overflow-y: hidden !important;
}

.match-reminder-modal .modal-dialog {
    margin: 15% auto;
    overflow: hidden;
}

/* .modal-dialog {
    align-items: end !important;
} */
.match-reminder-modal h5 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
    margin-top: 10px;
}

.match-reminder-modal .modal-content {
    border-radius: 20px;
}

.match-reminder-modal .on-toggle {
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    gap: 30px;
    align-items: center;
    margin: 12px 0;
}

.match-reminder-modal form .form-input {
    height: 55px;
    border-radius: 12px;
    padding-left: 35px;
    border-radius: var(--components-gap-rad-300, 12px);
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
    color: var(--Neutral-300, #B3B8C2);
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 30px 0;
}

.match-reminder-modal form .icon-01 {
    position: absolute;
    transform: translate(12px, -64px);
}

.match-reminder-modal form p {
    color: #333842;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.match-reminder-modal .input_wrapper {
    width: 50px;
}

.match-reminder-modal .input_wrapper input[type="checkbox"]:checked {
    background: #000 !important;
}

.set-btn {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-radius: var(--components-gap-rad-300, 12px);
    width: 100%;
    border: none;
    outline: none;
}

.match-reminder-modal .cb-inner h4 {
    color: #333842;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.set-btn:focus-visible {
    outline: none;
    border: none;
}

.match-reminder-modal .cb-inner h4 {
    margin: 0;
}

/** New pages mutual CSS **/
/** team detail / team general css starts **/
/** Team ranking page **/
.h4 {
    color: var(--AUFC-900, #01040A);
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
}

.slct-box-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.selectChapter {
    display: none;
}

.slct-box-tabs .form-group {
    margin: 0;
}

.slct-box-tabs .form-control {
    padding: 9px 10px;
    height: 45px;
    width: 130px !important;
    border-radius: 7px;
    box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
    color: #000;
    /* font-family: Barlow; */
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.slct-box-tabs .nav-tabs {
    border-radius: 8px;
    padding: 5px 10px 0 10px;
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px rgba(102, 112, 133, 0.24), 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset;
}

.slct-box-tabs .nav-tabs .nav-item .nav-link {
    margin: 0 10px;
    color: var(--main-clr) !important;
    border-bottom-color: transparent;
    padding-bottom: 7px !important;
    transition: all 0.3s ease-out;
}

.slct-box-tabs .nav-tabs .nav-item .active {
    border-bottom-color: var(--main-clr);
}

.team-rnk-tbl {
    border-radius: 12px;
    border: 1.439px solid var(--AUFC-a100, rgba(0, 41, 109, 0.20));
    background: var(--main-clr);
    /* padding-top: 20px; */
    overflow-x: auto;
    overflow-y: hidden;
}

.team-rnk-tbl table {
    background: #fff;
    margin-bottom: -1px;
}

.team-rnk-tbl table .flg-th {
    /* width: 30%; */
    display: flex;
    gap: 8px;
}

.team-rnk-tbl table tbody span {
    color: var(--Neutral-500, #667085);
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    width: 24px;
    /* 150% */
}

.team-rnk-tbl table thead th {
    border-top: none !important;
    border-bottom: none !important;
    color: #FFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    align-content: start;
}

.team-rnk-tbl thead {
    padding: 16px !important;
    background-color: var(--main-clr);
}

.team-rnk-tbl table tbody {
    outline: solid #efefef 1px;
}

.team-rnk-tbl table tbody .flg-th img {
    width: 24px;
}

.team-rnk-tbl table tbody .sml-gp {
    gap: 05px;
}

.plyr-cntry-nm {
    color: #667085;
    font-family: var(--font-satoshi-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 166.667% */
    margin: 0;
}

.team-rnk-tbl table tbody .flg-th .plyr-img-plyr-rnkng {
    width: 34px !important;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
}

.plyr-cntry-dv p {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
}

/** team detail **/
.top-bg-img-gen {
    position: relative;
    width: 100%;
    height: 478px;
    object-fit: cover;
}

.plyr-team-gen::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    /* opacity: 0.5; */
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 50%, #000 100%), #d3d3d300 0px -111.268px / 100% 203.31% no-repeat;
}

.btn-top-pg {
    padding-bottom: 100px;
}

.no-dcr-lnk {
    text-decoration: none;
}

.no-dcr-lnk:hover {
    text-decoration: none;
}

.plyr-info-top-insd .cmpr-btn {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    width: max-content;
    padding: 10px 16px;
    border-radius: 12px;
}

.insd-plyr-combin-dv {
    /* position: absolute;
    top: 48px;
    left: 100px;
    z-index: 99; */
    position: absolute;
    top: -26rem;
    z-index: 99;
    padding: 0 15px;
}

.plyr-info-top {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    padding: 40px 0 0 0;
}

.plyr-info-top .plyr-info-top-insd {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.plyr-team-gen {
    position: relative;
}

.plyr-info-top .team-gnrl-flg {
    width: 130px;
}

.plyr-info-top-insd h1 {
    color: #FFFFFF;
    font-family: var(--font-satoshi-700);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    text-transform: uppercase;
    /* 114.286% */
}

.plyr-info-top-insd h3 {
    color: #FFFFFF;
    font-family: var(--font-satoshi-700);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
    text-transform: uppercase;
    /* 114.286% */
}

.plyr-info-top-insd p {
    color: #FFFFFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
}

.plyr-info-top-insd img {
    width: 32px;
}

.navbar-team.fixed {
    position: fixed !important;
    width: 100%;
    top: 111px;
}

.heading-pls-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heading-pls-btn-mob {
    display: none;
}

.heading-pls-btn h3 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.heading-pls-btn a {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.minus-head-mob-btn {
    display: none;
}

.tab-team-overview .match-card-box {
    position: relative;
}

.insd-lsp h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
}

.insd-lsp {
    padding: 20px !important;
}

.glos-hd {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
}

.btm-nav-gloss li .nav-link {
    color: var(--Neutral-500, #667085);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
    padding: 0 10px 0 0px;
    transition: all 0.3s ease-out;
}

.key-stts-dv {
    display: flex;
    justify-content: start;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    margin: 35px 0;
}

/* .team-gen-stats .key-stts-dv {
    margin: 50px 0;
} */
.key-stts-dv .innr-key-stts-dv {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* flex: 1 0 0; */
    flex-basis: 33.3%;
    gap: 5px;
    position: relative;
    padding-left: 15px;
}

.insd-cmbn-min-dv>div {
    flex: 1 !important;
}

.key-stts-dv .innr-key-stts-dv h3 {
    color: var(--main-clr);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.key-stts-dv .innr-key-stts-dv p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.innr-key-stts-dv:before {
    content: "";
    width: 8px;
    height: 52px;
    background: url(../icons/vertical-line.svg);
    background-repeat: no-repeat;
    left: 0px;
    bottom: -7px;
    position: absolute;
    display: inline-block;
}

.outer-div-cmbn .insd-insd-cmbn-min-dv {
    flex-basis: 33.3%;
    /* min-width: 130px; */
}

/** team genral overview ends **/
/** team general matches starts **/
.match-card-box {
    position: relative;
}

.team-gen-matches .match-card-box {
    margin: 15px 0;
    position: relative;
}

/** team general matches ends **/
/** Team general stats starts **/
.trnmnt-bg {
    color: #f0f0f0;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    padding: 15px 0 15px 0;
    background: var(--main-clr);
    margin-bottom: 0;
    margin-top: 3rem;
}

.cmbn-maj-min-dvz {
    display: flex;
    padding: 21px 0px;
    align-items: flex-start;
    gap: 40px;
}

.cmbn-maj-min-dvz .innr-key-stts-dv {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1 0 0;
    gap: 10px;
    position: relative;
    padding-left: 15px;
}

.cmbn-maj-min-dvz .innr-key-stts-dv h3 {
    color: var(--main-clr);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0;
}

.cmbn-maj-min-dvz .innr-key-stts-dv p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.cmbn-maj-min-dvz .insd-cmbn-min-dv {
    display: flex;
    /* width: 560px; */
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 20px;
}

.outer-div-cmbn {
    flex: 2 0 0;
}

.insd-cmbn-min-dv h4 {
    color: #000;
    text-align: left;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.insd-cmbn-min-dv p {
    color: var(--Neutral-900, #14161B);
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.key-stts-dv-pd-page .innr-key-stts-dv {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.key-stts-dv-pd-page .innr-key-stts-dv h3 {
    font-size: 24px;
    line-height: 24px;
    color: #000000;
}

/** Team general stats ends **/
/** Team gen squads starts **/
.tab-insd-team-gen-squads .trnmnt-bg {
    margin-top: 0;
}

.tab-insd-team-gen-squads .insd-sqd-dv {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: stretch;
    padding: 8px 16px 12px 16px;
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
    flex-shrink: 0;
}

.tab-insd-team-gen-squads .insd-sqd-dv .insd-sqd-dv-itm {
    min-width: 320px;
    color: var(--AUFC-900, #01040A);
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
    /* 144.444% */
}

.tab-insd-team-gen-squads .insd-sqd-dv .cntry-flg-insd {
    width: 18px;
    flex-shrink: 0;
}

.tab-insd-team-gen-squads .insd-sqd-dv .plyr-img {
    width: 30px;
    flex-shrink: 0;
}

.tab-insd-team-gen-squads .insd-sqd-dv h5 {
    color: var(--AUFC-900, #01040A);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
    margin: 0;
}

.insd-sqd-luf {
    padding: 20px !important;
    margin-bottom: 2rem;
}

.insd-sqd-luf h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.insd-main-field-div-lft {
    background: url(../icons/fancy-field-mob.svg), #a0a0a0;
    padding: 1rem 0.5rem 1rem 0.5rem;
    height: 460px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.insd-main-field-div-lft .inner-box .player {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: -moz-max-content;
    width: max-content;
    gap: 5px;
}

.insd-main-field-div-lft .inner-box .player span {
    color: #FFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 9.756px;
    font-style: normal;
    font-weight: 700;
    line-height: 9.756px;
    /* 100% */
    letter-spacing: 0.195px;
    text-transform: uppercase;
    border-radius: 43.83px;
    background: #000;
    width: 16px;
    height: 16px;
    padding: 2px 1px 5px 2px;
    margin: 0;
}

.insd-main-field-div-lft .inner-box .player p {
    color: #000;
    font-size: 10px;
    line-height: 12px;
    margin: 0;
    width: 50px;
    text-align: center;
}

.insd-main-field-div-lft .inner-box .p_1 {
    left: 165px;
    top: 165px;
}

.insd-main-field-div-lft .inner-box .p_2 {
    right: 100px;
    top: 205px;
}

.insd-main-field-div-lft .inner-box .p_3 {
    left: 100px;
    top: 205px;
}

.insd-main-field-div-lft .inner-box .p_4 {
    right: 80px;
    top: 270px;
}

.insd-main-field-div-lft .inner-box .p_5 {
    left: 80px;
    top: 270px;
}

.insd-main-field-div-lft .inner-box .p_6 {
    left: 165px;
    top: 320px;
}

.insd-main-field-div-lft .inner-box .p_7 {
    right: 120px;
    top: 380px;
}

.insd-main-field-div-lft .inner-box .p_8 {
    left: 120px;
    top: 380px;
}

.insd-main-field-div-lft .inner-box .p_09 {
    right: 60px;
    top: 410px;
}

.insd-main-field-div-lft .inner-box .p_10 {
    left: 60px;
    top: 410px;
}

.insd-main-field-div-lft .inner-box .p_11 {
    left: 165px;
    top: 440px;
}

.main-field-div-lft h5 {
    color: #01040A;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    margin-top: 15px;
}

.insd-sqd-luf .mid-part-sqd-lf {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.mid-part-sqd-lf .team-fp-lf {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mid-part-sqd-lf .team-fp-rvrs {
    flex-direction: row-reverse;
}

.mid-part-sqd-lf a:hover {
    text-decoration: none;
}

.mid-part-sqd-lf a:hover h6 {
    color: var(--main-hover) !important;
}

.insd-sqd-luf .mid-part-sqd-lf .team-fp-lf h6 {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
}

.insd-sqd-luf .mid-part-sqd-lf .scr-dtl-insd p {
    color: var(--Neutral-500, #667085);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    margin: 0;
}

.insd-sqd-luf .mid-part-sqd-lf .team-fp-lf img {
    width: 30px;
}

.main-field-div-lft .td-btn {
    width: 100% !important;
    display: block;
    text-align: center;
    text-transform: uppercase;
}

/** Team general / team details css ends **/
/** player details css starts **/
.plyr-info-sidebar .plyr-info-sidebar-insd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
}

.plyr-info-sidebar .plyr-info-sidebar-insd h4 {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    text-transform: capitalize;
}

.plyr-info-sidebar .plyr-info-sidebar-insd p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
}

.plyr-info-sidebar-insd img {
    width: 56px;
}

.fade {
    /* opacity: 0; */
    transition: opacity 0.3s ease-in-out;
}

/* .fade.show {
    opacity: 1;
} */
/** teams player details page ends **/
/** stats page css **/
.mn-cntnr-amec-star .cs-stats-col {
    padding-top: 10px;
    padding-bottom: 70px;
}
.stats-year{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stats-year .form-control{
    box-shadow: 0px 1px 2px 0px rgba(102, 112, 133, 0.24), 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset;
    border-radius: 10px;
}

.stats-heading-pls-btn {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-bottom: 10px;
}

.cs-stats-col h1 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 20px;
}

.cs-stats-goals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 16px;
    border: 12px solid var(--main-clr);
    background: var(--main-clr);
}

.cs-stats-goals h2 {
    color: #FFFFFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 120px;
    /* 100% */
    letter-spacing: -2.4px;
    text-transform: uppercase;
    margin: 0;
}

.cs-stats-col .cs-stats-col-inr-scnd {
    border-radius: 16px;
    border: 12px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.92);
    padding: 2px 2px 2px 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cs-stats-col .key-stts-dv {
    margin: 30px 0;
}

.cs-stats-col .cs-stats-col-inr-scnd .insd-cmbn-min-dv {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
    justify-content: space-between;
}

.cs-stats-col-inr-scnd .insd-cmbn-min-dv .insd-cmbn-min-dv-intnl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}

.heading-pls-btn .up-mtchs {
    color: #FFFFFF;
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
    border-radius: var(--components-gap-rad-300, 12px);
    padding: 16px 20px;
    border: solid 2px transparent;
}

.heading-pls-btn h6 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
}

/** stats-competitions css ends **/
/** Stats Team comparison css  empty-state **/
.stts-cmprzn h1 {
    color: var(--AUFC-900, #01040A);
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    padding-top: 35px;
    padding-bottom: 25px;
}

.stts-cmprzn h2 {
    color: var(--AUFC-900, #01040A);
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    padding-top: 35px;
    padding-bottom: 25px;
}

.stts-cmprzn-rw {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
    margin-bottom: 2rem;
}

.stts-cmprzn-rw .chs-team-col {
    flex: 1 1 0;
}

.chs-team-col .chs-team-col-insd .icn-cls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.chs-team-col .chs-team-col-insd .pls-icn {
    border: solid var(--main-clr) 4px;
    padding: 4px 5px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--main-clr);
}

.chs-team-col .chs-team-col-insd {
    flex: 1 1 0;
    padding: 35px 35px;
    border-radius: 16px;
    height: 165px;
    background: #FFFFFF;
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20))
        /* box-shadow: 0px 0px 0px 1px #FFF, 0px 0px 0px 3px var(--main-clr); */
}

/** after teams get assigned on top **/
.chs-team-col .team-first img {
    width: 60px
}

.chs-team-col .team-second img {
    width: 60px
}

.chs-team-col .chs-team-col-insd p {
    color: #01040A;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
}

/** after teams get assigned on top ends **/
.chs-team-col .chs-team-col-insd-actv {
    border: 1px solid var(--main-clr);
    position: relative;
}

.chs-team-col .chs-team-col-insd-actv::after {
    content: "";
    border-left: 20px solid #c3adad00;
    border-right: 20px solid transparent;
    border-top: 24px solid #e2e4e8;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.chs-team-col .chs-team-col-insd h5 {
    color: var(--main-clr);
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    text-align: center;
}

.chs-team-col-insd-vs h4 {
    color: var(--AUFC-900, #01040A);
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 100% */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    height: 133px;
}

.team-lst-cmprsn .close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    color: var(--main-clr);
}

.team-lst-cmprsn .close-button .fa-times {
    padding: 4px 8px;
    border-radius: 5px;
}

.team-lst-cmprsn .close-button :hover {
    background: var(--main-clr);
    color: #fff;
}

.team-lst-cmprsn {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid var(--Neutral-a100, rgba(102, 112, 133, 0.20));
    background: #FFFFFF;
}

.team-lst-cmprsn .inside-team-tc {
    display: flex;
    padding: 20px 20px 20px 20px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    margin-top: 5px;
    position: relative;
    margin-bottom: 2rem;
}

.team-lst-cmprsn .inside-team-tc a {
    text-decoration: none;
}

.team-lst-cmprsn .cmprsn-tm-nd-name {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: var(--components-gap-rad-300, 12px);
    padding: 16px 20px;
    cursor: pointer;
}

.team-lst-cmprsn .cmprsn-tm-nd-name:hover {
    background-color: var(--main-clr)67;
    transition: 0.2s ease-in-out;
}

.team-lst-cmprsn .cmprsn-tm-nd-name:active {
    background-color: var(--main-clr);
}

.team-lst-cmprsn .cmprsn-tm-nd-name p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    margin: 0;
}

.team-lst-cmprsn .cmprsn-tm-nd-name img {
    width: 18px;
    flex-shrink: 0;
}

/** Stats Team comparison css  empty-state **/
.chz-team-outer {
    position: relative;
}

.chz-team-outer .close-button-1 {
    position: absolute;
    top: -24px;
    right: -24px;
    cursor: pointer;
    color: var(--main-clr);
}

.chz-team-outer .close-button-1 .fa-times {
    padding: 4px 8px;
    border-radius: 5px;
}

.chz-team-outer .close-button-1 :hover {
    background: var(--main-clr);
    color: #fff;
}

.team-first-filled {
    display: none;
}

.stats-team-comparison .inside-top-stcky-dv-mo {
    justify-content: center;
}

.mn-another-divv {
    display: none;
}

.chz-team-outer-2 {
    position: relative;
}

.chz-team-outer-2 .close-button-2 {
    position: absolute;
    top: -24px;
    right: -24px;
    cursor: pointer;
    color: var(--main-clr);
}

.chz-team-outer-2 .close-button-2 .fa-times {
    padding: 4px 8px;
    border-radius: 5px;
}

.chz-team-outer-2 .close-button-2 :hover {
    background: var(--main-clr);
    color: #fff;
}

.team-second-filled-2 {
    display: none;
}

/** Stats Team comparison css  empty-state **/
/** player comparison **/
.hidden-team-player {
    display: none;
}

/* .show-team-player {
    cursor: pointer;
    display: inline-block;
} */
.hidden-teams-div {
    display: none;
}

.chs-team-col .chz-plyr-col-insd {
    position: relative;
}

.chs-team-col .chz-plyr-col-insd .plyr-first {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.chs-team-col .chz-plyr-col-insd .player-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.chz-plyr-col-insd .player-first img {
    width: 56px;
    height: auto;
}

.chz-plyr-col-insd .plyr-second img {
    width: 56px;
    height: auto;
}

.chz-plyr-col-insd .plyr-first .cmpr-plyr-nm {
    color: #01040A;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
    margin: 0;
}

.chz-plyr-col-insd .player-second .cmpr-plyr-nm {
    color: #01040A;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
    margin: 0;
}

.chz-plyr-col-insd .plyr-first .cmpr-plyr-img {
    width: 45px;
}

.chz-plyr-col-insd .player-second .cmpr-plyr-img {
    width: 45px;
}

.chz-plyr-col-insd .plyr-first .cmpr-plyr-flg {
    width: 15px;
}

.chz-plyr-col-insd .player-second .cmpr-plyr-flg {
    width: 15px;
}

.chz-plyr-col-insd .plyr-first h6 {
    color: #01040A;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 5px;
}

.chz-plyr-col-insd .player-second h6 {
    color: #01040A;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 5px;
}

.chz-plyr-col-insd .close-button-1 {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
    color: var(--main-clr);
}

.close-button-1 .fa-times {
    padding: 4px 8px;
    border-radius: 5px;
}

.close-button-1 :hover {
    background: var(--main-clr);
    opacity: 0.6;
    color: #fff;
}

.stats-player-comparison {
    justify-content: space-between;
}

.stats-player-comparison-team-first {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.stats-player-comparison-team-first h4 {
    color: #FFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
}

.stats-player-comparison-team-first img {
    width: 18px;
}

.stats-player-comparison-team-second {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row-reverse;
    gap: 5px;
}

.stats-player-comparison-team-second h4 {
    color: #FFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    margin: 0;
}

.stats-player-comparison-team-second img {
    width: 18px;
}

/** player comparison page ends **/
/** trophy tour page **/
.news-thumbnail-wrapper-tt img {
    width: 100%;
}

#trophy-tour {
    background: #000;
}

#trophy-tour .tt-ban-img {
    object-fit: cover;
    width: 100%;
}

.tt-mn-cntnr .tt-mn-cntnt {
    padding: 50px 0 50px 0;
}

.tt-mn-cntnr .tt-mn-cntnt .tt-mn-cntnt-top-cntnt p {
    color: #000;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
    padding-bottom: 15px;
}

.tt-mn-cntnr .tt-mn-cntnt .tt-mn-cntnt-top-cntnt span {
    color: rgba(0, 0, 0, 0.50);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 15px;
}

.tt-inside-mn-col .tt-main-time-line {
    position: relative;
}

.tt-inside-mn-col .tt-main-time-line::before {
    position: absolute;
    content: "";
    border: solid 10px var(--main-clr);
    height: 10px;
    width: 10px;
    left: -7px;
    top: -43px;
    rotate: 45deg;
}

.tt-inside-mn-col .tt-main-time-line .tt-main-time-line-inner {
    position: relative;
}

.tt-inside-mn-col .tt-main-time-line-inner ::before {
    position: absolute;
    content: "";
    border: solid 3px var(--main-clr);
    height: 92%;
    left: 0px;
    top: -23px;
}

.tt-inside-mn-col .tt-flex-content .first-date-tt {
    color: #667085;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-left: 30px;
    position: relative;
    /* 125% */
}

.tt-inside-mn-col .tt-flex-content .first-date-tt-filled {
    color: #667085;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-left: 30px;
    position: relative;
    /* 125% */
}

.tt-inside-mn-col .tt-flex-content .first-date-tt::before {
    position: absolute;
    content: "";
    border: solid 4px #727b8f;
    border-radius: 50%;
    padding: 10px;
    left: -11px;
    top: -3px;
    height: 26px;
    background: #fff;
    z-index: 9;
}

.tt-inside-mn-col .tt-flex-content .first-date-tt-filled::before {
    position: absolute;
    content: "";
    border: solid 4px #727b8f;
    border-radius: 50%;
    padding: 10px;
    left: -11px;
    top: -3px;
    background: var(--main-clr);
    z-index: 9;
    height: 26px;
}

.ns-btn {
    color: var(--main-clr);
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    border-radius: 28px;
    border: 1px solid var(--main-clr);
    background: #FFF;
    padding: 4px 16px;
    /* 125% */
}

.ns-mn-col {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 22px;
}

.ns-btn:hover {
    color: var(--main-hover);
    text-decoration: none;
    transition: ease-in-out 0.3s;
    border-color: var(--main-hover);
}

.tt-flex-content .tt-tl-btm-inr-cntnt {
    padding-left: 30px;
}

.tt-flex-content .tt-tl-btm-inr-cntnt h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin: 0;
}

.tt-flex-content .tt-tl-btm-inr-cntnt img {
    width: 28px;
    margin-right: 5px;
}

.tt-flex-content .tt-tl-btm-inr-cntnt p {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 0;
}

.tt-flex-content .tt-tl-btm-inr-cntnt .fa-arrow-right {
    color: var(--main-clr);
}

.new-community-sec .left-img-part .player-img {
    width: 660px;
}

.new-community-sec .inner-con-part {
    left: 660px;
}

.new-community-sec .upper-part-mob {
    padding: 50px 0 30px 0;
}

/** trophy tour pages ends **/
/** trophy tour country **/
.tt-mn-cntnr-cntry .tt-mn-cntry h5 {
    color: var(--main-clr);
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    padding: 40px 0;
}

.tt-mn-cntnr-cntry .tt-mn-cntry .ns-mn-col-cntry .tt-cntry-time {
    color: #667085;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    padding-left: 30px;
}

.ns-mn-col-cntry {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: normal;
    margin-top: 22px;
}

.tt-inside-mn-col .tt-flex-content .tt-cntry-des {
    color: #000 !important;
    margin: 0;
}

.ns-mn-col-cntry .tt-flex-content-empty {
    height: 50px;
}

.tt-inside-mn-col-cntry .tt-main-time-line-inner ::before {
    height: 100%;
}

.btm-col-ttc {
    padding: 50px 0 20px 0;
}

.btm-col-ttc h3 {
    color: #333842;
    font-family: var(--font-oswald-700);
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 100% */
    text-transform: uppercase;
    max-width: 740px;
}

.insd-btm-col-ttc .sml-col-insd-btm-col-ttc h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.insd-btm-col-ttc .sml-col-insd-btm-col-ttc h5 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.lg-col-insd-btm-col-ttc-imgz {
    gap: 40px;
}

.lg-col-insd-btm-col-ttc img {
    border-radius: 10px;
    width: 100%;
}

.tt-country-player-fw {
    width: 100%;
}

.tt-top-hdr-cntnt {
    padding: 30px 0 0px 0;
}

.tt-top-hdr-cntnt h4 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 100% */
    text-transform: uppercase;
    margin: 0;
}

/** New pages mutual CSS ends **/
/** Predection Games **/
/** Predection Games **/
#top-blue-section .game-prediction {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs-pg-cntnr {
    padding-top: 40px;
}

#top-blue-section .game-prediction p {
    color: #FFF;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

#top-blue-section .game-prediction img {
    width: 164px;
}

.game-predict-tabs.fixed {
    top: 111px;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* .overview-predict-game-tab .result-main-div{
    border-radius: 16px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    flex-grow: 1;
} */
.overview-predict-game-tab .result-main-div img {
    width: 100%;
}

.overview-predict-game-tab .result-main-div .predict-img-mob {
    display: none;
}

.main-row-prdct-tab h2 {
    color: #000;
    text-align: center;
    font-family: Oswald-700;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    padding: 20px 0;
    margin: auto;
}

.result-main-div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    background-image: url('../images/prediction-game-banner-new.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 410px;
    width: 100%;
    border-radius: 16px;
    padding: 10px 10px 10px 10px;

}

.result-main-div h3 {
    color: #FFF;
    text-align: center;
    font-family: Oswald-700;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    padding: 20px 0 10px 0;
}

.result-main-div p {
    color: #FFF;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.result-main-div a {
    width: 19%;
}

.grab-titel-col h2 {
    color: #000;
    text-align: center;
    font-family: Oswald-700;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    padding: 20px 0;
    margin: auto;
    margin-top: 30px;
}

.insd-main-row-prdct-tab .wfg-col img {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.insd-main-row-prdct-tab {
    border-top: 1px solid rgba(102, 112, 133, 0.35);
    justify-content: center;
}

.insd-main-row-prdct-tab .wfg-col h3 {
    color: #000;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    padding-top: 12px;
}

.insd-main-row-prdct-tab .wfg-col p {
    color: #14161B;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.insd-main-row-prdct-tab .predict-bottom-two-btn-div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: auto;
    padding: 20px 0;
}

.insd-main-row-prdct-tab .predict-bottom-two-btn-div .solid-clr-btn {
    width: 155px;
}

/** Prediction Tabs in predection game page **/
.main-prediction-row .match-card-box-predict {
    padding: 10px 0;
}

.main-prediction-row .hdng-div-match {
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
    padding-bottom: 10px;
    margin: 2rem 0 2rem 0;

}

.main-prediction-row .match-card-box-predict .vs-dtl-main {
    flex: 2 0 0;
    gap: 8px;
    justify-content: center;
}

.main-prediction-row .match-card-box-predict .vs-dtl-main h3 {
    border-radius: 12px;
    border: 1px solid rgba(102, 112, 133, 0.35);
    background: #FFF;
    padding: 2px 20px 14px 20px;
    margin: 0;
}

.main-prediction-row .match-card-box-predict .vs-dtl-main .grp-dtl p {
    color: #333842;
    text-transform: uppercase;
}

.main-prediction-row .match-card-box-predict .vs-dtl-main .other-details .vs-dtl {
    padding: 30px 0;
}

.main-prediction-row .htp-div {
    top: 160px !important;
    width: 100%;
    max-width: 400px;
}

.htp-div .btm-htp-box {
    padding: 16px;
}

.htp-div .btm-htp-box .number-content-htp {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.htp-div .btm-htp-box .number-content-htp img {
    width: 54px;
}

.htp-div .btm-htp-box .number-content-htp h5 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    margin: 0;
}

.htp-div .btm-htp-box .number-content-htp p {
    color: #14161B;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.htp-div .btm-htp-box .number-content-htp a {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

/** Modal inside prediction page **/
.create-profile-modal {
    top: 70px;
}

.create-profile-modal .modal-content {
    border-radius: 24px;
    padding: 10px;
}

.create-profile-modal .modal-header {
    border-bottom: none;
    padding: 10px 16px 0 16px;
}

.create-profile-modal .modal-header .close:hover {
    outline: none !important;

}

.create-profile-modal .modal-header span {
    color: var(--main-clr);
    border-radius: 6px;
    padding: 2px 8px;
    background-color: transparent;
    transition: background-color ease-in-out 0.3s;
    font-family: var(--font-satoshi-700);
}

.create-profile-modal .modal-header span:hover {
    border-radius: 6px;
    padding: 2px 8px;
    background-color: #f9010073;
}

.create-profile-modal .modal-header .avatar-nd-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    gap: 12px;
}

.create-profile-modal .modal-header .avatar-nd-title h5 {
    color: #14161B;
    font-family: var(--font-satoshi-700);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 114.286% */
}

.create-profile-modal .modal-header .avatar-nd-title p {
    color: #333842;
    font-family: var(--font-satoshi-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

.create-profile-modal .modal-dialog {
    max-width: 680px;
}

.avatar-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 10px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: border 0.3s ease;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar.selected {
    border: 2px solid var(--main-clr);
    border-radius: 50%;
}

.create-user-form label {
    color: #333842;
    font-family: var(--font-oswald-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.create-user-form .form-control {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(102, 112, 133, 0.20);
    background: #FFF;
    height: 50px;
}

.create-user-form button {
    width: 100%;
    margin-bottom: 10px;
}

/** Modal CSS ends **/
.match-card-box-predict .other-details-prediction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.match-card-box-predict .other-details-prediction h5 {
    width: 60px;
    height: 60px;
    display: block;
    padding: 0;
    /* padding: 4px 4px 15px 15px; */
    font-size: 38px;
    font-weight: 800;
    line-height: 50px;
    text-align: center;
    color: #000000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 12px;
    font-family: var(--font-oswald-700);
    margin: 0;
}

.match-card-box-predict .other-details-prediction h4 {
    color: #667085;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;

}

.match-card-box-predict .mid-part-prediction-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
}

.match-card-box-predict .mid-part-prediction-card p {
    color: #333842;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    text-align: center;
    margin: 0;
}

.match-card-box-predict .past-match-prediction {
    opacity: 0.4;
}

.match-card-box-predict .mid-part-prediction-card span {
    color: #667085;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 166.667% */
}

.match-card-box-predict .mid-part-prediction-card h6 {
    color: rgba(102, 112, 133, 0.50);
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
}


.match-card-box-predict .mid-part-prediction-card a {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
    align-items: center;
}

.match-card-box-predict .prediction-form-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.match-card-box-predict .prediction-form-card label {
    color: #667085;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
}

.match-card-box-predict input[type="number"]::-webkit-outer-spin-button,
.match-card-box-predict input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.match-card-box-predict .prediction-form-card .form-control {
    width: 60px;
    height: 60px;
    display: block;
    padding: 0;
    padding-bottom: 5px;
    font-size: 38px;
    font-weight: 800;
    line-height: 46px;
    text-align: center;
    color: #000000;
    font-family: var(--font-oswald-700);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 12px;
}

.past-match-prediction .past-match-pstv-pts {
    color: #84BF40 !important;
}

.past-match-prediction .past-match-no-pts {
    color: #667085;
}

.main-prediction-row .your-scr-dv {
    top: 160px !important;
}

.main-prediction-row .your-scr-dv h4 {
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.main-prediction-row .your-scr-dv h2 span {
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    padding-left: 5px;
}

.main-prediction-row .your-scr-dv .scr-dv-dtl {
    color: #FFF;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 0;
}

.inside-watch-box .btm-htp-box .number-content-htp p {
    font-family: var(--font-satoshi-500);
    color: #14161B;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.main-prediction-row .your-scr-dv .scr-dv-dtl span {
    color: #FFF;
    font-family: var(--font-satoshi-700) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.your-scr-dv .btm-htp-box {
    padding: 12px;
}

.btm-htp-box .trans-btn {
    padding: 12px 20px;
}

.inside-watch-box .hts-btm-dv {
    border-bottom: solid 1px #efefef;
}

.inside-watch-box .ys-bottom-div p {
    font-family: var(--font-satoshi-500);
    color: #14161B;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.htw-modal {
    display: none !important;
}

/** Prediction CSS ends **/
/** Leaderboard CSS **/
.main-leaderboard-row .top-heading-brdr {
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
}

.main-leaderboard-row .top-heading-brdr h3 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.lb-bottom-three-col-row {
    padding: 120px 0 24px 0;
}

.position-badge {
    display: none;
}

.contestent-col-inside-point-title-div::after {
    content: "";
    width: 72px;
    height: 72px;
    background-repeat: no-repeat !important;
    top: -95px;
    left: 40%;
    position: absolute;
    background-size: cover;
    background: url(../icons/2nd-position-contestent.svg);
}

.contestent-col-inside-point-title-div.second-pos::after {
    background: url(../icons/2nd-position-contestent.svg);
    top: -95px;
    background-size: 72px !important;
    left: 51%;
    transform: translateX(-51%);
}

.contestent-col-inside-point-title-div.top-pos::after {
    height: 82px;
    background: url(../icons/1st-position-contestent.svg);
    background-size: 80px !important;
    top: -95px;
    left: 49%;
    transform: translateX(-49%);
}

.contestent-col-inside-point-title-div.third-pos::after {
    background: url(../icons/3rd-position-contestent.svg);
    background-size: 64px !important;
    background-repeat: no-repeat;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
}

.lb-bottom-three-col-row .lb-contestent-avatar {
    margin: auto;
    display: block;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    object-fit: cover;
}

.lb-bottom-three-col-row .contestent-col-inside {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lb-bottom-three-col-row .points-earnd {
    color: #FFF;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    border-radius: 28px;
    background: var(--main-clr);
    display: inline-block;
    padding: 4px 16px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    z-index: 9;
}

.lb-bottom-three-col-row h3 {
    color: #000;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 20px;
}

.lb-bottom-three-col-row .lb-second-contestent {
    font-size: 40px;
    line-height: 40px;
}

.lb-bottom-three-col-row .lb-first-contestent {
    font-size: 56px;
    line-height: 56px;
}

.lb-bottom-three-col-row .lb-third-contestent {
    font-size: 32px;
    line-height: 32px;
}

.lb-bottom-three-col-row h4 {
    color: #000;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
}

.lb-bottom-three-col-row p {
    color: #667085;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 144.444% */
}

/** Leaderboard table **/
.team-rnk-tbl table tbody {
    outline: none !important;
}

.leaderboard-cus-table thead th:first-child {
    width: 4%;
}

.table.leaderboard-cus-table th:last-child {
    text-align: right !important;
}

.table.leaderboard-cus-table td:last-child {
    text-align: right !important;
    padding-right: 20px !important;
}

.leaderboard-cus-table thead th:first-child {
    padding-left: 20px !important;
}

.leaderboard-cus-table thead th:last-child {
    padding-right: 20px !important;
}

.leaderboard-cus-table tbody tr th:first-child {
    padding-left: 20px !important;
}

.leaderboard-cus-table .current-user-score {
    background-color: #000;
    transition: background-color ease-in-out 0.3s;
}

.leaderboard-cus-table .current-user-score span {
    color: #FFF !important;
}

.leaderboard-cus-table .current-user-score p {
    color: #FFF !important;
}

.leaderboard-cus-table .current-user-score h5 {
    color: #FFF !important;
}

.leaderboard-cus-table .current-user-score td {
    color: #FFF !important;
}

.leaderboard-cus-table .current-user-score:hover td {
    color: #000 !important;
}

.leaderboard-cus-table .current-user-score:hover h5 {
    color: #000 !important;
}

.leaderboard-cus-table .current-user-score:hover p {
    color: #000 !important;
}

.leaderboard-cus-table .current-user-score:hover span {
    color: #000 !important;
}

.leaderboard-cus-table thead th {
    text-align: left !important;
}

.leaderboard-cus-table td {
    text-align: left;
}

.leaderboard-cus-table thead th {
    text-transform: capitalize !important;
}

.leaderboard-cus-table .plyr-cntry-dv p {
    text-transform: capitalize !important;
}

.leaderboard-cus-table .plyr-cntry-nm {
    text-transform: capitalize !important;
}

.leaderboard-cus-table .lb-tbl-last-col {
    width: 5%;
}

/** leaderboard tab ends **/

/** Rules tab starts **/
.main-rules-row .top-heading-brdr {
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
}

.main-rules-row .top-heading-brdr h3 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.main-rules-row h4 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    margin: 0;
}

.main-rules-row p {
    color: var(--Neutral-900, #14161B);
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin: 0;
}

.main-rules-row li {
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

/** Ruels tab ends **/
/** Leaderboard table css ends**/
/** All star page **/
.main-as-field .as-green-field-img {
    width: 100%;
    position: relative;
}

.dnone-desk-txt-nd-button-div-as-v {
    display: none;
}

.txt-nd-button-div-as-v-btm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
}

.main-as-field .inside-main-as-field {
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    /* bottom: 12em;
    left: 2em; */
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 55%;
}

.inside-main-as-field .small-main-as-field {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;

}

.inside-main-as-field .four-item-row:first-child {
    margin-top: -30px;
}

.inside-main-as-field .four-item-row:last-child {
    margin-top: -30px;
}

.four-item-row .single-vote-box-us:first-child {
    margin-top: -30px;
}

.four-item-row .single-vote-box-us:last-child {
    margin-top: -30px;
}

.small-main-as-field-mrgn .single-vote-box:first-child {
    margin-top: -30px;
}

.small-main-as-field-mrgn .single-vote-box:last-child {
    margin-top: -30px;
}

.main-as-field .single-vote-box-us {
    border-radius: 16px;
    border: 1px solid rgba(102, 112, 133, 0.20);
    background: #FFF;
    width: 112px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 112px;
}

.main-as-field .single-vote-box {
    border-radius: 16px;
    border: 1px solid rgba(102, 112, 133, 0.20);
    background: #FFF;
    width: 112px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 112px;
}

.single-vote-box .pls-icn {
    border: solid var(--main-clr) 2px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--main-clr);
    text-align: center;
}

.single-vote-box-us .pls-icn {
    border: solid var(--main-clr) 2px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--main-clr);
    text-align: center;
}

.single-vote-box p {
    color: var(--main-clr);
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.single-vote-box-us p {
    color: var(--main-clr);
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.two-button-div-as-vtab {
    display: none;
}

.submit-vote-txt {
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

.submit-vote-btn {
    border-radius: 12px;
    background: rgba(102, 112, 133, 0.20);
    padding: 16px 24px;
    margin-top: 20px;
    color: rgba(102, 112, 133, 0.50);
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    text-align: center;
    width: 40%;
    cursor: not-allowed;
    /* Change cursor to indicate it's not clickable */
    opacity: 0.6;
    /* Make the button semi-transparent */
}

.submit-vote-btn:hover {
    color: rgba(102, 112, 133, 0.50);
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-vote-btn-enable {
    background-color: var(--main-clr);
    color: #FFF;
    opacity: 1;
    cursor: pointer;
}

.submit-vote-btn-enable:hover {
    background-color: var(--main-hover);
    color: #FFF;
    opacity: 1;
    cursor: pointer;
}

/** for the votig form **/
.inside-main-as-field-as {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.single-vote-box {
    width: 112px;
    height: 112px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.single-vote-box .fa-shirt {
    font-size: 64px;
    margin-bottom: 4px;
    color: var(--main-clr);
    /* position: relative; */
}

.single-vote-box .close {
    position: absolute;
    background: #FFF;
    padding: 2px 5px;
    border-radius: 50%;
    opacity: 1;
    color: var(--main-clr);
    top: -5px;
    right: 5px;
    font-size: 18px;
    display: none;
    cursor: pointer;
}

.single-vote-box.selected .close {
    display: block;
}

.custom-table-pys tr {
    cursor: pointer;
}

.custom-table-pys tr.disabled {
    pointer-events: none;
    opacity: 0.5;
}

/** for the votig form ends**/


.pys-div .bottom-pys-box {
    padding: 10px 0 !important;
}

.pys-div .bottom-pys-box .pystab {
    padding: 0 10px;
    border-bottom: 1px solid rgba(102, 112, 133, 0.20);
    background: #FFF;
    box-shadow: 0px 2px 2px 0px rgba(102, 112, 133, 0.24);
}

.pystab .nav-link {
    font-family: var(--font-satoshi-700);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    transition: all 0.15s ease-in;
    padding: 6px 5px;
    border-bottom: 4px solid transparent;
}

.pystab .nav-link:hover {
    border-bottom: 4px solid var(--main-clr) !important;
}

.bottom-pys-box .nav-tabs .nav-link.active {
    border-bottom: 4px solid var(--main-clr) !important;
    color: var(--main-clr) !important;
    border-radius: 0px !important;
    padding-bottom: 6px !important;
    transition: all 0.3s ease-out;
}

.custom-table-pys {
    width: 100%;
}

.custom-table td {
    vertical-align: middle;
    text-align: left !important;
    padding: 0 10px !important;
}

.inside-main-pys-content .table td {
    padding: 5px 10px 5px 10px !important;
    vertical-align: middle;
}

.custom-table-pys .img-col {
    width: 10%;
}

.custom-table-pys .name-col {
    width: 70%;
    text-align: left;
    color: #01040A;
    text-align: left;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
}

.custom-table-pys .text-col {
    width: 10%;
    color: #01040A;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    margin: 0;
}

.main-as-field .single-vote-box-after-selection {
    display: flex;
    background: transparent;
    position: relative;
    border: none;
    margin-top: 4px;
}

.single-vote-box-after-selection p {
    background: #01040A;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 13px;
    margin: 0;
    color: #FFF;
    padding: 3px 4px;
    border-radius: 5px;
    margin-top: -17px;
}

.single-vote-box-after-selection h6 {
    color: #000;
    text-align: center;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    position: absolute;
    top: 32px;
}

.small-main-as-field .single-vote-box-as {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-as-field .single-vote-box-as {
    width: 112px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 112px;
    position: relative;
}

.small-main-as-field-mrgn .single-vote-box-as:first-child {
    margin-top: -30px;
}

.small-main-as-field-mrgn .single-vote-box-as:last-child {
    margin-top: -30px;
}

.single-vote-box-as .fa-shirt {
    font-size: 64px;
    margin-bottom: 4px;
    color: var(--main-clr);
}

.single-vote-box-as svg path {
    margin-bottom: 4px;
    /* fill: var(--main-clr); */
}

.single-vote-box-as p {
    color: #FFF;
    text-align: center;
    font-family: var(--font-satoshi-700);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 13px;
    margin: 0;
    background: #000;
    padding: 3px 4px;
    border-radius: 5px;
    margin-top: -17px;
    min-width: 55px;
}

.single-vote-box-as h6 {
    color: #000;
    text-align: center;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    position: absolute;
    top: 32px;
}

.submit-form-div{
    display: flex;
    width: 580px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 16px;
    border: 1px solid rgba(102, 112, 133, 0.35);
    background:  #FFF;
    margin-top: -34px;
    z-index: 99;
    position: relative;
    box-shadow: 0px 8px 16px 0px rgba(109, 123, 144, 0.24), 0px -1px 0px 0px rgba(109, 123, 144, 0.16) inset;
}
.submit-form-div .title-submit-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.submit-form-div .title-submit-btn .submit-vote-btn{
    font-size: 14px;
}
.submit-form-div h4{
    color: #000;
    max-width:330px;
    text-align: left;
    font-family: var(--font-satoshi-700);
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px; /* 116.667% */
    margin: 0;
}

.wsyw-mob{
    display: none;
}

.submit-form-div .form-field-ta{
    width: 100%;
}
.submit-form-div textarea{
    border-radius: 12px;
    border: 1px solid rgba(102, 112, 133, 0.20);
    background:  #FFF;
    box-shadow: 0px 1px 3px 0px rgba(109, 123, 144, 0.16), 0px -1px 0px 0px rgba(109, 123, 144, 0.08) inset;
    height: 105px;
    align-self: stretch;
}

.right-ss-div {
    width: 100%;
}

.right-ss-div .bottom-squad-schedule {
    padding: 0 !important;
}

.voting-ends-box{
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.main-dur-div h4{
    color: #14161B;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; 
    text-transform: uppercase;
}
.main-dur-div h5{
    color: #667085;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 17.871px;
    font-style: normal;
    font-weight: 500;
    line-height: 29.784px; /* 166.667% */
}

.voting-ends-box h3{
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; 
}
.voting-ends-div-timer span{
    color:#14161B;
    text-align: center;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 100% */
    text-transform: uppercase;
}

.voting-ends-div-timer{
    display: flex;
    padding: 16px 16px 8px 16px;
    justify-content: space-around;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid rgba(102, 112, 133, 0.35);
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(102, 112, 133, 0.24), 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset;
}

.voting-ends-box p{
    color:  #14161B;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    text-align: center;
    margin: 0;
}

.squad-schdl-box {
    padding: 10px 10px !important;
    background: #E0E2E7;
    height: 480px;
    overflow-y: scroll;
}

.squad-schdl-box .card-squad-schdl {
    margin: 10px 0;
    border-radius: 8px;
}

.card-squad-schdl .flag-nd-name img {
    width: 30px;
}

.card-squad-schdl .vs-dtl-main {
    flex: 0;
}

.card-squad-schdl .grp-dtl p {
    font-size: 12px;
    line-height: 14px;
}

.card-squad-schdl .grp-dtl span {
    font-size: 12px !important;
    line-height: 14px !important;
}

.card-squad-schdl h4 {
    font-size: 12px !important;
    line-height: 14px !important;
}

.card-squad-schdl .vs-dtl h4 {
    font-size: 24px !important;
    line-height: 26px !important;
}

.squad-schdl-box .match-date-ss {
    color: #000;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    text-transform: uppercase;
    padding-top: 10px;
}

.inside-watch-box .as-ss-fvr {
    border-top: 1px solid rgba(102, 112, 133, 0.35);
    background: #FFF;
    padding: 16px 24px 16px 24px;
    border-radius: 0 0 8px 8px;
}

.inside-watch-box .as-ss-fvr p {
    overflow: hidden;
    color: #14161B;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

/* .main-as-voting-row{
    gap: 15px;
} */

.main-voting-cls-col{
    padding-bottom: 8px;
    border-radius: 12px;
    border-radius: 16px;
    border: 1px solid  rgba(102, 112, 133, 0.35);
    background: #FFF;
    overflow: hidden; /* Ensures rounded corners are visible */
  
}

.main-voting-cls-col .top-hdr{
    border-bottom: 1px solid #667085;
    background: #000;
    border-bottom: 1px solid #667085;
    width: 100%;
    padding: 14px 24px;
}

.main-voting-cls-col .top-hdr-top-el-vots{
    border-bottom: 1px solid #667085;
    background: var(--main-clr);
    border-bottom: 1px solid #667085;
    width: 100%;
    padding: 14px 24px;
}

.main-voting-cls-col h4{
    color: #FFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 100% */
    text-transform: uppercase;
    margin: 0;
}

.main-voting-cls-col thead th{
    color: #FFF;
    font-family: var(--font-satoshi-700);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.main-voting-cls-col thead > tr > th:first-child {
    width: 22%;
  }
  
.main-voting-cls-col thead > tr > th:nth-child(2) {
    width: 54%;
  }
  
.main-voting-cls-col thead > tr > th:last-child {
    width: 22%;
  }

.main-voting-cls-col table{
    width: 100%;
    border-spacing: 0; 
    border-collapse: collapse; 
}

.main-voting-cls-col .table-yv thead tr{
    background-color: #000;
}

.main-voting-cls-col .table-top-el-vots thead tr{
    background-color: var(--main-clr);
}
.voting-plyr-dtl{
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
}

.voting-close-table thead tr th{
    padding: 12px 24px 12px 24px;
    text-align: left;
}

.voting-close-table thead, td{
    padding: 8px 24px 8px 24px;
}

.voting-close-table .p-pos{
    color: #667085;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.voting-plyr-dtl .voting-plyr-dtl-img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.voting-plyr-dtl h4{
    color: #01040A;
    text-align: center;
    font-family: var(--font-satoshi-500);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
    margin: 0;
}

.voting-plyr-dtl .voting-plyr-dtl-flag-img{
    width: 20px;
    height: auto;
}

.voting-plyr-dtl p, span{
    color: #333842;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    margin: 0;
}

.voting-close-table .voting-prcnt{
    color: #01040A;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.main-voting-cls-col table tr:last-child td:first-child {
    border-bottom-left-radius: 10px; 
  }
  
.main-voting-cls-col table tr:last-child {
    border-bottom: none;  
  }

/** All star page ends**/

/** Photo Gallery Page **/
.main-gallery-container {
    border-bottom: solid rgba(102, 112, 133, 0.35) 1.5px;
}

.main-gallery-container:hover {
    cursor: pointer;
}

.heading-buttons h1 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
}

.gallery-container {
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    /* Small gap between images */
    position: relative;
}

.gallery-img-wrapper-big {
    width: 100%;
    grid-row: span 2;
}

.gallery-img-bg {
    width: 100%;
    /* grid-row: span 2; */
    aspect-ratio: 472/314;
    object-fit: cover;
    height: 100%;
    transition: filter 0.3s ease;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 200/153;
    transition: filter 0.3s ease;
    transition: transform 0.3s ease-in-out;
}

.gall-img-wrapper {
    overflow: hidden;
    width: 100%;
}

.gall-img-wrapper:nth-child(1) {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.gall-img-wrapper:nth-child(2) {
    border-top-right-radius: 10px;
}

.gall-img-wrapper:nth-child(3) {
    border-bottom-right-radius: 10px;
}

.gall-img-wrapper:nth-child(1) img {
    transform: scale(1.1);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all ease-in-out 0.3s;
}

.gall-img-wrapper:nth-child(2) .gallery-img {
    border-top-right-radius: 10px;
    /* Change this to your desired value */
}

.gall-img-wrapper:nth-child(3) .gallery-img {
    border-bottom-right-radius: 10px;
    /* Change this to your desired value */
    transform: scale(1.1);
}

.main-gallery-container:hover .gall-img-wrapper:nth-child(1) img {
    transform: scale(1);
    transition: transform 0.3s ease-in-out !important;
}

.main-gallery-container:hover .gall-img-wrapper:nth-child(2) img {
    transform: scale(1.1);
    transition: transform 0.4s ease-in-out;
}

.main-gallery-container:hover .gall-img-wrapper:nth-child(3) img {
    transform: scale(1.0);
    transition: transform 0.5s ease-in-out;
}

.gall-see-all-btn {
    position: absolute;
    right: 05px;
    bottom: 30px;
}

.gall-see-all-btn .solid-btn {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 16px;
    cursor: pointer;
}

.gall-see-all-btn .solid-btn span {
    font-size: 12px;
    line-height: 14px;
    padding: 12px 16px;
    cursor: pointer;
    color: #000;
    font-family: var(--font-oswald-700);
    padding: 0;
    display: inline;
}

.main-gallery-container h2 {
    color: #000;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-top: 20px !important;
}

.main-gallery-container .date {
    color: var(--Neutral-700, #333842);
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding-top: 15px;
}

/** Modal inside Gallery page **/
.gallery-profile-modal {
    z-index: 99999999999999999999999 !important;
}

.gallery-profile-modal .modal-content {
    border-radius: 24px 24px 24px 24px;
}

.gallery-profile-modal .modal-content .close span {
    color: #ffffff;
}

.gallery-profile-modal .modal-body {
    padding: 0 32px 32px 32px;
}

.gallery-profile-modal .reg-right-part {
    gap: 10px;
}

.gallery-profile-modal .modal-header {
    border-bottom: none;
}

.gallery-profile-modal .avatar-nd-title .fa-user-circle {
    font-size: 40px;
    margin: 20px 32px 0px 16px !important;
    color: var(--main-clr);
}

.gallery-profile-modal .reg-form .sub-btn-custom {
    background: var(--main-clr) !important;
}

.gallery-profile-modal .reg-form .sub-btn-custom:hover {
    background: var(--main-hover) !important;
}

.gallery-profile-modal .reg-right-part .reg-with-social-links {
    padding: 3px 0 0px 0;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    outline: none;
}

.gallery-profile-modal .modal-header .close {
    margin: 2px 2px 0px 0 !important;
    background: #f00000;
    border-radius: 7px;
    opacity: 0.4;
    padding: 5px 9px;
}

.gallery-profile-modal .modal-dialog {
    max-width: 616px;
}

.gallery-profile-modal .modal-content {
    width: calc(100vw - 40px) !important;
    max-width: 800px;
    margin: auto;
}

/** Modal inside gallery ends **/
/** Photo Gallery Page ends **/
/** Gallery Details page single **/
.clg-cntnr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
}

/* .clg-cntnr>div {
    position: relative;
    overflow: hidden;
} */

.clg-cntnr .mn-img-row {
    position: relative;
    overflow: hidden;
}

.clg-cntnr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.clg-cntnr .img-fluid {
    display: block;
    transition: transform 0.35s, opacity 0.35s;
}

.clg-cntnr .img-fluid:nth-child(odd):hover {
    transform: scale(1.02);
    /* Zoom in for odd-numbered images */
}

.clg-cntnr .img-fluid:nth-child(even):hover {
    transform: scale(0.2);
    /* Zoom out for even-numbered images */
}

/* .clg-cntnr img:hover{
    transform: scale(1.05);
    transition: all ease-in-out 0.3s;
} */

.fl-wdth-rw {
    grid-column: span 2;
    height: 600px;
    overflow: hidden;
}

.fl-wdth-rw-3 {
    /* grid-column: span 2; */
    height: 500px;
    overflow: hidden;
}

.fl-wdth-rw-3.gallery-row-3 .gallery-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
    transition: transform .3s ease-in-out !important;
}

.hl-wdth-rw {
    height: 600px;
    overflow: hidden;
}

.hl-wdth-rw.big-hgt-img {
    height: 800px;
    overflow: hidden;
}

.dbl-hght-cl {
    height: 600px;
    overflow: hidden;
}

.fth-rw {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 8px;
}

/* .fth-rw img {
    height: calc(100% - 8px);
} */
/** Light box inside photo gallery single/template **/
/* Lightbox styles */
/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    z-index: 9999999999;
    margin-left: auto;
    margin-right: auto;

}

.lightbox-content {
    position: relative;
    /* max-width: 920px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* max-width: 920px; */
    width: 100%;
    height: 100%;
}

.lightbox img {
    width: 100%;
    height: 88%;
    display: block;
    margin: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    color: white;
    font-size: 2em;
    cursor: pointer;
}

.social-share {
    position: absolute;
    color: white;
    font-size: 2em;
    cursor: pointer;
}

.lightbox .close {
    top: 20px;
    left: 20px;
}

.lightbox .back-btn-main-pg {
    top: 20px;
    left: 20px;
}

.back-btn-main-pg a {
    border-radius: 12px;
    border: 2px solid var(--main-clr);
    padding: 12px 16px;
    color: var(--main-clr);
    font-size: 12px;
    text-transform: uppercase;
    transition: all ease-in-out 0.3;
}

.back-btn-main-pg a:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
}

.main-arrow-div {
    top: 49.6%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: solid 2px #FFFFFF;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    /* bottom: unset !important; */
}

.main-arrow-div .arrow {
    font-family: var(--font-satoshi-700);
}

.main-arrow-div.mad-left {
    left: 40px;
}

.main-arrow-div.mad-right {
    right: 40px;
}

.lightbox .social-share {
    top: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.lightbox .social-share .social-links-news-temp {
    font-size: 16px;
}

.lightbox .slide-number {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2em;
}

/** Gallery Details page single ends **/

/** New photo Gallery **/
.clg-cntnr-listings1 {
    display: grid;
    gap: 10px;
    /* Space between images */
}

.clg-cntnr-listings {
    display: grid;
    grid-gap: 10px;
}

.gallery-row {
    display: grid;
    gap: 10px;
}

.gallery-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-row-2 .gallery-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
    transition: transform .3s ease-in-out !important;
}

.gallery-row-3 .gallery-item img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    transition: transform .3s ease-in-out !important;
}

.gallery-top-title-date-div .back-btn-white a {
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}

.gallery-title-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* New Overlay Styles */
.clg-cntnr-listings .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) -0.19%, rgba(0, 0, 0, 0.00) 51.41%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    opacity: 0;
    transition: opacity 0.35s;
}

.clg-cntnr-listings .overlay-content {
    position: absolute;
    bottom: 0px;
    left: 20px;
    color: white;
    text-align: left;
    padding-right: 16px;
}

.clg-cntnr-listings .overlay-title {
    font-size: 1.5em;
    margin: 0;
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;

}

.clg-cntnr-listings .overlay-date {
    color: #E0E2E7;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding-top: 10px;
}

.clg-cntnr-listings .mn-img-row:hover .overlay {
    opacity: 1;
}

.clg-cntnr-listings .mn-img-row:hover .img-fluid {
    transform: scale(1.02) !important;
    transition: transform .3s ease-in-out !important;
}

/** Updated gallery ends **/
/** New gallery single page design 2 **/
.clg-cntnr-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    /* grid-template-areas:
        "a a b b"
        "c d e e"
        "f f g g"
        "h h i i"
        "j j k k"; */
}


.clg-cntnr-new .img-wrapper-gall {
    position: relative;
    overflow: hidden;
}

.clg-cntnr-new .img-wrapper-gall img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.clg-cntnr-new .img-wrapper-gall:hover img {
    transform: scale(1.1);
}

.clg-cntnr-new .img-wrapper-gall:nth-child(1),
.clg-cntnr-new .img-wrapper-gall:nth-child(2) {
    grid-column: span 2;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(3),
.clg-cntnr-new .img-wrapper-gall:nth-child(4) {
    grid-column: span 1;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(5) {
    grid-column: span 2;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(6) {
    grid-column: span 3;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(7) {
    grid-column: span 1;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(8),
.clg-cntnr-new .img-wrapper-gall:nth-child(9),
.clg-cntnr-new .img-wrapper-gall:nth-child(10) {
    grid-column: span 2;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(11),
.clg-cntnr-new .img-wrapper-gall:nth-child(12) {
    grid-column: span 1;
}

/** for next 12 **/
.clg-cntnr-new .img-wrapper-gall:nth-child(13),
.clg-cntnr-new .img-wrapper-gall:nth-child(14) {
    grid-column: span 2;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(15),
.clg-cntnr-new .img-wrapper-gall:nth-child(16) {
    grid-column: span 1;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(17) {
    grid-column: span 2;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(18) {
    grid-column: span 3;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(19) {
    grid-column: span 1;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(20),
.clg-cntnr-new .img-wrapper-gall:nth-child(21),
.clg-cntnr-new .img-wrapper-gall:nth-child(22) {
    grid-column: span 2;
}

.clg-cntnr-new .img-wrapper-gall:nth-child(23),
.clg-cntnr-new .img-wrapper-gall:nth-child(24) {
    grid-column: span 1;
}

/** next 12 ends **/

.clg-cntnr-new .img-wrapper-gall {
    grid-column: span 2;
}

/** New gallery single page design 2 ends**/

/** New trophy tour banner on home page **/
/** New trophy tour banner on home page **/

.main-programme-banner {
    border-radius: 0px 0px 16px 16px;
    background-position: bottom;
    background: #00296D;
    /* background: linear-gradient(270deg, #2254DB 0%, #00296D 100%), url(../images/top-nav-bg.svg); */
    background-position: center;
    background-size: 100%;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--components-gap-rad-900, 24px);
    max-width: 745px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3px;
    position: relative;
    /* z-index: 99999; */
}

.main-trophy-tour-home-banner {
    border-radius: 0px 0px 16px 16px;
    /* background:url('../images/trophytour-updated-banner.png') no-repeat; */
    background: #00296D;
    background-position: bottom;
    /* background: linear-gradient(180deg, #4D190E 0%, #902F1B 25.5%, #C13F25 43.19%, #E74B2C 60.63%, #EE4D2D 68.26%, #EE4D2D 84.67%, #EE4D2D 100%), url('../images/desktop-raffle-banner-pop-up.png'); */
    /* background-position: right; */
    background-position: center;
    background-size: 100%;
    padding: 0px 12px 0 px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--components-gap-rad-900, 24px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -3px;
    position: relative;
    /* z-index: 99999; */
}

.main-trophy-tour-home-banner::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 0px 0px 16px 16px;
    /* background: url('/images/shopee-brand-banner.png'); */
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 240px;
}

.trophy-tour-home-banner-inner {
    display: flex;
    padding: 0px 0px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    z-index: 999;
}

.trophy-tour-home-banner-inner-mob {
    display: none;
}

.ttb-img-desc {
    max-width: 500px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.trophy-tour-home-banner-inner h2 {
    color: #FFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 30.343px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    text-transform: uppercase;
    margin: 0;
}

.programme-home-banner-inner h2 {
    color: #FFF;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 30.343px;
    font-style: normal;
    font-weight: 700;
    line-height: 33px;
    text-transform: uppercase;
    margin: 0;
}

.trophy-tour-home-banner-inner h2 img {
    width: 24px;
}

.trophy-tour-home-banner-inner p {
    color: #FFF;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 2px;
}

.trophy-tour-home-banner-inner h3 {
    color: #FFF;
    /* font-family: var(--font-satoshi-700); */
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

.trophy-tour-home-banner-inner a {
    border-radius: 12px;
    background: #E0E2E7;
    padding: 12px 20px;
    text-align: center;
    color: var(--Base-Black, #000);
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    transition: all ease-in-out 0.3s;
}

.trophy-tour-home-banner-inner a:hover {
    background: #ffffff;
    text-decoration: none;

}

/** New trophy tour banner on home page **/
/** New trophy tour banner on home page **/
.main-count-down-nd-tt {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.main-trophy-tour-me {
    display: flex;
    /* width: 120px; */
    /* height: 112px; */
    padding: 16px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    border-radius: 0px 0px 16px 16px;
    /* background: url('../images/AMEC-2024-Trophy-Tour-Banner-new.png'); */
    background-color: #002971;
    background-position: center;
    background-size: cover;

}

.main-trophy-tour-me img {
    width: 76px;
}

.main-trophy-tour-me a {
    color: #E0E2E7;
    font-family: var(--font-oswald-700);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.main-trophy-tour-me a:hover {
    text-decoration: none;
    color: var(--main-hover);
}

/** New trophy tour banner on home page ends**/

/** Swiper on news details page  **/

.swiper-container {
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    max-width: 500px;
    /* min-width: 500px; */
    min-height: 200px;
    height: auto;
    max-height: 200px;
    cursor: pointer;
    object-fit: cover;
    border-radius: 8px;
}

/** lightbox inside swiper **/

/* Lightbox styles */
/* Custom Lightbox styles */
.media-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    z-index: 99999999999999;
    justify-content: center;
    align-items: center;
}

.media-lightbox img {
    width: 85%;
    height: 85%;
    display: block;
    margin: auto;
    object-fit: contain;
    border-radius: 8px;
}

.media-lightbox-content {
    position: relative;
    /* max-width: 920px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* max-width: 920px; */
    width: 100%;
    height: 100%;
}

/* .main-arrow-div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: white;
    cursor: pointer;
 }
 
 .mad-left {
    left: 20px;
 }
 
 .mad-right {
    right: 20px;
 } */

.slide-number {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
}

.media-lightbox .back-btn-main-pg {
    position: absolute;
    left: 15px;
    top: 25px;
    z-index: 9999999999999999999999;
}

/** Swiper on news details page  **/
/** Match listing buy now **/
.first-card-match {
    position: relative;
    z-index: 999;
}

.ticket-sale-btn {
    border-radius: 0px 0px 16px 16px;
    background: var(--main-clr);
    padding: 21px 13px 11px 13px;
    display: block;
    margin-top: -12px;
    position: relative;
    color: #FFF;
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    text-align: center;
    transition: all ease-in-out 0.3s;
}

.ticket-sale-btn:hover {
    background-color: var(--main-hover) !important;
    text-decoration: none;
    color: #FFF;
}

.ticket-sale-btn:hover .fa-arrow-right {
    padding-left: 5px;
    transition: padding ease-in-out 0.3s;
}

.ticket-sale-cs-btn {
    border-radius: 0px 0px 16px 16px;
    background: rgba(255, 0, 0, 0.20);
    padding: 21px 13px 11px 13px;
    display: block;
    margin-top: -12px;
    position: relative;
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    text-align: center;
    transition: all ease-in-out 0.3s;
}

.ticket-sale-cs-btn:hover {
    background: rgba(255, 0, 0, 0.20);
    text-decoration: none;
    color: var(--main-clr);
    cursor:auto;
}

/* .ticket-sale-cs-btn:hover .fa-arrow-right {
    padding-left: 5px;
    transition: padding ease-in-out 0.3s;
} */

.ticket-sale-cs-btn:hover .fa-bell {
    animation: shake 150ms 2 linear;
    -moz-animation: shake 150ms 2 linear;
    -webkit-animation: shake 150ms 2 linear;
    -o-animation: shake 150ms 2 linear;
}

@keyframes shake {
    0% {
        transform: translate(3px, 2px);
    }

    50% {
        transform: translate(-3px, 3px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/** buy tickets ends **/

/** Broadcating list page **/
.bml-hdng-div-match {
    border-bottom: 1px solid rgba(102, 112, 133, 0.35);
    padding-bottom: 10px;
    margin-bottom: 1rem;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-bml-box {
    display: flex;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid rgba(102, 112, 133, 0.35);
}

.match-card-box-bml {
    padding-bottom: 10px;
    position: relative;
    width: 100%;

}

.first-card-match-bml {
    border-radius: 16px;
    padding: 16px;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* cursor: pointer; */
}

.first-card-match-bml:hover {
    background-color: rgb(224 226 231);
    transition: 0.2s ease-in-out;
}

.first-card-match-bml .team-flag-name-nd-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 33%;
}

.first-card-match-bml .flag-nd-name {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
}

.first-card-match-bml .flag-nd-name h4 {
    color: #000;
    font-family: var(--font-satoshi-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    align-items: center;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.first-card-match-bml .vs-dtl-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: none;
}

.bml-tabs-box-btm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.pyr-bml-tabs-box-hdng-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pyr-bml-tabs-box-hdng-div .pyr-hdng {
    color: #01040A;
    text-align: center;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.main-bml-tabs-box-insd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 3px solid transparent;
    transition: border 0.3s ease;
    border-radius: 16px;
    padding: 16px;
}

.main-bml-tabs-box-insd.active-border {
    border: 3px solid var(--main-clr);
}

.nav-pills-bml {
    display: flex;
    padding: 20px 20px 20px 20px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    align-self: stretch;
    flex-wrap: wrap;
    margin-top: 5px;
    position: relative;
    margin-bottom: 2rem;
}

.nav-pills-bml .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    color: #14161B;
    font-family: var(--font-satoshi-500);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.nav-pills-bml .nav-link:hover {
    background-color: #ef4d2d99;
}

.nav-pills-bml .nav-link.active {
    background-color: var(--main-clr);
    color: #FFF;
}

.nav-pills-bml .nav-link.active .main-bml-tabs-box-insd {
    border: solid red 1px;
}

.nav-pills-bml .nav-link img {
    width: 18px;
    flex-shrink: 0;
}

.content-part-bml .fade:not(.show) {
    display: none;
    opacity: unset;
    transition: all ease-in-out 0.3s;
}

.content-part-bml {
    width: 100%;
}

.content-regions-dtl-main-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.main-single-content-regions-dtl {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: solid 1px rgba(102, 112, 133, 0.24);
}

.single-content-regions-dtl {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    width: 100%;
}

.sub-content-regions-dtl {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    width: 100%;
}

.single-content-regions-dtl .img-cntry-team-rgn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    width: 200px;
}

.single-content-regions-dtl .img-cntry-team-rgn img {
    width: 36px;
}

.single-content-regions-dtl .img-cntry-team-rgn span {
    color: #01040A;
    font-family: var(--font-oswald-700);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.single-content-regions-dtl h4 {
    color: #14161B;
    font-family: var(--font-satoshi-700);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    width: 220px;
    margin: 0;
}

.single-content-regions-dtl p {
    flex: 1 0 0;
    color: #14161B;
    font-family: var(--font-satoshi-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.single-content-regions-dtl .chnl-link-rgn {
    color: var(--main-clr);
    font-family: var(--font-oswald-700);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.28px;
    text-transform: uppercase;
}


/** Desktop CSS ends **/
@media only screen and (max-width: 1200px) and (min-width: 991px) {

    /** News highlight overview **/
    .main-tournament-row .mn-tournament-part {
        flex-direction: column;
    }

    .main-tournament-row .mn-tournament-part .inner-left-tournament-part h4 {
        text-align: center;
    }

    .main-tournament-row .mn-tournament-part .inner-left-tournament-part h2 {
        text-align: center;
    }

    /** Register page **/
    .reg-page .right-info-part {
        padding: 50px 80px
    }

    /** Homepage championship pre draw AMEC CSS**/
    #tournament-section-home {
        background-size: cover;
        background-position: right right;
    }

    /* .inner-con-part {
        top: calc(1rem - 288px);
    } */
    /* .inner-con-part h3 {
        font-size: 60px;
        line-height: 62px;
    } */
    .new-community-sec .inner-con-part h3 {
        font-size: 56px;
        line-height: 60px;
    }

    .inner-con-part p {
        padding-top: 6px;
        padding-bottom: 10px;
    }

    /**timeline css **/
    .football_ground {
        padding: 2rem 1rem 1rem 1rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .player p {
        font-size: 14px;
        line-height: 16px;
        width: 55px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .player span {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .football_ground .fg-all-content {
        height: 555px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_1 {
        top: 15rem;
        left: 70px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_4 {
        top: 3rem;
        left: 12rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_5 {
        bottom: 3rem;
        left: 12rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_6 {
        top: 15rem;
        left: 14rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_7 {
        top: 8rem;
        left: 18rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_8 {
        bottom: 5rem;
        left: 19rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_9 {
        top: 15rem;
        right: 2.5rem;
    }

    .football_ground .fg-all-content .fg-content .team_b .inner-box .p_7 {
        top: 11rem;
        left: 15rem;
    }

    .football_ground .fg-all-content .fg-content .team_b .inner-box .p_8 {
        bottom: 10rem;
        left: 15rem;
    }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    #scrollToTopBtn {
        bottom: 20px;
        right: 15px;
        padding: 10px 15px 10px 10px;
    }

    .mn-cntnr-amec-star {
        background-size: 490px !important;
    }

    .zero-pad-col {
        padding-right: 15px;
        padding-left: 15px;
    }

    .heading-nd-btn h1 {
        font-size: 68px;
        line-height: 74px;
    }

    .heading-nd-btn h2 {
        font-size: 68px;
        line-height: 74px;
    }

    .mn-cntnr-amec-star .post-draw {
        flex-direction: row !important;
        background-color: transparent !important;
    }

    .mn-cntnr-amec-star .mw-520 {
        max-width: 380px;
    }

    .heading-nd-btn h1 {
        font-size: 50px;
        line-height: 52px;
    }

    .heading-nd-btn h2 {
        font-size: 50px;
        line-height: 52px;
    }

    .main-right .inside-img-content-right .card-img-sml {
        width: 110px;
        height: 60px;
    }

    .right-col .main-right h3 {
        font-size: 17px;
        line-height: 18px;
    }

    .right-col .main-right p {
        font-size: 14px;
        line-height: 15px;
    }

    .vm-btn {
        font-size: 16px;
        line-height: 20px;
        padding: 12px 16px;
    }

    .main-right-new .top-box-header h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .main-right-new .top-box-header img {
        width: 70px;
        display: block;
        margin: auto;
    }

    .main-right-new .top-box-header .timer-in {
        width: 80px;
        height: 48px;
    }

    .timer-in h3 {
        font-size: 18px;
        line-height: 20px;
    }

    .match-card-box .first-card-match {
        border-radius: 16px;
        padding: 10px;
    }

    .video-card .video-info .date-n-duration .duration-btm {
        display: none;
    }

    .video-card .video-info .date-n-duration p {
        margin: 5px 0px;
        padding: 0px 4px;
        font-size: 12px;
        line-height: 14px;
    }

    .video-card .video-info {
        margin-top: -33px;
        padding: 4px 08px;
    }

    .ad-box-home {
        width: 100%;
        height: 300px;
    }

    .single-card .title-nd-link {
        /* flex-basis: 90%; */
        flex-basis: 65%;
    }

    /** News Listing page starts**/
    .card-hero .hero-img h1 {
        font-size: 22px;
        line-height: 28px;
        margin-top: -85px;
    }

    .flag-nd-name img {
        width: 35px;
    }

    .match-card-box .flag-nd-name h4 {
        font-size: 15px;
        line-height: 16px;
    }

    .match-card-box .team-flag-name-nd-score h3 {
        font-size: 30px;
        line-height: 32px;
    }

    .grp-dtl p {
        font-size: 13px;
        line-height: 15px;
    }

    .grp-dtl span {
        font-size: 13px;
        line-height: 15px;
    }

    .vs-dtl h4 {
        font-size: 20px;
        line-height: 20px;
    }

    .other-details a {
        font-size: 10px;
        line-height: 12px;
    }

    .right-box-form {
        width: 100.0%;
        padding: 12px;
        border-radius: 12px;
    }

    .stck-pos .banner-img {
        max-width: 336px;
        max-height: 280px;
    }

    .stck-pos .banner-img .carousel-inner {
        max-width: 336px;
        max-height: 280px;
    }

    .stck-pos .ad-img {
        width: 336px;
        height: 280px;
    }

    /* .video-card .video-info .date-n-duration .date-btm {
        display: none;
    } */
    .right-box-form .text-news {
        font-size: 30px;
        line-height: 36px;
    }

    .right-box-form .text-subs {
        font-size: 18px;
    }

    .right-box-form p {
        font-size: 14px;
        line-height: 20px;
    }

    /** News Listing page ends**/
    /** News template single **/
    .right-internal-media-part .download-media-btn {
        width: 210px;
    }

    /** News template single ends**/
    .news-temp-row .heading {
        width: 80%;
        padding: 2rem 0 1rem 0;
    }

    .news-temp-top-div .heading h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .news-temp-top-div .heading h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .main-news-section .top-main-image {
        /* height: 400px; */
        object-fit: cover;
        object-position: center center;
        width: 100%;
    }

    /* .related-news-container .related-news-cards .single-card {
        width: 32%;
    } */
    .related-news-container .related-news-cards .single-card h5 {
        font-size: 16px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        min-height: unset;
    }

    .mn-col-main-content .main-content-news-page {
        background: #fff;
        margin-top: 0px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 25px 20px 25px 20px;
    }

    .related-news-container .related-news-hdng h4 {
        font-size: 34px;
    }

    .related-news-container .related-news-hdng .vm-btn {
        font-size: 16px;
        padding: 10px 18px;
    }

    .related-news-container .related-news-cards {
        /* padding: 2rem 0; */
        display: flex;
        align-items: flex-start;
        flex-flow: wrap;
    }

    .vm-btn-mob {
        display: none;
    }

    /** News Highlight overview **/
    #news-highlght-sec .news-temp-top-div {
        padding: 2rem 0 0.5rem 0;
    }

    .main-tournament-row .mn-tournament-part {
        flex-direction: column;
    }

    #recent-news .recent-news-row .desc-date-card span {
        display: flex;
        align-items: center;
    }

    .ad-cntnr .ad-img-hr {
        width: 80%;
    }

    /** News Highlight overview **/
    /** page not found css **/
    .mn-pnf-content .right-info-part {
        padding: 40px 40px;
    }

    .mn-pnf-content .left-pic-part h1 {
        font-size: 220px;
    }

    .right-info-part h2 {
        padding-bottom: 1rem;
    }

    /** page not found css ends **/
    /** Register page **/
    .img-nd-hd {
        left: 10%;
    }

    .img-nd-hd .logo-inside-dynamic {
        width: 100%;
        max-width: 280px;
    }

    .reg-page .right-info-part {
        padding: 20px 40px;
    }

    .reg-right-part h2 {
        font-size: 35px;
    }

    /** Homepage amec**/
    .timer-part .timer-sub-part {
        flex-direction: column;
        width: auto;
        padding: 5px 15px;
    }

    .ame-tag,
    .acch-tag,
    .aufc-tag,
    .awch-tag {
        font-size: 10px;
        line-height: 13px;
        padding: 4px 2px;
        border-radius: 8px;
    }

    .home-card-big .tag-nd-heading h3 {
        font-size: 26px;
        line-height: 28px;
    }

    .card-rows-bottom .single-card-home h5 {
        font-size: 20px;
        line-height: 22px;
    }

    .comm-part .bg-com {
        height: 335px;
    }

    .new-community-sec .left-img-part .player-img {
        width: 450px;
    }

    .new-community-sec .inner-con-part {
        left: 400px;
    }

    .new-community-sec .inner-con-part {
        left: 460px;
        bottom: 25px;
    }

    .inner-con-part h5 {
        font-size: 26px;
        line-height: 28px;
    }

    .inner-con-part h3 {
        font-size: 56px;
        line-height: 60px;
    }

    .inner-con-part p {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .solid-btn {
        padding: 10px 14px;
    }

    #tournament-section-home {
        background-size: cover;
        background-position: right right;
    }

    /** pre draw css starts **/
    .mn-trophy-dv {
        border-radius: 12px;
        padding: 0 12px;
    }

    .mn-trophy-dv .trophy-title-part h2 {
        font-size: 40px;
        line-height: 42px;
    }

    .mn-trophy-dv .trophy-title-part h4 {
        font-size: 15px;
        line-height: 16px;
    }

    .mn-trophy-dv .trophy-title-part h5 {
        font-size: 16px;
        line-height: 17px;
    }

    .mn-trophy-dv .trphy-img {
        width: 150px;
    }

    /** championship match listing page **/
    .match-listings {
        top: 62px;
    }

    .match-listings .nav-div-top {
        gap: 20px;
    }

    .right-sticky-watch .top-watch-box h2 {
        font-size: 42px;
        line-height: 42px;
    }

    .right-sticky-watch .top-watch-box {
        padding: 12px;
    }

    .right-sticky-watch .sub-btm-watch-box .right-btm-watch-box p {
        font-size: 16px;
        line-height: 16px;
    }

    .right-sticky-watch .sub-btm-watch-box {
        padding: 12px;
        gap: 12px;
    }

    .right-sticky-watch {
        width: 100%;
        top: 150px;
    }

    .right-sticky-watch .top-watch-box h3 {
        font-size: 24px;
        line-height: 24px;
    }

    /** championship match listing page ends **/
    /** match overview css **/
    .mn-left-part-scr .first-card-match .flag-nd-name h4 {
        font-size: 16px;
        line-height: 18px;
    }

    .tabs-mo-fst-cntnr #tab1 .col-1-mo {
        display: none !important;
    }

    .tabs-mo-fst-cntnr #tab1 .col-4-mo {
        max-width: 41% !important;
    }

    .tabs-mo-fst-cntnr .tab-overview .rd-box {
        padding: 25px;
    }

    .cart-md label {
        width: 345px;
        font-size: 18px;
    }

    .tabs-mo-fst-cntnr .tab-overview .rd-box h3 {
        font-size: 26px;
        line-height: 28px;
    }

    .tabs-mo-fst-cntnr .tab-overview .rd-box h2 {
        font-size: 46px;
        line-height: 48px;
    }

    .tabs-mo-fst-cntnr .inisde-mn-dv-ov {
        padding: 15px;
        min-width: 300px
    }

    .inisde-mn-dv-ov h3 {
        font-size: 26px;
        line-height: 26px;
    }

    .inisde-mn-dv-ov .insd-tm-flg p {
        font-size: 14px;
        line-height: 14px;
    }

    .inisde-mn-dv-ov .insd-tm-flg img {
        width: 25px;
    }

    .inisde-mn-dv-ov .location-right-insd {
        width: 100%;
        height: 110px;
    }

    .desk-leaderboard-ad {
        width: 470px;
        height: 80px;
    }

    .desk-leaderboard-ad .carousel-inner {
        width: 470px;
        height: 80px;
    }

    .left-img-part .player-img {
        width: 340px !important;
    }

    .logo-part-footer img {
        height: 75px !important;
    }

    .scnd-col-right-footer-inner .sign-in-trans {
        padding: 10px 15px;
        width: 190px;
    }

    /** timeline and inside fields CSS **/
    .mn-left-part-scr .first-card-match {
        margin-top: 130px;
    }

    .mid-part .score-inside-mid-part p {
        font-size: 36px;
        line-height: 38px;
    }

    .inside-top-stcky-dv-mo .btn-dv .notify-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .tabs-nav.stcky-nav.fixed {
        min-height: 70px;
    }

    .game-predict-tabs.fixed {
        top: 62px;
    }

    .nav-tab-sticky.fixed {
        /* top: 65px; */
        top: 154px;
    }

    .football_ground .fg-all-content {
        height: 410px;
    }

    .football_ground {
        padding: 2rem 1rem 1rem 1rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_1 {
        top: 11rem;
        left: 44px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_2 {
        top: 5rem;
        left: 4.75rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_3 {
        bottom: 3rem;
        left: 4.75rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_4 {
        top: 2rem;
        left: 10rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_5 {
        bottom: 1rem;
        left: 10rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_6 {
        top: 11rem;
        left: 11rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_9 {
        top: 11rem;
        right: 1.5rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_7 {
        top: 7rem;
        left: 13rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_8 {
        bottom: 4rem;
        left: 13rem;
    }

    .football_ground .fg-all-content .fg-content .team_b .inner-box .p_8 {
        bottom: 18rem;
        left: 1rem;
    }

    .football_ground .fg-all-content .fg-content .team_b .inner-box .p_7 {
        top: 18rem;
        left: 1rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .player span {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .player p {
        font-size: 12px;
        line-height: 14px;
        width: 50px;
    }

    /** Game prediction and All star page **/
    .blue-top-div .heading-bs h1 {
        font-size: 58px;
        line-height: 60px;
    }

    .blue-top-div .heading-bs h2 {
        font-size: 58px;
        line-height: 60px;
    }
    .tabs-mo-fst .nav-tabs .nav-link {
        font-size: 18px;
        line-height: 20px;
    }

    .hdng-div-match .btm-div-hdngs h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .htp-div .btm-htp-box {
        padding: 12px;
    }

    .htp-div .btm-htp-box .number-content-htp img {
        width: 38px;
    }

    .htp-div .btm-htp-box .number-content-htp h5 {
        font-size: 18px;
        line-height: 20px;
    }

    .inside-watch-box .btm-htp-box .number-content-htp p {
        font-size: 14px;
        line-height: 16px;
    }

    .main-leaderboard-row .top-heading-brdr h3 {
        font-size: 34px;
        line-height: 36px;
    }

    .main-rules-row .top-heading-brdr h3 {
        font-size: 34px;
        line-height: 36px;
    }

    .main-as-field .single-vote-box-us {
        width: 6.05em;
        height: 66px;
    }

    .main-as-field .single-vote-box {
        height: 66px;
        width: 6.05em;
    }

    /** broadcasting match listings **/
    .first-card-match-bml .flag-nd-name h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .single-content-regions-dtl .img-cntry-team-rgn span {
        font-size: 18px;
        line-height: 18px;
    }

    .main-bml-tabs-box-insd.active-border {
        border: 2px solid var(--main-clr);
    }

    .single-content-regions-dtl .img-cntry-team-rgn img {
        width: 26px;
    }

    .nav-pills-bml {
        padding: 20px 8px 20px 8px;
        gap: 8px;
    }

    .single-content-regions-dtl h4 {
        font-size: 18px;
        line-height: 20px;
        width: 120px;
    }

    .single-content-regions-dtl p {
        font-size: 14px;
        line-height: 18px;
    }

    .main-bml-tabs-box-insd {
        padding: 8px;
    }

    .sub-content-regions-dtl {
        padding: 8px;
        gap: 8px;
    }

    .single-content-regions-dtl {
        padding: 8px 8px;
        gap: 8px;
    }

}

/** Media Query For Mobile phone device **/
@media (max-width: 768px) {

    /** after aufc CSS **/
    .img-wrapper {
        width: auto !important;
        height: max-content;
    }

    #scrollToTopBtn {
        bottom: 20px;
        right: 15px;
        padding: 10px 15px 10px 10px;
    }

    .desc-date-card {
        flex-basis: 65% !important;
    }

    .single-card-home .desc-date-card {
        flex-basis: 65%;
    }

    /** News Listing page starts**/
    #desk-nav {
        display: none;
    }

    .zero-pad-col {
        padding-right: 15px;
        padding-left: 15px;
    }

    .back-btn-blk a {
        /* border-radius: var(--components-gap-rad-300, 12px);
        border: 2px solid var(--Neutral-900, #14161B); */
        padding: 8px 16px;
    }

    .news-top-sec .heading-buttons h2 {
        font-size: 32px;
    }

    .news-top-sec .heading-buttons .form-control {
        padding: 6px 7px;
        height: 40px;
    }

    .card-hero .hero-img h1 {
        color: #0f0f0f;
        font-family: var(--font-oswald-700);
        font-size: 32px;
        padding: 12px 0px !important;
        margin: 0 !important;
        background: transparent !important;
        min-height: unset !important;
    }

    .card-hero .hero-img .date {
        padding: 0;
        font-size: 12px;
    }

    .right-img img {
        width: 200px;
        aspect-ratio: 200/112;
    }

    .card-hero .hero-img .short-desc {
        font-size: 14px;
    }

    .sub-news-div h3 {
        font-size: 18px;
        padding-right: 22px;
    }

    .sub-news-div .short-desc {
        display: none;
    }

    .sub-news-div .date {
        padding-top: 0;
        margin-bottom: 2px;
    }

    /* .sub-news-div a {
        display: none;
    } */
    .aufc-news-pgn ul {
        justify-content: center !important;
        margin: 2rem 0 !important;
    }

    .right-box-form {
        width: 100%;
    }

    /** News Listing page ends**/
    /** News Template single page **/
    .back-btn-blk a {
        padding: 8px 12px;
    }

    .back-btn-wht a {
        padding: 8px 12px;
    }

    .mn-col-main-content {
        padding-bottom: 0.2rem;
    }

    .news-temp-top-div .heading h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .news-temp-top-div .heading h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .news-temp-top-div {
        padding: 0;
    }

    .back-btn-blk {
        padding-top: 1.5rem;
    }

    .back-btn-wht {
        padding-top: 1.5rem;
    }

    #news-temp-sec {
        background-size: cover;
    }

    .news-temp-row .heading {
        width: 100%;
        padding: 2rem 0 0.5rem 0;
    }

    .news-temp-top-div .temp-post-detail {
        display: flex;
        /* flex-direction: column;
        align-items: flex-start; */
        align-items: center;
        padding: 10px 0;
    }

    .main-news-section .top-main-image {
        width: 100%;
        /* height: 203px; */
        object-fit: cover;
    }

    .media-kit-div {
        padding: 24px;
        margin: 2rem 0;
    }

    .media-kit-div .main-internal-media-div {
        flex-direction: column;
        gap: 20px;
    }

    .right-internal-media-part .download-media-btn {
        width: 330px;
    }

    /* #main-thumbnail-news-page {
        height: 204px;
    } */
    .mn-col-main-content .main-content-news-page {
        background: #fff;
        margin-top: 0px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 20px 0px 20px 0px;
    }

    .mn-col-main-content .main-content-news-page .internal-img-news-temp {
        width: calc(100% + 0px);
        margin-left: auto;
        border-radius: 10px;
        height: auto;
        padding: 20px 0;
    }

    .share-now-mob {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px;
        padding-top: 30px;
    }

    .share-now-mob p {
        color: var(--Neutral-500, #667085);
        font-family: var(--font-satoshi-700);
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        margin: 0;
        /* 125% */
    }

    .share-now-mob .social-details {
        display: flex;
        gap: 10px;
    }

    .share-now-mob .social-details img {
        width: 25px;
        height: 25px;
        margin: 5px;
        padding: 0 !important;
    }

    .related-news-container .related-news-hdng h4 {
        font-size: 32px;
        line-height: 34px;
    }

    .videos-cntnr .related-news-cards {
        padding: 2rem 15px 0.5rem 15px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        overflow-x: scroll !important;
        /* flex-direction: column; */
        gap: 20px;
    }

    .related-news-container .related-news-cards {
        padding: 2rem 15px 0.5rem 15px;
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        /* flex-direction: column; */
        gap: 20px;
    }

    .related-news-container .related-news-cards .video-listing-card {
        flex: 0 0 90% !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 10px 0 !important;
        /* border-bottom: solid 1px rgba(102, 112, 133, 0.35); */
        border-bottom: 0px !important;
    }

    .desc-date-card {
        flex-basis: 65%;
    }

    #recent-news .recent-news-row .related-news-cards .single-card h5 {
        padding-top: 0px;
    }

    .related-news-container .related-news-cards .single-card :last-child {
        border-bottom: 0px;
    }

    .related-news-container .video-listing-card .single-card-img {
        max-width: 100% !important;
        height: auto !important;
    }

    .related-news-container .related-news-cards .single-card {
        flex-direction: row-reverse;
        padding: 0;
        border-bottom: solid 1px var(--Neutral-a300, rgba(102, 112, 133, 0.35));
        padding-bottom: 10px !important;
    }

    .related-news-container .related-news-cards .single-card-img {
        border-radius: 8px;
        height: 67px;
        max-width: 200px;
        object-fit: cover;
        aspect-ratio: 320 / 180;
        object-position: center center;
    }

    .related-news-container .related-news-hdng {
        padding-bottom: 2px;
        padding-top: 1rem;
    }

    .related-news-container .related-news-cards .single-card h5 {
        font-size: 18px;
        min-height: unset;
    }

    .related-news-container .related-news-cards .single-card .desc {
        display: none;
    }

    .related-news-container .related-news-cards .single-card .rm-link {
        display: none;
    }

    .related-news-hdng .vm-btn {
        display: none;
    }

    .vm-btn-mob {
        display: block;
        color: var(--main-clr);
        font-family: var(--font-oswald-700);
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.36px;
        text-transform: uppercase;
        margin-top: 1rem;
        padding: 10px 15px;
        border-radius: var(--components-gap-rad-300, 8px);
        border: 2px solid var(--main-clr);
        width: 100%;
        text-align: center;
    }

    .vm-btn-mob:hover {
        border: 2px solid var(--main-hover) !important;
        transition: 0.2s ease-in-out !important;
        color: var(--main-hover) !important;
        text-decoration: none;
    }

    .related-news-hdng .vm-btn-mob {
        margin-bottom: 10px;
    }

    .ad-cntnr .ad-img-hr {
        max-width: 100%;
    }

    /** News template page single ends **/
    /** News highlights/overview start **/
    #news-highlght-sec .news-temp-top-div {
        padding: 1rem 0 0.5rem 0;
    }

    #news-highlght-sec .news-temp-top-div .heading-nh h1 {
        font-size: 48px;
        line-height: 50px;
    }

    #news-highlght-sec .news-temp-top-div .heading-nh h2 {
        font-size: 48px;
        line-height: 50px;
    }

    #recent-news .recent-news-row {
        padding-top: 1rem;
    }

    .related-news-container .related-news-cards {
        padding: 1rem 15px 2.5rem 15px;
    }

    .main-tournament-row .mn-tournament-part .inner-left-tournament-part h4 {
        font-size: 24px;
    }

    .img-nd-logo-text {
        padding-bottom: 1rem;
    }

    #tournament-section {
        background-position: top left;
    }

    .main-tournament-row .mn-tournament-part {
        gap: 20px;
        padding: 60px 0;
    }

    .single-tournament-part .title-tournament h5 {
        font-size: 12px;
        line-height: 14px;
    }

    .tournament-name h5 {
        font-size: 18px;
        line-height: 22px;
    }

    .single-tournament-part .title-tournament h4 {
        font-size: 16px;
        line-height: 18px;
    }

    .main-tournament-row .mn-tournament-part .inner-right-tournament-part {
        display: flex;
        flex: 1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .main-tournament-row .mn-tournament-part {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .main-tournament-row .mn-tournament-part .inner-left-tournament-part h2 {
        font-size: 48px;
        line-height: 50px;
    }

    .main-tournament-row .mn-tournament-part .single-tournament-part {
        width: 43vw;
    }

    .main-tournament-row .mn-tournament-part .inner-right-tournament-part {
        gap: 10px;
        justify-content: center;
    }

    /** News highlights/overview ends **/
    /** Videos Listing page **/
    .news-top-sec .back-btn a {
        padding: 8px 12px;
    }

    .video-listing-card .hero-img h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .sub-videos-div .right-img .video-img {
        width: 200px;
        aspect-ratio: 200 / 112;
        border-radius: 8px;
    }

    /* .video-info-sml .date-n-duration-btm .date-btm {
        display: none;
    } */
    .video-info-sml .pb-vl-sml-rght {
        display: block;
    }

    .pb-vl-sml-rght .ply-btn-btm {
        width: 16px !important;
        aspect-ratio: 1/1;
    }

    /* .single-card-home .ancher-news {
        display: none;
    } */
    /** Video Single detail page **/
    .video-card .video-info .date-n-duration .date-btm {
        display: block;
    }

    .mn-vid-sec iframe {
        aspect-ratio: 16 / 9 !important;
        width: 100%;
        max-width: 100%;
    }

    .single-card .title-nd-link {
        flex-basis: 90%;
    }

    .video-card .single-card-img {
        max-width: 100%;
        height: auto;
        width: 100%;
        aspect-ratio: 200 / 112;
        border-radius: 8px;
    }

    .video-card .video-info {
        margin-top: -30px;
        padding: 1px 5px
    }

    .video-card .video-info .date-n-duration p {
        font-size: 11px;
        line-height: 14px;
        margin: 0px 0px;
        padding: 7px 4px;
    }

    .video-card .video-info .date-n-duration {
        justify-content: space-between;
    }

    .video-card .play-btn-dv .ply-btn-hero {
        width: 16px;
    }

    /** Video Single detail page ends **/
    /** site down CSS **/
    .site-down {
        margin-top: 10px;
    }

    .site-down .logo-nd-txt-500 {
        padding: 10px 0;
    }

    .site-down h1 {
        font-size: 40px;
        line-height: 40px;
        padding-bottom: 25px;
    }

    /** 404 page **/
    .mn-pnf-content {
        flex-direction: column;
        margin: 0 -15px;
    }

    .mn-pnf-content .right-info-part {
        padding: 15px 15px;
        align-self: normal;
    }

    .mn-pnf-content .left-pic-part h1 {
        font-size: 144px;
        line-height: 160px;
    }

    .right-info-part h2 {
        font-size: 32px;
        line-height: 36px;
        padding-bottom: 10px;
    }

    /** 404 page ends **/
    /** Terms and conditions and other static pages **/
    .static-section .static-row {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .static-section .back-btn-blk {
        display: block;
        margin-bottom: 2rem;
    }

    .static-row h2 {
        font-size: 40px;
        line-height: 45px;
    }

    .miscellaneous-dtl {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .static-inner-col h3 {
        font-size: 20px;
    }

    /** Terms and conditions and other static pages ends**/
    /** Register page **/
    .reg-page .reg-left-part {
        display: none;
    }

    .reg-page .right-info-part {
        padding: 30px 1px;
        flex-basis: 100%;
    }

    .reg-right-part .reg-with-social-links {
        padding: 3px 0 150px 0;
    }

    /** Register page ends **/
    /** Register OTP page start **/
    .reg-form .opt-div {
        justify-content: center;
        gap: 8px;
    }

    .reg-form .opt-div .otp-control {
        padding: 8px !important;
        width: 45px;
    }

    /** Register OTP page ends **/
    /** Videos listing highlight page **/
    .video-listing-card .vh-tl {
        flex-basis: 90%;
    }

    /** about us page **/
    #top-blue-section .blue-top-div {
        padding: 1rem 0 1rem 0;
    }

    .mn-hero-img-top img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .blue-top-div .heading-bs h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .blue-top-div .heading-bs h2 {
        font-size: 48px;
        line-height: 56px;
    }

    .blue-top-div .heading-bs {
        width: 100%;
        padding: 0.5rem 0;
    }

    .main-inner-sect-about .mn-content-section {
        padding-top: 1rem;
    }

    .main-inner-sect-about .mn-content-section h2 {
        font-size: 40px;
        line-height: 42px;
    }

    .main-inner-sect-about .mn-content-section p {
        font-size: 14px;
        line-height: 20px;
    }

    .main-inner-sect-about .mn-content-section h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .main-inner-sect-about .mn-content-section .inner-principles {
        flex-direction: column;
        gap: 10px;
    }

    .mn-content-section .inner-principles h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .mn-content-section .btm-details h4 {
        font-size: 18px;
        line-height: 20px;
    }

    /** My account page starts **/
    .my-acnt .back-btn-wht {
        display: block;
        padding-bottom: 10px;
    }

    .my-account .card-body-inside {
        padding: 20px 10px 30px 10px;
    }

    /** my account page ends **/
    /** Homepage CSS, AMEC championship pre draw **/
    .desk-leaderboard-ad {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .desk-leaderboard-ad .carousel-inner {
        width: 100%;
        height: auto;
    }

    .desk-leaderboard-ad .desk-leaderboard-ad-img {
        aspect-ratio: 320 / 50;
    }

    .ad-box-home {
        margin-top: 2rem;
        width: 100%;
        height: auto;
        /* height: 200px; */
    }

    .mn-cntnr-amec-star {
        background: linear-gradient(270deg, #ffffffd4 0%, #ffffffd4 100%), url(..//images/red-star.png) no-repeat 100% -3% !important;
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .mn-cntnr-amec-star .right-col .main-right:nth-child(2) {
        padding-top: 5px;
    }

    .mn-cntnr-amec-star .right-col .main-right:first-child {
        border: none;
    }

    .mn-cntnr-amec-star .card-rows-bottom {
        padding-top: 10px;
    }

    .mn-cntnr-amec-star .right-col .main-right p {
        display: none;
    }

    .mn-cntnr-amec-star .right-col .rm-link {
        display: none;
    }

    .mn-cntnr-amec-star .single-card-home .single-card-img {
        height: 56px;
        width: 100px;
    }

    .mn-cntnr-amec-star .cards-sec-home {
        background: transparent;
    }

    .amec-mn-cntnr {
        padding-bottom: 2rem !important;
    }

    .amec-card-rows-bottom .single-card-home {
        flex-direction: row-reverse !important;
        justify-content: space-between;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mn-cntnr-amec-star .right-col {
        background: transparent;
    }

    .mn-cntnr-amec-star .main-home-content .vm-btn {
        display: none !important;
    }

    .amec-card-rows-bottom .single-card-home p {
        display: none;
    }

    .amec-card-rows-bottom .single-card-home .rm-link {
        display: none;
    }

    .card-rows-bottom .single-card-home h5 {
        font-size: 18px;
        line-height: 20px;
        padding-top: 0;
    }

    .mn-trophy-dv {
        border-radius: 10px;
        padding: 0 10px;
        margin-top: 25px;
    }

    .home-card-big {
        margin-top: 5px;
    }

    .trophy-title-part {
        padding: 20px 10px 20px 135px;
    }

    .mn-trophy-dv .trophy-title-part h4 {
        font-size: 8px;
        line-height: 10px;
    }

    .mn-trophy-dv .trophy-title-part h2 {
        font-size: 28px;
        line-height: 30px;
    }

    .mn-trophy-dv .trophy-title-part h5 {
        font-size: 10px;
        line-height: 12px;
    }

    .mn-trophy-dv .trphy-img {
        width: 54px;
    }

    /* .ad-box-home {
        width: 100%;
        height: 270px;
    } */
    .left-right-arrow {
        display: flex;
        gap: 5px;
    }

    .left-right-arrow .fa-chevron-left,
    .fa-chevron-right {
        border-radius: 50px;
        border: 2px solid var(--main-clr);
        padding: 10px 14px;
    }

    .flex-table {
        gap: 15px;
        overflow-x: scroll;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    /** News Predraw championship ends **/
    /** News Postdraw championship starts **/
    /* .nt-scrbl-dv {
        height: 330px;
    } */

    .scrbl-dv {
        height: max-content;
        /* max-height: 400px; */
    }

    .mn-cntnr-amec-star .post-draw {
        flex-direction: column-reverse;
        background-color: #fff;
    }

    .main-right-new .top-box-header h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .main-right-new .bottom-card-box-hd {
        font-size: 14px;
        line-height: 16px;
    }

    .main-right-new .top-box-header .timer-in {
        flex-direction: row;
        width: 90px;
        height: 42px;
        padding: 2px 0px;
        gap: 3px;
    }

    .top-box-header .flex-mob {
        flex-direction: column-reverse;
    }

    .bottom-card-box .nav-tabs .nav-link.active {
        font-size: 16px;
    }

    .bottom-card-box .nav-tabs .nav-link {
        font-size: 16px;
    }

    .match-card-box .first-card-match {
        padding: 8px;
    }

    .flag-nd-name img {
        width: 30px;
    }

    .match-card-box .flag-nd-name {
        gap: 5px;
    }

    .match-card-box .flag-nd-name h4 {
        font-size: 12px;
        line-height: 14px;
    }

    .match-card-box .team-flag-name-nd-score h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .match-card-box .other-details {
        gap: 5px;
    }

    .heading-nd-btn .vm-btn {
        display: none;
    }

    .mn-cntnr-amec-star .right-col .ftr-dv {
        flex-direction: column-reverse;
    }

    .mn-cntnr-amec-star .right-col .ftr-dv .card-img-sml {
        width: 100% !important;
        height: 190px !important;
        aspect-ratio: 200 / 111;
        object-fit: cover;
        border-radius: 8px;
    }

    .mn-cntnr-amec-star .right-col .ftr-dv h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .mn-cntnr-amec-star .right-col .ftr-dv p {
        display: block;
    }

    .mn-cntnr-amec-star .right-col .ftr-dv .rm-link {
        display: block;
    }

    /** News Postdraw championship ends **/
    #home-main-blue .main-count-down {
        gap: 10px;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 10px;
    }

    .amec-mn-cntnr .heading-nd-btn .vm-btn {
        display: none;
    }

    .amec-mn-cntnr .videos-cntnr .related-news-cards {
        padding-top: 10px !important;
    }

    #home-main-blue .inside-img-content-right .card-img-sml {
        height: 67px;
        width: 119px;
        border-radius: 8px;
        aspect-ratio: 200 / 112;
        object-fit: cover;
    }

    #home-main-blue .right-col .main-right {
        gap: 16px;
    }

    #home-main-blue .main-count-down .logo-part-timer {
        gap: 8px;
        padding: 8px 6px 8px 6px;
    }

    .main-count-down .logo-part-timer h5 {
        font-size: 12px;
        line-height: 14px;
    }

    .main-count-down .logo-part-timer h4 {
        font-size: 12px;
        line-height: 14px;
    }

    .timer-part .timer-sub-part {
        width: unset;
        display: flex;
        flex-direction: column;
        padding: 5px;
        gap: 5px;
    }

    .main-count-down .logo-part-timer img {
        width: 26px;
    }

    #home-main-blue .second-div-inner {
        flex-direction: row;
        gap: 8px;
    }

    .main-count-down .timer-part {
        gap: 6px
    }

    /** timer CSS **/
    .main-count-down {
        gap: 10px;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 10px;
    }

    .second-div-inner {
        gap: 5px;
    }

    .main-count-down .logo-part-timer {
        gap: 8px;
        padding: 13px 8px 13px 6px;
    }

    /** new timer css ends **/
    /** timer CSS **/
    .main-count-down {
        gap: 10px;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 10px;
    }

    .second-div-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .main-count-down .logo-part-timer {
        gap: 8px;
        /* padding: 13px 8px 13px 8px; */
        padding: 0 0 0 0;
    }

    .main-trophy-tour-me img {
        width: 65px;
    }

    /** new timer css ends **/
    .credits-part {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .credits-part p {
        padding-bottom: 0;
    }

    .credits-part img {
        height: 16px;
    }

    .timer-part .timer-sub-part p {
        font-size: 22px;
        line-height: 24px;
        width: 34px;
    }

    .timer-part .timer-sub-part span {
        font-size: 12px;
        line-height: 14px;
        font-family: var(--font-satoshi-700);
    }

    .heading-nd-btn {
        padding: 20px 0px 10px 0px;
    }

    .heading-nd-btn .arrow-btn {
        display: none;
    }

    .heading-nd-btn h1 {
        font-size: 48px;
        line-height: 54px;
    }

    .heading-nd-btn h2 {
        font-size: 48px;
        line-height: 54px;
    }

    .home-card-big .tag-nd-heading {
        margin-top: 20px;
        background: transparent;
        padding: 0;
    }

    .home-big-card-lower-div {
        padding-top: 5px;
    }

    .right-col .main-right:first-child {
        padding-top: 25px;
        padding-bottom: 30px;
    }

    .cards-sec-home .right-col {
        padding-top: 5px;
        display: flex;
        flex-direction: column;
    }

    .videos-content {
        padding-bottom: 2rem;
    }

    .home-videos-cntnr .cards-sec-home .sub-news-div {
        flex-direction: column-reverse;
    }

    .home-videos-cntnr .card-flex-small {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .card-flex-small .right-col {
        display: flex !important;
        flex-direction: row !important;
        flex: 0 0 100% !important;
        padding-left: 0px !important;
    }

    .home-videos-cntnr .col-flex-6 {
        flex: 0 0 90% !important;
    }

    .home-videos-cntnr .mw-370 {
        max-width: 369px;
    }

    .home-videos-cntnr .card-hero .video-info {
        margin-bottom: 2px;
    }

    .home-videos-cntnr .sub-videos-div .video-img {
        width: 341px !important;
        aspect-ratio: 680 / 383;
        /* max-width: 100% !important; */
        border-radius: 8px !important;
        /* aspect-ratio: 200 / 112; */
        border-radius: 8px;
    }

    .home-videos-cntnr .sub-news-div {
        /* padding: 2.3rem 0px */
        padding: 16px 15px 30px 0;
        border-bottom: 0 !important;
    }

    .home-videos-cntnr .card-hero .hero-img .img-text {
        border-radius: 8px;
        aspect-ratio: 680 / 383;
        width: 339px;
    }

    .home-videos-cntnr .play-btn-dv .ply-btn-hero {
        width: 21px;
    }

    .home-videos-cntnr .card-hero .video-info {
        padding: 20px 10px 10px 5px;
        width: 339px;
    }

    .home-videos-cntnr .sub-news-div h3 {
        font-size: 24px;
        padding-right: 26px;
    }

    .home-videos-cntnr .video-info-sml .date-n-duration-btm .date-btm {
        display: block !important;
    }

    .home-videos-cntnr .right-img .video-info-sml {
        margin-top: -35px;
        display: flex;
        justify-content: space-between;
        padding: 5px 5px 15px 5px;
    }

    .home-videos-cntnr .right-img .date-n-duration-btm p {
        font-family: var(--font-satoshi-700);
        font-size: 16px;
        line-height: 18px;
    }

    .home-videos-cntnr .video-listing-card .video-info .date-n-duration p {
        font-family: var(--font-satoshi-700);
        font-size: 16px;
        line-height: 18px;
    }

    .home-videos-cntnr .pb-vl-sml-rght .ply-btn-btm {
        width: 21px !important;
        aspect-ratio: 1 / 1;
    }

    .right-col .main-right:nth-child(2) {
        padding-bottom: 0px !important;
        border-bottom: none !important;
    }

    .home-videos-cntnr .hidden-sm-dvc {
        display: none;
    }

    /* .home-videos-cntnr .video-listing-card .hero-img{
    } */
    .right-col .main-right {
        gap: 20px;
        justify-content: space-between;
    }

    .inside-img-content-right .card-img-sml {
        width: 100px;
        aspect-ratio: 200 / 112;
        border-radius: 8px;
    }

    .single-card-home .single-card-img {
        height: 67px;
        width: 119px;
        border-radius: 8px;
        aspect-ratio: 200 / 112;
    }

    .main-right .inside-img-content-right .card-img-sml {
        width: 100px;
        height: 56px;
        aspect-ratio: 200 / 111;
        object-fit: cover;
        border-radius: 8px;
    }

    .right-col .main-right h3 {
        font-size: 18px;
        line-height: 21px;
    }

    #home-main-blue .right-col .main-right p {
        display: none;
    }

    /* #home-main-blue .inside-text-content-left .rm-link-wht {
        display: none;
    } */
    #home-main-blue .card-rows-bottom .single-card-home {
        flex-direction: row-reverse;
        gap: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
        /* border-bottom: solid rgba(255, 255, 255, 0.20) 1px; */
    }

    #home-main-blue .card-rows-bottom .single-card-home .rm-link-wht {
        display: none;
    }

    #home-main-blue .card-rows-bottom .single-card-home p {
        display: none;
    }

    #home-main-blue .card-rows-bottom .single-card-home h5 {
        font-size: 18px;
        line-height: 21px;
    }

    .bn-btn-mob .arrow-btn {
        color: var(--main-clr);
        font-family: var(--font-oswald-700);
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.36px;
        text-transform: uppercase;
        padding: 12px 20px;
        border-radius: var(--components-gap-rad-300, 12px);
        border: 2px solid var(--main-clr);
        text-decoration: none;
        display: block;
        text-align: center;
        width: 100% !important;
    }

    .bn-btn-mob .arrow-btn:hover {
        color: var(--main-hover);
        transition: 0.2s ease-in-out !important;
        border-color: var(--main-hover);
    }

    .bn-btn-mob .arrow-btn:hover img {
        filter: brightness(0) saturate(100%) invert(15%) sepia(39%) saturate(6713%) hue-rotate(352deg) brightness(72%) contrast(115%) !important;
    }

    .bn-btn-mob .arrow-btn:active {
        transition: 0.2s ease-in-out !important;
        border-color: var(--main-active) !important;
        color: var(--main-active) !important;
    }

    .bn-btn-mob .arrow-btn:active img {
        filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(5082%) hue-rotate(349deg) brightness(96%) contrast(115%) !important;
    }

    /* .card-rows-bottom .single-card-home .single-card-img {
        width: 135px !important;
       height: auto !important;
        aspect-ratio: 200 / 112;
        border-radius: 8px;
    } */
    #tournament-section-home .main-tournament-row .mn-tournament-part {
        align-items: flex-start;
    }

    #tournament-section-home {
        background-size: cover;
        background-position: left center;
    }

    .heading-nd-btn-blck .arrow-btn {
        display: none;
    }

    .heading-nd-btn-blck h2 {
        font-size: 48px;
        line-height: 56px;
    }

    .heading-nd-btn-blck {
        padding: 10px 0 10px 0;
    }

    .horizontal-scroll .nav-link {
        font-size: 16px;
        line-height: 18px;
    }

    .home-videos-cntnr .video-listing-card {
        display: flex;
        flex-direction: row-reverse;
        /* padding-top: 30px; */
        padding-top: 1px;
        padding-bottom: 30px;
        gap: 20px;
    }

    .home-videos-cntnr .vm-btn-mob {
        width: 92%;
        /* margin: auto; */
        display: block;
    }

    .home-videos-cntnr .sub-news-div .left-content {
        flex-basis: 100%;
    }

    .home-videos-cntnr .video-listing-card .title-nd-link h5 {
        font-size: 18px;
        line-height: 22px;
        min-height: unset;
    }

    .video-listing-card .title-nd-link span {
        margin: 0 0 1rem 0;
    }

    .inner-con-part h5 {
        font-size: 25px;
        line-height: 27px;
    }

    .inner-con-part p {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .inner-con-part h3 {
        font-size: 48px;
        line-height: 54px;
    }

    .solid-btn {
        padding: 12px 20px;
    }

    .left-img-part .player-img {
        position: absolute;
        left: 15px;
        width: 345px;
        bottom: 360px;
    }

    .comm-part .bg-com {
        width: 100%;
        object-fit: cover;
        object-position: center;
        height: 405px;
        border-radius: 10px;
    }

    .inner-con-part {
        display: flex;
        flex-direction: column;
        padding: 20px 30px;
        left: 1px;
        /* top: calc(1rem - 450px); */
        gap: 5px;
    }

    .comm-part .right-con-part {
        bottom: -20px;
    }

    .com-row {
        margin-top: 370px;
        padding-bottom: 1rem;
    }

    /** Homepage ends **/
    /** championship  match listings page  starts**/
    .btm-new-watch-box {
        height: 470px;
    }

    .match-listings {
        top: 62px;
    }

    .match-listing-main .mn-dt-part {
        padding: 1rem 0;
    }

    .match-listings .nav-div-top {
        padding: 5px 15px;
    }

    .stcky-nav-cntnr .prev,
    .nex {
        display: none;
    }

    .flex-horizontal ul {
        gap: 05px;
    }

    /* .inside-div-match ul li a {
        padding: 6px 12px;
    } */
    .hdng-div-match h4 {
        font-size: 18px;
        line-height: 18px;
    }

    .hdng-div-match .btm-div-hdngs h3 {
        font-size: 30px;
        line-height: 32px;
    }

    .vs-dtl-main {
        justify-content: space-evenly;
        flex-basis: 40%;
    }

    .vs-dtl-main h3 {
        font-size: 24px;
        line-height: 24px;
    }

    .mn-left-part-scr .team-flag-name-nd-score {
        width: 20%;
    }

    .mn-left-part-scr .vs-dtl-main {
        width: 60%;
    }

    .other-details .mtch-dtl-mo {
        gap: 4px;
    }

    .inside-mob-btm-watch {
        background-color: #000;
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        padding: 0 1rem;
    }

    .inside-mob-btm-watch .sub-internal-div-mob {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .inside-mob-btm-watch .sub-internal-div-mob h4 {
        color: #FFFFFF;
        font-family: var(--font-oswald-700);
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 125% */
        letter-spacing: 0.32px;
        text-transform: uppercase;
    }

    .inside-mob-btm-watch .sub-internal-div-mob h3 {
        color: #FFFFFF;
        font-family: var(--font-oswald-700);
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        /* 100% */
        text-transform: uppercase;
    }

    .inside-mob-btm-watch .sub-internal-div-mob .watch-view-btn {
        color: var(--main-clr);
        font-family: var(--font-oswald-700);
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px;
        /* 114.286% */
        letter-spacing: 0.28px;
        text-transform: uppercase;
        border-radius: var(--components-gap-rad-300, 8px);
        border: 2px solid var(--main-clr);
        padding: 12px 16px;
    }

    .match-listing-main .right-sticky-watch {
        display: none;
    }

    .right-sticky-watch .top-watch-box h3 {
        font-size: 24px;
        line-height: 24px;
    }

    .right-sticky-watch .top-watch-box h2 {
        font-size: 40px;
        line-height: 40px;
    }

    #ml-modal-sec .modal.show {
        z-index: 999999999;
        bottom: -1px !important;
        transition: all 0.5s ease-in-out;
    }

    .mn-watch-btn-dv {
        display: flex;
        justify-content: space-between;
        position: relative;
        background: var(--main-clr);
    }

    .match-listing-modal .close {
        position: absolute;
        right: 15px;
        top: 15px;
        opacity: 1;
    }

    .match-listing-modal .modal-body {
        padding: 0;
        transition: all 0.5s ease-in-out;
    }

    .match-listing-modal .right-sticky-watch {
        border: 3px solid var(--main-clr);
        border-bottom: 0px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        max-width: 100% !important;
        float: none !important;
        position: unset !important;
    }

    /* .modal.show {
        bottom: 0px;
        height: inherit;
        z-index: 999999999999999;
    }
    .modal {
        top: auto !important;
        left: 0;
        border-radius: 20px 20px 0 0;
        transition: all 0.5s ease-in-out;
    }
    .main-boot-mod .modal-content {
        width: 100% !important;
        top: 10px;
        border: none;
    }
    .modal-content {
        border-radius: 20px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
        border: 0;
    }
    .modal-dialog {
        margin: 0px !important;
    }
    .main-boot-mod .modal-body {
        padding-top: 0px;
    } */
    .modal.show {
        bottom: 0px;
        height: inherit;
    }

    .modal {
        top: auto !important;
        bottom: -100%;
        left: 0;
        border-radius: 20px 20px 0 0;
    }

    .modal-dialog {
        margin: 0px !important;
    }

    /** championship  match listings page  ends**/
    /** Match overview page **/
    #match-overview .mn-outr-dv {
        flex-direction: column;
    }

    .mn-left-part-scr .first-card-match {
        margin-top: 30px;
    }

    .mn-left-part-scr .first-card-match .flag-nd-name h4 {
        color: #FFF;
        font-family: var(--font-satoshi-700);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px;
        text-align: center;
        /* 133.333% */
    }

    .other-details .mtch-dtl-mo p {
        font-size: 12px;
        line-height: 14px;
    }

    .mn-left-part-scr .first-card-match .time-dtl h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .grp-dtl p {
        font-size: 14px;
        line-height: 16px;
    }

    .grp-dtl span {
        font-size: 14px;
        line-height: 16px;
    }

    .mn-left-part-scr .first-card-match {
        margin-top: 0px;
        padding: 0 10px;
    }

    .mn-outr-dv .mn-left-part-scr {
        padding: 50px 0;
    }

    .mn-right-part-scr .ban-img-mo {
        height: 230px;
        /* height: auto; */
    }

    .mn-right-part-scr .notify-btn {
        top: 38%;
        left: 25%;
        padding: 12px 20px;
    }

    .mn-left-part-scr .first-card-match .other-details {
        flex-direction: column-reverse;
    }

    #match-overview .mn-outr-dv {
        margin: 0 -15px;
    }

    .tabs-mo-fst .nav-tabs {
        justify-content: center;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .tabs-mo-fst .nav-tabs .nav-item:first-child {
        margin-left: 30px;
    }

    /* .tabs-mo-fst .nav-tabs .nav-link.active {
        margin-left: 25px;
    } */
    .tabs-mo-fst .nav-tabs .nav-link {
        font-size: 12px;
        line-height: 14px;
    }

    .tabs-mo-fst-cntnr .inisde-mn-dv-ov {
        padding: 10px;
    }

    .inisde-mn-dv-ov h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .inisde-mn-dv-ov .mtch-div-sml {
        justify-content: space-around;
    }

    .inisde-mn-dv-ov .insd-tm-flg p {
        font-size: 12px;
        line-height: 14px;
    }

    .inisde-mn-dv-ov .location-right-insd {
        width: 100%;
        aspect-ratio: 300 / 190;
        border-radius: 8px;
    }

    .inisde-mn-dv-ov .insd-tm-flg img {
        width: 20px;
    }

    .rd-box {
        padding: 16px;
    }

    .rd-box h3 {
        font-size: 24px;
        line-height: 26px;
    }

    .rd-box h2 {
        font-size: 32px;
        line-height: 34px;
    }

    .cart-md label {
        font-size: 16px;
    }

    .cart-md label {
        /* width: 340px */
        width: 100%;
        line-height: 18px !important;
    }

    .chk-form-mo .btn {
        padding: 12px 16px;
    }

    .tabs-mo-fst-cntnt-cntnr .rvrs-mob {
        flex-direction: column-reverse;
    }

    .tabs-mo-fst-cntnt-cntnr .rvrs-mob .inisde-mn-dv-ov {
        margin-bottom: 2rem;
    }

    .mid-part .score-inside-mid-part .scr-dtl-insd h3 {
        font-size: 14px;
        line-height: 16px;
    }

    /** inside match overview group stage **/
    #stage-tab .tab-gs-main-dv {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-nav.stcky-nav.fixed {
        top: 62px;
        min-height: 70px;
    }

    .nav-tab-sticky.fixed {
        top: 129px;
    }

    .inside-top-stcky-dv-mo .frst-part {
        display: none;
    }

    .inside-top-stcky-dv-mo .btn-dv {
        display: none;
    }

    .mid-part .team-fp h4 {
        font-size: 14px;
        line-height: 15px;
    }

    .inside-top-stcky-dv-mo .mid-part {
        flex-basis: 100%;
    }

    .inside-top-stcky-dv-mo .mid-part .mob-team-width {
        width: 25%;
    }

    .mid-part .score-inside-mid-part p {
        font-size: 30px;
        line-height: 32px;
    }

    .mid-part .team-fp img {
        width: 18px;
    }

    .top-scr-dv .cntry-dtl img {
        width: 18px;
    }

    .tab-lu-main-dv .insd-main-ho-dv {
        display: flex;
        flex-direction: column;
    }

    .tab-lu-main-dv .insd-main-ho-dv>div {
        width: 100% !important;
        border-bottom: solid 1px #efefef;
        padding: 5px 0;
    }

    .tab-lu-main-dv .insd-main-ho-dv .fst-insd-main-ho-dv {
        width: 100%;
        border-bottom: solid 1px #efefef;
        padding: 3px 0;
    }

    /* .tab-lu-main-dv .insd-main-ho-dv .fst-insd-main-ho-dv {
        width: 100%;
        border-bottom: solid 1px #efefef;
        padding: 3px 0;
      }
    
      .tab-lu-main-dv .insd-main-ho-dv .fst-insd-main-ho-dv {
        width: 100%;
        border-bottom: solid 1px #efefef;
        padding: 3px 0;
      } */

    .tab-lu-main-dv .insd-main-ho-dv {
        border: none;
        padding: 0;
        margin-top: 10px;
    }

    .insd-dv-gn {
        width: 100%;
        padding: 10px 0px;
        border-bottom: 1px solid var(--Neutral-a300, rgba(102, 112, 133, 0.35));
    }

    .top-scr-dv .inr-scr-dv h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .top-scr-dv .inr-scr-dv {
        gap: 16px;
    }

    .top-scr-dv .inr-scr-dv h4 {
        font-size: 14px;
        line-height: 16px;
    }

    .top-scr-dv .cntry-dtl h3 {
        font-size: 14px;
        line-height: 16px;
    }

    .inr-stg-dv-right .player-dtl {
        min-width: 125px;
    }

    .inr-stg-dv-right {
        margin-left: 6.8rem !important;
    }

    .trnament-cus-table tr th.game-table-trans {
        position: sticky;
        position: -webkit-sticky;
        left: 0;
        min-width: 140px;
        background-color: var(--main-clr);
        z-index: 1;
        box-shadow: 5px 0 5px -2px rgba(0, 0, 0, .5);
    }

    .trnament-cus-table tr th:first-child,
    .trnament-cus-table tr td:first-child {
        position: sticky;
        position: -webkit-sticky;
        left: 0;
        background-color: #fff;
        z-index: 1;
        min-width: 160px;
        box-shadow: 0px 4px 8px 0px rgba(102, 112, 133, 0.24), 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset;
    }

    .trnament-cus-table tr td:first-child {
        position: sticky !important;
        position: -webkit-sticky;
        min-width: 160px;
        left: 0;
        background-color: #fff;
        z-index: 1;
        box-shadow: 0px 4px 8px 0px rgba(102, 112, 133, 0.24), 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset;
    }

    .trnament-cus-table thead th {
        font-size: 16px;
        line-height: 20px;
    }

    .trnament-cus-table th {
        font-size: 14.27px;
        line-height: 17.027px;
    }

    .team-rnk-tbl table thead th {
        font-size: 12px;
        line-height: 16px;
    }

    /** inside overview match statistics **/
    .btm-stts-dv .progress-bar {
        --size: 45px;
        font-size: 18px;
        line-height: 20px;
    }

    .segment .nmbr-spn {
        top: -35px;
        left: 10px;
        font-size: 18px;
        line-height: 20px;
    }

    .segment .nmbr-spn-rght {
        top: -35px;
        right: 10px;
        font-size: 18px;
        line-height: 20px;
    }

    .segment-data {
        top: -35px;
        /* left: 43%; */
        font-size: 14px;
        line-height: 16px;
    }

    .btm-stts-dv .innr-btm-stts-dv p {
        font-size: 14px;
        line-height: 16px;
    }

    .btm-stts-dv h4 {
        font-size: 18px;
        line-height: 20px;
        padding: 10px 0;
    }

    /** lineups under match overview pages **/
    .mn-team-stats-internal th,
    td {
        padding: 10px;
    }

    .table-trans-top tr a {
        font-size: 12px;
        line-height: 16px;
    }

    .table-bg-top tr a {
        font-size: 12px;
        line-height: 16px;
    }

    .mn-team-stats-internal table th,
    td {
        font-size: 12px;
        line-height: 16px;
    }

    .mn-team-stats h3 {
        font-size: 18px;
        line-height: 20px;
        padding: 10px 0 12px 0;
    }

    .teams-data .lu-team .scr {
        font-size: 14px;
        line-height: 16px;
    }

    .teams-data .lu-team td,
    th {
        padding: 8px 0;
        font-family: var(--font-satoshi-500);
        font-size: 14px;
        line-height: 18px;
    }

    .tab-lu-main-dv .insd-main-ho-dv h5 {
        font-size: 12px;
        line-height: 14px;
    }

    .tab-lu-main-dv .insd-main-ho-dv h4 {
        font-size: 14px;
        line-height: 16px;
    }

    /** Field page inside lineups **/
    /* .football_ground .fg-all-content .fg-content {
        flex-direction: column;
    } */
    .football_ground {
        background-image: url(../icons/fancy-field-mob.svg);
        padding: 1rem 0.5rem 1rem 0.5rem;
        height: 558px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .football_ground .fg-all-content {
        /* background-image: url(../icons/field-mob.svg); */
        height: 100%;
        background: none;
        /* transform: rotate(90deg); */
        /* background-size: 100%; */
    }

    .football_ground .fg-all-content .fg-content {
        flex-direction: column;
        background-image: none;
    }

    .football_ground .fg-all-content .fg-content .team-box {
        width: 100%;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .player {
        gap: 3px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_1 {
        top: 1.2rem;
        left: 124px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_3 {
        top: 4rem;
        left: 3.75rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_2 {
        top: 4rem;
        left: 12rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_5 {
        bottom: 7rem;
        left: 1rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_8 {
        bottom: 5rem;
        left: 4rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_6 {
        top: 7rem;
        left: 7.8rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_7 {
        top: 8.6rem;
        left: 12rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_11 {
        bottom: 1rem;
        right: 15rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_9 {
        top: 11.3rem;
        left: 9.1rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_10 {
        top: 12.8rem;
        right: 1rem;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .p_4 {
        top: 6rem;
        left: 15rem;
    }

    /* .football_ground .fg-all-content .fg-content .team-box .inner-box .player {
        rotate: -90deg;
    } */
    .football_ground .fg-all-content .fg-content .team-box .inner-box .player span {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .football_ground .fg-all-content .fg-content .team-box .inner-box .player p {
        font-size: 10px;
        line-height: 12px;
    }

    /** match overview modal **/
    #match-reminder-mod .modal.show {
        z-index: 999999999;
        bottom: 0;
        /* bottom: -167px !important; */
        transition: all 0.5s ease-in-out;
    }

    #match-reminder-mod .modal-content {
        border: none;
    }

    .match-reminder-modal .modal-content {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input_wrapper input[type="checkbox"] {
        margin-top: 4px;
    }

    .match-reminder-modal h5 {
        font-size: 32px;
        line-height: 34px;
        margin-top: 5px;
    }

    .match-reminder-modal .on-toggle {
        padding: 6px 12px;
    }

    .set-btn {
        padding: 12px 20px;
    }

    /** lineups under match overview pages **/
    /** match over view timeline **/
    .comm-part-001 h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .flex-content-heading-bg-grey {
        padding-left: 60px;
        padding-right: 10px !important;
    }

    .comm-part-001 p {
        font-size: 13px;
        line-height: 15px;
    }

    .goal-by .heading-001 {
        gap: 5px;
        align-items: flex-start !important;
        flex-direction: column;
        margin-top: 0px;
    }

    .goal-by .heading-001 h5 {
        font-size: 15px;
        line-height: 18px;
        margin: 0;
    }

    .goal-by .heading-001 span {
        font-size: 12px;
        line-height: 14px;
    }

    .heading-h5 {
        width: 100px;
    }

    .heading-001 p {
        margin: 0;
        font-size: 15px;
        line-height: 18px;
    }

    /** Match overview page ends**/
    /** New pages mutual CSS **/
    /** Team ranking page **/
    .tab-mob-d-none {
        display: none;
    }

    .slct-box-tabs .form-control {
        width: 44vw !important;
    }

    /*select option with tabs css start */
    .selectChapter.form-control {
        display: block !important;
        padding: 9px 10px;
        height: 45px;
        width: 44vw !important;
        border-radius: 7px;
        box-shadow: 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset, 0px 1px 2px 0px rgba(102, 112, 133, 0.24);
        color: #000;
        /* font-family: Barlow; */
        font-family: var(--font-satoshi-500);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .team-rnk-tbl {
        overflow-x: auto;
        max-width: 100%;
    }

    .heading-pls-btn-mob {
        padding-top: 20px;
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }

    .heading-pls-btn-mob .solid-btn-gen {
        color: #FFFFFF;
        font-family: var(--font-oswald-700);
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px;
        letter-spacing: 0.28px;
        text-transform: uppercase;
        border-radius: var(--components-gap-rad-300, 12px);
        padding: 12px 20px;
        border: solid 2px transparent;
        align-self: center;
    }

    .trans-btn {
        padding: 8px 16px;
        text-transform: uppercase;
        align-self: center;
    }

    .match-schdl-btm-btn .trans-btn{
        padding: 12px 18px !important;
    }

    .team-rnk-tbl .table tr th:first-child,
    .team-rnk-tbl .table tr td:first-child {
        position: sticky;
        position: -webkit-sticky;
        left: 0;
        min-width: 160px;
        background-color: #fff;
        /* Ensure the background remains white */
        z-index: 1;
        box-shadow: 0px 4px 8px 0px rgba(102, 112, 133, 0.24), 0px -1px 0px 0px rgba(102, 112, 133, 0.16) inset;
    }

    .team-rnk-tbl .table tr th.game-table {
        position: sticky;
        left: 0;
        background-color: var(--main-clr);
        z-index: 10;
        box-shadow:
            5px 0 5px -2px rgba(0, 0, 0, .5);
    }

    /** Team ranking page ends**/
    .top-bg-img-gen {
        height: 460px;
        object-fit: cover;
    }

    .plyr-info-top .team-gnrl-flg {
        width: 72px;
        border-radius: 20px;
    }
    
    .plyr-info-top-insd h1 {
        font-size: 18px;
        line-height: 20px;
    }

    .plyr-info-top-insd h3 {
        font-size: 18px;
        line-height: 20px;
    }

    .back-btn a {
        padding: 8px 12px;
        font-size: 12px;
    }

    .navbar-team.fixed {
        top: 66px !important;
    }

    .heading-pls-btn a {
        display: none;
    }

    .minus-head-mob-btn {
        width: 100% !important;
        display: block;
        text-align: center;
        margin-top: 20px;
        text-transform: uppercase;
        padding: 8px 12px;
    }

    .key-stts-dv {
        align-items: normal;
        gap: 15px;
        margin: 5px 0 35px 0;
    }

    .key-stts-dv .innr-key-stts-dv {
        flex-direction: column;
        align-items: flex-start;
    }

    .key-stts-dv .innr-key-stts-dv h3 {
        color: #000;
        font-size: 18px;
        text-align: left;
        line-height: 20px;
    }

    .key-stts-dv .innr-key-stts-dv p {
        font-size: 14px;
        line-height: 20px;
    }

    .innr-key-stts-dv:before {
        width: 8px;
        height: 64px;
        left: 27px;
        bottom: -43px;
        rotate: 90deg;
    }

    .play-btn-dv a img {
        width: 22px;
    }

    /** team general matches ends **/
    /** Team general stats starts **/
    .mt-sm-3 {
        margin-top: 16px;
    }

    .cmbn-maj-min-dvz {
        flex-direction: column;
    }

    .cmbn-maj-min-dvz .innr-key-stts-dv {
        flex-direction: column;
        align-items: self-start;
        gap: 3px;
        padding-left: 2px;
    }

    .cmbn-maj-min-dvz .innr-key-stts-dv h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .insd-cmbn-min-dv h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .insd-cmbn-min-dv p {
        text-align: left;
        font-size: 14px;
        line-height: 18px;
        margin: 0;
    }

    .trnmnt-bg {
        font-size: 18px;
        line-height: 20px;
        padding: 12px 0 12px 0;
        margin-top: 1rem;
    }

    /** Team general stats ends **/
    /** team general squads starts **/
    .team-gen-squads .rvrs-mob {
        flex-direction: column-reverse;
    }

    .tab-insd-team-gen-squads .insd-sqd-dv .insd-sqd-dv-itm {
        min-width: 210px;
        font-size: 14px;
        line-height: 18px;
    }

    .tab-insd-team-gen-squads .insd-sqd-dv h5 {
        font-size: 14px;
        line-height: 16px;
    }

    .insd-main-field-div-lft {
        height: 57vh;
    }

    /** stats-competitions css **/
    .cs-stats-col h1 {
        font-size: 32px;
        line-height: 32px;
        padding-bottom: 15px;
    }

    .mn-cntnr-amec-star .key-stts-dv .innr-key-stts-dv {
        padding-left: 1px !important;
    }

    .cs-stats-goals {
        padding: 14px;
    }

    .cs-stats-goals h2 {
        font-size: 48px;
        line-height: 50px;
    }

    .cs-stats-col .cs-stats-col-inr-scnd {
        border-radius: unset;
        border: none;
        background: transparent;
        padding: 15px 15px 2px 15px;
    }

    /** stats-competitions css ends **/
    /** Stats comparison **/
    .stts-cmprzn {
        padding-top: 40px;
    }

    .stts-cmprzn h1 {
        font-size: 32px;
        line-height: 36px;
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .stts-cmprzn h2 {
        font-size: 32px;
        line-height: 36px;
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .chs-team-col .chs-team-col-insd p {
        font-size: 12px;
        line-height: 14px;
    }

    .chs-team-col .chs-team-col-insd {
        padding: 35px 20px;
    }

    .chs-team-col .chs-team-col-insd h5 {
        font-size: 12px;
        line-height: 16px;
    }

    .chs-team-col .chs-team-col-insd .pls-icn {
        padding: 4px 5px;
        font-size: 18px;
    }

    /** Stats comparison **/
    .chs-team-col .chs-team-col-insd .icn-cls {
        margin-top: 10px;
    }

    .chs-team-col .chs-team-col-insd {
        padding: 20px 15px;
    }

    .chs-team-col .chs-team-col-insd {
        height: 140px;
    }

    .stts-cmprzn-rw {
        margin-bottom: 1rem;
    }

    .team-lst-cmprsn .inside-team-tc {
        padding: 30px 10px 20px 10px;
        gap: 8px;
        margin-bottom: 1rem;
    }

    .team-lst-cmprsn .cmprsn-tm-nd-name {
        gap: 4px;
        padding: 8px 12px;
    }

    .chz-team-outer .close-button-1 {
        right: -10px;
    }

    .chz-team-outer .close-button-1 .fa-times {
        padding: 3px 6px;
    }

    .chs-team-col .team-first img {
        width: 40px;
    }

    .chs-team-col .team-second img {
        width: 40px;
    }

    /** New pages mutual CSS ends**/
    /** player comparison pages**/
    .chz-plyr-col-insd .plyr-first .cmpr-plyr-img {
        width: 35px;
    }

    .chz-plyr-col-insd .player-second .cmpr-plyr-img {
        width: 35px;
    }

    .chz-plyr-col-insd .plyr-first .cmpr-plyr-nm {
        font-size: 14px;
        line-height: 16px;
    }

    .chz-plyr-col-insd .player-second .cmpr-plyr-nm {
        font-size: 14px;
        line-height: 16px;
    }

    .chz-plyr-col-insd .plyr-first h6 {
        font-size: 12px;
        line-height: 15px;
    }

    .chz-plyr-col-insd .player-second h6 {
        font-size: 12px;
        line-height: 15px;
    }

    /** player comparison pages ends**/
    /** Trophy Tour Page **/
    .tt-mn-cntnr .tt-mn-cntnt {
        padding: 20px 0 20px 0;
    }

    .ns-btn {
        font-size: 12px;
        line-height: 16px;
        padding: 3px 9px;
    }

    .tt-inside-mn-col .tt-flex-content .first-date-tt::before {
        border: solid 3px #727b8f;
    }

    .tt-inside-mn-col .tt-flex-content .first-date-tt-filled::before {
        border: solid 3px #727b8f;
    }

    .tt-inside-mn-col .tt-flex-content .first-date-tt {
        font-size: 12px;
        line-height: 17px;
    }

    .tt-inside-mn-col .tt-flex-content .first-date-tt-filled {
        font-size: 12px;
        line-height: 17px;
    }

    .tt-flex-content .tt-tl-btm-inr-cntnt img {
        width: 24px;
        margin-right: 4px;
    }

    .tt-flex-content .tt-tl-btm-inr-cntnt h4 {
        font-size: 24px;
        line-height: 26px;
    }

    .tt-flex-content .tt-tl-btm-inr-cntnt p {
        font-size: 18px;
        line-height: 20px;
    }

    .new-community-sec .left-img-part .player-img {
        width: 345px;
        bottom: 330px;
    }

    .new-community-sec .inner-con-part {
        left: 1px;
    }

    .new-community-sec .bg-com {
        height: 330px;
    }

    /** Trophy Tour Page ends**/
    /** Trophy tour Country Page **/
    .tt-mn-cntnr-cntry .tt-mn-cntry h5 {
        font-size: 24px;
        line-height: 28px;
    }

    .tt-mn-cntnr-cntry .tt-mn-cntry {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .tt-mn-cntnr-cntry .tt-mn-cntry .ns-mn-col-cntry .tt-cntry-time {
        font-size: 12px;
        line-height: 23px;
        padding-left: 10px;
    }

    .btm-col-ttc h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .insd-btm-col-ttc .sml-col-insd-btm-col-ttc h4 {
        font-size: 24px;
        line-height: 26px;
    }

    .insd-btm-col-ttc .sml-col-insd-btm-col-ttc h5 {
        font-size: 20px;
        margin: 0;
    }

    .lg-col-insd-btm-col-ttc-imgz {
        gap: 10px;
    }

    .lg-col-insd-btm-col-ttc img {
        border-radius: 8px;
        width: 48%;
    }

    .tt-top-hdr-cntnt h4 {
        font-size: 24px;
        line-height: 26px;
    }

    /** Trophy tour Country Page ends **/
    /** Prediction Game pages **/
    .tabs-pg-cntnr {
        padding-top: 20px;
    }

    .solid-clr-btn {
        padding: 8px 16px;
    }

    #top-blue-section .game-prediction {
        flex-direction: column;
    }

    #top-blue-section .game-prediction .pwrd-by-gp {
        margin-left: auto;
    }

    #top-blue-section .game-prediction p {
        text-align: left;
    }

    .game-predict-tabs.fixed {
        top: 65px;
    }

    .insd-main-row-prdct-tab .predict-bottom-two-btn-div {
        flex-direction: column;
    }

    .insd-main-row-prdct-tab .predict-bottom-two-btn-div a {
        width: 100% !important;
    }

    /* #tabs-pg-sec .tabs-pg-cntnr{
        padding: 1rem 0;
    } */
    .htw-modal {
        display: block !important;
    }

    .htw-modal.show {
        bottom: 80px;
        height: inherit;
    }

    .main-prediction-row .htp-d-none-mob {
        display: none;
    }

    .inside-htw-mob-btm .sub-internal-div-mob {
        padding-top: 25px;
        padding-bottom: 25px;

    }

    .overview-predict-game-tab .result-main-div .predict-img-desk {
        display: none;
    }

    .overview-predict-game-tab .result-main-div .predict-img-mob {
        display: block;
        width: 100%;
    }

    .main-row-prdct-tab h2 {
        font-size: 32px;
        line-height: 34px;
        text-align: left;
        margin-left: 0;
    }

    .insd-main-row-prdct-tab .wfg-col h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .insd-main-row-prdct-tab .wfg-col p {
        font-size: 14px;
        line-height: 20px;
    }

    .btm-htp-box .trans-btn {
        width: 100%;
    }

    .match-card-box-predict .mid-part-prediction-card p {
        font-size: 14px;
        line-height: 16px;
    }

    .match-card-box-predict .other-details-prediction h5 {
        width: 40px;
        height: 40px;
        font-size: 28px;
        line-height: 32px;
    }

    .match-card-box-predict .prediction-form-card .form-control {
        width: 40px;
        height: 40px;
        padding-bottom: 7px;
        font-size: 30px;
        line-height: 32px;
    }

    /** modal for create profile **/
    .user-avatar {
        width: 48px;
        height: 48px;
    }

    .htw-modal .modal-header {
        padding: 1rem 10px
    }

    .htw-modal .modal-body form {
        padding: 10px;
    }

    .create-profile-modal .modal-header .avatar-nd-title h5 {
        font-size: 24px;
        line-height: 26px;
    }

    .create-profile-modal .modal-header .avatar-nd-title p {
        font-size: 16px;
        line-height: 20px;
    }

    .create-profile-modal .modal-content {
        border: none;
    }

    .create-profile-modal.show {
        bottom: -20px;
        z-index: 999999999999;
    }

    /** Modal ends **/
    .lb-bottom-three-col-row {
        padding: 24px 0 24px 0;
    }

    .lb-bottom-three-col-row .col-md-4:nth-child(1) {
        order: 2;
    }

    .lb-bottom-three-col-row .col-md-4:nth-child(2) {
        order: 1;
    }

    .lb-bottom-three-col-row .col-md-4:nth-child(3) {
        order: 3;
    }

    .lb-bottom-three-col-row .contestent-col-inside {
        flex-direction: row;
        justify-content: flex-start;
        gap: 30px;
        padding-top: 20px;
    }

    .lb-bottom-three-col-row .lb-contestent-avatar {
        height: 95px;
        width: 95px;
        object-fit: cover;
    }

    .lb-bottom-three-col-row .points-earnd {
        font-size: 15px;
        line-height: 15px;
        padding: 2px 8px;
        margin-top: -14px;
        z-index: 9;
    }

    .lb-bottom-three-col-row .contestent-col-inside-point-title-div {
        margin-top: 1px;
    }

    .position-badge {
        display: block;
        float: left;
        width: 40px;
        margin-bottom: 8px;
    }

    .position-badge.scnd-position-badge {
        margin-left: -2px;
    }

    .contestent-col-inside-point-title-div::after {
        background-size: 40px !important;
        top: 20px !important;
        left: 33%;
        height: 45px !important;
        display: none !important;
    }

    .contestent-col-inside-point-title-div.second-pos::after {
        top: 15px !important;
        left: 33%;
        background-size: 45px !important;
        transform: translateX(-24%);

    }

    .contestent-col-inside-point-title-div.top-pos::after {
        top: 15px !important;
        left: 33%;
        background-size: 45px !important;
        transform: translateX(-24%);
    }

    .contestent-col-inside-point-title-div.third-pos::after {
        top: 15px !important;
        left: 33%;
        background-size: 45px !important;
        transform: translateX(-24%);
    }

    .lb-bottom-three-col-row h4 {
        text-align: left;
        font-size: 20px;
        line-height: 22px;
    }

    .lb-bottom-three-col-row p {
        color: #667085;
        text-align: left;
        margin: 0;
        font-size: 16px;
        line-height: 17px;
    }


    /** Leaderboard Table CSS **/
    .leaderboard-cus-table th:first-child {
        width: 5% !important;
    }

    .leaderboard-cus-table .table tr th.game-table {
        position: unset;
        box-shadow: none;
    }

    .leaderboard-rnk-table .table tr th.game-table {
        position: unset;
        box-shadow: none;
        background-color: transparent !important;
    }

    .leaderboard-rnk-table .table tr th:first-child,
    .leaderboard-rnk-table .table tr td:first-child {
        background-color: unset;
    }

    .leaderboard-rnk-table .table tr th:first-child,
    .leaderboard-rnk-table .table tr td:first-child {
        min-width: 70px;
        max-width: 80px;
    }

    .result-main-div {
        height: 460px;
        padding: 10px 35px 10px 35px;
    }

    .result-main-div a {
        width: 80%;
    }

    .leaderboard-rnk-table tr th:first-child,
    .leaderboard-rnk-table tr td:first-child {
        box-shadow: none !important;
    }

    /** Leaderboard CSS ends **/
    /** Prediction Game pages **/
    /** all star pages starts **/
    .main-as-field .inside-main-as-field {
        max-width: 600px;
        gap: 10px;
        top: 30%;
        height: 45%;
        /* transform: translate(-50%, -48%); */
    }

    .two-button-div-as-vtab {
        display: flex;
        flex-direction: column;
        padding-top: 10px;
    }

    .two-button-div-as-vtab .trans-btn {
        width: 100%;
    }

    .dnone-desk-txt-nd-button-div-as-v {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        gap: 10px;
        padding-bottom: 20px;
        /**for sticky **/
        top: 109px !important;
        background: #fff;
        padding: 10px;
        border-radius: 20px;
        z-index: 999;
    }

    .dnone-desk-txt-nd-button-div-as-v button {
        width: 100%;
        margin: auto;
    }

    .txt-nd-button-div-as-v-btm {
        display: none;
    }

    .inside-main-as-field .small-main-as-field {
        gap: 8px;
    }

    .main-as-field .single-vote-box-us {
        border-radius: 12px;
        /* width: 66px; */
        padding: 6px;
        gap: 7px;
        /* height: 66px; */
        width: 18vw;
        /* height: 8vh; */
        height: auto;
    }

    .main-as-field .single-vote-box {
        border-radius: 12px;
        /* width: 66px; */
        padding: 6px;
        gap: 7px;
        height: 66px;
        width: 18vw;
        /* height: 8vh; */
        /* height: auto; */
    }

    .single-vote-box-us .pls-icn {
        border: solid var(--main-clr) 1px;
        font-size: 12px;
    }

    .single-vote-box-us p {
        font-size: 12px;
        line-height: 16px;
        margin: 0;
    }

    .single-vote-box p {
        font-size: 12px;
        line-height: 16px;
        margin: 0;
    }

    .single-vote-box .pls-icn {
        border: solid var(--main-clr) 1px;
        font-size: 12px;
    }

    .main-as-field .single-vote-box-as {
        /* width: 70px; */
        padding: 6px;
        gap: 8px;
        height: 66px;
        width: 18vw;
        /* height: 8vh; */
        /* height: auto; */
    }

    .single-vote-box-as .fa-shirt {
        font-size: 40px;
        margin-bottom: 4px;
    }

    .single-vote-box-as h6 {
        font-size: 14px;
        line-height: 16px;
        top: 10px;
        margin: 0;
    }

    .single-vote-box-as p {
        font-size: 10px;
        line-height: 12px;
        padding: 2px 2px;
        margin-top: -12px;
    }

    .submit-vote-btn {
        padding: 12px 20px;
        font-size: 18px;
        line-height: 24px;
        width: 90%;
    }

    .single-vote-box .fa-shirt {
        font-size: 40px;
    }

    .single-vote-box-after-selection p {
        font-size: 12px;
        line-height: 16px;
        padding: 3px 5px;
        margin-top: -20px !important;
    }

    .single-vote-box-after-selection h6 {
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #FFF;
        font-size: 16px;
        line-height: 18px;
        top: 10px;
        margin: 0;
    }

    .single-vote-box .close {
        padding: 1px 3px;
        top: -10px;
        right: 0px;
        font-size: 15px;
    }

    .squad-schdl-box {
        height: 400px;
    }

    .main-as-voting-row .row{
        gap: 20px;
    }

    .as-vtng-end-rw{
        flex-direction: column-reverse;
    }
    .submit-form-div {
        width: 100%;
        gap: 16px;
        padding: 12px;
        margin-top: -10px;
    }

    .wsyw-desk{
        display: none;
    }
    
    .submit-form-div-new{
        flex-direction: column-reverse !important;
    }

    .title-submit-btn button{
        width: 100%;
    }

    .voting-close-table thead tr th {
        padding: 4px 10px 5px 10px;
    }

    .main-voting-cls-col thead > tr > th:first-child {
        width: 18%;
    }
    .main-voting-cls-col thead > tr > th:nth-child(2) {
        width: 60%;
    }

    .main-voting-cls-col thead > tr > th:nth-child(3) {
        width: 22%;
    }

    .voting-plyr-dtl .voting-plyr-dtl-img {
        width: 40px;
        height: 40px;
    }

    .voting-plyr-dtl h4 {
        text-align: left;
        font-size: 16px !important;
        line-height: 22px !important;
    }

    .voting-plyr-dtl .voting-plyr-dtl-flag-img {
        width: 18px;
    }

    .voting-close-table .voting-prcnt {
        font-size: 16px;
        line-height: 22px;
    }

    .main-voting-cls-col h4 {
        font-size: 24px;
        line-height: 26px;
    }

    /** all star pages ends **/
    /** Photo gallery page **/

    /** Modal inside gallery page **/
    .gallery-profile-modal.show {
        bottom: -40px !important;
    }

    .gallery-profile-modal .modal-content {
        width: 100% !important;
        border: none !important;
    }

    .gallery-container {
        gap: 4px;
    }

    .gall-see-all-btn {
        bottom: 15px;
    }

    .gall-see-all-btn .solid-btn {
        padding: 8px 12px;
    }

    .gall-see-all-btn .solid-btn span {
        display: none;
    }

    .main-gallery-container h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .main-gallery-container .date {
        font-size: 12px;
        line-height: 14px;
        padding-top: 8px;
    }

    .gallery-profile-modal.show {
        bottom: -2px !important;
        top: auto;
        margin-top: auto !important;
    }

    .gallery-profile-modal .reg-right-part {
        gap: 4px;
    }

    .gallery-profile-modal .reg-right-part .reg-form label {
        font-size: 14px;
        line-height: 16px;
    }

    .gallery-profile-modal .modal-content {
        margin-top: auto !important;
        margin: unset;
        border-radius: 24px 24px 0px 0px;
        border: none;
    }

    .gallery-profile-modal .modal-body {
        padding: 0 16px 16px 16px;
    }

    .gallery-profile-modal .avatar-nd-title .fa-user-circle {
        font-size: 30px;
        margin: 10px 16px 0px 0px !important;
    }


    /** Modal inside gallery page ends **/
    /** Photo gallery page ends **/
    /** Gallery Details page single **/
    .clg-cntnr {
        grid-gap: 4px;
    }

    .fl-wdth-rw {
        height: 328px;
    }

    .hl-wdth-rw {
        height: 108px;
    }

    .hl-wdth-rw.big-hgt-img {
        height: 161px;
    }

    .fth-rw {
        grid-gap: 4px;
    }

    .dbl-hght-cl {
        height: 217px;
    }

    /** Gallery Details page single ends**/

    /** New gallery details page 2 design **/
    .clg-cntnr-new {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 4px;
    }

    .clg-cntnr-new .img-wrapper-gall img {
        height: 200px;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(1),
    .clg-cntnr-new .img-wrapper-gall:nth-child(2) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(3),
    .clg-cntnr-new .img-wrapper-gall:nth-child(4) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(5) {
        grid-column: span 2;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(6) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(7) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(8),
    .clg-cntnr-new .img-wrapper-gall:nth-child(9),
    .clg-cntnr-new .img-wrapper-gall:nth-child(10) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(11),
    .clg-cntnr-new .img-wrapper-gall:nth-child(12) {
        grid-column: span 1;
    }

    /** For another 12 **/

    .clg-cntnr-new .img-wrapper-gall:nth-child(13),
    .clg-cntnr-new .img-wrapper-gall:nth-child(14) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(15),
    .clg-cntnr-new .img-wrapper-gall:nth-child(16) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(17) {
        grid-column: span 2;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(18) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(19) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(20),
    .clg-cntnr-new .img-wrapper-gall:nth-child(21),
    .clg-cntnr-new .img-wrapper-gall:nth-child(22) {
        grid-column: span 1;
    }

    .clg-cntnr-new .img-wrapper-gall:nth-child(23),
    .clg-cntnr-new .img-wrapper-gall:nth-child(24) {
        grid-column: span 1;
    }

    /** New gallery details page 2 design ends**/

    /** Modal inside gallery Modal **/
    .lightbox {
        padding: 20px;
    }

    /* .lightbox .main-arrow-div {
        margin-top: auto;
        margin-bottom: 16px;
    } */
    .back-btn-main-pg a {
        padding: 8px 12px;
    }

    .lightbox .social-share {
        top: 2px;
    }

    .main-arrow-div {
        top: 95%;
        z-index: 9;
    }

    .main-arrow-div.mad-left {
        left: 16px;
    }

    .main-arrow-div.mad-right {
        right: 16px;
    }

    .lightbox .slide-number {
        bottom: 24px;
    }

    .lightbox img {
        width: 100%;
        height: auto;
    }

    /** Updated gallery **/
    .gallery-top-sec-updtd {
        padding-top: 20px;
    }

    .gallery-title-date .heading-bs {
        padding-top: 20px;
    }

    .gallery-title-date .form-group {
        margin-top: 20px;
    }

    .gallery-title-date .heading-bs h2 {
        font-size: 32px !important;
        line-height: 34px !important;
    }

    .gallery-title-date .form-control {
        width: 104px;
    }

    .overlay-title {
        font-size: 20px;
        line-height: 22px;
        padding-right: 20px;
    }

    .overlay-content {
        bottom: -10px;
        left: 10px;
    }

    .gallery-row-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-row-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-row-2 .gallery-item img {
        height: 350px;
    }

    .gallery-row-3 .gallery-item img {
        height: 350px;
    }

    /** Galllery ends **/
    /** New trophy tour on homepage **/
    /** New trophy tour on homepage **/
    .trophy-tour-home-banner-inner {
        display: none;
    }

    .trophy-tour-home-banner-inner-mob {
        display: block;
        z-index: 999;
    }

    .main-trophy-tour-home-banner::after {
        background-position: 160PX 3px;
        background-size: 250px;
    }

    .ttb-img-desc-mob {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 0px;
    }

    .img-prgm-txt{
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 10px;
        padding: 10px 5px;
    }

    .ttb-img-desc-mob img {
        width: 64px;
        border-radius: 0px 0 0 12px;
    }

    .ttb-img-desc-mob h2 {
        color: #FFF;
        text-align: center;
        font-family: var(--font-oswald-700);
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 22px;
        text-transform: uppercase;
        margin: 0;
    }

    .ttb-img-desc-mob h2 img {
        width: 16px;
    }

    .ttb-img-desc-mob a {
        border-radius: 12px;
        background: #E0E2E7;
        padding: 10px 16px;
        text-align: center;
        color: var(--Base-Black, #000);
        font-family: var(--font-oswald-700);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 14px;
        letter-spacing: 0.36px;
        text-transform: uppercase;
        transition: all ease-in-out 0.3s;
    }

    .trophy-tour-home-banner-inner-mob p {
        color: #FFF;
        font-family: var(--font-satoshi-500);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 14px;
        margin-bottom: 5px;
    }

    .trophy-tour-home-banner-inner-mob h3 {
        color: #FFF;
        font-family: var(--font-satoshi-700);
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 14px;
        margin: 0;
    }

    .media-lightbox img {
        width: 92%;
        height: 34%;
    }

    /** buy tickets **/
    .ticket-sale-btn {
        border-radius: 0px 0px 12px 12px;
        padding: 18px 13px 8px 13px;
        font-size: 14px;
        line-height: 16px;
    }

    .ticket-sale-cs-btn {
        border-radius: 0px 0px 12px 12px;
        padding: 18px 13px 8px 13px;
        font-size: 14px;
        line-height: 16px;
    }


    /** Braodcasting page css **/
    #news-temp-sec .brdcstng-tmp-rw {
        padding-top: 1rem;
    }

    .main-bml-box {
        border-radius: 8px;
    }

    .first-card-match-bml {
        border-radius: 8px;
        padding: 4px;
    }

    .first-card-match-bml .flag-nd-name h4 {
        font-size: 12px;
        line-height: 14px;
    }

    .pyr-bml-tabs-box-hdng-div .pyr-hdng {
        font-size: 16px;
        line-height: 16px;
    }

    .main-bml-tabs-box-insd {
        border: 2px solid transparent;
        padding: 4px;
    }

    .main-bml-tabs-box-insd.active-border {
        border: 2px solid var(--main-clr);
        border-radius: 8px;
    }

    .nav-pills-bml {
        padding: 20px 8px 20px 8px;
        gap: 8px;
    }

    .nav-pills-bml .nav-link {
        border-radius: 8px;
        padding: 6px 6px;
    }

    .single-content-regions-dtl .img-cntry-team-rgn img {
        width: 26px;
    }

    .single-content-regions-dtl {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 8px;
        gap: 8px;
    }

    .sub-content-regions-dtl {
        flex-direction: column;
        padding: 8px;
        align-items: flex-start;
        gap: 12px;
    }

    .single-content-regions-dtl .img-cntry-team-rgn span {
        font-size: 18px;
        line-height: 20px;
    }

    .single-content-regions-dtl .img-cntry-team-rgn {
        width: auto;
    }

    .single-content-regions-dtl h4 {
        font-size: 16px;
        line-height: 18px;
        width: auto;
    }

    .single-content-regions-dtl p {
        font-size: 14px;
        line-height: 16px;
    }

    #away-score, #home-score {
        font-size: 20px;
    }
}