/* Base CSS */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* following :root block added by css color collector */
:root {
    --color-babyblue: #b8d0fe;
    --color-black-26: #ffffff;
    --color-black-2d: #grey;
    --color-black-373: #373737;
    --color-black-383: #383838;
    --color-black-3a: #3a3a3a;
    --color-black-3d: #3d3d3d;
    --color-black-43: #ffffff;
    --color-black-opaque: #ffffff;
    --color-black-rgb: rgb(0, 0, 0);
    --color-black: #000;
    --color-blue: blue ;
    --color-dark-1f: #ffffff;
    --color-dark-black: #07171d;
    --color-dark-grey: #262626;
    --color-fulldark-grey: #f7f7f7;
    --color-grey-59: #595959;
    --color-grey-85: #858585;
    --color-grey-9a: #9a9a9a;
    --color-grey-basic: grey ;
    --color-grey-muly: #13131382;
    --color-grey-mulyr: #9a9a94;
    --color-grey-opaque: #00000059;
    --color-grey: #8c8c8c;
    --color-light-grey: #262626;
    --color-sportal-orange: #FF8401;
    /* instead of orange place the theme accent color */
    --color-orange-1: #FCE34C;
    --color-orange-2: #FCE34C;
    --color-orange-3: #FCE34C;
    --color-orange-4: #FF8401;
    --color-silvergrey: #525252;
    --color-white-opaque: #ffffffa8;
    --color-white-rgb: rgba(255, 255, 255, 0);
    --color-white: #ffffff;
    --select__bg--104: #fbfbfb;
    --select__box__shadow--101: rgba(0, 0, 0, 0.1);
    --select__box__shadow--102: rgba(51, 51, 62, 0.08);
    --select__txt--100: #60666d;
    --select__txt--103: #546c84;
    --select__txt--105: #374151;
    --theme-font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.v-hidden {
    visibility: hidden !important;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: var(--color-black);
}

body {
    color: var(--color-black);
    font-weight: 400;
    font-family: var(--theme-font-family);
    background-color: var(--color-fulldark-grey);
}

.selector-for-some-widget {
    box-sizing: content-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none
}

a,
button,
input,
textarea {
    outline: none !important;
}

.section-padding {
    padding: 80px 0;
}


/* ----------------------------------------- HEADER AREA START ------------------------ */
.marquee {
    font-size: clamp(4vw, 4rem, 8vw);
    overflow: hidden;
 }

 .marquee--long {
    font-size: 1.25rem;
    flex: 100%;
    line-height: 1.25rem;
 }

 .marquee span {
     display: inline-block;
     white-space: nowrap;
     width: var(--tw);
     will-change: transform;
     animation: marquee var(--ad) linear infinite;
     animation-play-state: paused;
     font-family: var(--theme-font-family);
     font-size: 11px;
     font-weight: 400;
     line-height: normal;
     letter-spacing: 0px;
     text-align: left;
     color: var(--color-dark-grey);
 }

 .marquee:hover span {
     animation-play-state: running;
 }

 .marquee span a:nth-child(n) {
    color: var(--color-sportal-orange);
 }

 .marquee span a:nth-child(2n+1) {
    color: var(--color-black);
 }

 @keyframes marquee {
     0% { transform: translateX(0); }
     100% { transform: translateX(-100%); }
 }


 @media (prefers-reduced-motion: reduce) {
   .marquee span {
     animation: none;
     text-shadow: none;
     width: auto;
     display: block;
     line-height: 1.5;
     text-align: center;
     white-space: normal;
   }
 }


 .marquee span { animation-play-state: running; }
 .marquee label { font: .85rem Courier; margin-left: .5em}


/* ----------------------------------------- HEADER AREA END ------------------------ */


/* ----------------------------------------- NEWS AREA START ------------------------ */
.news__area {
    background: var(--color-fulldark-grey);
}

.news__area {
    background: var(--color-fulldark-grey);
    padding-top: 24px;
    padding-bottom: 32px;
}

.matchs__country img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.matchs__country h6 {
    margin: 0;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
}

.game__goal h5 {
    font-family: var(--theme-font-family);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-white);
    margin: 0;
}

.game__country__wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 16px 0;
}
.game__country__wrap table {
    width: 100%;
}

.game__country__wrap table td:nth-of-type(2) {
    width: 20%;
}

.game__country__wrap table td:nth-of-type(1), .game__country__wrap table td:nth-of-type(3) {
    width: 40%;
}

.game__country__wrap table td:nth-of-type(1) .matchs__country {
    justify-content: end;
}

.game__country__wrap table td:nth-of-type(3) .matchs__country {
    justify-content: start;
}

.story__card__wrap {
    border-bottom: 1px solid var(--color-black);
    padding-top: 7px;
}
.sports__item a img{
    max-width:30px;
}
.text__card__content span {
    color: var(--color-grey);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
}

.story__card__content {
    padding-bottom: 10px;
}

.stories__btn a {
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    transition: .3s all;
}

.stories__btn {
    text-align: center;
    padding-top: 16px;
    padding-bottom: 24px;
}

.stories__btn.top-news {
    padding-top: 11px;
    padding-bottom: 11px;
}

.stories__btn i {
    transform: rotate(-43deg);
    font-size: 18px;
}

.stories__btn a:hover {
    color: var(--color-white-opaque);
}

.game__country__wrap .matchs__country {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 50%;
}

.game__country__wrap .game__goal {
    width: 50px;
}

.news__right__blk {
    border-radius: 0 0 8px 8px !important;
}

.game__country__blk {
    background: var(--color-fulldark-grey);
}

.news__details__content {
    padding-bottom: 48px !important;
    height: 192px;
}

.no-match-related-details .news__details__content  {
    height: 256px;
}

.game__thumb img {
    border-radius: 8px 8px 0 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.article__tabs__area .nav-link {
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0px;
    background: transparent !important;
    color: var(--color-grey);
    width: 50%;
    text-align: center;
    border: 0 !important;
    border-bottom: 1px solid var(--color-black-3a) !important;
    transition: .3s all;
}

.article__tabs__area .nav-tabs {
    border: 0;
}

.article__tabs__area .nav-link.active {
    border-color: var(--color-black) !important;
    color: var(--color-black) !important;
}

.article__hrs a {
    color: var(--color-grey);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    transition: .3s all;
}

.article__hrs a:nth-child(2) {
    border-left: 1px solid var(--color-black);
    border-right: 1px solid var(--color-black);
}

.article__hrs {
    border: 1px solid var(--color-black);
    border-radius: 4px;
    display: flex;
    margin-bottom: 40px;
}

.article__hrs a.active {
    background: var(--color-black-43);
    color: var(--color-black);
}

.stories__card__wrapper {
    margin-top: 24px;
    background: var(--color-black-2d);
    padding: 2px 16px;
    border-radius: 0 0 8px 8px;
}

/* ----------------------------------------- NEWS AREA END ------------------------ */


/* ----------------------------------------- COMPETITION AREA END ------------------------ */

.competition__title h4 {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    margin: 0;
    color: var(--color-sportal-orange);
}

.competition__area {
    background: var(--color-fulldark-grey);
}

.competition__title {
    padding-bottom: 24px;
}

.competition__wrapper {
    padding-top: 32px;
}

.competition__content span {
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
}

.competition__content p {
    color: var(--color-black);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    margin: 0;
}

.competition__league {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--color-black-2d);
    border-radius: 4px;
    border: 1px solid var(--color-black-43);
    box-shadow: 0px 4px 15px 0px var(--color-grey-opaque);
    padding: 15px 8px;
}

.competition__league img {
    flex: 0 0 auto;
}

.game__content p {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
}

/* ----------------------------------------- COMPETITION AREA START ------------------------ */


/* ----------------------------------------- GAME AREA START ------------------------ */

.video__game__thumb {
    height: 434px !important;
}

.video__game__thumb img {
    height: 100%;
}
.football__list {
    max-width: 100% !important;
}
.football__list img {
    border-radius: 8px;
    height: 722px;
}

.video__card__content {
    padding-bottom: 0 !important;
}

.share__video__thumb {
    max-width: 160px;
    height: 90px;
    position: relative;
}

.nba__video__wrap {
    border-top: 1px solid var(--color-silvergrey);
    padding-bottom: 23px;
    padding-top: 8px;
}

.video__play__btn {
    left: 47px !important;
    top: 12px !important;
}

.share__video__thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.league__name h4 {
    font-family: var(--theme-font-family);
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.league__name {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 64px;
    margin-bottom: 16px;
}

.league__name img {
    height: 32px;
    object-fit: cover;
}

.medium__add__thumb {
    min-height: 250px !important;
    padding: 23px 3px;
}

.medium__add__thumb img {
    height: 100% !important;
}

.game__area {
    background: var(--color-fulldark-grey);
    padding: 32px 0;
}

.game__content {
    padding-bottom: 24px !important;
}

.game__thumb__blk {
    height: 560px !important;
}

.game__thumb__blk img {
    height: 100%;
    border-radius: 8px;
}

.game__left__blk {
    background: var(--color-fulldark-grey) !important;
    padding: 24px 0 !important;
}

.rate__news__title {
    padding-bottom: 16px;
}

.rated__news__blk {
    padding-top: 24px;
}

.rate__news__title h5 {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-black);
    margin: 0;
}

.game__details__content {
    padding-bottom: 128px !important;
}

.rated__news__content h6 {
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.rated__news__item {
    display: flex;
    align-items: flex-start;
    background: var(--color-black-2d);
    border-radius: 8px;
    margin-bottom: 8px;
}

.rated__news__thumb {
    max-width: 159px;
}

.rated__news__thumb img {
    width: 100%;
    border-radius: 8px 0 0 8px;
    height: 86px;
    object-fit: cover;
    min-width: 159px;
    width: 159px;
}

.rated__news__content {
    padding: 4px 8px;
}


.football__bottom__add__thumb {
    max-width: 728px;
    margin: 0 auto;
    border-radius: 8px;
}

.football__bottom__add__thumb img {
    width: 100%;
}

.tags__bubbles__single {
    background: var(--color-black-43);
    color: var(--color-dark-grey);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    padding: 5px 11px;
    border-radius: 8px;
    height: 42px;
}
.tags__bubbles__single:hover a {
    background: var(--color-black-43);
    color: var(--color-white);
}
.tags__bubbles__single a {
    color: inherit;
}
.tags__bubbles__single img {
    padding-right: 5px;
}

.tags__bubbles {
    gap: 8px;
}

.article__content p {
    font-family: var(--theme-font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-light-grey);
    margin-bottom: 24px;
}


.article__content__blk {
    width: 100%;
}

.article__ico {
    padding: 12px;
    background: var(--color-black-opaque);
    border-radius: 8px;
    margin-bottom: 8px;
}

.article__ico img {
    width: 30px;
    height: 30px;
}

.article__social__ico__blk {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story__card__content h6 {
    color: var(--color-black);
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
    background: var(--color-dark-1f);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game__story__card {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.game__etc__blk a {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    text-align: left;
    color: var(--color-light-grey);
}

.game__etc__blk span {
    color: var(--color-light-grey);
    font-size: 14px;
}

.game__etc__blk {
    padding-bottom: 8px;
}

.game__top__content h2 {
    font-family: var(--theme-font-family);
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.game__top__content {
    padding-bottom: 24px;
}

.twitter__response__blk {
    max-width: 888px;
    margin: 0 auto;
    padding: 32px;
    background: var(--color-black-26);
    border-radius: 8px;
    margin-top: 32px;
    position: relative;
    padding-bottom: 32px;
}

.testimonial__content__blk {
    max-width: 888px;
    margin: 0 auto;
    padding: 32px 0;
}

.squad__content h5 {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    color: var(--color-white);
    margin: 0;
    padding: 10px;
}

.squad__blk__thumb {
    max-width: 204px;
}

.squad__blk__thumb img {
    width: 100%;
}

.squad__content {
    background: var(--color-black-26);
    width: 100%;
}

.squad__blk__wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-black-43);
    border-radius: 8px;
}

.squad__blk__wrapper {
    padding-bottom: 24px;
}

.testimonial__thumb {
    max-width: 445px;
    margin: 0 auto;
}

.testimonial__thumb img {
    width: 100%;
    border-radius: 8px;
}

.article__content.twitter__content {
    max-width: 718px;
}

.twitter__link__content {
    max-width: 430px;
}

.twitter__right__shape__blk {
    width: 82px;
    position: absolute;
    top: 32px;
    right: 32px;
}

.twitter__right__shape__blk img {
    width: 100%;
}

.twitter__link__content p {
    max-width: 430px;
    margin-bottom: 0 !important;
}

.twitter__link__content a {
    color: var(--color-babyblue);
}

.twitter__link__content a:hover {
    text-decoration: underline;
}

.language__button__blk li a {
    color: var(--color-black);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    width: 125px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: var(--color-black) !important;
    transition: .3s all;
    border-radius: 4px !important;
}
.nav-tabs{
    border-bottom:none !important;
}
.language__button__blk a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    width: 125px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-black-43);
    transition: .3s all;
    border-radius: 4px;
}

.language__btn__area {
    border-bottom: 1px solid var(--color-black-43);
    margin-bottom: 25px;
}

.language__button__blk {
    display: flex;
    flex-wrap: wrap;
}

.language__button__blk a:hover {
    background: var(--color-fulldark-grey);
    color: var(--color-sportal-orange);
}

.language__button__blk a.active {
    color: var(--color-sportal-orange);
}

/* ----------------------------------------- GAME AREA END ------------------------ */


/* ----------------------------------------- MORE AREA START ------------------------ */
.more__news__area {
    background: var(--color-black-opaque);
    padding: 32px 0;
}

/* ----------------------------------------- MORE AREA END ------------------------ */


/* ----------------------------------------- WRITERS AREA START ------------------------ */
.writes__area {
    background: var(--color-fulldark-grey);
    padding: 32px 0;
}

.member__text__blk h4 {
    font-family: var(--theme-font-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
    margin-bottom: 8px;
}

.member__text__blk p {
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    color: var(--color-light-grey);
}

.team__profile__pic {
    max-width: 164px;
}

.team__profile__pic img {
    width: 100%;
}

.team__card__top__blk {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team__card__wrap {
    background: var(--color-black-2d);
    padding: 24px;
    border: 1px solid var(--color-grey-59);
    border-radius: 8px;
}

.skill__btn a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    padding: 10px 24px;
    border: 1px solid var(--color-grey-59);
    background: var(--color-black-26);
    border-radius: 30px;
    transition: .3s all;
    display: inline-block;
}

.skill__btn__blk {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
    padding-bottom: 26px;
    flex-wrap: wrap;
}

.skill__btn {
    display: inline-block;
}

.author__btn a {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
    padding: 11px 39px;
    background: var(--color-orange-1);
    border-radius: 8px;
    border: 1px solid var(--color-grey-59);
    transition: .3s all;
}

.author__btn {
    display: inline-block;
    padding-top: 24px;
}

.author__btn a:hover {
    background: var(--color-white);
    color: var(--color-orange-1);
}

.skill__btn a:hover {
    background: transparent;
}

/* ----------------------------------------- WRITERS AREA END ------------------------ */


/* ----------------------------------------- AMBASSADORS AREA START ------------------------ */
.ambassadors__area {
    background: var(--color-fulldark-grey);
    padding-bottom: 32px;
}

/* ----------------------------------------- AMBASSADORS AREA END ------------------------ */


/* ----------------------------------------- RECOMMENDED AREA START ------------------------ */
.recommended__area {
    background: var(--color-black-opaque);
    padding: 32px 0;
}

/* ----------------------------------------- RECOMMENDED AREA END ------------------------ */


/* ----------------------------------------- VIDEO AREA START ------------------------ */
.video__area {
    background: var(--color-black-opaque);
    padding: 32px 0;
}

/* ----------------------------------------- VIDEO AREA END ------------------------ */


/* ----------------------------------------- BASKETBALL AREA START ------------------------ */

.add__thumb img {
    width: 100%;
    border-radius: 8px;
    height: 328px;
    object-fit: contain;
}

.card__inner__item {
    padding: 16px;
    background: var(--color-white);
    border-radius: 0 0 8px 8px;
}

.card__thumb img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__thumb {
    height: 180px;
    position: relative;
}

.basketball__card {
    padding-bottom: 20px;
}

.specific__title h4 {
    text-align: left !important;
}

.basketball__area {
    background: var(--color-fulldark-grey);
    padding: 32px 0;
}

.specific__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.common__title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: var(--color-sportal-orange);
    height: 2px;
    width: 100%;
    z-index: -1;
}

.arrow__right {
    color: var(--color-sportal-orange);
    font-size: 30px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-fulldark-grey);
}

.basekatball__thumb img {
    border-radius: 8px;
}

.basketball__inner__text p {
    font-family: var(--theme-font-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
    margin: 0;
}

.author__items p {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-light-grey);
    margin: 0;
}

.author__items a {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-light-grey);
}
.football__area .author__items {
    justify-content: start;
}
.football__area div#tab-content {
    padding: 0 !important;
}
.author__items {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width:300px;
}

.basketball__inner__text {
    padding-bottom: 16px;
}

.basekatball__wrap__left__blk {
    position: relative;
    height: 100%;
}

.author__items span {
    margin-right: 2px;
}

.basketball__inner__item {
    padding: 24px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, var(--color-black-rgb) 0%, var(--color-white-rgb) 100%);
    border-radius: 0 0 8px 8px;
}

.card__content h5, .card__content p {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
    min-height: 84px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card__content h5>a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card__content {
    padding-bottom: 16px;
}

.nba__top__content h3 {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-sportal-orange);
    margin: 0;
}

.nba__top__content {
    padding-bottom: 8px;
}


.social__media__titile h4 {
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0px;
    text-align: right;
    color: var(--color-white);
    margin: 0;
}

.social__ico {
    width: 32px;
    height: 32px;
}

.social__ico img {
    width: 100%;
    border-radius: 4px;
}

.team__card__inner__bottom__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.team__score__title p {
    font-family: var(--theme-font-family);
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-grey);
    margin: 0;
    padding: 5px 24px;
}

.player__score__area {
    padding: 20px;
    border: 1px solid var(--color-black-43);
    border-radius: 8px;
}

.card__right__social__blk {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team__score__title {
    background: var(--color-black-opaque);
    border-top: 1px solid var(--color-black-3a);
    margin-bottom: 30px;
}

.scorers__title h4 {
    font-family: var(--theme-font-family);
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-white);
    padding: 20px 0;
    margin-left: 30px;
}

.top__scorers__blk {
    border: 1px solid var(--color-black-43);
    border-radius: 8px;
}

.scorers__thumb img {
    border-radius: 8px;
    width: 100%;
}

.stats__date__left__blk .league__name img {
    height: 32px;
    flex: 0 0 auto;
}

.scorde__league__name {
    display: block;
    position: relative;
}

.team__score__single__blk h6 {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 5px;
}

.team__score__single__blk p {
    color: var(--color-grey);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
}

.team__score__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 953px;
    flex-wrap: wrap;
}

.common__dropdown button {
    background: var(--color-black-26) !important;
    border: 1px solid var(--color-grey-59) !important;
    height: 42px;
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
}

.league__name h6 {
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-light-grey);
    margin: 0;
    position: absolute;
    top: 35px;
    left: 65px;
}

.league__top__name {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.league__top__name img {
    width: 64px;
}

.league__name h6 img {
    width: 24px;
    height: 24px;
}

.common__dropdown .dropdown-menu {
    background: var(--color-black-opaque);
}

.common__dropdown .dropdown-menu li a {
    color: var(--color-white) !important;
}

.common__dropdown .dropdown-menu li a:hover {
    background: var(--color-orange-3);
}

.common__dropdown button:hover {
    background: var(--color-orange-3) !important;
;
    border-color: var(--color-orange-3) !important;
;
}

.stats__date__left__blk .league__name h4 {
    font-size: 14px;
    line-height: 18px;
}

.stats__date__left__blk .league__name h4 span {
    font-size: 12px;
    color: var(--color-grey);
}

.stats__date__left__blk .league__name {
    margin: 0;
}

.stats__date__area {
    align-items: center;
    justify-content: space-between;
}

.nba__content p {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    text-align: left !important;
    padding: 0 !important;
}

.nba__wrap {
    border-bottom: 1px solid var(--color-grey-59);
    padding: 16px 0;
}

.nba__content span {
    font-family: var(--theme-font-family);
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-grey);
    padding-bottom: 4px;
}

.basketball__card__content {
    padding-bottom: 32px;
}

.basket__add__thumb img {
    height: 399px;
}


.details__items__content {
    padding-bottom: 73px;
}

.game__thumb {
    position: relative;
    height: 370px;
}

.play__button {
    display: inline-block;
    position: absolute;
    bottom: 8px;
    right: 8px;
    height: 64px;
    width: 64px;
}

.competition__arrow {
    flex: 0 0 auto;
}

.competition__arrow a {
    font-size: 24px;
    color: var(--color-white);
}

.competition__row__wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.competition__row__wrap>.row {
    width: 100%;
}

.text__card__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.add__thumb.big__ad img {
    height: 100%;
}

.formula__add__thumb img {
    height: 100%;
    object-fit: cover;
}

.top__event__thumb {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 10px;
    border: 1px solid;
    border-color: rgb(51, 51, 51);
}

.single__team__details__blk {
    display: flex;
    align-items: center;
    gap: 16px;
}


.player__right__details h3 {
    font-family: var(--theme-font-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin-bottom: 8px;
}


.widget__title h4 {
    font-family: var(--theme-font-family);
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.Widget__area {
    padding: 20px 25px;
    border: 1px solid var(--color-black-3a);
    border-radius: 8px;
    /*height: 403px; */
}

.team__profile__details {
    background: var(--color-black-2d);
    padding: 64px;
    border-radius: 8px;
}

.player__right__details h4 {
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-white);
    margin: 0;
}

.player__right__details h4 img {
    width: 28px;
    height: 24px;
    padding-right: 4px;
}

.player__profile {
    display: flex;
    align-items: center;
    gap: 24px;
}

.team__profile__thumb {
    max-width: 188px;
}

.team__profile__thumb img {
    width: 100%;
}

.team__league__title h4 {
    margin: 0;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
}

.team__states__wrapper {
    padding-top: 48px;
}

.single__states__team__blk {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.team__details__left__test h5 {
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: right;
    color: var(--color-black);
    margin: 0;
}

.team__stats__league__blk {
    border: 1px solid var(--color-black-3d);
    border-radius: 8px;
    padding: 24px;
    background: var(--color-black-2d);
}

.teams__left__title h4 {
    font-family: var(--theme-font-family);
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.team__details__social__ico a {
    font-size: 20px;
    color: var(--color-light-grey);
}

.team__details__social__ico {
    display: flex;
    gap: 8px;
}

.team__details__right__text h5 {
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    margin: 0;
    color: var(--color-light-grey);
}

.team__details__area {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.team__details__left__test {
    width: 120px;
    flex: 0 0 auto;
}

.team__details__right__blk {
    width: 138px;
}

.top__event__blk {
    background: var(--color-fulldark-grey);
}

.football__area {
    background: var(--color-fulldark-grey);
    padding: 30px 0;
}

.category_with_standings.football__area {
    background: var(--color-fulldark-grey);
}

.football__area .sport__details__content {
    padding-bottom: 67px;
}

.popular__title {
    text-align: center !important;
}

.black__bg {
    background: var(--color-fulldark-grey) !important;
}


.live__blog img {
    width: 24px;
    height: 24px;
}

.live__blog {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--color-dark-1f);
    max-width: 155px;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid var(--color-black-43);
    position: absolute;
    bottom: 10px;
    left: 15px;
}


.team__league__logo {
    width: 64px;
}

.team__league__logo img {
    width: 100%;
}

.live__blog p {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
}

.pegination__area .pagination li a {
    height: 56px;
    width: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 0 !important;
    background: var(--color-black-43);
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
}

.pegination__area .pagination {
    display: flex;
    gap: 10px;
}

.pegination__area .pagination li:last-child a {
    font-size: 25px;
    color: var(--color-orange-1);
}

.pegination__area {
    padding-top: 30px;
}

.slide__prev__calendar span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    width: 42px;
    background: var(--color-black-26);
    border-radius: 6px;
    color: var(--color-grey-9a);
    font-size: 19px;
    border: 1px solid var(--color-grey-59);
    cursor: pointer;
}

.calender__field input {
    height: 42px;
    width: 252px;
    background: var(--color-black-26);
    border: 1px solid var(--color-grey-59);
    border-radius: 6px;
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
}

.calender__field {
    position: relative;
}

.calender__field .calendar_ico {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: var(--color-grey-mulyr);
    cursor: pointer;
}

.livescore__calender {
    display: flex;
    gap: 12px;
}

.livescore__calender__area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 12px 16px;
    background: var(--color-black-opaque);
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid var(--color-fulldark-grey);
}

.livescore__btn a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    border: 1px solid var(--color-grey-59);
    padding: 11px 24px;
    display: inline-block;
    border-radius: 40px;
    background: var(--color-black-26);
    transition: .3s all;
}

.livescore__btn a:hover {
    background: var(--color-orange-1);
    border-color: var(--color-orange-1);
}

.livescore__btn a.active {
    background: var(--color-orange-1);
    border-color: var(--color-orange-1);
}

.livescore__top__tabs .nav-tabs button {
    color: var(--color-black) !important;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    background: var(--color-black-26) !important;
    border: 1px solid var(--color-black) !important;
    padding: 16px 40px;
}

.livescore__top__tabs .nav-tabs {
    display: flex;
    justify-content: center;
    border: 0;
}

.livescore__top__tabs .nav-tabs button.active {
    color: var(--color-sportal-orange) !important;
    font-weight: 600;
    background: var(--color-black-opaque) !important;
}

.livescore__btn {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.livescore__dropdown {
    width: 100%;
    display: none;
}

.livescore__dropdown .common__dropdown button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common__dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: 0;
    height: 10px;
    width: 10px;
    border-left: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: rotate(-45deg);
}

.megamenu__area .container {
    max-width: 1440px;
}

.megamenu__area {
    position: fixed;
    left: 0;
    top: 85px;
    right: 0;
    z-index: 22;
    transition: .2s all;
    visibility: hidden;
    opacity: 0;
}

.main__menu ul>li>a span {
    transition: .3s all;
}

.dark_night__area button {
    background: var(--color-black-26);
    border: 0;
    display: flex;
    padding: 5px 10px;
    gap: 10px;
    border-radius: 40px;
    color: var(--color-dark-grey);
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    position: relative;
}

.dark_night__area {
    flex: 0 0 auto;
}


.user__mobile__menu {
    background: var(--color-black);
    padding: 10px;
    display: flex;
    justify-content: flex-end;
}

.user__mobile__menu a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    display: flex;
    gap: 8px;
}

ul>li.football.megamenu__open>a span {
    transform: rotate(-180deg);
}

.megamenu__overlay {
    position: fixed;
    left: 0;
    top: 104px;
    right: 0;
    height: 100%;
    background: var(--color-grey-muly);
    z-index: 2;
    transition: .2s all;
    visibility: hidden;
    opacity: 0;
  }

  .megamenu__open__body .megamenu__overlay {
    opacity: 1;
    visibility: visible;
  }

  .megamenu__open .megamenu__area {
    top: 90px;
    opacity: 1;
    visibility: visible;
  }


/* ----------------------------------------- BASKETBALL AREA END ------------------------ */

::placeholder {
    opacity: 1;
}

/* ----------------------------------------- LIVESCORE AREA START ------------------------ */
.livescore__area {
    background: var(--color-fulldark-grey);
    padding: 32px 0;
}

/* ----------------------------------------- LIVESCORE AREA END ------------------------ */


/* ----------------------------------------- LEAGUE AREA START ------------------------ */

.league__are {
    background: var(--color-fulldark-grey);
    padding: 20px 25px;
    border: 1px solid var(--color-black-3a);
    border-radius: 8px;
}

.league__thumb {
    padding-top: 5px;
    padding-bottom: 20px;
}

.league__thumb img {
    border-radius: 0 0 6px 6px;
    width: 100%;
}

/* ----------------------------------------- LEAGUE AREA END ------------------------ */


/* ----------------------------------------- FANS AREA START ------------------------ */
.fans__middle__blk {
    padding-bottom: 24px;
}

.fans__title h4 {
    background: var(--color-black-opaque) !important;
}

.fans__area {
    background: var(--color-black-opaque);
    padding: 32px 0;
}

.stories__card__wrapper>h4 {
    font-family: var(--theme-font-family);
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-sportal-orange);
    margin-bottom: 8px;
    padding-top: 7px;
}

.team__leuge__title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
    font-family: var(--theme-font-family);
}

.team__league__blk {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
}

.team__thumb img {
    border-radius: 8px;
}

.fans__top__blk {
    padding-bottom: 32px;
}

/* ----------------------------------------- FANS AREA END ------------------------ */


/* ----------------------------------------- TENIS AREA START ------------------------ */
.tennis__area {
    background: var(--color-fulldark-grey);
    padding-top: 32px;
}

.tennis__middle__blk {
    padding: 24px 0;
}

.text__card__content h4 {
    font-family: var(--theme-font-family);
    font-size: 19px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin-bottom: 8px;
    min-height: 84px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.text__card__content h4.without-min-height {
    min-height: unset;
    color: var(--color-sportal-orange);
}

.text__card__content p {
    font-family: var(--theme-font-family);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-light-grey);
    margin-bottom: 5px;
    min-height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text__card__blk {
    padding: 16px;
    background: var(--color-black-2d);
    border-top: 1px solid var(--color-grey-59);
    border-radius: 8px;
}


.tennis__bottom__thumb img {
    border-radius: 8px;
    object-fit: contain;
}

.common__share__wrap {
    border-top: 1px solid var(--color-grey-59);
    border-bottom: 0;
}

/* ----------------------------------------- TENIS AREA END ------------------------ */


/* ----------------------------------------- FORMULA AREA START ------------------------ */
.formula__area {
    background: var(--color-fulldark-grey);
    padding-top: 32px;
}

.tennis__details__wrapper {
    height: 100%;
}

.tennis__details__wrap {
    height: 100%;
}

.tennis__details__wrap .sport__right__blk {
    padding-bottom: 8px;
}

.tennis__details__wrap .sport__right__blk .sport__details__content {
    padding-bottom: 140px;
}

.formula__wrap .sport__details__wrap .sport__right__blk .sport__details__content {
    padding-bottom: 215px;
}

.sport__details__wrap {
    display: flex;
}

.sport__details__thumb {
    max-width: 545px;
    position: relative;
    height:auto;
}

.sport__details__thumb img {
    width: 100%;
    border-radius: 8px 0 0 8px;
}

.sport__details__content h5 {
    font-family: var(--theme-font-family);
    font-size: 31px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin-bottom: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.formula__wrap {
    padding-bottom: 24px;
}

.sport__details__content p {
    margin: 0;
    font-family: var(--theme-font-family);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
    min-height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

#tabpanel-news .sport__details__content p {
    min-height: 105px;
}

#tabpanel-videos .sport__details__content p {
    min-height: 137px;
}

.sport__details__content {
    padding-bottom: 40px;
}

.sport__right__blk {
    padding: 21px 24px;
    background: var(--color-white);
    border-radius: 0 8px 8px 0;
}

/* ----------------------------------------- FORMULA AREA END ------------------------ */


/* ----------------------------------------- SHARE AREA START ------------------------ */

.share__title h4 {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.share__thumb {
    max-width: 114px;
}

.share__thumb img {
    width: 100%;
    border-radius: 8px;
}

.share__content p {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.share__wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.share__title {
    margin-bottom: 8px;
}

.viwers__share__blk {
    padding-top: 24px;
    padding-bottom: 48px;
}

.share__left__thumb {
    width: 114px;
    height: 114px;
    flex: 0 0 auto;
}

.share__left__thumb img {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

/* ----------------------------------------- SHARE AREA END ------------------------ */


/* ----------------------------------------- POPULAR AREA START ------------------------ */

.popular__area {
    background: var(--color-fulldark-grey);
}

.common__title h4 {
    font-family: var(--theme-font-family);
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
    color: var(--color-black);
    display: inline-block;
    padding: 5px 10px 10px;
    padding-left: 0;
    background: var(--color-fulldark-grey);
}

/* Theme (inbet related) */
.category_with_standings.football__area .common__title h4, .category_with_standings.football__area .arrow__right {
    background: var(--color-fulldark-grey);
}

.category_with_standings.football__area .sport__right__blk,
.category_with_standings.football__area .card__inner__item,
.category_with_standings.football__area .text__card__blk {
    background: var(--color-black-2d);
}

.category_with_standings.football__area .sport__right__blk h1 a,
.category_with_standings.football__area .sport__right__blk h2 a,
.category_with_standings.football__area .sport__right__blk h3 a,
.category_with_standings.football__area .sport__right__blk h4 a,
.category_with_standings.football__area .sport__right__blk h5 a,
.category_with_standings.football__area .sport__right__blk h6 a,
.category_with_standings.football__area .card__inner__item h1 a,
.category_with_standings.football__area .card__inner__item h2 a,
.category_with_standings.football__area .card__inner__item h3 a,
.category_with_standings.football__area .card__inner__item h4 a,
.category_with_standings.football__area .card__inner__item h5 a,
.category_with_standings.football__area .card__inner__item h6 a,
.category_with_standings.football__area .text__card__blk h1 a,
.category_with_standings.football__area .text__card__blk h2 a,
.category_with_standings.football__area .text__card__blk h3 a,
.category_with_standings.football__area .text__card__blk h4 a,
.category_with_standings.football__area .text__card__blk h5 a,
.category_with_standings.football__area .text__card__blk h6 a,
.category_with_standings.football__area .text__card__blk p,
.category_with_standings.football__area .text__card__blk span,
.category_with_standings.football__area .text__card__blk a  {
    color: var(--color-black);
}

.category_with_standings.football__area .sport__right__blk p,
.category_with_standings.football__area .sport__right__blk span,
.category_with_standings.football__area .sport__right__blk a,
.category_with_standings.football__area .card__inner__item p,
.category_with_standings.football__area .card__inner__item span,
.category_with_standings.football__area .card__inner__item a {
    color: var(--color-grey-9a);
}
/* Theme (inbet related) END */

.popular__left__text h2 {
    font-family: var(--theme-font-family);
    font-size: 64px;
    font-weight: 400;
    line-height: 77px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-sportal-orange);
    margin: 0;
}

.popular__title {
    padding: 32px 0;
}

.popular__left__text {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.popular__content p {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.popular__wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 2px solid var(--color-black);
    padding: 8px 0;
}

/* ----------------------------------------- POPULAR AREA END ------------------------ */


/* ----------------------------------------- FOLLOW SPORTAL AREA START ------------------------ */

.across__thumb {
    max-width: 32px;
    margin-bottom: 8px;
}

.across__thumb img {
    width: 100%;
    border-radius: 50%;
}

.across__content p {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 2px;
    color: var(--color-white);
}

.across__content h5 {
    margin: 0;
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
}

.across__card {
    background: var(--color-black-43);
    border-radius: 8px;
    padding: 12px 16px;
}

.follow__top__title {
    padding: 24px 0;
}

.follow__top__title h5 {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.follow__area {
    background: var(--color-black-opaque);
    min-height: 140px;
}

.sports__items {
    padding-top: 48px;
}

.sports__item p {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
    transition: .3s all;
}

.sports__item p:hover {
    color: var(--color-orange-4);
}

.sports__item a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.sports__item__title h4 {
    font-family: var(--theme-font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-sportal-orange);
    margin: 0;
}

.sports__item__title {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-black-3a);
    margin-bottom: 16px;
}

/* ----------------------------------------- FOLLOW SPORTAL AREA END ------------------------ */


/* ----------------------------------------- MEGAMENU AREA START ------------------------ */
.megamenu__area {
    background: var(--color-dark-1f);
}

.megamenu__area {
    padding-top: 24px;
    height: 100%;
    overflow-y: scroll;
}

.megamenu__list__title h4, .megamenu__list__title h4>a {
    margin: 0;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 7px;
}

.megamenu__list__title img {
    width: 24px;
    height: 24px;
}

.megamenu__area {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: thin; /* Firefox */
scrollbar-color: var(--color-orange-4) black; /* Firefox, simple colors for testing */
overflow-y: auto; /* Ensure that vertical scrolling is possible */
}

/* WebKit-based browsers */
.megamenu__area::-webkit-scrollbar {
width: 1px;
}

.megamenu__area::-webkit-scrollbar-track {
background-color: black; /* Simple color for testing */
}

.megamenu__area::-webkit-scrollbar-thumb {
background-color: var(--color-orange-4); /* Simple color for testing */
}


.megamenu__list__title {
    padding-bottom: 16px;
}

.megamenu__content__blk p {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
    margin: 0;
}

.megamenu__link__blk a {
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    text-align: left;
    color: var(--color-sportal-orange);
}

.megamenu__link__blk span {
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-black);
}

.megamenu__link__blk {
    display: flex;
    align-items: center;
    gap: 5px;
}

.megamenu__content__blk {
    padding-bottom: 16px;
}

.megamenu__right__list__blk {
    border-left: 1px solid var(--color-black-43);
}

.megamenu__subscribe a {
    display: block;
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
}

.megamenu__themes__blk p span {
    color: var(--color-orange-1);
    font-size: 10px;
}

.megamenu__themes__blk p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.megamenu__themes__blk {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.megamenu__themes__area {
    padding: 8px 48px;
    background: var(--color-sportal-orange);
    margin-left: -24px;
    width: calc(100% + 48px);
}

.megamenu__themes__area i.fa-caret-right {
    color: var(--color-fulldark-grey);
}

.megamenu__themes__area .megamenu__themes__blk p,
.megamenu__themes__area .megamenu__themes__blk a,
.megamenu__themes__area .megamenu__themes__blk span {
    color: #000;
}

.megamenu__wrapper .col-lg-9 .row .col-2 {
    width: 20%;
}

li.li-4321 .megamenu__wrapper .core-nav-el {
    width: 20%;
}

.megamenu__league__blk a {
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-white);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.megamenu__league__blk a span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 32px;
}

.megamenu__league__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    padding: 16px 48px;
}

.megamenu__subscribe {
    padding: 0px 24px;
}

.megamenu__regon__blk {
    border-top: 1px solid var(--color-black-43);
    border-bottom: 1px solid var(--color-black-43);
    padding: 32px 24px;
}

.megamenu__regon__blk p {
    color: var(--color-grey);
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 12px;
}

/* remove when new menu content is populated START */
.megamenu__area {
    overflow-y: unset;
    height: unset;
}

.megamenu__area > div:nth-child(1) {
    height: unset;
}
/* remove when new menu content is populated END */


.header__top__area {
    background: var(--color-fulldark-grey);
    padding: 5px 0;
    position: relative;
    z-index: 333;
}

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

.header__news__text {
    flex: 0 0 auto;
}

.header__news__text p {
    margin: 0;
    font-family: var(--theme-font-family);
    font-size: 11px;
    line-height: 11px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-dark-grey);
}

.header__mid__area {
    background: var(--color-black);
    padding: 14px 0;
    position: relative;
    z-index: 333;
}

.header__inner__blk {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__logo {
    flex: 0 0 auto;
    max-width:160px;
}

.header__logo img {
    max-height: 30px;
}

.header__right__blk {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main__menu ul li {
    display: inline-block;
    margin-right: 8px;
}

.main__menu ul>li>a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    display: flex;
    gap: 5px;
    padding: 15px 8px;
    position: relative;
    transition: .3s all;
}

.main__menu ul li a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1.5px;
    width: 0;
    content: '';
    background: var(--color-orange-4);
    border-radius: 40px;
    transition: .3s all;
    opacity: 0.5;
}

.main__menu ul>li:hover>a:before {
    width: 100%;
    opacity: 1;
}

.main__menu ul>li:hover>a {
    color: var(--color-orange-4);
}

.header__search button {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
}

.header__search button i {
    font-size: 16px;
}

.login__profile a {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    background: transparent;
    border: 0;
    color: var(--color-white);
    display: flex;
    gap: 6px;
    padding: 6px 8px;
}

.login__profile a i {
    font-size: 19px;
}

.header__mid__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team__leuge__logo a {
    font-size: 22px;
    color: var(--color-white);
}

.games__btn a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    display: inline-block;
    padding: 8px 11px;
    border-width: 1px 1px 0px 1px;
    border-style: solid;
    border-color: var(--color-black-43);
    border-radius: 6px 6px 0 0;
    background: var(--color-black-26);
    transition: .3s all;
}

.games__btn a:hover {
    background: var(--color-dark-1f);
}

.games__mt__profile a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    transition: .3s all;
}

.games__mt__profile a:hover {
    color: var(--color-orange-1);
}

.games__btn__area {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-black-43);
    width: 100%;
}

.fans__inner__blk {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
}

.fans__title {
    flex: 0 0 auto;
}

.article__inner__main__wrap {
    display: flex;
}

.article__inner__main__blk {
    width: 100%;
}

.article__social__blk {
    flex: 0 0 auto;
}

.games__btn a.active {
    background: var(--color-dark-1f);
}

/* ----------------------------------------- MEGAMENU AREA END ------------------------ */


/* ----------------------------------------- FOOTER AREA START ------------------------ */

.footer__area {
    padding: 45px 0;
    background: var(--color-black-opaque);
}

.footer__menu__list ul li {
    display: inline-block;
    margin-right: 30px;
}

.footer__menu__list ul li a {
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-light-grey);
    transition: .3s all;
}

.footer__menu__list ul li a:hover {
    color: var(--color-orange-4);
}

.footer__content p {
    font-family: var(--theme-font-family);
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0px;
    text-align: left;
    color: var(--color-dark-grey);
    margin: 0;
}

.footer__logo {
    width: 230px;
}

.footer__logo img {
    width: 100%;
}

.footer__bottom__blk {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer__menu__list {
    padding-top: 25px;
    padding-bottom: 32px;
    border-top: 1px solid var(--color-black-3a);
}

.footer__content span {
    text-decoration: underline;
}

.footer__content span:hover {
    text-decoration: none;
}

/* ----------------------------------------- FOOTER AREA END ------------------------ */






/*-------- Custom  radio button Style Start --------*/





/* Customize the label (the container) */
/* The container */
.codeplay-rd .container-rd {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.codeplay-rd .container-rd input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.codeplay-rd .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid var(--color-white);
}

/* On mouse-over, add a var(--color-grey-basic)background color */
.codeplay-rd .container-rd:hover input~.checkmark {
    background-color: transparent;
}

/* When the radio button is checked, add a var(--color-blue)background */
.codeplay-rd .container-rd input:checked~.checkmark {
    background-color: transparent;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.codeplay-rd .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.codeplay-rd .container-rd input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.codeplay-rd .container-rd .checkmark::after {
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--color-grey-85);
    transform: translate(-50%, -50%);
}

.container-rd p {
    margin: 0;
    position: relative;
    top: -4px;
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: left;
}

/* Create the indicator (the dot/circle - hidden when not checked) */


/*-------- Custom  radio button Style End --------*/



/* ----------------------------------------- MOBILE MENU AREA START ------------------------ */

.mobile__menu__logo {
    margin-left: 18px;
}

.mobile__menu__logo img {
    max-width: 130px;
}

.mobile__menu .mega__menu {
    position: unset;
    width: 100%;
    flex-direction: column;
    top: 0 !important;
    visibility: visible;
    opacity: 1;
    gap: 20px;
    padding: 15px;
}

.mobile__menu .header__right__blk {
    flex-direction: column;
    align-items: flex-start;
}

.mobile__menu .header__right__blk .main__menu ul li {
    margin: 0;
    display: block;
    padding: 6px 0;
}

.mobile__menu .header__right__blk .main__menu ul li a {
    display: inline-flex;
    padding: 6px 0;
    border-bottom: 1px solid var(--color-black);
    width: 100%;
    border-radius: 0 !important;
    background: var(--color-white) !important;
    box-shadow: none !important;
}

.mobile__menu .header__right__blk .main__menu {
    width: 100%;
}

.mobile__menu .header__btn {
    margin: 20px 0;
    width: 100%;
}

.mobile__menu .social__ico__blk {
    margin-left: 0;
    justify-content: center;
    width: 100%;
}

.mobile__menu {
    display: block;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 999;
    width: 100%;
    padding: 0;
    transition: .3s all;
    left: -100%;
}

.mobile__menu .header__btn a {
    width: 100%;
}

.close__menu {
    cursor: pointer;
    padding: 22px 16px;
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
}

.close__menu:not(.v-hidden) {
    position: absolute;
    right: 0;
}

.mobile__menu .header__right__blk .main__menu .main__menu__link a {
    border: 0;
    padding: 0;
    font-size: 14px;
    margin: 0;
}

.mobile__menu .mega_menu_right p {
    font-size: 15px;
}

.none__desk {
    display: none;
}

.open__menu {
    cursor: pointer;
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--color-white);
    margin-left: 15px;
}

.open__menu i {
    margin-left: 6px;
}

.overlay {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--color-black);
    z-index: 555;
    transition: .5s all;
    opacity: 0.7;
}

.mobile__menu__header {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--color-black);
}

.mobile__menu__search {
    padding: 16px;
    position: relative;
}

.mobile__menu__search input {
    width: 100%;
    color: var(--color-dark-grey);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0px;
    border-radius: 6px;
    border: 1px solid var(--color-black-43);
    padding: 10px;
    padding-left: 35px;
}

.mobile__menu__search button {
    position: absolute;
    left: 23px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
}

.mobile__menu__list a {
    color: var(--color-white);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    margin-bottom: 16px;
}

.mobile__menu__list {
    padding: 0 16px;
}

.mobile__menu__list__blk {
    width: 250px;
    background: var(--color-black);
    height: 100%;
    overflow-y: scroll;
}

.mobile__menu__team__wrap {
    background: var(--color-black-26);
    margin-bottom: -20px;
    padding: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    border-bottom: 1px solid var(--color-black-383);
}

.subscribe__now__text .megamenu__subscribe {
    padding: 16px;
}

.subscribe__now__text {
    border-top: 1px solid var(--color-black-373);
}

.subscribe__now__text .megamenu__subscribe a:last-child {
    margin: 0;
}

.football__second__step__menu.active {
    left: 0;
}

/* ----------------------------------------- MOBILE MENU AREA END ------------------------ */


/*-------------------- Selector Css Here   --------------------- */



.select-box {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-family: var(--theme-font-family);
    font-size: 18px;
    color: var(--select__txt--100);
    text-align: left;
}

.select-box__current {
    position: relative;
    cursor: pointer;
    outline: none;
}

.select-box__current:focus+.select-box__list {
    opacity: 1;
    -webkit-animation-name: none;
    animation-name: none;
}

.select-box__current:focus+.select-box__list .select-box__option {
    cursor: pointer;
}

.select-box__icon.active {
    transform: translateY(-50%) rotate(180deg);
}

.select-box__icon {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 20px;
    transition: 0.2s ease;
    color: var(--color-white);
    opacity: 1;
    font-size: 11px;
}

.select-box__value {
    display: flex;
}

.select-box__input {
    display: none;
}

.select-box__input:checked+.select-box__input-text {
    display: block;
}

.select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 7px;
    background-color: transparent;
    border-radius: 6px;
    font-style: normal;
    color: var(--color-white);
    border: 1px solid var(--color-black-43);
    font-family: var(--theme-font-family);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0px;
    text-align: center;
    padding-right: 20px;
    padding-bottom: 5px;
}

.select-box__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
    animation-name: HideList;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px var(--select__box__shadow--101);
    z-index: 999;
    background: var(--color-fulldark-grey);
    box-shadow: 0px 0px 12px 1px var(--select__box__shadow--102);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid var(--color-black-opaque);
}

.select-box__option {
    display: flex;
    padding: 5px;
    background-color: var(--color-fulldark-grey);
    line-height: 1;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.select-box__option:hover,
.select-box__option:focus {
    color: var(--select__txt--103);
    background-color: var(--select__bg--104);
}

@-webkit-keyframes HideList {
    from {
        transform: scaleY(1);
    }

    to {
        transform: scaleY(0);
    }
}

@keyframes HideList {
    from {
        transform: scaleY(1);
    }

    to {
        transform: scaleY(0);
    }
}

.select-box__current img {
    width: 16px;
    margin-right: 3px;
    position: relative;
    top: -2px;
}

.select-box__list li img {
    width: 16px;
    margin-right: 2px;
}

.select-box__list li {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--select__txt--105);
}

.select-box__icon {
    width: 10px !important;
}

.sport__connections {
    padding-right: 10px;
    width: unset;
    background: var(--color-dark-1f);
    flex: 0 0 auto;
}

.sport__connections .select-box__icon {
    color: var(--color-orange-1);
}

.sport__connections .select-box__input-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.sport__connections .select-box__list {
    width: 250px;
}

.selectorwith_flag {
    width: 76px;
    flex: 0 0 auto;
}

.header-__right__wrap {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.search__popup {
    position: absolute;
    width: 400px;
    background: var(--color-fulldark-grey);
    border: 1px solid var(--color-black-3a);
    padding: 5px;
    border-radius: 3px;
    padding-top: 25px;
    z-index: 333;
    right: 0;
    transition: .3s all;
    transform: scale(0.8);
    top: 100%;
    visibility: hidden;
    opacity: 0;
}

.search__popup input {
    width: 100%;
    height: 42px;
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-black-3a);
    padding: 5px 16px;
    font-size: 14px;
    padding-right: 40px;
}

.search__popup button {
    position: absolute;
    bottom: 13px;
    right: 11px;
}

.search__popup button i {
    font-size: 15px;
}

.search__popup .close__search {
    position: absolute;
    top: 1px;
    right: 5px;
    color: var(--color-orange-4);
    cursor: pointer;
}

.header__search {
    position: relative;
}

.search__popup.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.search_header .search__popup button {
    background: transparent;
    border: 0;
    color: var(--color-white);
}

.search_header {
    cursor: pointer;
    position: relative;
}

.megamenu__area .container {
    height: 923px;
}

.dark_night__area .light_text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.dark_night__area .white_shape {
    position: absolute;
    left: 10px;
    top: 50%;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--color-white);
    transform: translateY(-50%);
}





.dark_night__area.active button .dark_text {
    opacity: 0;
}

.dark_night__area.active button .light_text {
    opacity: 1;
}

.dark_night__area.active button .white_shape {
    left: auto;
    right: 10px;
}

.dark_night__area .dark_ico {
    font-size: 15px;
}

/*-------------------- Selector Css Here   --------------------- */

.common__card__items.height_auto_phone {
    margin-bottom: 20px;
}

.common__card__items.height_auto_phone:last-child {
    margin-bottom: 0;
}


/* For WebKit (Chrome, Safari) */
.select-box__list::-webkit-scrollbar {
    width: 6px;
    /* Width of the scrollbar */
}

.select-box__list::-webkit-scrollbar-thumb {
    background-color: var(--color-black-opaque);
    /* Color of the scrollbar thumb */
}

/* For Internet Explorer */
.select-box__list {
    -ms-overflow-style: none;
    /* Hide default scrollbar for IE */
    scrollbar-width: 3px;
    /* Width of the scrollbar */
    scrollbar-color: var(--color-orange-4) transparent;
    /* Color of the scrollbar thumb and track */
}

.select-box__list::-webkit-scrollbar-track {
    background-color: var(--color-black-opaque);
    /* Background color of the scrollbar track */
}

.show-on-mobile {
    display: none !important;
}

.ad_600 img {
    max-height: 600px;
}

@media screen and (min-width: 1190px) {
    .sport__details__thumb>img, .sport__details__thumb>a>img {
        min-width: 545px;
        width: 545px;
        height: 100%;
        object-fit: cover;
    }
    .rated__news__thumb>img, .rated__news__thumb>a>img {
        min-width: 159px;
        width: 159px;
    }
    .team__profile__pic>img {
        min-width: 164px;
        width: 164px;
    }
}

/** Fixed header **/
.header__top__area {
    position: fixed;
    width: 100%;
    top: 0;
}

.header__mid__area {
    position: fixed;
    width: 100%;
    top: 30px;
}

.logged-in.admin-bar .header__top__area {
    top: 32px !important;
}

.logged-in.admin-bar .header__mid__area {
    top: 62px !important;
}
.logged-in.admin-bar .megamenu__area.container {
    margin-top: 32px !important;
}

.megamenu__area.container {
    background-color: var(--color-fulldark-grey);
}

.top__event__blk {
    width: 100%;
    margin-top: 108px;

}

.tennis__details__wrap .sport__right__blk {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
    .top__event__blk {
        margin-top: 82px !important;

    }
}
@media screen and (min-width: 1200px) {
    .football__list.standings-widget-home-page {
        max-height: 710px;
        overflow-y: scroll;
        border-radius: 8px;
    }

    .football__list.standings-widget-home-page div[data-widget-id="standings"]::-webkit-scrollbar {
        width: 1px; /* Adjust scrollbar width as needed */
    }
    
    .football__list.standings-widget-home-page div[data-widget-id="standings"]::-webkit-scrollbar-track {
        background: transparent; /* Transparent track (part that the handle slides within) */
    }
    
    .football__list.standings-widget-home-page div[data-widget-id="standings"]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5); /* Semi-transparent thumb */
        border-radius: 5px; /* Optional: rounds the corners */
    }
    
    .football__list.standings-widget-home-page div[data-widget-id="standings"]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.7); /* Slightly more opaque on hover */
    }
    
}

@media screen and (max-width: 607px) {
    .sport__details__content.news__details__content {
        height: unset !important;
    }   
    .matchs__country h6 {
        text-align: center;
        font-size: 11px;
    }
    .team__card__inner__bottom__blk {
        align-items: start;
    }
    .common__card__items:not(.height_auto_phone) h5 {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }
    .show-on-desktop {
        display: none !important;
    }
    .livescore__calender__area {
        padding: 12px 0;
    }

    ul.dropdown-menu.dropdown-menu-end.show {
        width: 100% !important;
        left: 0 !important;
        right: unset !important;
    }
    .show-on-mobile {
        display: block !important;
    }
    .football__area {
        padding-bottom: 0;
    }

    .category_with_standings.football__area {
        padding-bottom: 30px;
    }

    .stories__card__wrapper {
        border-radius: 8px;
    }
    .arrow__right {
        padding-left: 26px;
        background: var(--color-fulldark-grey);
        margin-right: 16px;
    }

    .tags__bubbles {
        margin-bottom: 20px;
    }

    .twitter__right__shape__blk {
        bottom: 10px;
        top: unset;
    }

    .squad__blk__thumb {
        flex: 0 0 100%;
        max-width: unset !important;
        border-radius: 8px 8px 0px 0px;
    }

    .squad__blk__wrap {
        flex-wrap: wrap;
    }

    .squad__blk__thumb img {
        border-radius: 8px 8px 0px 0px !important;
        background: #3b3b47;
    }

    .twitter__response__blk {
        padding-bottom: 100px;
    }

    .competition__league {
        gap: 6px;
    }

    .competition__content span {
        color: var(--color-light-grey);
    }

    .fans__area .team__leuge__logo a img {
        height: 48px;
    }

    .team__leuge__logo:first-child,
    .team__leuge__logo:last-child,
    .team__leuge__logo:nth-child(n+3):nth-child(-n+7) {
        display: block;
    }

    .team__leuge__logo {
        display: none;
    }


    .sport__details__thumb, .game__thumb {
        height: 202px;
    }

    .common__card__items:not(.common__card__mobile__row):not(.height_auto_phone) .card__thumb {
        height: 98px;
    }

    .common__card__items.height_auto_phone .card__thumb, .video__game__thumb {
        height: 202px !important;
    }
    .text__card__wrapper__holder {
        margin-top: 14px;
        margin-bottom: -10px;
    }
    .text__card__wrapper {
        gap: 4px;
    }
}

    .teamPlayersTitle{
        color:white !important;
    }
    .pagination > li > a
    {
        background-color: #434343;
        color: #8B8B8B;
        border-color: #434343;
    }
    .pagination > .active > span
    {
        background-color: #434343;
        border-color: #434343;
        color: #8B8B8B;
    }
    .player_image img {
        width:250px !important;
        min-width:120px !important;
        border-radius : 50% !important;
    }


    /* Style the tab */
    #match-widget-wrapper .custom-tab {
        display: flex;
        overflow: hidden;
        width: 100%;
        margin: 12px 0;
        gap: 4px;
    }

    /* Style the buttons that are used to open the tab content */
    #match-widget-wrapper  .custom-tablinks {
        display: inline-flex;
        width: calc(100% / 5);
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        outline: none;
        cursor: pointer;
        font-family: var(--theme-font-family);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        text-transform: uppercase; 
        margin: auto 0;
        border: 1px solid #D9D9D9;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        line-height: 20px;
        appearance: none;
        text-align: center;
        color: var(--color-black);
    }

    #match-widget-wrapper  .custom-tablinks:hover, #match-widget-wrapper .custom-tablinks.active  {
        background-color: #fff;
        color: #000000;
    }

    /* Style the tab content */
    #match-widget-wrapper  .custom-tabcontent {
        display: none;
    } 

    #match-widget-wrapper .custom-tabcontent.active {
        display: block;
    }

    #match-widget-wrapper  #match-widget-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        background-color: #fafafa;
    }

    #match-widget-wrapper  div[data-widget-id="team-h2h"] {
        padding: 32px 0;
    }

    @media (max-width: 450px) {
        #match-widget-wrapper  .custom-tab {
        flex-direction: column;
        text-align: center;
        }

        #match-widget-wrapper  .custom-tablinks {
        width: 100%;
        padding: 8px 0;
        }
    }

    @media (max-width: 960px) {
        .standings-widget-home-page {
            margin: 0 auto;
            width: 100%;
        }

        .banner_after_standings {
            margin: 17px auto 0;
        }
    }


    #footer-logos-wrapper, #footer-socials-logos-wrapper {
        width: 100%;
        display: flex;
        background-color: var(--color-black-opaque);
        padding: 32px 0;
      }

      #footer-logos-wrapper .container, #footer-socials-logos-wrapper .container {
        width: 100%;
        display: inline-flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        gap: 32px;
      }

      #footer-socials-logos-wrapper .container {
        justify-content: center;
        gap: 16px;
      }

      #footer-logos-wrapper a, #footer-socials-logos-wrapper a {
        display: inline-flex;
        cursor: pointer;
        /* -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        opacity: 0.6;
        filter: alpha(opacity=60); */
      }

      #footer-logos-wrapper a img {
        width: 64px;
      }

      #footer-socials-logos-wrapper a.footer-socials-logo img {
        width: 48px;
      }

      a.editor-link, a.editor-link strong, a.editor-link i, a.autolink-enabled {
        color: var(--color-sportal-orange);
      }

      /* Remove all v1 widgets from website */
      div[data-widgetid] {
        display: none;
      }

      .sport__details__content__with__height {
        height: 300px;
      }

      #back-to-top {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        background: var(--color-black-2d);
        cursor: pointer;
      }

      .team-standings-widget-wrapper > div {
        border-radius: 8px;
        max-height: 700px;
        overflow-y: scroll;
      }

      .marquee--long span a{
          font-size:15px;
      }
      .header__news__text p{
          font-size:15px;
      }
      .header__mid__right img {
          vertical-align : inherit !important;
      }
      .header__mid__right a {
          color: var(--color-white) !important;
          font-family: var(--theme-font-family);
          font-size: 14px;
          font-weight: 700;
          line-height: 20px;
          letter-spacing: 0px;
          text-align: center;
          background: transparent;
          border: 0;
          display: flex;
          align-items: center;
          gap: 6px;
          padding: 6px 8px;
      }
      #nav-tab{
    margin-bottom:15px;
}
.nav-tabs .nav-link {
    border-bottom-right-radius: var(--bs-nav-tabs-border-radius);
    border-bottom-left-radius: var(--bs-nav-tabs-border-radius)
}
div[data-widget-id="match-center"] {
margin: 0 auto;
max-width: 938px;
}