@charset "UTF-8";
body {
  --light-gray-black: #efefef;
  --light-gray-border: #efefef;
  --gray-light-color:#292a2d;
  --white-gray-bkg:#fff;
  --text-white: #040504;
  --white-gray-light-bkg: #fff;
  --light-gray-bkg: #efefef;
  --light-gray-bkg-rgb: 239,239,239;
  --black-white: #fff;
  --white-black-rgb: 255,255,255;
  --black-white-rgb: 4,5,4;
  --light-white: #9a9999;
  --stars-border:#e1e1e1;
  --white-green:#fff;
  --green-white:#149688;
  --table-bg: 239,239,239;
  --dark-gray:#b9b8b8;
  --black-gray: #040504;
  --footer-gray-color: #b9b8b8;
}

body.dark {
  --light-gray-black: #040504;
  --light-gray-border: #2a2a2d;
  --gray-light-color: #efefef;
  --white-gray-bkg: #040504;
  --text-white: #dedada;
  --white-gray-light-bkg: #2a2a2d;
  --light-gray-bkg: #474545;
  --light-gray-bkg-rgb: 71,69,69;
  --black-white: #040504;
  --white-black-rgb: 4,5,4;
  --black-white-rgb: 255,255,255;
  --light-white: #fff;
  --stars-border:#f2f1f1;
  --white-green:#149688;
  --green-white:#fff;
  --table-bg: 20,20,20;
  --dark-gray:#474545;
  --black-gray: #4c4c4c;
  --footer-gray-color: #2a2a2d;
}

@font-face {
  font-family: "Poppins-Regular";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
  font-display: swap; /* Ensures that text is visible while the custom font is loading, improving user experience. */
}
@font-face {
  font-family: "Poppins-Bold";
  src: url(../fonts/Poppins/Poppins-Bold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url(../fonts/Poppins/Poppins-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Italic";
  src: url(../fonts/Poppins/Poppins-Italic.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Poppins-BoldItalic";
  src: url(../fonts/Poppins/Poppins-BoldItalic.ttf);
  font-display: swap;
}
@font-face {
  font-family: "LeagueSpartan-Regular";
  src: url(../fonts/LeagueSpartan/LeagueSpartan-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "LeagueSpartan-Bold";
  src: url(../fonts/LeagueSpartan/LeagueSpartan-Bold.woff2);
  font-display: swap;
}
@font-face {
  font-family: "LeagueSpartan-SemiBold";
  src: url(../fonts/LeagueSpartan/LeagueSpartan-SemiBold.ttf);
  font-display: swap;
}
@font-face {
  font-family: "LeagueSpartan-Medium";
  src: url(../fonts/LeagueSpartan/LeagueSpartan-Medium.ttf);
  font-display: swap;
}
:root {
  --grid-line-color: #1b0393;
}

body.dark {
  --grid-line-color: #03930d;
}

html {
  font-size: 0.84vw;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins-Regular";
}

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

p {
  margin-top: 0;
  margin-bottom: 0;
}

.main-content {
  padding: 0;
  flex: 1;
  overflow-x: hidden;
}

.main-section {
  width: calc(100vw - 47.5rem);
  flex: 1;
  padding: 0 1.25rem;
}
.main-section .share-popup ul {
  list-style: none !important;
  list-style-image: none !important;
  padding-left: 0 !important;
}
.main-section .share-popup ul li {
  margin-bottom: 0;
}
.main-section ol {
  padding-left: 2rem;
}
/* Sitewide: make links visible in content areas */
.main-section p a,
.main-section li a {
  color: #149688;
}

.right-column {
  width: 23.75rem;
  padding-right: 2.5rem;
  padding-bottom: 9.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.right-column h3 {
  display: block;
}

.left-menu-side-bar {
  width: 23.75rem;
  padding-left: 5rem;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.16);
}
.left-menu-side-bar .side-bar-logo img {
  height: 3.1875rem;
}
.left-menu-side-bar ul {
  padding-top: 7rem;
  list-style: none;
}
.left-menu-side-bar ul li {
  padding-bottom: 0.7rem;
}
.left-menu-side-bar ul li a {
  list-style: none;
  font-family: "Poppins-Medium";
  font-size: 1.25rem;
  transition: 0.5s;
  text-decoration: none;
  color: #1b1c1e;
  display: inline-block;
  transition: transform 0.2s ease;
  transform-origin: left center;
}
.left-menu-side-bar ul li a:hover {
  color: #149688 !important;
  transform: scale(1.2);
}
.left-menu-side-bar ul li a.active {
  color: #149688 !important;
  transform: scale(1.2);
}

.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

.minus {
  background-image: url("../../img/minus.svg") !important;
  background-position: center center !important;
}

.form-100 {
  display: flex;
  width: 100%;
}

.b-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.main-content-header {
  display: flex;
  flex-direction: column;
  box-shadow: inset 0.0625rem -3.3125rem 2.625rem -0.625rem rgba(201, 201, 201, 0.1);
}
.main-content-header .switch {
  margin: 0.87rem 2.4rem 1rem 1.4rem;
}
.main-content-header .header-menu {
  border-top: 0.125rem solid #7d7d7d;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0.5rem;
  padding: 1rem 1.25rem;
  gap: 2.2rem;
  text-transform: uppercase;
}
.main-content-header .header-menu a.active {
  font-weight: bold;
  color: #149688;
}
.main-content-header .header-menu .nav-dots {
  position: relative;
}
.main-content-header .header-menu .nav-dots.active #hiddenElement {
  display: block;
  z-index: 9;
}
.main-content-header .header-menu .nav-dots.active span {
  color: #149688;
}
.main-content-header .header-menu .nav-dots > span {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: -0.5rem;
  font-size: 2rem;
  line-height: 1rem;
  padding-bottom: 0.6rem;
}
.main-content-header .header-menu .nav-dots.category-more > span {
  font-size: inherit;
  margin-top: 0;
  padding-bottom: 0;
  text-transform: uppercase;
  font-family: inherit;
  letter-spacing: inherit;
  gap: 0.3rem;
}
.main-content-header .header-menu .nav-dots ul {
  display: none;
  top: 1.3rem;
  position: absolute;
  background: var(--white-gray-light-bkg);
  box-shadow: 0 0 0.4375rem 0 rgba(0, 0, 0, 0.16);
  padding: 1rem;
  border-top: 0.052rem solid #149688;
  transform: translateX(-45%);
}
.main-content-header .header-menu .nav-dots ul li {
  white-space: nowrap;
  margin-bottom: 0.2rem;
  font-size: 0.875rem;
}
.main-content-header .header-menu .nav-dots ul li img {
  margin-right: 1rem;
  height: 1.1rem;
}

.breadcrumb-container {
  padding-right: 25rem;
  background-color: var(--white-gray-light-bkg);
}
.breadcrumb-container nav {
  flex: 1;
}
.breadcrumb-container .breadcrumb {
  background-color: var(--white-gray-light-bkg);
  padding: 0.75rem 1.25rem 0.5rem 1.25rem;
  margin-bottom: 0;
  border-bottom: 0.0625rem solid var(--light-gray-border);
  font-size: 0.75rem;
}
.breadcrumb-container .breadcrumb .breadcrumb-item {
  padding-left: 0;
}
.breadcrumb-container .breadcrumb .breadcrumb-item.active {
  color: var(--text-white);
  font-family: "Poppins-Medium";
}
.breadcrumb-container .breadcrumb .breadcrumb-item:before {
  padding-right: 0;
  color: #149688;
}
.breadcrumb-container .right-column {
  padding: 0 !important;
}

.advertisement-top {
  width: 100%;
  padding: 0.25rem 1rem;
  background: transparent;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.advertisement-top img,
.advertisement-top a-single img {
  max-width: 100%;
  height: auto;
}
.advertisement-top-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.advertisement-top-inner .advertisement-label {
  font-size: 12px;
  font-weight: 500;
  color: #888;
}

#advertisement {
  flex: 1;
}
#advertisement .advertisement-header {
  position: relative;
  margin-bottom: 0.25rem;
}
#advertisement .advertisement-header span {
  font-size: 12px;
  font-weight: 500;
  color: #888;
}
#advertisement .advertisement-content {
  display: block;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
}
#advertisement .advertisement-content iframe {
  display: block;
  max-width: 100%;
}

.post-content-styling {
  /* Add top margin to <p> elements that directly follow a <ul> */
}
.post-content-styling > h3 {
  margin-top: 1.3rem;
  margin-bottom: 1.8rem;
}
.post-content-styling > h4 {
  margin-top: 1.3rem;
  margin-bottom: 1rem;
}
.post-content-styling p {
  margin-top: 1.4rem;
  line-height: 1.55rem;
}
.post-content-styling p span, .post-content-styling p a {
  color: #149688;
}
.post-content-styling ul:not(.nav):not(.nav-tabs):not(.dropdown-menu):not([class*="carousel"]) {
  list-style: disc !important;
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  padding-left: 2rem !important;
  list-style-image: url("../../img/green-hook-icon.svg") !important;
}
.post-content-styling ul:not(.nav):not(.nav-tabs):not(.dropdown-menu):not([class*="carousel"]) li {
  margin-bottom: 0.3rem;
  line-height: 1.55rem;
}
.post-content-styling ul li::marker {
  color: #149688;
}
.post-content-styling ul + p {
  margin-top: 2.5rem;
}
.post-content-styling ol {
  margin-top: 1rem;
  padding-left: 2rem;
}
.post-content-styling table,
.main-content .betting-promotions table {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.1875rem solid #149688;
  border-collapse: collapse;
}
.post-content-styling table td,
.post-content-styling table th,
.main-content .betting-promotions table td,
.main-content .betting-promotions table th {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.main-content .betting-promotions table tbody tr td {
  border: 0.0625rem solid var(--light-gray-border);
  padding: 0.5rem 0.75rem;
  vertical-align: top;
  text-align: left;
}
.main-content .betting-promotions table tbody tr:first-child td {
  background-color: #149688;
  color: #fff;
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
}
.main-content .betting-promotions table tbody tr td:first-child {
  border-left: none;
  font-weight: 600;
  width: 35%;
}
.main-content .betting-promotions table tbody tr td:last-child {
  border-right: none;
}
.post-content-styling table tr th, .post-content-styling table tr td {
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem;
}
.post-content-styling table thead {
  font-family: "Poppins-Bold";
  background-color: #149688;
  color: #fff;
}
.post-content-styling table tbody tr td {
  border: 0.0625rem solid var(--light-gray-border);
}
.post-content-styling table tbody tr td:first-child {
  border-left: none;
}
.post-content-styling table tbody tr td:last-child {
  border-right: none;
}

.more-content, .betting-card-hidden {
  transition: height 0.5s ease;
  overflow: hidden;
  margin-bottom: 0;
}

#readMoreBtn {
  margin-top: 1rem;
}

/*.more-content:not(.active), .betting-card-hidden:not(.active) {
  margin-bottom: 0;
  display: none;
}*/
body.dark {
  background: #040504;
  color: #dedada;
}
body.dark td {
  color: var(--text-white);
}
body.dark .btn-black-border {
  color: #fff;
}
body.dark .left-menu-side-bar {
  background: #292a2d;
}
body.dark .transfer-news-tabs li .nav-link {
  color: #fff;
}
body.dark .featured-stories-section .more-stories-card .more-stories ul li a,
body.dark .left-menu-side-bar ul li a,
body.dark .featured-stories-section .featured-stories .card .card-body a {
  color: #dedada !important;
}
body.dark .featured-stories-section .more-stories-card .more-stories ul li a:hover,
body.dark .left-menu-side-bar ul li a:hover,
body.dark .featured-stories-section .featured-stories .card .card-body a:hover {
  color: #149688 !important;
}
body.dark .featured-stories-section .more-stories-card .more-stories ul li a.active,
body.dark .left-menu-side-bar ul li a.active,
body.dark .featured-stories-section .featured-stories .card .card-body a.active {
  color: #149688 !important;
}
body.dark .featured-stories-section .featured-stories .card .card-body {
  background-color: #292a2d;
}
body.dark .story-card > div {
  background: linear-gradient(90deg, rgba(16, 17, 16, 0) 0%, rgb(16, 17, 16) 38%) !important;
}
body.light {
  background: #fff;
  color: #000000;
  overflow-x: hidden;
}

button {
  white-space: nowrap;
}

a {
  text-decoration: none;
  color: var(--text-white);
}
a:hover {
  color: #149688;
  cursor: pointer !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: none;
  line-height: none;
}

h1 {
  font-family: "LeagueSpartan-Bold", sans-serif;
  font-size: var(--sn-h1-hub, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
}

h2 {
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-size: var(--sn-h2-hub, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0em;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
}

h3 {
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-size: var(--sn-h3, 22px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: 0em;
  font-optical-sizing: auto;
  font-style: normal;
  display: flex;
  align-items: center;
}

.green-line-border {
  border-bottom: 0.125rem solid #149688;
  margin-bottom: 0;
  padding-bottom: 1rem;
  margin-left: -1.25rem;
  padding-left: 1.25rem;
}
.green-line-border.ad-disclosure {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.page-template .main-section h3,
.page-template .main-section h4,
.page-template .main-section h5,
.page-template .main-section h6 {
  text-transform: none !important;
}
.green-line-border.ad-disclosure h1,
.green-line-border.ad-disclosure h2 {
  text-wrap: wrap;
  margin-top: 0;
}
.green-line-border.ad-disclosure .ad-disclosure-container {
  position: relative;
  margin-left: auto;
  min-width: 8.6rem;
}
.green-line-border.ad-disclosure .ad-disclosure-container .ad-disclosure-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 0.125rem solid #149688;
}
.green-line-border.ad-disclosure .ad-disclosure-container .ad-disclosure-title p {
  text-transform: capitalize;
  font-family: "Poppins-Medium";
  letter-spacing: 0;
  line-height: 1.7rem;
}
.green-line-border.ad-disclosure .ad-disclosure-container .ad-disclosure-title img {
  height: 1.25rem;
  margin-right: 0.6rem;
}
.green-line-border.ad-disclosure .ad-disclosure-container .ad-disclosure-hidden {
  position: absolute;
  background: var(--white-gray-light-bkg);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  text-transform: none;
  bottom: 2.4rem;
  width: 12rem;
  right: 0;
  display: none;
}
.green-line-border.ad-disclosure .ad-disclosure-container .ad-disclosure-hidden p {
  font-size: 0.55rem;
  line-height: 0.7rem;
  font-family: "Poppins-Medium";
  color: var(--light-white);
  border: none;
}
.green-line-border.ad-disclosure .ad-disclosure-container .ad-disclosure-hidden:after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0.6rem 0.4rem 0.4rem;
  border-color: var(--white-gray-light-bkg) transparent transparent transparent;
  transform: rotate(0deg);
  top: 99%;
  right: 8%;
  position: absolute;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.1));
}
.green-line-border.ad-disclosure .ad-disclosure-container:hover .ad-disclosure-hidden {
  display: block;
}

h3.bold-h3 {
  padding-top: 0.35rem;
}

h4 {
  font-size: var(--sn-h4, 19px);
  line-height: 1.2;
  margin-bottom: 0;
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
}

h5 {
  margin-bottom: 1.2rem;
}

/* Visual heading utility classes - decouple semantics from appearance */
.heading-visual-h1 {
  font-family: "LeagueSpartan-Bold", sans-serif;
  font-size: var(--sn-h1-hub, 34px);
  line-height: 1.2;
  letter-spacing: 0em;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 2.2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.heading-visual-h2 {
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-size: var(--sn-h2-hub, 26px);
  line-height: 1.2;
  letter-spacing: 0em;
  font-optical-sizing: auto;
  font-style: normal;
  margin-top: 2.2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.heading-visual-h3 {
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-size: var(--sn-h3, 22px);
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: 0.06rem;
  font-optical-sizing: auto;
  font-style: normal;
  display: flex;
  align-items: center;
}

.heading-visual-h4 {
  font-size: var(--sn-h4, 19px);
  line-height: 1.2;
  margin-bottom: 0;
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
}

.heading-visual-h5 {
  margin-bottom: 1.2rem;
}

p {
  font-family: 'Poppins', 'Poppins-Regular', system-ui, sans-serif;
  font-size: var(--sn-body, 17px);
  font-weight: 400;
  line-height: 1.6;
}

.text-hover-green:hover {
  color: #149688;
}

.text-green {
  color: #149688;
}

.poppins-bold {
  font-family: "Poppins-Bold";
}

.font-12 {
  font-size: 0.75rem;
}

.font-14 {
  font-size: 0.875rem;
}

button {
  background: transparent;
}

.btn-white-border {
  border: 0.0625rem solid #fff;
  color: #fff;
  border-radius: 1.4375rem;
  padding: 0.6rem 2rem;
  display: flex;
  font-family: "Poppins-Bold";
  transition: 0.5s;
}
.btn-white-border:hover {
  color: #1b1c1e;
  background: #149688;
  border: 0.0625rem solid #149688;
}

.loader-container {
  height: 7.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-container .loader {
  border: 0.5rem solid #f3f3f3;
  border-radius: 50%;
  border-top: 0.5rem solid #149688;
  width: 5rem;
  height: 5rem;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.stars-box-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.stars-box-container .stars-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.0625rem solid var(--stars-border);
  border-bottom: 0.0625rem solid var(--stars-border);
  padding: 1% 0;
  height: 1.2rem;
  width: 4.3rem;
}
.stars-box-container .stars-box img {
  height: 100%;
  width: 14.4%;
  flex: 1;
}
.stars-box-container .stars-box img:not(:last-child) {
  padding-right: 7%;
}

.pagination {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 3.4rem 0 2.2rem 0;
}
.pagination .page-numbers {
  color: #7d7d7d;
  font-size: 1.125rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  line-height: 1rem;
}
.pagination .page-numbers.current {
  color: #149688;
  border-bottom: 0.05rem solid #149688;
  padding-top: 0.1rem;
}
.pagination .page-numbers.disabled {
  display: none;
}
.pagination .page-numbers:hover {
  color: #149688;
}
.pagination .page-numbers.next {
  margin-left: 0.8rem;
}

/* Uklanjanje stilova za :active, :focus i :visited stanja */
.accordion-button:active,
.accordion-button:focus,
.accordion-button:visited {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  color: inherit !important;
}

.accordion-item {
  border: none; /* Uklanja okvire oko accordion item-a */
}

.accordion-button {
  background-color: transparent !important; /* Uklanja pozadinu dugmeta */
  color: inherit !important; /* Održava boju teksta */
}

.accordion-button:not(.collapsed) {
  color: inherit !important; /* Održava boju teksta za otvoreni accordion */
}

.accordion-collapse {
  border: none; /* Uklanja okvire oko sadržaja */
}

.accordion-body {
  background-color: #f8f9fa; /* Prilagođena boja pozadine sadržaja */
}

button {
  color: black;
}

.green-btn {
  background: #149688;
  color: #fff;
  border-radius: 1.4375rem;
  padding: 0.6rem 1.7rem;
  display: flex;
  font-family: "Poppins-Bold";
  transition: 0.5s;
  width: fit-content;
  border: none;
  text-wrap: nowrap;
}
.green-btn:hover {
  color: #1b1c1e;
  background: #64ffda;
}

.btn-green-border {
  border: 0.0625rem solid #149688;
  color: #149688;
  border-radius: 1.4375rem;
  padding: 0.7rem 1.6rem;
  display: flex;
  font-family: "Poppins-Bold";
  transition: 0.5s;
  text-align: center;
  width: fit-content;
  margin: auto;
}
.btn-green-border:hover {
  text-decoration: none;
  color: #1b1c1e;
  background: #64ffda;
  border: 0.0625rem solid #64ffda;
}

.btn-black-border {
  border: 0.0625rem solid #7d7d7d;
  color: #1b1c1e;
  border-radius: 1.4375rem;
  padding: 0.45rem 0.8rem;
  display: flex;
  font-family: "Poppins-Regular";
  height: fit-content;
}
.btn-black-border:hover {
  color: #fff;
  background: #149688;
  border: 0.0625rem solid #149688;
}

.btn-green-flo {
  background: #64ffda;
  font-family: "Poppins-Bold";
  border-radius: 1.4375rem;
  border: none;
  position: relative;
  padding: 0.4rem 1.7rem;
}

/* Hide default HTML checkbox */
.switch::after {
  content: "";
  position: absolute;
  width: 5.8rem;
  height: 0.125rem;
  background: #149688;
  bottom: -1.1rem;
  left: -1.4rem;
  display: block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 3.75rem;
  height: 2.125rem;
  /* The slider */
  /* Rounded sliders */
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #149688;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 1.625rem;
  width: 1.625rem;
  right: 0.25rem;
  bottom: 0.25rem;
  background-color: var(--black-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch input:checked + .slider {
  background-color: #149688;
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px #149688;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(-1.625rem);
  -ms-transform: translateX(-1.625rem);
  transform: translateX(-1.625rem);
}
.switch .slider.round {
  border-radius: 2.125rem;
}
.switch .slider.round:before {
  border-radius: 50%;
}

ul {
  list-style: none;
  padding-left: 0;
}

.own-carousel__container:hover .own-carousel__control {
  opacity: 1;
}

.own-carousel__control button {
  border: none;
}

.own-carousel__control {
  opacity: 0;
  transition: 0.5s;
}
.own-carousel__control button {
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 1rem 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
}
.own-carousel__control button i {
  font-size: 1.2rem;
  color: #149688;
  margin-top: 0.1rem;
}
.own-carousel__control button i.bi-chevron-left {
  margin-right: 0.1rem;
}
.own-carousel__control button i.bi-chevron-right {
  margin-left: 0.25rem;
}

.own-carousel__control button {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.5s;
  background: #149688;
}
.own-carousel__control button i {
  color: white;
}
.own-carousel__control button:hover {
  background: white;
}
.own-carousel__control button:hover i {
  color: #149688;
}

.table-tp-text {
  font-size: 1rem !important;
}

.intro-content {
  display: flex;
}
.intro-content .intro-content-left {
  width: 68%;
}
.intro-content .intro-content-left .intro-content-left-text p {
  padding-bottom: 1.6rem;
  line-height: 1.55rem;
}
.intro-content .intro-content-left .btn-green-border {
  padding-left: 2.6rem;
  padding-right: 2.6rem;
  margin: 0;
}
.intro-content .best-ofs {
  width: 32%;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
}
.intro-content .best-ofs .best-ofs-title {
  line-height: 1.5625rem;
  border-bottom: 0.125rem solid #149688;
}
.intro-content .best-ofs .best-ofs-list {
  display: flex;
  flex-direction: column;
  padding-top: 1.3rem;
}
.intro-content .best-ofs .best-ofs-list .best-ofs-list-element {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.7rem;
}
.intro-content .best-ofs .best-ofs-list .best-ofs-list-element a {
  color: var(--text-white);
  font-family: "Poppins-Bold";
  line-height: 1.5625rem;
}
.intro-content .best-ofs .best-ofs-list .best-ofs-list-element a:hover, .intro-content .best-ofs .best-ofs-list .best-ofs-list-element a:active {
  color: #149688;
}
.intro-content .best-ofs .best-ofs-list .best-ofs-list-element img {
  height: 1.875rem;
  width: 1.875rem;
  margin-right: 1.25rem;
}

.heading-and-dropdown-container {
  border-bottom: 0.2rem solid #149688;
  padding-bottom: 1.1rem;
  margin-left: -1.25rem;
  padding-left: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.heading-and-dropdown-container h3 {
  line-height: 2.0625rem;
  padding-top: 0.3rem;
}
.heading-and-dropdown-container .dropdown-container:first-of-type .dropdown-header {
  width: 17rem;
}

.dropdown-container {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
}
.dropdown-container .dropdown-header {
  width: fit-content;
  min-width: 12rem;
  height: fit-content;
  display: flex;
  border: 0.0625rem solid #149688;
  border-radius: 0.7rem;
  padding: 0.5rem 1.2rem;
  transition-delay: 0s;
}
.dropdown-container .dropdown-header.active {
  border-radius: 0.7rem 0.7rem 0 0;
  transition-delay: 0s;
  background-color: #149688;
  color: #fff;
}
.dropdown-container .dropdown-header.active p i {
  transform: rotate(180deg);
}
.dropdown-container .dropdown-header.active img, .dropdown-container .dropdown-header.active .color-adaptive-icon {
  filter: brightness(10000%) contrast(100%);
}
.dropdown-container .dropdown-header:not(.active) {
  transition: border-radius 0.5s ease;
  transition-delay: 0.4s;
}
.dropdown-container .dropdown-header .selected-option {
  margin-bottom: 0;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  width: 100%;
  text-align: start;
  justify-content: space-between;
}
.dropdown-container .dropdown-header .selected-sort-option {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: start;
  justify-content: space-between;
}
.dropdown-container .dropdown-header .selected-option .dropdown-icon {
  height: 1.3rem;
  width: 1.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dropdown-container .dropdown-header .selected-option img {
  height: 1.3rem;
}
.dropdown-container .dropdown-header .selected-option i,
.dropdown-container .dropdown-header .selected-sort-option i {
  transition: 0.5s;
  margin-left: auto;
}
.dropdown-container .dropdown-header[data-target="#filter-competition"] {
  min-width: 19rem;
}
.dropdown-container .dropdown-header[data-target="#filter-transfer-type"] {
  min-width: 15rem;
}
.dropdown-container .dropdown-checkbox, .dropdown-container .dropdown-grouped-list {
  width: 100%;
  border: 0.0265rem solid #149688;
  border-radius: 0 0 0.4125rem 0.4125rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  position: absolute;
  top: 100%;
  z-index: 9999999;
  background: var(--white-gray-light-bkg);
  transition: height 0.5s ease;
  overflow: hidden;
  margin-bottom: 0;
}
.dropdown-container .dropdown-checkbox:not(.active), .dropdown-container .dropdown-grouped-list:not(.active) {
  margin-bottom: 0;
  display: none;
}
.dropdown-container .dropdown-checkbox ul, .dropdown-container .dropdown-grouped-list ul {
  margin-bottom: 0;
  padding: 0.7rem 0;
}
.dropdown-container .dropdown-checkbox ul li, .dropdown-container .dropdown-grouped-list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
}
.dropdown-container .dropdown-checkbox ul li input[type=radio],
.dropdown-container .dropdown-checkbox ul li input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dropdown-container .dropdown-checkbox ul li label, .dropdown-container .dropdown-grouped-list ul li label {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0.4rem 0.5rem;
  padding-left: 2.2rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}
.dropdown-container .dropdown-checkbox ul li label:hover {
  background-color: rgba(20, 150, 136, 0.05);
}
.dropdown-container .dropdown-checkbox ul li label::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  border: 0.125rem solid #d1d5db;
  border-radius: 0;
  background-color: #fff;
  transition: all 0.2s ease;
}
.dropdown-container .dropdown-checkbox ul li input[type=radio]:checked + label::before,
.dropdown-container .dropdown-checkbox ul li input[type=checkbox]:checked + label::before {
  background-color: #149688;
  border-color: #149688;
}
.dropdown-container .dropdown-checkbox ul li label::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  width: 1.125rem;
  height: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dropdown-container .dropdown-checkbox ul li label::after {
  content: '';
  left: 0.85rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.35rem;
  height: 0.65rem;
  border: solid white;
  border-width: 0 0.125rem 0.125rem 0;
}
.dropdown-container .dropdown-checkbox ul li input[type=radio]:checked + label::after, 
.dropdown-container .dropdown-checkbox ul li input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.dropdown-container .dropdown-checkbox ul li a, .dropdown-container .dropdown-grouped-list ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dropdown-container .dropdown-checkbox ul li .dropdown-item-icon, .dropdown-container .dropdown-grouped-list ul li .dropdown-item-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.dropdown-container .dropdown-grouped-list .list-title {
  font-family: "Poppins-Medium";
  line-height: 1.1875rem;
  display: flex;
  text-align: left;
  text-wrap: wrap;
}
.dropdown-container .dropdown-grouped-list .list-title:first-of-type {
  margin-top: 1rem;
}
.dropdown-container .dropdown-grouped-list .list-title img {
  width: 1.43rem;
  height: 1.43rem;
  margin-right: 0.7rem;
}
.dropdown-container .dropdown-grouped-list ul {
  padding: 0;
  padding-left: 2.1rem;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}
.dropdown-container .dropdown-grouped-list ul:last-of-type {
  margin-bottom: 1rem;
}
.dropdown-container .dropdown-grouped-list ul li {
  text-align: left;
}

.descriptive-cards-section {
  margin-top: 2.8rem;
  margin-bottom: 3.6rem;
}
.descriptive-cards-section .iconized-heading {
  display: flex;
  align-items: center;
  margin-bottom: 2.3rem;
}
.descriptive-cards-section .iconized-heading h3 {
  margin: 0;
  line-height: 1.6rem;
  padding-top: 0.3rem;
  padding-left: 1.4rem;
  margin-left: 1.2rem;
  border-left: 0.15rem solid #149688;
}
.descriptive-cards-section .iconized-heading img {
  width: 2.5625rem;
  height: 2.15625rem;
}
.descriptive-cards-section .content-header > h3 {
  margin-top: 4.5rem;
  margin-bottom: 1.4rem;
  line-height: 2.0625rem;
}
.descriptive-cards-section .content-header > p {
  margin-bottom: 1.5rem;
  line-height: 1.55rem;
}
.descriptive-cards-section .content-header > p:first-child {
  margin-top: 1.5rem;
}
.descriptive-cards-section .info-card {
  display: flex;
  margin-bottom: 1.1rem;
}
.descriptive-cards-section .info-card .icon-container {
  width: 5.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #149688;
}
.descriptive-cards-section .info-card .icon-container img {
  width: 2.2rem;
}
.descriptive-cards-section .info-card .info-content {
  flex: 1;
  padding: 0 1.3rem;
}
.descriptive-cards-section .info-card .info-content p {
  line-height: 1.5625rem;
}

.reset-filters-btn {
  color: var(--text-white);
}

/* Flag Rules */
.flag-container {
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  border: 0.01rem solid #cecece;
  border-radius: 50%;
  display: flex;
  justify-self: center;
}

.player-flag {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
}

/* Default world map flag styling */
.flag-default {
  opacity: 0.6;
  border: 0.01rem solid #cecece;
  border-radius: 50%;
  display: flex;
  justify-self: center;
}

.country-flag.flag-default {
  height: 1.125rem;
  width: 1.5rem;
}

.player-flag.flag-default {
  height: 1.5rem;
  width: 1.5rem;
}

/* Custom Flag Tooltip Styling */
.flag-container {
  position: relative;
  cursor: pointer;
}

.flag-container::after {
  content: attr(title);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: linear-gradient(135deg, #149688 0%, #0f7a6b 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-family: 'Poppins-Medium', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(20, 150, 136, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flag-container::before {
  content: '';
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #149688;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.flag-container:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.flag-container:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .flag-container::after {
    font-size: 0.7rem;
    padding: 6px 10px;
    bottom: 130%;
  }
  
  .flag-container::before {
    bottom: 120%;
    border-width: 4px;
  }
}

.transfer-zone-section {
  margin-top: 4.6rem;
  margin-bottom: 11rem;
}
.transfer-zone-section h2 {
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  line-height: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.transfer-zone-section h2 img {
  width: 4rem;
  border-right: 0.25rem solid #149688;
  padding-right: 1rem;
}
.transfer-zone-section h2 .flag-container {
  width: 2.75rem;
  height: 2.75rem;
}
.transfer-zone-section h2 > span {
  padding-top: 0.35rem;
}
.transfer-zone-section .transfer-zone-tabs .nav {
  border-bottom: 0.125rem solid var(--light-gray-border);
}
.transfer-zone-section .transfer-zone-tabs .nav-link {
  color: var(--text-white);
  min-width: 7.5rem;
  padding-bottom: 0.4rem;
  background: transparent;
  border: none;
  text-align: center;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
.transfer-zone-section .transfer-zone-tabs .nav-link:hover {
  color: #149688;
  cursor: pointer;
}
.transfer-zone-section .transfer-zone-tabs .nav-link:first-child {
  margin-left: auto;
}
.transfer-zone-section .transfer-zone-tabs .nav-link.active {
  border-bottom: 0.125rem solid #149688;
  color: #149688;
  background: transparent;
}
.transfer-zone-section .transfer-table thead {
  background-color: #149688;
}
.transfer-zone-section .transfer-table thead tr {
  background-color: #149688;
}
.transfer-zone-section .transfer-table thead tr th {
  padding: 0.7rem;
  background-color: #149688;
  color: #fff;
  vertical-align: middle;
  border: none;
}
.transfer-zone-section .transfer-table thead tr th > div {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "Poppins-Medium";
}
.transfer-zone-section .transfer-table thead tr th > div img {
  margin-right: 1rem;
  height: 1.9rem;
}
.transfer-zone-section .transfer-table thead tr th > div i {
  margin-left: 0.5rem;
}
.transfer-zone-section .transfer-table tbody td {
  vertical-align: middle;
  color: var(--text-white);
  padding: 0.5rem 0.7rem;
  font-size: 0.875rem;
}
.transfer-zone-section .transfer-table tbody td.table-when {
  padding-left: 3.5rem;
}
.transfer-zone-section .transfer-table tbody td.table-player {
  font-family: "Poppins-Bold";
  line-height: 1.3rem;
}
.transfer-zone-section .transfer-table tbody td.table-player span {
  font-family: "Poppins-Regular";
  color: #7d7d7d;
}
.transfer-zone-section .transfer-table tbody td.table-country .country-flag {
  width: 1.5rem;
  height: 1.5rem;
}

/* Table-specific tooltip adjustments */
.transfer-zone-section .transfer-table tbody td.table-country .flag-container::after {
  bottom: 200%;
  min-width: max-content;
}

.transfer-zone-section .transfer-table tbody td.table-country .flag-container::before {
  bottom: 190%;
}
.transfer-zone-section .transfer-table tbody td.table-from {
  font-family: "Poppins-Bold";
}
.transfer-zone-section .transfer-table tbody td.table-from .table-from-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.transfer-zone-section .transfer-table tbody td.table-from .table-from-container img {
  padding-right: 0.5rem;
  width: 2rem;
}
.transfer-zone-section .transfer-table tbody td.table-from .table-from-container .club-logo {
  height: 1.5rem;
}
.transfer-zone-section .transfer-table tbody td.table-from .table-from-container .arrow {
  margin-left: auto;
  height: 0.8rem;
}
.transfer-zone-section .transfer-table tbody td.table-to {
  font-family: "Poppins-Bold";
  font-size: 0.875rem;
}
.transfer-zone-section .transfer-table tbody td.table-to img {
  padding-right: 0.5rem;
  width: 2rem;
}
.transfer-zone-section .transfer-table tbody td.table-to .club-logo {
  height: 1.5rem;
}
.transfer-zone-section .transfer-table tbody td.table-price {
  font-family: "Poppins-Bold";
  font-size: 1rem;
  color: #149688;
  text-align: center;
}
.transfer-zone-section .nav-transfers-tab {
  color: var(--text-white);
}
.transfer-zone-section .nav-transfers-tab > ul {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 0.3rem;
  border: none;
}
.transfer-zone-section .nav-transfers-tab > ul li {
  min-width: fit-content;
  border-left: 0.06rem solid #149688;
  flex: 1;
}
.transfer-zone-section .nav-transfers-tab > ul li:first-child {
  border-left: none;
}
.transfer-zone-section .nav-transfers-tab > ul li button {
  padding: 0.6rem;
  border-radius: 0;
  border: none;
  width: 100%;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: normal;
  height: 100%;
}
.transfer-zone-section .nav-transfers-tab > ul li button.active {
  background: #149688;
  color: #fff;
}
.transfer-zone-section .nav-transfers-tab > ul li button.active img {
  background: #fff;
  padding: 0.3rem;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
}
.transfer-zone-section .nav-transfers-tab > ul li button img {
  margin-right: 1rem;
  height: 1.25rem;
}
.transfer-zone-section .nav-transfers-tab > ul li button i {
  margin-left: auto;
  padding-left: 1rem;
}
.transfer-zone-section .nav-transfers-tab .tabs-most-expensive {
  gap: 0.2rem;
  padding-bottom: 0.1rem;
}
.transfer-zone-section .nav-transfers-tab .tabs-most-expensive li {
  border-left: none;
}
.transfer-zone-section .nav-transfers-tab .tabs-most-expensive li button {
  justify-content: center;
  padding: 0.3rem 0.6rem;
  background: var(--light-gray-border);
}
.transfer-zone-section .nav-transfers-tab .tabs-most-expensive li button.active {
  background: none;
  color: var(--text-white);
  border-top: 0.125rem solid #149688;
}
.transfer-zone-section .nav-transfers-tab .tabs-most-expensive li button.active img {
  background: none;
  padding: 0rem;
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
}
.transfer-zone-section .nav-transfers-tab .tabs-most-expensive li button img {
  margin-right: 0.7rem;
  height: 1.4rem;
}

.table-of-content {
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.table-of-content .table-of-content-header {
  background: #149688;
  padding: 0.6rem 1.3rem;
  display: flex;
  align-items: center;
}
.table-of-content .table-of-content-header p {
  color: #fff;
  font-family: "Poppins-Bold";
}
.table-of-content .table-of-content-header img {
  margin-right: 0.8rem;
  height: 1.9rem;
}
.table-of-content .table-of-content-content {
  padding: 1.3rem 1.5rem;
  border: 0.0625rem solid #149688;
}
.table-of-content .table-of-content-content ul {
  margin-bottom: 0;
  list-style: disc;
  list-style-image: url("../../img/green-hook-icon.svg");
  padding-left: 2rem;
  cursor: pointer;
}
.table-of-content .table-of-content-content ul li {
  margin-bottom: 0.4rem;
}
.table-of-content .table-of-content-content ul li img {
  margin-right: 1rem;
  height: 0.9rem;
}
.table-of-content .table-of-content-content ul li:hover {
  color: #149688;
}
.table-of-content .table-of-content-content #table-of-content-more-content p {
  padding-bottom: 2rem;
}
.table-of-content .table-of-content-content button.btn-green-border {
  margin: 0 auto;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  margin-top: 1.5rem;
}

.side-football-table {
  -webkit-box-shadow: 0px 3px 6px 0px var(--light-gray-border);
  -moz-box-shadow: 0px 3px 6px 0px var(--light-gray-border);
  box-shadow: 0px 3px 6px 0px var(--light-gray-border);
  border-radius: 0.625rem 0.625rem 0 0;
}
.side-football-table h3 {
  text-transform: uppercase;
  padding: 0.9rem 1rem 0.4rem 1rem;
  margin-bottom: 0;
  font-family: "LeagueSpartan-Bold", sans-serif;
}
.side-football-table table {
  margin-bottom: 0;
}
.side-football-table tr {
  color: #1b1c1e;
  border: transparent;
}
.side-football-table tr th {
  padding: 0.166rem 1rem;
  vertical-align: middle;
  border: none;
}
.side-football-table tr th #dropdown-menu {
  right: 0;
  top: 2rem;
  border-top: 2px solid #149688 !important;
  background: var(--white-gray-light-bkg);
  border: 0.0625rem solid #9a9999;
  text-align: left;
  padding: 0.5rem 0;
}
.side-football-table tr th #dropdown-menu ul {
  margin-bottom: 0;
}
.side-football-table tr th #dropdown-menu ul li a {
  display: block;
  width: 100%;
  padding: 0 1rem;
  text-wrap: nowrap;
  color: #9a9999;
  font-family: "Poppins-Regular";
}
.side-football-table tr th #dropdown-menu ul li a:hover {
  color: var(--text-white);
}
.side-football-table tr th:first-child {
  background: #149688;
  color: #fff;
  font-size: 0.875rem;
}
.side-football-table tr th:last-child {
  background: var(--light-gray-border);
  text-align: center;
  position: relative;
}
.side-football-table tr th:last-child a {
  color: #149688;
  font-size: 0.875rem;
  font-family: "Poppins-Regular";
}
.side-football-table tr th:last-child a i {
  margin-left: 1rem;
}
.side-football-table tr th:last-child:hover {
  -webkit-box-shadow: inset 0 0 1.875rem -1rem rgba(var(--black-white-rgb), 0.35);
  -moz-box-shadow: inset 0 0 1.875rem -1rem rgba(var(--black-white-rgb), 0.35);
  box-shadow: inset 0 0 1.875rem -1rem rgba(var(--black-white-rgb), 0.35);
}
.side-football-table tr td {
  font-size: 0.875rem;
  text-wrap: nowrap;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
  vertical-align: middle;
}
.side-football-table tr td:first-child {
  padding-left: 1rem;
}
.side-football-table tr td:nth-child(2) {
  display: flex;
  align-items: center;
}
.side-football-table tr td:nth-child(2) .team-logo {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  background-color: white;
  border-radius: 50%;
  background-size: 1.2rem;
  background-position: center 0.1rem;
  background-repeat: no-repeat;
}
.side-football-table tr td:nth-child(2) p {
  text-wrap: balance;
  word-wrap: break-word;
  font-size: 0.875rem;
  letter-spacing: -0.02rem;
}
.side-football-table tr td:nth-child(4) {
  width: 2.4375rem;
}
.side-football-table tr td span {
  color: var(--text-white) !important;
}
.side-football-table tr td.bold {
  font-family: "Poppins-Bold";
}
.side-football-table tr td.bg-gray {
  background: var(--light-gray-border);
}
.side-football-table tr td.text-green {
  color: #149688 !important;
}
.side-football-table tr td img {
  width: 1rem;
}
.side-football-table tr td.table-tp-text {
  font-size: 1rem !important;
}

.results-tabs {
  border: 0.125rem solid var(--light-gray-border);
  border-radius: 0.625rem 0.625rem 0 0;
}
.results-tabs p {
  text-align: start;
}
.results-tabs h3 {
  padding: 0.85rem 1rem 0.4rem 1rem;
  text-transform: uppercase;
}
.results-tabs .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: none;
}
.results-tabs .nav-tabs .nav-item {
  width: 50%;
}
.results-tabs .nav-tabs .nav-item button {
  width: 100%;
}
.results-tabs .nav-tabs .nav-link {
  font-family: "Poppins-Medium";
  color: #149688;
  border-radius: 0;
  background: var(--light-gray-border);
  border: none;
  font-size: 0.875rem;
  border-top: 0.1875rem solid #149688;
  padding-top: 0.3125rem;
}
.results-tabs .nav-tabs .nav-link:hover {
  -webkit-box-shadow: inset 0 0 1.875rem -1rem rgba(var(--black-white-rgb), 0.35);
  -moz-box-shadow: inset 0 0 1.875rem -1rem rgba(var(--black-white-rgb), 0.35);
  box-shadow: inset 0 0 1.875rem -1rem rgba(var(--black-white-rgb), 0.35);
}
.results-tabs .nav-tabs .nav-link.active {
  font-family: "Poppins-Bold";
  background: #149688;
  color: #fff;
}
.results-tabs .nav-tabs .nav-link.active:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.results-tabs .tab-content {
  font-size: 0.875rem;
}
.results-tabs .tab-content .resultsTabContent-header, .results-tabs .tab-content .upcomingResultsTabContent-header {
  padding-top: 0.7rem;
  padding-bottom: 0.5rem;
}
.results-tabs .tab-content .resultsTabContent-header .col-left img, .results-tabs .tab-content .upcomingResultsTabContent-header .col-left img {
  height: 1.4375rem;
}
.results-tabs .tab-content .resultsTabContent-main .resultsTabContent-main-row {
  margin-bottom: 0.3rem;
}
.results-tabs .tab-content .resultsTabContent-main .col-right {
  background-color: var(--light-gray-border);
  font-size: 0.75rem;
  margin-bottom: -0.3rem;
}
.results-tabs .tab-content .col-left {
  flex: 17%;
  padding-left: 0.9375rem;
}
.results-tabs .tab-content .col-left span {
  width: 1.4rem;
  height: 1.4rem;
  background-color: white;
  border-radius: 50%;
  background-size: 1.0625rem;
  background-position: center 0.1rem;
  background-repeat: no-repeat;
}
.results-tabs .tab-content .col-middle {
  flex: 66%;
  padding: 0 0.5rem;
  text-wrap: wrap;
}
.results-tabs .tab-content .col-middle p {
  text-wrap: balance;
  word-wrap: break-word;
  letter-spacing: -0.03rem;
}
.results-tabs .tab-content .col-right {
  flex: 17%;
  color: #149688;
  font-family: "Poppins-Bold";
}
.results-tabs .tab-content .col-right-upcoming {
  flex: 83%;
  padding: 0 0.5rem;
  text-wrap: wrap;
  display: flex;
  flex-direction: column;
}
.results-tabs .tab-content .col-right-upcoming .time {
  background-color: var(--light-gray-border);
  color: #149688;
  width: fit-content;
}
.results-tabs .tab-content button {
  margin: 1.2rem 0;
  padding: 0.8rem 3rem;
}
.results-tabs .tab-content .btn-green-border {
  margin: 1.2rem 0;
  padding: 0.8rem 3rem;
}
.results-tabs .tab-content .text-green {
  color: #149688;
}
.results-tabs .tab-content .upcomingResultsTabContent-main > div {
  margin-bottom: 0.2rem;
}
.results-tabs .tab-content .resultsTabContent-main {
  padding: 1rem 0;
}

.free-bets-right-side h3 {
  background: #149688;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0.35rem 0.8rem 0.1rem 1rem;
}
.free-bets-right-side h3 a {
  font-family: "Poppins-Medium";
  color: #fff;
  font-size: 0.875rem;
  margin-left: auto;
}
.free-bets-right-side h3 a:hover {
  color: #64ffda;
}
.free-bets-right-side .free-bets-right-card {
  box-shadow: 0px 0px 0.1875rem 0.125rem var(--light-gray-border);
  margin: 0;
}
.free-bets-right-side .free-bets-right-card:last-child {
  margin-bottom: 0;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-head {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.03rem 0.5625rem 0.96875rem;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-head img.round-logo {
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 50%;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-head .middle-col {
  padding: 0 0.6rem;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-head .middle-col p {
  font-family: "Poppins-Bold";
  font-size: 0.875rem;
  line-height: 1.3125rem;
  margin-bottom: 0;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-head .middle-col .stars-box-container .stars-box {
  height: 1.05rem;
  width: 5rem;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-head button {
  font-size: 0.875rem;
  line-height: 1.3125rem;
  margin-left: auto;
  padding: 0.4rem 1.34375rem;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-content {
  padding: 0.6rem;
  text-align: center;
  background: var(--light-gray-border);
  color: #149688;
  font-family: "Poppins-Bold";
  align-items: center;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-content p {
  margin-bottom: 0;
  line-height: 1.125rem;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-footer {
  padding: 0.55rem 0.7rem;
}
.free-bets-right-side .free-bets-right-card .free-bets-right-card-footer p {
  font-size: 0.4375rem !important;
  line-height: 0.5375rem;
  margin-bottom: 0;
  color: #7d7d7d;
  text-align: center;
}

.match-center-section-container h2 {
  margin-bottom: 3.2rem;
  position: relative;
}
.match-center-section-container h2:before {
  content: "";
  position: absolute;
  width: 0.25rem;
  background: #149688;
  height: 110%;
  left: 4.15rem;
}
.match-center-section-container h2 img {
  padding-right: 1rem;
  margin-right: 0.9rem;
  height: 2rem;
}
.match-center-section-container h2 p {
  margin-left: 0.2rem;
}

.match-center-section .wrapper .date-container, .match-center-section .simple-wrapper .date-container {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins-Bold";
  margin-bottom: 0.9rem;
}
.match-center-section .match-center-table {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.match-center-section .match-center-table .table-date {
  margin-top: 1rem;
  font-family: "Poppins-Bold";
}
.match-center-section .match-center-table .match-item {
  width: 100%;
}
.match-center-section .match-center-table .match-item .match-center-table-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}
.match-center-section .match-center-table .match-item .match-center-table-row .table-league {
  background: var(--light-gray-border);
  margin: 0.2rem;
  font-size: 1rem;
  padding: 0.41rem 0.6rem;
  grid-area: 1/1/2/6;
  height: calc(100% - 0.4rem);
  align-items: center;
  display: flex;
}
.match-center-section .match-center-table .match-item .match-center-table-row .table-teams {
  display: flex;
  justify-content: space-between;
  background: var(--light-gray-border);
  margin: 0.2rem;
  font-size: 1rem;
  padding: 0.41rem 0.6rem 0.41rem 0.6rem;
  grid-area: 1/6/2/16;
  height: calc(100% - 0.4rem);
  align-items: center;
}
.match-center-section .match-center-table .match-item .match-center-table-row .table-teams span:first-child {
  width: 40%;
  text-align: end;
}
.match-center-section .match-center-table .match-item .match-center-table-row .table-teams span:nth-child(2) {
  width: 20%;
  text-align: center;
}
.match-center-section .match-center-table .match-item .match-center-table-row .table-teams span:last-child {
  width: 40%;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn {
  display: flex;
  justify-content: center;
  margin: 0.2rem 0.2rem 0.36rem 0.2rem;
  font-size: 1rem;
  padding: 0.41rem;
  text-align: center;
  color: #fff;
  background: #149688;
  position: relative;
  grid-area: 1/16/3/21;
  height: calc(100% - 0.4rem);
  align-items: center;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn i {
  position: absolute;
  right: 1rem;
  top: 1.23rem;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn .bet-btn {
  display: none;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn .bet-btn.active {
  display: block;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn .bet-btn .btn-green-border:hover {
  border-color: #64ffda;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn .btn-green-border {
  width: 100%;
  justify-content: center;
  color: #fff;
  border: 0.0625rem solid #fff;
  margin-top: 1.4rem;
  width: 13.393rem;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn .btn-green-border:hover {
  color: black !important;
}
.match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn.active i {
  transform: rotate(180deg);
  top: 0.3rem;
}
.match-center-section .match-center-table .stadion-container .stadion {
  display: flex;
}
.match-center-section .match-center-table .stadion-container .stadion-error {
  padding: 2rem;
  text-align: center;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin: 1rem;
}
.match-center-section .match-center-table .stadion-container .stadion-error p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}
.match-center-section .match-center-table .stadion {
  background-image: url("../../img/teren.svg");
  aspect-ratio: 16/7.3;
  background-size: cover;
  background-position: center;
}
.match-center-section .match-center-table .stadion.active {
  display: flex !important;
  margin: 0.1rem 0.2rem;
}
.match-center-section .match-center-table .stadion .stadion-left {
  display: flex;
  width: 50%;
  height: 100%;
}
.match-center-section .match-center-table .stadion .stadion-left .golkiper,
.match-center-section .match-center-table .stadion .stadion-left .defancers,
.match-center-section .match-center-table .stadion .stadion-left .sec-mid-filder,
.match-center-section .match-center-table .stadion .stadion-left .mid-filder,
.match-center-section .match-center-table .stadion .stadion-left .atacker {
  width: 20%;
}
.match-center-section .match-center-table .stadion .stadion-left .golkiper ul,
.match-center-section .match-center-table .stadion .stadion-left .defancers ul,
.match-center-section .match-center-table .stadion .stadion-left .sec-mid-filder ul,
.match-center-section .match-center-table .stadion .stadion-left .mid-filder ul,
.match-center-section .match-center-table .stadion .stadion-left .atacker ul {
  height: 100%;
  flex-direction: column-reverse;
  display: flex;
  justify-content: space-around;
  align-items: space-around;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.match-center-section .match-center-table .stadion .stadion-left .golkiper ul li,
.match-center-section .match-center-table .stadion .stadion-left .defancers ul li,
.match-center-section .match-center-table .stadion .stadion-left .sec-mid-filder ul li,
.match-center-section .match-center-table .stadion .stadion-left .mid-filder ul li,
.match-center-section .match-center-table .stadion .stadion-left .atacker ul li {
  display: flex;
  align-items: center;
  width: 100%;
}
.match-center-section .match-center-table .stadion .stadion-left .golkiper ul li p,
.match-center-section .match-center-table .stadion .stadion-left .defancers ul li p,
.match-center-section .match-center-table .stadion .stadion-left .sec-mid-filder ul li p,
.match-center-section .match-center-table .stadion .stadion-left .mid-filder ul li p,
.match-center-section .match-center-table .stadion .stadion-left .atacker ul li p {
  background: #292a2d;
  color: #fff;
  margin-bottom: 0;
  position: relative;
  margin-left: -1.28rem;
  line-height: 0.625rem;
  font-size: 0.625rem;
  padding: 0.5rem 0.5rem 0.5rem 1.58rem;
  border-radius: 0 1rem 1rem 0;
  max-height: 2.56rem;
  display: flex;
  align-items: center;
}
.match-center-section .match-center-table .stadion .stadion-left .golkiper ul li span,
.match-center-section .match-center-table .stadion .stadion-left .defancers ul li span,
.match-center-section .match-center-table .stadion .stadion-left .sec-mid-filder ul li span,
.match-center-section .match-center-table .stadion .stadion-left .mid-filder ul li span,
.match-center-section .match-center-table .stadion .stadion-left .atacker ul li span {
  color: #292a2d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.56rem;
  height: 2.56rem;
  max-width: 2.56rem;
  max-height: 2.56rem;
  min-width: 2.56rem;
  min-height: 2.56rem;
  border-radius: 50%;
  background: #fff;
  font-size: 1.125rem;
  font-family: "Poppins-Bold";
  position: relative;
  z-index: 3;
}
.match-center-section .match-center-table .stadion .stadion-left .golkiper ul li:hover,
.match-center-section .match-center-table .stadion .stadion-left .defancers ul li:hover,
.match-center-section .match-center-table .stadion .stadion-left .sec-mid-filder ul li:hover,
.match-center-section .match-center-table .stadion .stadion-left .mid-filder ul li:hover,
.match-center-section .match-center-table .stadion .stadion-left .atacker ul li:hover {
  z-index: 9;
}
.match-center-section .match-center-table .stadion .stadion-left .golkiper ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-left .defancers ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-left .sec-mid-filder ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-left .mid-filder ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-left .atacker ul li:hover span {
  border: 0.125rem solid #149688;
  background-color: white;
  color: #149688;
}
.match-center-section .match-center-table .stadion .stadion-right {
  display: flex;
  width: 50%;
  height: 100%;
  flex-direction: row-reverse;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper,
.match-center-section .match-center-table .stadion .stadion-right .defancers,
.match-center-section .match-center-table .stadion .stadion-right .sec-mid-filder,
.match-center-section .match-center-table .stadion .stadion-right .mid-filder,
.match-center-section .match-center-table .stadion .stadion-right .atacker {
  width: 20%;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul,
.match-center-section .match-center-table .stadion .stadion-right .defancers ul,
.match-center-section .match-center-table .stadion .stadion-right .sec-mid-filder ul,
.match-center-section .match-center-table .stadion .stadion-right .mid-filder ul,
.match-center-section .match-center-table .stadion .stadion-right .atacker ul {
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: space-around;
  align-items: space-around;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul li,
.match-center-section .match-center-table .stadion .stadion-right .defancers ul li,
.match-center-section .match-center-table .stadion .stadion-right .sec-mid-filder ul li,
.match-center-section .match-center-table .stadion .stadion-right .mid-filder ul li,
.match-center-section .match-center-table .stadion .stadion-right .atacker ul li {
  display: flex;
  align-items: center;
  width: 100%;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul li #name,
.match-center-section .match-center-table .stadion .stadion-right .defancers ul li #name,
.match-center-section .match-center-table .stadion .stadion-right .sec-mid-filder ul li #name,
.match-center-section .match-center-table .stadion .stadion-right .mid-filder ul li #name,
.match-center-section .match-center-table .stadion .stadion-right .atacker ul li #name {
  background: #e4e4e4;
  color: #fff;
  margin-bottom: 0;
  position: relative;
  margin-left: -1.28rem;
  line-height: 0.94;
  font-size: 0.625rem;
  padding: 0.5rem 0.5rem 0.5rem 1.58rem;
  border-radius: 0 1rem 1rem 0;
  color: #292a2d;
  max-height: 2.56rem;
  display: flex;
  align-items: center;
  -webkit-box-shadow: inset inset 0px 0px 1rem 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0px 0px 1rem 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 0px 1rem 0px rgba(0, 0, 0, 0.2);
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul li #number,
.match-center-section .match-center-table .stadion .stadion-right .defancers ul li #number,
.match-center-section .match-center-table .stadion .stadion-right .sec-mid-filder ul li #number,
.match-center-section .match-center-table .stadion .stadion-right .mid-filder ul li #number,
.match-center-section .match-center-table .stadion .stadion-right .atacker ul li #number {
  color: #fff;
  background: #292a2d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.56rem;
  height: 2.56rem;
  max-width: 2.56rem;
  max-height: 2.56rem;
  min-width: 2.56rem;
  min-height: 2.56rem;
  border-radius: 50%;
  font-size: 1.125rem;
  font-family: "Poppins-Bold";
  position: relative;
  z-index: 3;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul li:hover,
.match-center-section .match-center-table .stadion .stadion-right .defancers ul li:hover,
.match-center-section .match-center-table .stadion .stadion-right .sec-mid-filder ul li:hover,
.match-center-section .match-center-table .stadion .stadion-right .mid-filder ul li:hover,
.match-center-section .match-center-table .stadion .stadion-right .atacker ul li:hover {
  z-index: 9;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-right .defancers ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-right .sec-mid-filder ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-right .mid-filder ul li:hover span,
.match-center-section .match-center-table .stadion .stadion-right .atacker ul li:hover span {
  border: 0.125rem solid #149688;
  color: #149688;
  background-color: white;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul li {
  flex-direction: row-reverse;
}
.match-center-section .match-center-table .stadion .stadion-right .golkiper ul li #name {
  margin-right: -1.28rem;
  margin-left: 0;
  border-radius: 1rem 0 0 1rem;
  padding: 0.5rem 1.6rem 0.5rem 0.5rem;
}
.match-center-section .match-center-table .table-quote-hidden-content {
  display: flex;
  margin: 0.17rem;
  background: var(--light-gray-border);
  grid-area: 2/1/3/16;
  height: fit-content;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 1rem;
}
.match-center-section .match-center-table .table-quote-hidden-content.active {
  display: flex !important;
}
.match-center-section .match-center-table .table-quote-hidden-content .table-quote-hidden-content-name {
  display: flex;
  align-items: center;
}
.match-center-section .match-center-table .table-quote-hidden-content .table-quote-hidden-content-name img {
  max-width: 2rem;
  height: auto;
}
.match-center-section .match-center-table .table-quote-hidden-content .table-quote-hidden-content-name .table-quote-hidden-content-name-teams {
  padding: 0 1rem;
}
.match-center-section .match-center-table .table-quote-hidden-content .table-quote-hidden-content-name .table-quote-hidden-content-name-teams p {
  margin: 0;
}
.match-center-section .match-center-table .table-quote-hidden-content .table-quote-hidden-content-quotes {
  display: flex;
}
.match-center-section .match-center-table .table-quote-hidden-content .table-quote-hidden-content-quotes p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0.5rem 1rem;
}
.match-center-section .match-center-table .table-quote-hidden-content .table-quote-hidden-content-quotes p span {
  color: #149688;
  font-family: "Poppins-Bold";
}
.match-center-section .match-center-table .team-tables-container {
  display: none;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  font-family: "Poppins-Medium";
  margin-top: 0.5rem;
}
.match-center-section .match-center-table .team-tables-container.active {
  display: flex;
}
.match-center-section .match-center-table .team-tables-container .team-table {
  flex: 1;
  margin-bottom: 1rem;
}
.match-center-section .match-center-table .team-tables-container .team-table table {
  height: 100%;
  margin-bottom: 0;
}
.match-center-section .match-center-table .team-tables-container .team-table table thead {
  border-bottom: 0.125rem solid #149688;
  color: var(--text-white);
}
.match-center-section .match-center-table .team-tables-container .team-table table tbody tr {
  padding: 0;
}
.match-center-section .match-center-table .team-tables-container .team-table table tbody tr:nth-of-type(even) {
  background: linear-gradient(90deg, rgba(var(--table-bg), 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}
.match-center-section .match-center-table .team-tables-container .team-table table tbody tr:nth-of-type(even) td {
  padding: 0.3rem 2.3rem;
}
.match-center-section .match-center-table .team-tables-container .team-table table tbody tr td {
  padding: 0.4rem 2.3rem;
  border: none;
  width: 50%;
  height: 100%;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}
.match-center-section .match-center-table .team-tables-container .team-table table tbody tr td .player-number {
  color: #149688;
  margin-right: 0.5rem;
}

.single-news-card {
  margin-left: -1.25rem;
  padding-left: 1.25rem;
}
.single-news-card:hover .single-news-card-content {
  border-bottom: 0.0625rem solid #149688;
  cursor: pointer;
}
.single-news-card:hover .single-news-card-content .single-news-card-content-footer .link-go-to-single-blog i {
  color: #149688;
}
.single-news-card .single-news-card-img {
  margin-top: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 0;
  padding-top: 56.25%;
}

.single-news-card-content {
  padding: 1.76rem 1rem 1.25rem 2rem;
  margin-left: -1.25rem;
  border-bottom: 0.0625rem solid #dedada;
}
.single-news-card-content:hover {
  border-bottom: 0.0625rem solid #149688;
  cursor: pointer;
}
.single-news-card-content:hover .single-news-card-content-footer .link-go-to-single-blog i {
  color: #149688;
}
.single-news-card-content .single-news-card-content-title {
  align-items: center;
  text-wrap: wrap;
}
.single-news-card-content .single-news-card-content-title img {
  height: 1.875rem;
  align-self: flex-start;
  transform: translateY(20%);
}
.single-news-card-content .single-news-card-content-title h2,
.single-news-card-content .single-news-card-content-title h3,
.single-news-card-content .single-news-card-content-title h5 {
  font-family: "LeagueSpartan-SemiBold", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-wrap: wrap;
  padding-left: 2.1875rem !important;
  text-transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.2 !important;
  display: block !important;
}
.single-news-card-content .single-news-card-content-title h2 {
  font-size: var(--sn-h2-hub, 26px) !important;
}
.single-news-card-content .single-news-card-content-title h3 {
  font-size: var(--sn-h3, 22px) !important;
}
.single-news-card-content .single-news-card-content-title h5 {
  font-size: var(--sn-caption, 14px) !important;
}
.single-news-card-content .single-news-card-content-main {
  padding-left: 3.66875rem;
  text-wrap: wrap;
}
.single-news-card-content .single-news-card-content-footer {
  padding-left: 3.66875rem;
  padding-right: 0.7rem;
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-single-blog-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
  line-height: 2.0665rem;
  color: #7d7d7d;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-single-blog-container .link-go-to-single-blog {
  display: flex;
  flex-wrap: wrap;
  text-wrap: nowrap;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.08125rem;
  line-height: 2.0665rem;
  color: #7d7d7d;
  transition: color 0.3s ease;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-single-blog-container .link-go-to-single-blog:hover {
  color: #149688;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-single-blog-container .link-go-to-single-blog i {
  padding-top: 0.1rem;
  margin-left: 0.5rem;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-single-blog-container .divider-line {
  display: inline-block;
  background-color: #149688;
  height: 0.85rem;
  width: 0.125rem;
  color: #149688;
  margin: 0 0.3rem;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-author {
  display: flex;
  align-items: center;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-author .img-wrapper {
  background-color: var(--white-gray-bkg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.8rem;
  z-index: 1;
  border-radius: 50%;
  border: 0.2rem solid #149688;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-author img {
  height: 1.1rem;
}
.single-news-card-content .single-news-card-content-footer .link-go-to-author p {
  z-index: 0;
  font-size: 0.875rem;
  padding: 0.2rem 0;
  padding-left: 1.85rem;
  margin-bottom: 0;
  margin-left: -1.25rem;
  display: flex;
  flex-direction: column;
  font-family: "Poppins-Bold";
  line-height: 1rem;
  background: rgb(161, 161, 161);
  background: linear-gradient(90deg, rgba(161, 161, 161, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
}
.single-news-card-content .single-news-card-content-footer .link-go-to-author p span {
  color: var(--text-white);
  font-size: 0.75rem;
  font-family: "Poppins-Regular";
}

.calendar-row {
  display: flex;
  justify-content: center;
  padding: 0.8rem 0;
  border-bottom: 0.125rem solid #149688;
}
.calendar-row .arrow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 22.5rem;
  position: relative;
}
.calendar-row .arrow-container #prev-day, .calendar-row .arrow-container #next-day {
  border: none;
  color: #149688;
  font-size: 1.5rem;
  line-height: 0;
}
.calendar-row .arrow-container .calendar-heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.calendar-row .arrow-container .calendar-heading-container > h3 {
  width: 6rem;
  margin: 0;
  text-align: center;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker {
  display: flex;
  justify-content: center;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker #customDate {
  display: none;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .calendar-icon {
  cursor: pointer;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .calendar-icon img {
  height: 1.6rem;
  margin-right: 1rem;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar {
  background-color: var(--white-gray-light-bkg);
  position: absolute;
  top: 2.9rem;
  left: 0.6rem;
  z-index: 99;
  border: 0.0625rem solid #149688;
  padding: 0.2rem 0.8rem 1.2rem 0.8rem;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 1.8rem 0rem 1.45rem;
  color: #149688;
  border-bottom: 0.0125rem solid #efefef;
  margin: 0 -0.7rem;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar .calendar-header .month-navigation {
  font-size: 1.1rem;
  display: flex;
  gap: 1.3rem;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar .calendar-header .month-navigation i {
  cursor: pointer;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar table tr :nth-child(7) {
  color: #149688;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar table thead th {
  text-align: center;
  padding: 0.2rem 0.75rem;
  font-family: "Poppins-SemiBold";
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar table tbody td {
  text-align: center;
  padding: 0.13rem 0;
}
.calendar-row .arrow-container .calendar-heading-container .custom-date-picker .custom-calendar table tbody td .selected-date {
  margin: -0.13rem 0;
  height: 1.7rem;
  width: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #149688;
  color: #fff;
  margin-left: 0.6rem;
}

.premier-league-standings {
  margin-bottom: 3.1rem;
  display: flex;
  flex-direction: column;
}
.premier-league-standings .heading-and-dropdown-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.1rem;
  margin-bottom: 1.9rem;
}
.premier-league-standings .heading-and-dropdown-container h3 {
  line-height: 2.0625rem;
  padding-top: 0.3rem;
}
.premier-league-standings .nav-tabs {
  position: relative;
  font-family: "Poppins-Bold";
  line-height: 1.5625rem;
  border: none;
  display: flex;
  gap: 0.2rem;
}
.premier-league-standings .nav-tabs li {
  background: var(--light-gray-border);
  flex: 1;
}
.premier-league-standings .nav-tabs li .nav-link {
  border: none;
  border-radius: 0;
  color: var(--text-white);
  border-bottom: 0.225rem solid #149688;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: wrap;
}
.premier-league-standings .nav-tabs li .nav-link.active {
  position: relative;
  background: #149688;
  color: #fff;
}
.premier-league-standings .nav-tabs li .nav-link.active img {
  filter: invert(100%) brightness(1000%);
}
.premier-league-standings .nav-tabs li .nav-link.active::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0.8rem;
  height: 0.8rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 1.1rem solid #149688;
}
.premier-league-standings .tab-content .dropdown-container {
  margin: 1.6rem 0;
}
.premier-league-standings .tab-content .league-table {
  margin-bottom: 1.8rem;
  border-bottom: 0.125rem solid #7d7d7d;
}
.premier-league-standings .tab-content .league-table .league-table-header,
.premier-league-standings .tab-content .league-table .league-table-row {
  display: flex;
  align-items: stretch;
  text-align: center;
}
.premier-league-standings .tab-content .league-table .league-table-header {
  background-color: var(--light-gray-border);
  color: var(--text-white);
  height: 2.9rem;
  font-family: "Poppins-SemiBold";
  border-bottom: 2px solid #7d7d7d;
}
.premier-league-standings .tab-content .league-table .league-table-header > div {
  flex: 1;
  align-items: center;
  display: flex;
  justify-content: center;
  text-decoration: underline;
}
.premier-league-standings .tab-content .league-table .league-table-header > div:first-child {
  flex: 0.5;
}
.premier-league-standings .tab-content .league-table .league-table-header > div:nth-child(2) {
  justify-content: left;
  text-decoration: none;
  padding-left: 1.25rem;
  flex: 4.5;
}
.premier-league-standings .tab-content .league-table .league-table-header > div:nth-child(10) {
  font-family: "Poppins-Bold";
}
.premier-league-standings .tab-content .league-table .league-table-header > div:nth-child(11) {
  flex: 3.1;
  padding: 0 1.3rem;
}
.premier-league-standings .tab-content .league-table .league-table-row-container {
  display: flex;
  flex-direction: column;
}
.premier-league-standings .tab-content .league-table .league-table-row-container:nth-child(odd) {
  background: linear-gradient(90deg, rgba(var(--table-bg), 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.premier-league-standings .tab-content .league-table .league-table-row > div {
  flex: 1;
  padding: 0.7rem 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.premier-league-standings .tab-content .league-table .league-table-row > div:first-child {
  flex: 0.5;
  font-size: 1.125rem;
}
.premier-league-standings .tab-content .league-table .league-table-row > div:nth-child(2) {
  padding-left: 1.25rem;
  flex: 4.5;
  display: flex;
  align-items: center;
  justify-content: left;
}
.premier-league-standings .tab-content .league-table .league-table-row > div:nth-child(2) span {
  max-width: 12rem;
  text-align: left;
}
.premier-league-standings .tab-content .league-table .league-table-row > div:nth-child(2) img {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 1.5rem;
  object-fit: contain;
}
.premier-league-standings .tab-content .league-table .league-table-row > div:nth-child(10) {
  font-family: "Poppins-Bold";
}
.premier-league-standings .tab-content .league-table .league-table-row > div:nth-child(11) {
  flex: 3.1;
  padding: 0 1.3rem;
}
.premier-league-standings .tab-content .league-table .league-table-row > div:last-child {
  font-family: "Poppins-Bold";
  color: #149688;
}
.premier-league-standings .tab-content .league-table .league-table-row .form-container {
  display: flex;
  justify-content: space-between;
}
.premier-league-standings .tab-content .league-table .league-table-row .form-container > div {
  width: 1.9rem;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.premier-league-standings .tab-content .league-table .league-table-row .form-container > div.form-w {
  background-color: #149688;
}
.premier-league-standings .tab-content .league-table .league-table-row .form-container > div.form-l {
  background-color: red;
}
.premier-league-standings .tab-content .league-table .league-table-row .form-container > div.form-d {
  background-color: #C3B3C5;
}
.premier-league-standings .tab-content .league-table .more-information-hidden {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white-gray-bkg);
  position: relative;
  display: none;
  transition: height 0.3s ease;
}
.premier-league-standings .tab-content .league-table .more-information-hidden:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.125rem;
  background: linear-gradient(90deg, rgba(var(--table-bg), 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.premier-league-standings .tab-content .league-table .more-information-hidden:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.125rem;
  background: linear-gradient(90deg, rgba(var(--table-bg), 1) 50%, rgba(255, 255, 255, 0) 100%);
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  margin-bottom: 2.4rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .team-info {
  display: flex;
  align-items: center;
  padding-left: 0.7rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .team-info .team-logo {
  width: 2.8rem;
  height: 2.8rem;
  margin-left: 1.2rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .team-info .team-name {
  font-size: 1.25rem;
  font-family: "Poppins-SemiBold";
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .score-section {
  margin-left: 11.1rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: "Poppins-SemiBold";
  border-left: 0.125rem solid #149688;
  border-right: 0.125rem solid #149688;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .score-section .team-code .team-name {
  padding: 0 1.1rem;
  font-size: 1.25rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .score-section .team-code img {
  height: 1.7rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .score-section .score {
  color: #149688;
  font-size: 1.25rem;
  padding: 0 1.2rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .visit-club {
  padding-right: 5.4rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .match-result .visit-club .green-btn {
  padding: 0.3rem 1.95rem;
}
.premier-league-standings .tab-content .league-table .more-information-hidden .chart-container {
  width: 66.5rem;
  height: 15rem;
  margin-bottom: 2.9rem;
}
.premier-league-standings .tab-content #away .league-table .league-table-header div:nth-child(2) {
  padding-left: 1.25rem;
  flex: 4.5;
}
.premier-league-standings .tab-content #away .league-table .league-table-header div:nth-child(11) {
  flex: 3.1;
  padding: 0 1.3rem;
}
.premier-league-standings .tab-content #away .league-table .league-table-row > div:nth-child(2) {
  padding-left: 1.25rem;
  flex: 4.5;
}
.premier-league-standings .tab-content #away .league-table .league-table-row > div:nth-child(11) {
  flex: 3.1;
  padding: 0 1.3rem;
}
.premier-league-standings .tab-content #away .league-table .league-table-row .league-table-cell:last-child {
  color: #149688;
}
.premier-league-standings .tab-content #form .dropdown-container {
  margin-bottom: 2.3rem;
}
.premier-league-standings .tab-content #form .match-stats-tabs, .premier-league-standings .tab-content #form .match-range-selector {
  background-color: var(--light-gray-bkg);
  display: flex;
  padding: 0.8rem;
}
.premier-league-standings .tab-content #form .match-stats-tabs button, .premier-league-standings .tab-content #form .match-range-selector button {
  border: none;
  text-align: left;
}
.premier-league-standings .tab-content #form .match-stats-tabs button.active, .premier-league-standings .tab-content #form .match-range-selector button.active {
  color: #149688;
  text-decoration: underline;
  font-family: "Poppins-SemiBold";
}
.premier-league-standings .tab-content #form .match-stats-tabs {
  margin-bottom: 0.1rem;
  padding: 0.65rem 0.9rem;
  gap: 2.5rem;
}
.premier-league-standings .tab-content #form .match-stats-tabs button {
  width: 3.75rem;
}
.premier-league-standings .tab-content #form .match-range-selector {
  padding: 0.7rem 0.9rem;
  gap: 1.7rem;
}
.premier-league-standings .tab-content #form .match-range-selector button {
  width: 1.3rem;
}
.premier-league-standings .tab-content #form .league-table .league-table-header > div:nth-child(7),
.premier-league-standings .tab-content #form .league-table .league-table-row > div:nth-child(7) {
  background-color: rgba(20, 150, 136, 0.1);
}
.premier-league-standings .tab-content #form .league-table .league-table-header > div:last-of-type,
.premier-league-standings .tab-content #form .league-table .league-table-row > div:last-of-type {
  background-color: rgba(20, 150, 136, 0.1);
}
.premier-league-standings .tab-content #form .league-table .league-table-header {
  border-top: 0.125rem solid #7d7d7d;
}
.premier-league-standings .tab-content .last-update-date {
  margin-left: auto;
  font-size: 0.875rem;
  padding: 0.5rem 1.7rem;
}

.top-trends-premier-league-section {
  margin-top: 5rem;
}
.top-trends-premier-league-section h2 {
  text-transform: uppercase;
  margin-bottom: 2.3rem;
  display: flex;
  align-items: center;
}
.top-trends-premier-league-section h2 img {
  width: 4rem;
  border-right: 0.25rem solid #149688;
  padding-right: 1rem;
  margin-right: 1.3rem;
}
.top-trends-premier-league-section .top-trends-card {
  margin-bottom: 1.3rem;
}
.top-trends-premier-league-section .top-trends-card .col-md-3 {
  margin-right: 1.8rem;
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-left {
  box-shadow: 0px 3px 3.5px rgba(0, 0, 0, 0.16);
  /*padding-top: 2.3rem;*/
  display: flex;
  flex-direction: column;
  background: var(--white-gray-light-bkg);
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-left p {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-family: "Poppins-Bold";
  text-align: center;
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-left p img {
  width: 1.7rem;
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-left .unbeaten {
  background: #149688;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-left .unbeaten p {
  font-family: "Poppins-Regular";
  font-size: 0.875rem;
  margin-bottom: 0;
  padding-left: 0;
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-right {
  padding-bottom: 1rem;
  padding-left: 0;
  border-bottom: 0.0625rem solid #7d7d7d;
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-right button, .top-trends-premier-league-section .top-trends-card .top-trends-card-right a.btn-green-border {
  margin-left: auto;
  margin-right: 1.6rem;
}
.top-trends-premier-league-section .top-trends-card .top-trends-card-right p {
  line-height: 1.3rem;
  margin-bottom: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-author {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--light-gray-border);
  margin-bottom: 4.8rem;
}
.about-author .left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.25rem;
  width: 38%;
}
.about-author .left-col .author {
  display: flex;
  align-items: center;
  height: 9.5rem;
  position: relative;
  width: fit-content;
}
.about-author .left-col .author .author-img-link {
  width: fit-content;
  height: 9.5rem;
}
.about-author .left-col .author .author-img-link .author-img {
  position: absolute;
  width: 9.5rem;
  height: 9.5rem;
  background-repeat: no-repeat;
  background-size: 7rem;
  background-position: center;
  background-color: white;
  border: 0.2rem solid #149688;
  border-radius: 50%;
  z-index: 1;
}
.about-author .left-col .author .author-img-link:hover + .author-details {
  color: #149688;
}
.about-author .left-col .author .author-details {
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, rgba(161, 161, 161, 0.16) 20%, rgba(var(--white-black-rgb), 0) 75%);
  font-family: "LeagueSpartan-SemiBold";
  font-size: 1.5625rem;
  line-height: 1.6rem;
  padding: 0.7rem 1rem 0.7rem 5.5rem;
  margin-left: 6.4rem;
}
.about-author .left-col .author .author-details span {
  font-family: "Poppins-Regular";
  font-size: 1rem;
  line-height: 1rem;
}
.about-author .left-col .author-social-media {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 0.7rem;
  margin-left: 11.9rem;
}
.about-author .left-col .author-social-media a img {
  height: 1.65rem;
}
.about-author .left-col .author-social-media a:hover {
  border-radius: 50%;
  -webkit-box-shadow: 0 0.3rem 0.2rem 0.1 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0.3rem 0.2rem 0.1 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.3rem 0.2rem 0.1rem rgba(0, 0, 0, 0.16);
}
.about-author .right-col {
  padding: 1.3rem 0;
  padding-right: 1rem;
  border-top: 0.125rem solid #149688;
  width: 62%;
}
.about-author .right-col h4 {
  margin-bottom: 1.3rem;
}
.about-author .right-col p {
  line-height: 1.3rem;
  margin-bottom: 1.2rem;
}
.about-author .right-col p:last-child {
  margin-bottom: 0rem;
}

.worlds-live-sportsbook {
  margin-top: 0.9rem;
  margin-bottom: 1.2rem;
  border: 0.0625rem solid #149688;
  border-radius: 1rem;
  padding: 0.6rem;
  display: flex;
  align-items: stretch;
  background-color: var(--white-gray-light-bkg);
}
.worlds-live-sportsbook .first-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0.85;
  padding: 0 0.5rem;
}
.worlds-live-sportsbook .first-col img {
  max-height: 2.1875rem;
  width: 9rem;
}
.worlds-live-sportsbook .second-col {
  border-left: 0.0625rem solid #7d7d7d;
  flex: 2.2;
  display: flex;
  align-items: center;
}
.worlds-live-sportsbook .second-col p {
  padding: 0 3rem;
  font-family: "Poppins-Medium";
  line-height: 1.1875rem;
  text-align: center;
}
.worlds-live-sportsbook .third-col {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.worlds-live-sportsbook .third-col a {
  font-size: 0.875rem;
  margin-top: 0.8rem;
  padding: 0.2rem 1.3rem;
}
.worlds-live-sportsbook .third-col a i {
  margin-left: 0.6rem;
}
.worlds-live-sportsbook .third-col .footer-text {
  font-size: 0.5625rem;
  line-height: 0.75rem;
  font-family: "Poppins-Italic";
  color: #7d7d7d;
  margin-top: 0.7rem;
}

.top-betting-sites-table .top-betting-sites-table-title {
  margin-bottom: 2.1rem;
  display: flex;
  align-items: center;
}
.top-betting-sites-table .top-betting-sites-table-title h2 {
  margin-top: 0;
}
.top-betting-sites-table .top-betting-sites-table-title img {
  height: 2.4rem;
  border-right: 0.3rem solid #149688;
  padding-right: 1rem;
  margin-right: 1.5rem;
}
.top-betting-sites-table .top-betting-sites-table-subtitle {
  color: var(--gray-light-color);
}

input {
  color: var(--text-white);
}

.form-check-input {
  background-color: var(--white-gray-light-bkg);
  border-color: #149688;
  min-width: 1rem;
  min-height: 1rem;
  margin-top: 0;
  margin-right: 0.9rem;
}

.form-check-input[type=checkbox] {
  border-radius: 0;
}

.form-check-input[type=checkbox]:checked {
  background-color: #149688;
  border-color: #149688;
  border-radius: 0;
}

.form-check-input[type=radio]:checked {
  background-color: #149688;
  border-color: #149688;
}

.form-check-input[type=checkbox]:focus {
  border-color: #149688;
  border-radius: 0;
  box-shadow: none;
}

.form-check-input[type=radio]:focus {
  border-color: #149688;
  box-shadow: none;
}

.sort-filter-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.6rem;
  margin-bottom: 1.6rem;
  gap: 1.3rem;
}
.sort-filter-container > .dropdown-container:first-of-type .dropdown-checkbox {
  z-index: 3;
}
.sort-filter-container > .dropdown-container:nth-of-type(2) .dropdown-checkbox {
  z-index: 2;
}
.sort-filter-container > .dropdown-container:nth-of-type(3) .dropdown-checkbox {
  z-index: 1;
}
.sort-filter-container .sort-by-header {
  min-width: 11rem;
}
.sort-filter-container .sort-by-header .selected-sort-option {
  width: 100%;
  display: flex;
}
.sort-filter-container .sort-by-header .selected-sort-option i {
  margin-left: auto;
}
.sort-filter-container .sort-by-header .selected-sort-option img {
  margin-right: 0.5rem;
}
.sort-filter-container .filter-by-content, .sort-filter-container .sort-by-content {
  border: 0.0265rem solid #149688;
  border-radius: 0 0 0.4125rem 0.4125rem;
  padding: 0 0.5rem 0 1.6rem;
  font-size: 0.875rem;
  position: absolute;
  z-index: 9999999;
  background: var(--white-gray-light-bkg);
  transition: height 0.5s ease;
  overflow: hidden;
  margin-bottom: 0;
}
.sort-filter-container .filter-by-content:not(.active), .sort-filter-container .sort-by-content:not(.active) {
  margin-bottom: 0;
  display: none;
}
.sort-filter-container .filter-by-content ul, .sort-filter-container .sort-by-content ul {
  margin-bottom: 0;
  padding: 0.7rem 0;
}
.sort-filter-container .filter-by-content ul li, .sort-filter-container .sort-by-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.sort-filter-container .filter-by-content ul li label, .sort-filter-container .sort-by-content ul li label {
  max-width: 7rem;
}
.sort-filter-container .sort-by-content {
  width: 11rem;
}
.sort-filter-container .filter-by-content {
  width: 11.9rem;
}

.last-update-date {
  width: fit-content;
  background: var(--light-gray-bkg);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  margin-left: auto;
  font-size: 1rem;
  padding: 0.5rem 1.3rem;
}

.betting-card {
  border: 0.05rem solid #149688;
  margin-bottom: 2rem;
  background: var(--white-gray-light-bkg);
}
.betting-card .betting-card-content {
  display: flex;
  align-items: stretch;
  padding: 2.1rem 0 0 0;
}
.betting-card .betting-card-content .betting-card-first {
  width: 21%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1.2rem 0 2.8rem 0;
}
.betting-card .betting-card-content .betting-card-first a {
  margin-bottom: 0.9rem;
  text-decoration: underline;
  font-family: "Poppins-Bold";
}
.betting-card .betting-card-content .betting-card-first .stars-box-container .stars-box {
  height: 1.9rem;
  width: 4.3rem;
}
.betting-card .betting-card-content .betting-card-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29%;
  border-left: 0.125rem solid #B9B8B8;
  border-right: 0.125rem solid #B9B8B8;
  margin: 1.2rem 0 2.8rem 0;
  font-family: "Poppins-Bold";
}
.betting-card .betting-card-content .betting-card-sec p {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.45rem;
  font-family: "Poppins-Bold";
  max-width: 16rem;
  margin-bottom: 0;
  padding: 0 1rem;
  text-wrap: balance;
}
.betting-card .betting-card-content .betting-card-sec p span {
  color: #149688;
}
.betting-card .betting-card-content .betting-card-third {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
  padding-left: 1.3rem;
  margin: 1.2rem 0 2.8rem 0;
}
.betting-card .betting-card-content .betting-card-third ul {
  list-style: none;
  margin-bottom: 0;
}
.betting-card .betting-card-content .betting-card-third ul li {
  font-size: 0.875rem;
  margin-bottom: 0.1rem;
  padding-left: 1.3rem;
  position: relative;
  display: flex;
  align-items: center;
}
.betting-card .betting-card-content .betting-card-third ul li:before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../../img/check-icon-round.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.betting-card .betting-card-content .betting-card-fourth {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
}
.betting-card .betting-card-content .betting-card-fourth .betting-card-logo {
  width: 100%;
  height: 2.4rem;
  padding: 0 3rem;
  margin-bottom: 1.1rem;
}
.betting-card .betting-card-content .betting-card-fourth .green-btn {
  margin: 0 auto;
  padding: 0.7rem 2.2rem;
}
.betting-card .betting-card-content .betting-card-fourth .green-btn i {
  margin-left: 1rem;
}
.betting-card .betting-card-content .betting-card-fourth ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.betting-card .betting-card-content .betting-card-fourth ul li img {
  width: 1.7rem;
  height: 1.5rem;
  margin-right: 0.3rem;
}
.betting-card .betting-card-content .betting-card-fourth ul .payment-more-link {
  margin-left: 0.6rem;
  border: 0.06rem solid #149688;
  font-family: "Poppins-Medium";
  color: #149688;
  border-radius: 50%;
  min-width: 1.8rem;
  min-height: 1.45rem;
  line-height: 1.45rem;
  padding: 0.1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  transition: background-color 0.2s, color 0.2s;
}
.betting-card .betting-card-content .betting-card-fourth ul .payment-more-link:hover {
  background-color: #149688;
  color: #fff;
}
.betting-card .betting-card-hidden .editors-take {
  padding: 0.9rem 3.2rem 1.7rem 3.3rem;
  font-size: 0.875rem;
}
.betting-card .betting-card-hidden .editors-take .editors-take-title {
  font-family: "Poppins-Medium";
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.betting-card .betting-card-hidden .editors-take p {
  font-size: 0.875rem;
  line-height: 1.3125rem;
}
.betting-card .betting-card-hidden .editors-take .editors-take-btns {
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.betting-card .betting-card-hidden .editors-take .editors-take-btns .btn-green-border, .betting-card .betting-card-hidden .editors-take .editors-take-btns .green-btn {
  font-size: 1rem;
  line-height: 1.5625rem;
  padding: 0.6rem 2.2rem;
}
.betting-card .betting-card-hidden .editors-take .editors-take-btns .green-btn i {
  margin-left: 0.5rem;
}
.betting-card .betting-card-hidden .editors-take .editors-take-btns .btn-green-border {
  margin: 0;
}
.betting-card .betting-card-hidden .betting-card-hidden-paymant-methods {
  margin-top: 0.85rem;
  background: url("../../img/gradient-bkg.svg");
  background-size: cover;
  padding: 1.2rem 0 0.4rem 0;
}
.betting-card .betting-card-hidden .betting-card-hidden-paymant-methods p {
  font-family: "Poppins-Medium";
  margin-bottom: 1.5rem;
}
.betting-card .betting-card-hidden .betting-card-hidden-paymant-methods .pay-cards {
  padding-left: 4rem;
}
.betting-card .betting-card-hidden .betting-card-hidden-paymant-methods .pay-cards ul {
  display: flex;
  flex-wrap: wrap;
  width: 65%;
  gap: 0.4rem 0.6rem;
}
.betting-card .betting-card-hidden .betting-card-hidden-paymant-methods .pay-cards ul li img {
  margin: 0 0.75rem 0.5rem 0;
  width: 2.125rem;
}
.betting-card .betting-card-hidden .betting-card-hidden-paymant-methods .pay-cards ul li .payment-option-container {
  width: 2.4rem;
  height: 1.6rem;
  border-radius: 0.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.betting-card .betting-card-hidden .features {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.betting-card .betting-card-hidden .features li {
  display: flex;
  width: 39%;
  margin-bottom: 0.3rem;
  font-size: 0.875rem;
}
.betting-card .betting-card-hidden .features li img {
  margin-right: 0.8rem;
  height: 1.25rem;
}
.betting-card .betting-card-footer {
  background: var(--light-gray-bkg);
  padding: 0.4rem 2.5rem 0.4rem 14.6rem;
  position: relative;
}
.betting-card .betting-card-footer p {
  font-style: italic;
  font-size: 0.625rem;
  line-height: 0.75rem;
  margin-bottom: 0;
  color: var(--gray-light-color);
}
.betting-card .betting-card-footer .betting-card-open {
  position: absolute;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  border: 0.0625rem solid #4c4c4c;
  background-color: var(--white-gray-light-bkg);
  left: 9%;
  bottom: -0.8rem;
  background-image: url("../../img/plus.svg");
  background-repeat: no-repeat;
  background-size: 0.6rem;
  background-position: 0.39rem 0.4rem;
  cursor: pointer;
}
.betting-card .betting-card-footer .betting-card-open.active {
  background-image: url("../../img/minus.svg");
  background-size: 0.5rem;
  background-position: 0.45rem 0.65rem;
}
.betting-card .betting-card-footer .betting-card-open:hover {
  border: 0.0625rem solid #149688;
}

.compare-betting-tabs {
  margin-top: -1.2rem;
  position: relative;
  border-color: var(--light-gray-border);
  border-width: 0.125rem;
  font-family: "Poppins-SemiBold";
  line-height: 1.5625rem;
}
.compare-betting-tabs li {
  background: var(--light-gray-border);
  margin-right: 0.2%;
}
.compare-betting-tabs li .nav-link {
  border: none;
  border-radius: 0;
  color: var(--text-white);
  min-width: 7.25rem;
  border-top: 0.125rem solid transparent;
  text-transform: uppercase;
  padding: 0.4rem 2.7rem;
}
.compare-betting-tabs li .nav-link:hover {
  background: #e6e3e3;
}
.compare-betting-tabs li .nav-link.active {
  color: var(--text-white);
  position: relative;
  background: var(--black-white);
  border-top: 0.125rem solid #149688;
}
.compare-betting-tabs li .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: var(--black-white);
  background-color: var(--black-white);
}

.compare-betting-table {
  margin-bottom: 3.8rem;
}
.compare-betting-table.table {
  text-align: center;
  border-bottom: 0.125rem solid #efefef;
}
.compare-betting-table.table thead {
  font-size: 0.875rem;
  font-family: "Poppins-SemiBold";
  border-bottom: 0.125rem solid #149688;
  color: var(--text-white);
}
.compare-betting-table.table thead tr th {
  padding: 1rem 0;
  vertical-align: middle;
}
.compare-betting-table.table tbody {
  font-size: 1rem;
  font-family: "Poppins-SemiBold";
}
.compare-betting-table.table tbody tr td {
  border: none;
  width: fit-content;
  vertical-align: middle;
}
.compare-betting-table.table tbody tr td.td-btn {
  width: 13rem;
}
.compare-betting-table.table tbody tr td.td-stars {
  width: 8.6rem;
}
.compare-betting-table.table tbody tr td.td-img {
  padding: 0.9rem 0;
}
.compare-betting-table.table tbody tr td .betting-card-logo {
  max-width: 6.5rem;
  height: 3.1rem;
}
.compare-betting-table.table tbody tr td .stars-box {
  height: 2rem;
}
.compare-betting-table.table tbody tr td .btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-betting-table.table tbody tr td .btn-container .green-btn {
  font-family: "Poppins-Bold";
  font-size: 1rem;
  line-height: 1.5625rem;
  padding: 0.7rem 2.9rem;
  margin: 0;
}
.compare-betting-table.table tbody tr:nth-child(odd) {
  background-color: var(--white-gray-bkg);
}
.compare-betting-table.table tbody tr:nth-child(even) {
  background-color: var(--light-gray-border);
}

.related-articles-3 h2.green-line-border {
  padding-left: 1.8rem;
  margin-bottom: 1.2rem;
}
.related-articles-3 .own-carousel__container {
  position: relative;
  display: flex;
  margin-bottom: 3.6rem;
}
.related-articles-3 .own-carousel__container .own-carousel__outer {
  width: 69rem;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item {
  padding: 0.5rem;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article .related-article-img {
  border-radius: 0.6rem 0.6rem 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 56%;
  transition: background-size 0.3s ease, filter 0.3s ease;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article .related-article-img-wrapper {
  display: block;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article:hover .related-article-img {
  background-size: 105%;
  filter: brightness(1.03);
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article .related-article-footer {
  -webkit-box-shadow: 0 0 0.5rem 0rem rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0.5rem 0rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0.5rem 0rem rgba(0, 0, 0, 0.16);
  background-color: var(--white-gray-light-bkg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem;
  height: 100%;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article .related-article-footer a {
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins-Bold";
  transition: color 0.3s ease;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article:hover .related-article-footer a {
  color: #149688;
}
.related-articles-3 .own-carousel__container .own-carousel__outer .own-carousel__item .related-article:hover .related-article-footer:after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  width: 8.7rem;
  height: 0.25rem;
  background: #149688;
}
.related-articles-3 .own-carousel__container .own-carousel__control {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 37%;
  padding: 0 1.4rem;
  pointer-events: none;
}
.related-articles-3 .own-carousel__container .own-carousel__control button {
  pointer-events: all;
}

.container-fluid.faq > h2 {
  margin-bottom: 1.5rem;
}
.container-fluid.faq #OnlineBettingFaq .accordion-item {
  margin-bottom: 0.875rem;
  background-color: var(--black-white);
}
.container-fluid.faq #OnlineBettingFaq .accordion-item h2 {
  border-radius: 0.3125rem;
  background-color: #149688;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  position: relative;
}
.container-fluid.faq #OnlineBettingFaq .accordion-item h2 button {
  font-size: var(--sn-faq-question, 19px);
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-weight: 600;
  padding: 0.3rem 2rem;
  box-shadow: none;
  text-wrap: auto;
}
.container-fluid.faq #OnlineBettingFaq .accordion-item h2 button:after {
  display: none;
}
.container-fluid.faq #OnlineBettingFaq .accordion-item h2 button:before {
  content: "";
  position: absolute;
  height: 0.625rem;
  background: #fff;
  width: 0.125rem;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: 1.22rem;
}
.container-fluid.faq #OnlineBettingFaq .accordion-item h2 button:after {
  content: "";
  position: absolute;
  width: 0.625rem;
  background: #fff;
  height: 0.125rem;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
.container-fluid.faq #OnlineBettingFaq .accordion-item h2 button:not(.collapsed):before {
  transform: rotate(90deg);
  display: none;
}
.container-fluid.faq #OnlineBettingFaq .accordion-item .accordion-body {
  border-radius: 0.3125rem;
  border: 0.0625rem solid #149688;
  background: var(--black-white);
  font-size: 1rem;
  line-height: 1.5625rem;
  padding: 1rem 1.5rem;
  margin-top: 0.8rem;
  color: var(--text-white);
}

.best-ofs {
  width: 32%;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
}
.best-ofs .best-ofs-title {
  line-height: 1.5625rem;
  border-bottom: 0.125rem solid #149688;
}
.best-ofs .best-ofs-list {
  display: flex;
  flex-direction: column;
  padding-top: 1.3rem;
}
.best-ofs .best-ofs-list .best-ofs-list-element {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.7rem;
}
.best-ofs .best-ofs-list .best-ofs-list-element a {
  color: var(--text-white);
  font-family: "Poppins-Bold";
  line-height: 1.5625rem;
}
.best-ofs .best-ofs-list .best-ofs-list-element img {
  height: 1.875rem;
  margin-right: 1.25rem;
}

.lastest-injuries-and-bans-accordion-section .choose-a-competition {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: var(--light-gray-border);
  margin-top: 0.6rem;
  position: relative;
  border-bottom: 0.125rem solid #149688;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-header {
  border: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--text-white);
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-header img {
  width: 1.25rem;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-menu {
  width: 18rem;
  border: 0.0625rem solid #149688;
  padding: 0rem 2rem 0 2rem;
  position: absolute;
  top: 3.6rem;
  z-index: 9;
  background-color: var(--white-gray-light-bkg);
  transition: height 0.4s ease;
  overflow: hidden;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-menu:not(.active) {
  display: none;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-menu .list-title {
  font-family: "Poppins-Medium";
  line-height: 1.1875rem;
  display: flex;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-menu .list-title:first-of-type {
  margin-top: 1rem;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-menu .list-title img {
  width: 1.43rem;
  height: 1.43rem;
  margin-right: 0.7rem;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-menu ul {
  padding-left: 2.15rem;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}
.lastest-injuries-and-bans-accordion-section .choose-a-competition .choose-competition-menu ul li {
  line-height: 1.4375rem;
}
.lastest-injuries-and-bans-accordion-section .input-container {
  padding: 1.5rem 0 2.1rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5.1rem;
}
.lastest-injuries-and-bans-accordion-section .input-container input::placeholder {
  color: var(--text-white);
}
.lastest-injuries-and-bans-accordion-section .input-container input:focus {
  outline: 0.0625rem solid #149688;
}
.lastest-injuries-and-bans-accordion-section .input-container #search-by-club {
  flex: 1;
  border: 0.0625rem solid var(--light-gray-bkg);
  border-radius: 1.5rem;
  padding: 0.8rem 2.6rem;
  background-color: var(--white-gray-light-bkg);
  background-image: url("../../img/icons/search.svg");
  background-size: auto 1.6em;
  background-repeat: no-repeat;
  background-position: right 2rem center;
  -webkit-box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.16);
}
.lastest-injuries-and-bans-accordion-section .input-container button {
  border: none;
  margin-left: 10.3rem;
  text-decoration: underline;
}
.lastest-injuries-and-bans-accordion-section .input-container .last-update-date {
  font-size: 0.875rem;
  background: var(--light-gray-border);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0.5rem 1.7rem;
  height: fit-content;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion {
  margin-bottom: 3.4rem;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item {
  margin-bottom: 0.875rem;
  background-color: var(--black-white);
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item h4.accordion-header {
  background-color: #149688;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  position: relative;
  display: flex;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item h4.accordion-header .accordion-button {
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-size: var(--sn-faq-question, 19px);
  line-height: 1.2;
  padding: 0.35rem 1rem;
  box-shadow: none;
  gap: 1rem;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item h4.accordion-header .accordion-button .team-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  padding: 0.2rem;
  background-color: #fff;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item h4.accordion-header .accordion-button .team-icon img {
  height: 1.44rem;
  width: 1.44rem;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item h4.accordion-header .accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0;
  background: var(--black-white);
  font-size: 1rem;
  line-height: 1.5625rem;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table {
  vertical-align: middle;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table p {
  text-align: start;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table thead {
  font-family: "Poppins-SemiBold";
  background-color: var(--light-gray-border);
  border-bottom: 0.18rem solid #149688;
  padding: 0.3rem 0;
  color: var(--text-white);
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table thead tr th {
  text-align: center;
  vertical-align: middle;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table thead tr th:first-of-type {
  width: 24%;
  text-align: left;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table thead tr th:nth-child(6) {
  position: relative;
  width: 14%;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table thead tr th:nth-child(6):after {
  content: "";
  position: absolute;
  height: 65%;
  width: 0.07rem;
  background-color: #7d7d7d;
  right: 0;
  top: 20%;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table thead tr th:nth-child(7) {
  width: 16%;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr:nth-child(even) {
  background: rgb(var(--table-bg));
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr td {
  border: none;
  text-align: center;
  vertical-align: middle;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr td:nth-child(6) {
  position: relative;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr td:nth-child(6):after {
  content: "";
  position: absolute;
  height: 65%;
  width: 0.07rem;
  background-color: #7d7d7d;
  right: 0;
  top: 20%;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr .player-container {
  display: flex;
  align-items: center;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr .player-container .status, .lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr .player-container .flag {
  height: auto;
  width: 1.5rem;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr .player-container p, .lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr .player-container .player-name {
  padding: 0.2rem 1.3rem 0 0.7rem;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body table tbody tr .position {
  font-size: 0.875rem;
  color: #7d7d7d;
  margin-top: 0.2rem;
  margin-left: 2.2rem;
  display: flex;
}
.lastest-injuries-and-bans-accordion-section #injuriesAndBansAccordion .accordion-item .accordion-collapse .accordion-body h4 {
  margin-top: 1.7rem;
}

.soccer-betting-resources {
  background: rgb(244, 244, 244);
  background: linear-gradient(180deg, rgba(161, 161, 161, 0.1) 1%, rgba(255, 255, 255, 0) 25%);
  margin-left: -1.25rem;
  padding: 0.2rem 0 2rem 1.25rem;
}
.soccer-betting-resources .soccer-betting-resources-title {
  text-transform: capitalize;
}
.soccer-betting-resources .above-resources-cards {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.soccer-betting-resources .above-resources-cards .above-resources-cards-left {
  display: flex;
  align-items: center;
}
.soccer-betting-resources .above-resources-cards .above-resources-cards-left img {
  margin-right: 1rem;
  height: 1.2rem;
}
.soccer-betting-resources .above-resources-cards p {
  margin-bottom: 0;
}
.soccer-betting-resources .above-resources-cards a {
  background: var(--white-gray-light-bkg);
  display: flex;
  align-items: center;
  border-top: 1px solid #149688;
  -webkit-box-shadow: 0 0.3125rem 0.9375rem -0.625rem rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0.3125rem 0.9375rem -0.625rem rgba(0, 0, 0, 0.75);
  box-shadow: 0 0.3125rem 0.9375rem -0.625rem rgba(0, 0, 0, 0.75);
  padding: 0rem 0.8rem;
  margin-bottom: 0.8rem;
}
.soccer-betting-resources .above-resources-cards a img {
  margin-right: 1rem;
  height: 1.53rem;
}
.soccer-betting-resources .own-carousel__container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.soccer-betting-resources .own-carousel__container .own-carousel__outer {
  width: 100%;
}
.soccer-betting-resources .own-carousel__container .own-carousel__control {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  padding: 0 1rem;
  pointer-events: none;
}
.soccer-betting-resources .own-carousel__container .own-carousel__control button {
  pointer-events: all;
}
.soccer-betting-resources .news-pagination {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.4rem 0 2.2rem 0;
}
.soccer-betting-resources .news-pagination .pagination {
  margin-bottom: 0;
}
.soccer-betting-resources .news-pagination .pagination .page-item {
  background: transparent;
  border: none;
  line-height: 1rem;
}
.soccer-betting-resources .news-pagination .pagination .page-item.active .page-link {
  background-color: transparent;
  color: #149688;
  border-bottom: 0.05rem solid #149688;
}
.soccer-betting-resources .news-pagination .pagination .page-item.active .page-link:focus, .soccer-betting-resources .news-pagination .pagination .page-item.active .page-link.active {
  background: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.soccer-betting-resources .news-pagination .pagination .page-item.disabled {
  display: none;
}
.soccer-betting-resources .news-pagination .pagination .page-item .page-link {
  border: none;
  background: none;
  color: #7d7d7d;
  font-size: 1.125rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.soccer-betting-resources .news-pagination .pagination .page-item .page-link:focus, .soccer-betting-resources .news-pagination .pagination .page-item .page-link.active {
  background: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.soccer-betting-resources .news-pagination .pagination .page-item .page-link:hover {
  color: #149688;
}
.soccer-betting-resources .news-pagination .pagination .page-item .page-link.next {
  margin-left: 0.8rem;
}
.soccer-betting-resources .resources-card {
  flex: 1;
}
.soccer-betting-resources .resources-card .card {
  border: none;
  background: none;
}
.soccer-betting-resources .resources-card .card .card-img-top {
  width: 100%;
  padding-top: 58%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.soccer-betting-resources .resources-card .card .card-body {
  background: rgb(161, 161, 161);
  background: linear-gradient(90deg, rgba(161, 161, 161, 0.16) 50%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  height: 3.3rem;
}
.soccer-betting-resources .resources-card .card .card-body .card-text {
  font-family: "Poppins-Medium";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1rem;
  border-left: 0.125rem solid #149688;
  line-height: 2rem;
  font-size: 1rem;
}

#accordionFaq {
  --bs-accordion-border-color: none;
}
#accordionFaq .accordion-item {
  background: none;
  -webkit-box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  margin-top: 1.6rem;
}
#accordionFaq .accordion-header {
  margin-bottom: 0;
  background: var(--white-gray-light-bkg);
  color: var(--text-white);
}
#accordionFaq .accordion-header span.plus-minus {
  min-width: 2.5rem;
  min-height: 2.5rem;
  border: 0.1rem solid var(--black-gray);
  margin-left: auto;
  margin-right: 4.05rem;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}
#accordionFaq .accordion-header span.plus-minus:hover {
  border: 0.1rem solid #64ffda;
  background: #64ffda;
}
#accordionFaq .accordion-header span.plus-minus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1rem;
  height: 0.3rem;
  background: #149688;
  transform: translateY(-50%);
}
#accordionFaq .accordion-header span.plus-minus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1rem;
  height: 0.3rem;
  background: #149688;
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.5s;
}
#accordionFaq .accordion-button:not(.collapsed) span.plus-minus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1rem;
  height: 0.3rem;
  background: #149688;
  transform: translateY(-50%) rotate(0deg);
}
#accordionFaq .accordion-button:not(.collapsed):after {
  display: none;
}
#accordionFaq .accordion-button::after {
  display: none;
}
#accordionFaq .accordion-button {
  padding-top: 1.25rem;
  padding-bottom: 1.0625rem;
  padding-left: 1.5rem;
}
#accordionFaq .accordion-button h3 {
  font-family: "LeagueSpartan-SemiBold", sans-serif;
  font-size: var(--sn-faq-question, 19px);
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: wrap;
  max-width: 31rem;
}
#accordionFaq .accordion-button img {
  height: 2.75rem;
  margin-right: 1.78rem;
}
#accordionFaq .accordion-body {
  background: var(--white-gray-light-bkg);
  color: var(--text-white);
  display: flex;
  padding: 0.8rem 1.9rem;
  gap: 2rem;
}
#accordionFaq .accordion-body .accordion-body-left {
  width: 60%;
}
#accordionFaq .accordion-body .accordion-body-left p {
  margin-bottom: 1em;
}
#accordionFaq .accordion-body .accordion-body-left p:last-child {
  margin-bottom: 0;
}
#accordionFaq .accordion-body .accordion-body-left a {
  color: #149688;
}
#accordionFaq .accordion-body .accordion-body-right {
  width: 40%;
}
#accordionFaq .accordion-body .accordion-body-right ul {
  list-style: disc;
  padding-left: 2rem;
  list-style-image: url("../../img/green-hook-icon.svg");
}
#accordionFaq .accordion-body .accordion-body-right ul li {
  margin-bottom: 0.5rem;
}
#accordionFaq .accordion-body .accordion-body-right ul li img {
  margin-right: 1rem;
}

.pros-cons-tables {
  padding: 0 1.4rem;
  gap: 2.3rem;
  display: flex;
  width: 100%;
  align-items: stretch;
}
.pros-cons-tables .pros, .pros-cons-tables .cons {
  -webkit-box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  padding: 0.6rem 0.8rem;
  background-color: var(--white-gray-light-bkg);
  flex: 1;
  min-width: 0;
}
.pros-cons-tables .pros .pros-cons-header, .pros-cons-tables .cons .pros-cons-header {
  border-bottom: 0.1rem solid #cdcdcd;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.95rem;
  padding-left: 0;
  padding-bottom: 0.6rem;
  font-family: "Poppins-SemiBold";
  display: flex;
}
.pros-cons-tables .pros .pros-cons-header img, .pros-cons-tables .cons .pros-cons-header img {
  margin-right: 0.65rem;
  height: 1.375rem;
}
.pros-cons-tables .pros ul li, .pros-cons-tables .cons ul li {
  line-height: 1rem;
  font-size: 0.8125rem;
  margin-bottom: 0.8rem;
  padding-left: 0.3rem;
  padding-right: 0.8rem;
  display: flex;
}
.pros-cons-tables .pros {
  border-top: 0.35rem solid #149688;
}
.pros-cons-tables .pros i {
  color: #b6dfda;
  margin-right: 0.5rem;
}
.pros-cons-tables .cons {
  border-top: 0.35rem solid #e0485d;
}
.pros-cons-tables .cons i {
  color: #e0485d;
  margin-right: 0.5rem;
}

.featured-sportsbooks .iconized-heading {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
.featured-sportsbooks .iconized-heading h2 {
  margin: 0;
  line-height: 1.875rem;
  padding-top: 0.3rem;
  padding-left: 1.4rem;
  margin-left: 1.2rem;
  border-left: 0.25rem solid #149688;
}
.featured-sportsbooks .iconized-heading img {
  height: 3.1rem !important;
  width: 3.1rem !important;
}
.featured-sportsbooks .own-carousel__container {
  position: relative;
  display: flex;
  align-items: center;
  width: 69rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer {
  padding: 0 0.5rem;
  width: 100%;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item {
  -webkit-box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0 0.375rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
  border: 0.1rem solid var(--light-gray-border);
  margin-top: 1rem;
  margin-bottom: 1rem;
  overflow: visible;
  text-align: center;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem 0.6rem 1rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card > img {
  height: 2.3rem;
  max-width: 9.5rem;
  margin-bottom: 1.05rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .stars-box-container .stars-box {
  height: 1.78rem;
  width: 7.25rem;
  margin-bottom: 1.6rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card > p {
  text-align: center;
  font-family: "Poppins-Bold";
  line-height: 1.54rem;
  margin-bottom: 1.3rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .green-btn {
  margin: 0 2rem;
  padding: 0.37rem 1.2rem;
  font-size: 0.875rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .green-btn i {
  margin-left: 0.7rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions {
  margin-top: 0.7rem;
  font-size: 0.4375rem;
  line-height: 0.5625rem;
  font-family: "Poppins-Italic";
  color: #9a9999;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions .terms-and-conditions-tooltip {
  display: inline;
  position: relative;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions .terms-and-conditions-tooltip img {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.35rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions .terms-and-conditions-tooltip .tooltip-hidden {
  position: absolute;
  background: var(--white-gray-light-bkg);
  border: 0.0625rem solid #149688;
  padding: 0.65rem 1rem 1rem 1rem;
  text-transform: none;
  color: var(--text-white);
  bottom: 1.5rem;
  right: -3.3rem;
  width: 15rem;
  display: none;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions .terms-and-conditions-tooltip .tooltip-hidden p {
  font-family: "Poppins-Regular";
  text-align: left;
  font-size: 0.5625rem;
  line-height: 0.8125rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions .terms-and-conditions-tooltip .tooltip-hidden p.title {
  color: var(--text-white);
  font-family: "Poppins-Bold";
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions .terms-and-conditions-tooltip .tooltip-hidden:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.4rem 0 0.4rem;
  border-color: #149688 transparent transparent transparent;
  position: absolute;
  top: 101%;
  right: 21.3%;
  z-index: 5;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions .terms-and-conditions-tooltip .tooltip-hidden:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.4rem 0 0.4rem;
  border-color: var(--white-gray-light-bkg) transparent transparent transparent;
  top: 98%;
  right: 21.3%;
  position: absolute;
  z-index: 6;
}
.featured-sportsbooks .own-carousel__container .own-carousel__outer .own-carousel__item .featured-sportsbooks-card .terms-and-conditions:hover .tooltip-hidden {
  display: block;
}
.featured-sportsbooks .own-carousel__container .carousel-control {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  padding: 0 0.7rem;
}

.latest-transfer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5.3rem;
}
.latest-transfer h2 {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.latest-transfer h2 img {
  width: 4rem;
  border-right: 0.25rem solid #149688;
  padding-right: 1rem;
}
.latest-transfer h2 .flag-container {
  width: 2.75rem;
  height: 2.75rem;
}
.latest-transfer h2 > span {
  padding-top: 0.35rem;
}
.latest-transfer .green-header {
  background-color: #149688;
  color: #fff;
  width: 100%;
  height: 2.4rem;
  padding: 0.5rem 4.6rem;
  margin-top: 1.4rem;
}
.latest-transfer .transfer-card {
  margin: 0.8rem 0;
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.16);
  width: 74%;
}
.latest-transfer .transfer-card .transfer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 3.6rem 0.9rem 2.1rem;
  background-color: var(--light-gray-border);
  border-bottom: 0.125rem solid #149688;
}
.latest-transfer .transfer-card .transfer-header .teams {
  display: flex;
  align-items: center;
  font-family: "Poppins-Medium";
}
.latest-transfer .transfer-card .transfer-header .teams i {
  margin: 0 1.1rem;
  height: 1.2rem;
  color: #149688;
}
.latest-transfer .transfer-card .transfer-header .teams .team {
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest-transfer .transfer-card .transfer-header .teams .team .team-logo {
  height: 1.5rem;
  margin-right: 0.3rem;
}
.latest-transfer .transfer-card .transfer-header .teams .team p {
  text-align: center;
}
.latest-transfer .transfer-card .transfer-header .league {
  display: flex;
  align-items: center;
  font-family: "Poppins-Bold";
}
.latest-transfer .transfer-card .transfer-header .league .league-from-name {
  text-transform: uppercase;
}
.latest-transfer .transfer-card .transfer-header .league .league-flag {
  height: 1.3rem;
  width: 1.3rem;
  margin-left: 0.9rem;
}
.latest-transfer .transfer-card .transfer-content {
  display: flex;
  justify-content: space-between;
  padding: 0 3.5rem 0 1.9rem;
  border-left: 0.0625rem solid var(--light-gray-border);
  border-right: 0.0625rem solid var(--light-gray-border);
}
.latest-transfer .transfer-card .transfer-content .player-info {
  display: grid;
  padding: 1.9rem 0 2.1rem 0;
}
.latest-transfer .transfer-card .transfer-content .player-info .player-flag {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1.1rem;
  grid-column: 1;
  grid-row: 1/span 2;
}

/* Player-info specific tooltip adjustments */
.latest-transfer .transfer-card .transfer-content .player-info .player-flag.flag-container::after {
  bottom: 120%;
  left: 25%;
}

.latest-transfer .transfer-card .transfer-content .player-info .player-flag.flag-container::before {
  bottom: 110%;
  left: 25%;
}
.latest-transfer .transfer-card .transfer-content .player-info .player-name {
  grid-column: 2;
  grid-row: 1;
  font-family: "Poppins-Medium";
}
.latest-transfer .transfer-card .transfer-content .player-info .player-role {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.875rem;
  text-transform: capitalize;
}
.latest-transfer .transfer-card .transfer-content .transfer-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 1.4rem 0 0.8rem 0;
}
.latest-transfer .transfer-card .transfer-content .transfer-details .transfer-amount {
  font-family: "Poppins-SemiBold";
}
.latest-transfer .transfer-card .transfer-content .transfer-details .progress {
  width: 18.5rem;
  margin: 0.4rem 0;
  --bs-progress-height: 0.8rem;
  --bs-progress-bg:var(--dark-gray);
  --bs-progress-border-radius:1rem;
}
.latest-transfer .transfer-card .transfer-content .transfer-details .progress .progress-bar {
  --bs-progress-bar-bg:#149688;
}
.latest-transfer .transfer-card .transfer-content .transfer-details .progress .progress-bar.red {
  --bs-progress-bar-bg:red;
}
.latest-transfer .transfer-card .transfer-content .transfer-details .progress .progress-bar.green {
  --bs-progress-bar-bg:#149688;
}
.latest-transfer .transfer-card .transfer-content .transfer-details .progress .progress-bar.yellow {
  --bs-progress-bar-bg:#F3DE1C;
}
.latest-transfer .transfer-card footer {
  border: 0.0625rem solid var(--light-gray-border);
  color: #7d7d7d;
  padding: 0.4rem 2.1rem;
  font-size: 0.625rem;
}
.latest-transfer .transfer-card footer .source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.latest-transfer .transfer-card footer .source a {
  color: #149688;
  display: flex;
  align-items: center;
}
.latest-transfer .transfer-card footer .source a img {
  margin-left: 0.2rem;
  height: 0.6rem;
}
.latest-transfer .more-rumours-btn {
  margin-top: 1.4rem;
  border: 0.0625rem solid #149688;
  color: #149688;
  border-radius: 1.4375rem;
  padding: 0.7rem 2.9rem;
  display: flex;
  font-family: "Poppins-Bold";
  transition: 0.5s;
  text-align: center;
}
.latest-transfer .more-rumours-btn i {
  margin-left: 0.5rem;
}
.latest-transfer .more-rumours-btn:hover {
  color: #1b1c1e;
  background: #64ffda;
  border: 0.0625rem solid #64ffda;
  cursor: pointer;
}

.bonus-card {
  border-top: 0.125rem solid #7d7d7d;
  border-bottom: 0.125rem solid #7d7d7d;
  border-left: 0.125rem solid #7d7d7d;
  border-right: 0.5rem solid #149688;
  background-color: var(--white-gray-bkg);
  margin-top: 2.3rem;
  margin-bottom: 3.9rem;
  display: flex;
  width: 80%;
  margin-left: 9rem;
}
.bonus-card .bonus-card-img-container {
  background-size: 13.5rem;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  margin: auto;
  margin-left: -5.55rem;
  margin-right: 2.6rem;
  width: 14rem;
  height: 14rem;
  background-image: url("../../img/green-circular-border.svg");
  position: relative;
}
.bonus-card .bonus-card-img-container .bonus-card-img {
  width: 9.1rem;
  height: 9.1rem;
  position: absolute;
  top: 2.2rem;
  left: 2.8rem;
  background-size: 9.1rem;
  background-repeat: no-repeat;
  background-position: center;
}
.bonus-card .bonus-card-center-content {
  width: 74%;
  padding: 1.8rem 2rem 0.5rem 0;
}
.bonus-card .bonus-card-center-content > p {
  font-size: 1.5625rem;
  line-height: 2rem;
  max-width: 29rem;
  font-family: "LeagueSpartan-Bold";
  letter-spacing: 0.05rem;
}
.bonus-card .bonus-card-center-content .bonus-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.bonus-card .bonus-card-center-content .green-btn {
  text-transform: uppercase;
  padding: 0.7rem 3rem;
  margin-top: 2.1rem;
}
.bonus-card .bonus-card-center-content .green-btn i {
  margin-left: 0.5rem;
}
.bonus-card .bonus-card-center-content .bonus-card-footer {
  margin-top: 1.5rem;
}
.bonus-card .bonus-card-center-content .bonus-card-footer p {
  font-family: "Poppins-Medium";
  color: #7D7D7D;
  font-size: 0.4375rem;
  line-height: 0.65rem;
  padding-top: 0.5rem;
  padding-bottom: 0;
  border-top: 0.0625rem solid #7d7d7d;
}
.bonus-card .pay-cards {
  width: 3.3rem;
  background-color: var(--light-gray-bkg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.bonus-card .pay-cards img {
  height: 1.7rem;
}

.own-carousel__dots {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-top: 0.8rem;
}
.own-carousel__dots .own-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ccc;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.own-carousel__dots .own-carousel__dot:hover {
  opacity: 0.8;
  transform: scale(1.5);
}
.own-carousel__dots .own-carousel__dot.active {
  background-color: #7d7d7d;
}
.own-carousel__dots .own-carousel__dot.active:hover {
  opacity: 1;
  background: #555;
}

.transfer-rumours-table {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.1875rem 0.1875rem rgba(0, 0, 0, 0.05);
  border: 0.0625rem solid var(--light-gray-border);
}
.transfer-rumours-table header {
  background-color: #149688;
  color: #fff;
  padding: 0.2rem 0.6rem 0;
  text-align: center;
  display: flex;
  align-items: center;
}
.transfer-rumours-table header p {
  font-family: "LeagueSpartan-Bold";
  font-size: 1.5625rem;
  line-height: 1.5625rem;
}
.transfer-rumours-table header img {
  height: 3rem;
  margin-right: 0.8rem;
}
.transfer-rumours-table .own-carousel__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer {
  width: 100%;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel {
  width: 100%;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item {
  width: 100%;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card:first-child {
  padding-bottom: 1rem;
  border-bottom: 0.125rem solid #149688;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .sub-header {
  display: flex;
  padding: 0.6rem 1.9rem;
  background-color: var(--light-gray-border);
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .sub-header .team {
  display: flex;
  align-items: center;
  font-family: "Poppins-Medium";
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .sub-header .team img {
  margin-right: 0.4rem;
  height: 1.5rem;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .sub-header i {
  margin: 0 0.9rem;
  color: #149688;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .player-info {
  display: grid;
  justify-content: flex-start;
  padding: 0.5rem 1rem 0.6rem 1.9rem;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .player-info .league-flag {
  height: 2.5rem;
  width: 2.5rem;
  margin-right: 1.8rem;
  grid-column: 1;
  grid-row: 1/span 2;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .player-info .player-name {
  grid-column: 2;
  grid-row: 1;
  font-family: "Poppins-Medium";
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .player-info .player-role {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.875rem;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .progress {
  flex: 1;
  margin: 0rem 2.1rem;
  margin-bottom: 0.4rem;
  --bs-progress-height: 0.7rem;
  --bs-progress-bg:var(--dark-gray);
  --bs-progress-border-radius:1rem;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .progress .progress-bar {
  --bs-progress-bar-bg:#149688;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .progress .progress-bar.red {
  --bs-progress-bar-bg:red;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .progress .progress-bar.green {
  --bs-progress-bar-bg:#149688;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .progress .progress-bar.yellow {
  --bs-progress-bar-bg:#F3DE1C;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .progress-label {
  text-align: right;
  padding: 0 2.6rem;
  font-size: 0.875rem;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .league {
  display: flex;
  align-items: center;
  font-family: "Poppins-Bold";
  font-size: 0.875rem;
  padding: 0 2.1rem;
}
.transfer-rumours-table .own-carousel__container .own-carousel__outer .own-carousel .own-carousel__item .transfer-rumours-table-card .league .league-flag {
  height: 1.3rem;
  width: 1.3rem;
  margin-left: 0.4rem;
}
.transfer-rumours-table .own-carousel__container .own-carousel__control {
  width: 100%;
  padding: 0 0.5rem;
  top: 53%;
  position: absolute;
  transform: translateY(-55%);
  display: flex;
  pointer-events: none;
}
.transfer-rumours-table .own-carousel__container .own-carousel__control button {
  pointer-events: all;
}
.transfer-rumours-table .own-carousel__container .own-carousel__control .control__next {
  margin-left: auto;
}
.transfer-rumours-table .own-carousel__container .own-carousel__dots {
  display: flex;
  justify-content: center;
  font-size: 3.5rem;
  line-height: 0;
  padding: 0.3rem 0 0.7rem 0;
  margin-top: 1rem;
}
.transfer-rumours-table footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0rem 0 1.7rem 0;
}
.transfer-rumours-table footer .btn-green-border {
  padding: 0.7rem 1.7rem;
  margin-top: 0.5rem;
  text-align: center;
  width: fit-content;
}

.top-bookmakers-table {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  border-radius: 0.625rem 0.625rem 0 0;
  border: 0.125rem solid var(--light-gray-border);
}
.top-bookmakers-table .header {
  display: flex;
  flex-direction: column;
  padding: 0.2rem 0.5rem 0.7rem 0.5rem;
}
.top-bookmakers-table .header .header-title {
  display: flex;
  align-items: center;
  margin-top: 0;
  font-size: 1.5625rem;
  line-height: 2.0625rem;
}
.top-bookmakers-table .header .header-title img, .top-bookmakers-table .header .header-title .flag-container {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.9rem;
}
.top-bookmakers-table .header .header-title span {
  padding-top: 0.35rem;
}
.top-bookmakers-table .header .nav-container ul {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.6rem;
}
.top-bookmakers-table .header .nav-container ul li button {
  border: none;
  background: var(--light-gray-border);
  color: #149688;
  border-radius: 0.6rem;
  padding: 0.15rem 1.35rem;
  display: flex;
  font-size: 0.875rem;
  transition: 0.5s;
  text-align: center;
}
.top-bookmakers-table .header .nav-container ul li button#pills-crypto-tab {
  padding: 0.2rem 0.6rem;
}
.top-bookmakers-table .header .nav-container ul li button.active {
  background: #149688;
  color: #fff;
  font-family: "Poppins-Bold";
}
.top-bookmakers-table .main .bookmaker-card {
  display: flex;
  padding: 0.5rem 0.5rem 0.5rem 0;
  border-top: 0.0625rem solid var(--light-gray-border);
}
.top-bookmakers-table .main .bookmaker-card .col-rank, .top-bookmakers-table .main .bookmaker-card .col-number {
  display: flex;
  align-items: center;
  width: 2.3rem;
}
.top-bookmakers-table .main .bookmaker-card .col-rank span, .top-bookmakers-table .main .bookmaker-card .col-rank p, .top-bookmakers-table .main .bookmaker-card .col-number span, .top-bookmakers-table .main .bookmaker-card .col-number p {
  margin: -0.5rem;
  color: #149688;
  border-left: 0.125rem solid #149688;
  padding: 0 0.5rem;
}
.top-bookmakers-table .main .bookmaker-card .col-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .bookmaker-logo {
  height: 2.3rem;
  width: 2.3rem;
  border-radius: 50%;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions {
  position: relative;
  width: fit-content;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main {
  font-size: 0.4375rem;
  line-height: 0.5625rem;
  font-family: "Poppins-Italic";
  color: #9a9999;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip {
  display: inline;
  position: relative;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip img {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.35rem;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden {
  position: absolute;
  background: var(--white-gray-light-bkg);
  border: 0.0625rem solid #149688;
  padding: 0.65rem 1rem 1rem 1rem;
  text-transform: none;
  color: var(--text-white);
  bottom: 1.6rem;
  width: 19rem;
  right: -0.7rem;
  display: none;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden p {
  font-size: 0.5rem;
  font-family: "Poppins-Regular";
  text-align: left;
  line-height: 0.8125rem;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden p.title {
  color: var(--text-white);
  font-family: "Poppins-Bold";
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.4rem 0 0.4rem;
  border-color: #149688 transparent transparent transparent;
  position: absolute;
  top: 100%;
  right: 3.3%;
  z-index: 5;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.4rem 0 0.4rem;
  border-color: var(--white-gray-light-bkg) transparent transparent transparent;
  top: 98%;
  right: 3.3%;
  position: absolute;
  z-index: 6;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip:hover .tooltip-hidden {
  display: block;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-visible {
  display: flex;
  align-items: center;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-visible .terms-and-conditions-text {
  font-size: 0.5625rem;
  font-family: "Poppins-Italic";
  margin-top: 0.2rem;
  color: #9a9999;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .terms-and-conditions-visible img {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.35rem;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden {
  position: absolute;
  background: var(--white-gray-light-bkg);
  border: 0.0625rem solid #149688;
  padding: 0.65rem 1rem 1rem 1rem;
  text-transform: none;
  color: var(--text-white);
  bottom: 1.6rem;
  width: 19rem;
  right: -0.7rem;
  display: none;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden p {
  font-size: 0.5rem;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden p.title {
  color: var(--text-white);
  font-family: "Poppins-Bold";
  font-size: 0.75rem;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.4rem 0 0.4rem;
  border-color: #149688 transparent transparent transparent; /* Spoljašnja zelena strelica */
  position: absolute;
  top: 100%;
  right: 3.3%;
  z-index: 5;
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.7rem 0.4rem 0 0.4rem;
  border-color: var(--white-gray-light-bkg) transparent transparent transparent; /* Unutrašnja bela strelica */
  top: 98%;
  right: 3.3%;
  position: absolute;
  z-index: 6; /* Bela strelica iznad zelene */
}
.top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions:hover .tooltip-hidden {
  display: block;
}
.top-bookmakers-table .main .bookmaker-card .col-button {
  display: flex;
  align-items: center;
}
.top-bookmakers-table .main .bookmaker-card .col-button .green-btn {
  border: none;
  padding: 0.4rem 0.8rem;
  margin-left: 1rem;
  font-size: 0.875rem;
}
.top-bookmakers-table .main .bookmaker-card .col-button .green-btn i {
  padding-left: 0.4rem;
}
.top-bookmakers-table footer, .top-bookmakers-table .footer-btn {
  display: flex;
  justify-content: center;
  padding: 1.1rem 0;
  border-top: 0.0625rem solid var(--light-gray-border);
}
.top-bookmakers-table footer .btn-green-border, .top-bookmakers-table .footer-btn .btn-green-border {
  padding: 0.6rem 2.7rem;
  justify-content: center;
}

.betting-offers-table {
  display: flex;
  flex-direction: column;
}
.betting-offers-table .betting-offers-heading, .betting-offers-table header {
  background-color: #149688;
  color: #fff;
  padding: 0.6rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
}
.betting-offers-table .betting-offers-heading p, .betting-offers-table .betting-offers-heading h2, .betting-offers-table header p, .betting-offers-table header h2 {
  font-family: "LeagueSpartan-Bold", sans-serif;
  font-size: 22px;
  line-height: 26.4px;
  font-weight: 600;
  font-style: normal;
  padding-top: 0.3rem;
  letter-spacing: 0;
  margin-top: 0;
}
.betting-offers-table .betting-offers-heading img, .betting-offers-table header img {
  height: 2rem;
  margin-right: 1rem;
}
.betting-offers-table .betting-offers-wrapper {
  border: 0.125rem solid var(--light-gray-border);
}
.betting-offers-table .betting-offers-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.betting-offers-table .betting-offers-main .own-carousel__outer {
  width: 100%;
  overflow: hidden;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item {
  padding: 0 0.7rem;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul {
  margin-bottom: 0.5rem;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item {
  border-bottom: 0.0625rem solid #dedada;
  padding: 0.8rem 0.4rem;
  display: flex;
  flex-direction: column;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item:last-child {
  border-bottom: 0.0625rem solid var(--white-gray-bkg);
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item:hover {
  border-bottom: 0.0625rem solid #149688;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item a {
  display: flex;
  align-items: center;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item a p {
  font-size: 0.875rem;
  line-height: 1.1875rem;
  font-family: "Poppins-Medium";
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item a img {
  margin-right: 1.1rem;
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions {
  position: relative;
  width: fit-content;
  margin-top: 0.5rem;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main {
  font-size: 0.4375rem;
  line-height: 0.5625rem;
  font-family: "Poppins-Italic";
  color: #9a9999;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip {
  display: inline;
  position: relative;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip img {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.35rem;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden {
  position: relative;
  background: var(--white-gray-light-bkg);
  border: 0.0625rem solid #149688;
  padding: 0.65rem 1rem 1rem 1rem;
  text-transform: none;
  color: var(--text-white);
  margin-top: 0.5rem;
  width: 19rem;
  display: none;
  z-index: 999;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden p {
  font-size: 0.5rem;
  font-family: "Poppins-Regular";
  text-align: left;
  line-height: 0.8125rem;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden p.title {
  color: var(--text-white);
  font-family: "Poppins-Bold";
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.4rem 0.7rem 0.4rem;
  border-color: transparent transparent #149688 transparent;
  position: absolute;
  bottom: 100%;
  left: 1rem;
  z-index: 5;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip .tooltip-hidden:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.4rem 0.7rem 0.4rem;
  border-color: transparent transparent var(--white-gray-light-bkg) transparent;
  bottom: 98%;
  left: 1rem;
  position: absolute;
  z-index: 6;
}
.betting-offers-table .betting-offers-main .own-carousel__outer .own-carousel__item ul .betting-offers-item .terms-and-conditions .terms-and-conditions-main .terms-and-conditions-tooltip:hover .tooltip-hidden {
  display: block;
}
.betting-offers-table .betting-offers-main .own-carousel__control {
  width: 100%;
  padding: 0 0.5rem;
  top: 41%;
  position: absolute;
  transform: translateY(-55%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.betting-offers-table .betting-offers-main .own-carousel__control button {
  pointer-events: all;
}
.betting-offers-table .betting-offers-main .own-carousel__dots {
  margin-top: 0;
  margin-bottom: 0.6rem;
}
.betting-offers-table .more-offers {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 0 1.7rem 0;
}
.betting-offers-table .more-offers a {
  padding: 0.7rem 2.4rem;
  text-align: center;
}

.news-table-container .news-table .new-table-header {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  background: #149688;
  border-radius: 1rem 1rem 0 0;
}
.news-table-container .news-table .new-table-header h3 {
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  width: 100%;
  text-transform: uppercase;
  font-family: "LeagueSpartan-Bold", sans-serif;
  font-size: 22px;
  line-height: 26.4px;
  font-weight: 600;
  font-style: normal;
}
.news-table-container .news-table .news {
  display: flex;
  flex-direction: column;
  border: 0.125rem solid var(--light-gray-border);
}
.news-table-container .news-table .news .own-carousel__container {
  position: relative;
  padding: 0.6rem 0 0 0;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item {
  padding: 0 1rem;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item ul {
  margin-bottom: 0;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item ul li {
  padding: 0.52rem 0;
  display: flex;
  border-bottom: 0.125rem solid #dedada;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item ul li .storie-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: "Poppins-Medium";
  font-size: 0.875rem;
  line-height: 1.1rem;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item ul li img {
  width: 0.875rem;
  height: 0.9375rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item ul li:hover {
  border-bottom: 0.125rem solid #149688;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item ul li:hover a {
  color: #149688;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__outer .own-carousel__item ul li:last-child {
  border-bottom: none;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__control {
  width: 100%;
  position: absolute;
  top: 7.7rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 0.1rem;
}
.news-table-container .news-table .news .own-carousel__container .own-carousel__control button {
  pointer-events: all;
}
.news-table-container .news-table .news .own-carousel__dots {
  margin-top: 1rem;
}
.news-table-container .news-table .news footer {
  padding: 1.3rem 0;
}
.news-table-container .news-table .news footer button.btn-green-border {
  margin: 1rem auto 1.1rem auto;
  padding: 0.7rem 1rem;
}

.dark .footer-top .hook img {
  filter: invert(100%) brightness(1000%);
}

.footer-top {
  display: grid;
  grid-template-columns: auto max-content max-content max-content max-content max-content;
  gap: 2rem;
  align-items: start;
  justify-content: space-between;
  padding-top: 3.5rem;
  padding-right: 25rem;
  position: relative;
}
.footer-top .hook {
  position: absolute;
  background-color: #149688;
  border-radius: 50%;
  padding: 1rem 1rem 0.6rem 0.6rem;
  top: -2.4rem;
  left: 83%;
}
.footer-top .hook img {
  width: 3rem;
  height: 3rem;
}
.footer-top:before {
  position: absolute;
  content: "";
  height: 0.3125rem;
  background: #149688;
  display: block;
  top: 0;
  width: 85%;
  left: 0;
}
.footer-top .logo {
  display: flex;
  padding-top: 4rem;
  padding-left: 5rem;
  width: 25rem;
  height: 100%;
}
.footer-top .logo img {
  height: 3.1rem;
}
.footer-top .list-title {
  font-family: "Poppins-Bold";
  font-size: 1.125rem;
  height: 3.5rem;
  align-self: flex-start;
}
.footer-top .list-title img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem;
}
.footer-top ul .first-list-title {
  margin-bottom: 1.6rem;
}
.footer-top .footer-column ul:not(.first-list) {
  list-style: none;
  padding-left: 0;
}
.footer-top ul.first-list {
  list-style: disc;
  padding-left: 2rem;
  list-style-image: url("../../img/green-hook-icon.svg");
}
.footer-top ul.first-list li {
  margin-left: 1.3rem;
}
.footer-top ul.first-list li img {
  margin-right: 0.6rem;
}
.footer-top ul li {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  letter-spacing: -0.2px;
}
.footer-top ul li img {
  height: 0.75rem;
}

.footer-sec-menu {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  padding-top: 1.1rem;
}
.footer-sec-menu ul {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.footer-sec-menu ul li {
  margin: 1rem 0;
}
.footer-sec-menu ul li a {
  color: #149688;
  font-size: 1.125rem;
  font-family: "Poppins-Medium";
}
.footer-sec-menu .footer-navigation {
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.footer-sec-menu .footer-navigation ul {
  gap: 3.3rem;
}
.footer-utility-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 40px;
  padding: 14px 0;
  border-top: 1px solid var(--light-gray-border);
}
.footer-utility-company {
  border-top: 1px solid var(--light-gray-border);
}
.footer-utility-label {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sn-faint, #8A939E);
  min-width: 88px;
  margin-right: 8px;
  flex-shrink: 0;
  align-self: center;
}
.footer-utility-row a {
  font-family: 'League Spartan', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0D7A70;
  text-decoration: none;
  transition: color 0.15s ease;
  line-height: 1.4;
}
.footer-utility-row a:hover {
  color: #149688;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-sec-menu .footer-social ul li {
  margin: 2.2rem 0.6rem 2.9rem 0.6rem;
  position: relative;
}
.footer-sec-menu .footer-social ul li a img {
  height: 3.343rem;
  width: 3.343rem;
}
.footer-sec-menu .footer-social ul li:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0.475rem 0.3875rem 0 rgba(0, 0, 0, 0.45);
  -moz-box-shadow: inset 0 0.475rem 0.3875rem 0 rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 0.475rem 0.3875rem 0 rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
.footer-sec-menu .footer-social ul li:hover:after {
  opacity: 1;
}
.footer-sec-menu .footer-legal {
  border-top: 0.0625rem solid var(--light-gray-border);
  text-align: center;
  padding: 1.4rem 2rem 0.6rem 2rem;
}
.footer-sec-menu .footer-legal p {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-white);
  line-height: 1.6;
}
.footer-sec-menu .footer-legal p:last-child {
  margin-bottom: 0;
}
.footer-sec-menu .footer-legal .footer-legal-copyright {
  font-family: 'Poppins-Medium';
}
.footer-sec-menu .footer-legal a {
  color: #149688;
  text-decoration: underline;
}
.footer-sec-menu .footer-legal a:hover {
  opacity: 0.8;
}
.footer-sec-menu .footer-logos {
  background-color: var(--footer-gray-color);
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem 23.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem 3rem;
}
.footer-sec-menu .footer-logos a #be-gamble-aware-logo {
  max-height: 1.48rem;
}
.footer-sec-menu .footer-logos a #gam-stop-logo {
  max-height: 2.2rem;
}
.footer-sec-menu .footer-logos a #gam-care-logo {
  max-height: 3rem;
}
.footer-sec-menu .footer-logos a #ncpg-logo {
  max-height: 2.5rem;
}
.footer-sec-menu .copyright {
  background: #149688;
  color: #fff;
  text-align: center;
  padding: 1.3rem 1rem 1.6rem 1rem;
}
.footer-sec-menu .copyright p {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .main-content-header .header-menu .nav-dots:hover #hiddenElement {
    display: block;
    z-index: 9;
  }
  .main-content-header .header-menu .nav-dots:hover span:hover {
    color: #149688;
  }
}
@media (max-width: 1399px) {
  html {
    font-size: 2vw;
  }
  .main-section {
    width: 100vw !important;
  }
  .main-content-header .right-column {
    display: none !important;
  }
  .main-content-header .header-menu {
    gap: 1rem;
  }
  .breadcrumb-container {
    padding-right: 0;
  }
  .breadcrumb-container .right-column {
    display: none !important;
  }
  .green-line-border.ad-disclosure .ad-disclosure-container:hover .ad-disclosure-hidden {
    display: none;
  }
  .green-line-border.ad-disclosure .ad-disclosure-container .ad-disclosure-hidden {
    display: none;
  }
  .green-line-border.ad-disclosure .ad-disclosure-container.active .ad-disclosure-hidden {
    display: block;
  }
  .right-column {
    width: 100vw;
    padding-top: 2rem !important;
    padding-bottom: 4rem !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .right-column > article {
    margin: 0 !important;
    margin-bottom: 0;
    width: 21.25rem;
    height: fit-content;
  }
  table p {
    text-align: center;
  }
  .best-bookmakers-by-category-table p {
    text-align: start;
  }
  .results-tabs .tab-content .col-middle p {
    text-align: start;
  }
  .side-football-table {
    text-align: start;
  }
  .top-nav {
    padding: 1rem;
  }
  .top-nav #hamburgerBtn {
    font-size: 2rem;
  }
  .top-nav .soccernews-logo {
    height: 2rem;
  }
  .top-nav .switch {
    scale: 0.8;
    margin: 0;
  }
  .top-nav .switch:after {
    display: none;
  }
  .left-menu-side-bar {
    width: 100%;
    position: fixed;
    background: white;
    z-index: 99;
    top: 0;
    bottom: 0;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
  }
  .left-menu-side-bar.open {
    display: flex;
    align-items: center;
    padding-left: 0;
    transform: translateX(0);
  }
  .left-menu-side-bar .bi-x {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2.5rem;
  }
  .left-menu-side-bar .left-menu-side-bar-menu {
    max-width: 70%;
  }
  #accordionFaq .accordion-header span.plus-minus, #accordionFaq .accordion-button img {
    margin-right: 1rem;
  }
  .featured-sportsbooks .own-carousel__container {
    width: auto;
  }
  .featured-sportsbooks .own-carousel__container .own-carousel__outer {
    padding: 0;
  }
  .betting-card .betting-card-footer {
    padding: 1rem;
  }
  .about-author .left-col {
    width: auto;
    padding: 2rem 1.5rem;
  }
  .about-author .left-col .author-social-media {
    margin-left: auto;
  }
  .about-author .right-col {
    width: 100%;
    padding: 1.5rem;
  }
  .own-carousel__container .own-carousel__control {
    opacity: 1;
  }
  .latest-transfer .transfer-card {
    width: 85%;
  }
  .latest-transfer .transfer-card .transfer-header {
    flex-direction: column-reverse;
    gap: 0.5rem;
    padding: 1rem;
  }
  .latest-transfer .transfer-card .transfer-content {
    flex-wrap: wrap;
    padding: 0 2rem;
  }
  #accordionFaq .accordion-body {
    flex-direction: column;
    gap: 1rem;
  }
  #accordionFaq .accordion-body .accordion-body-left, #accordionFaq .accordion-body .accordion-body-right {
    width: 100%;
  }
  .match-center-section .match-center-table .match-item .match-center-table-row .table-league, .match-center-section .match-center-table .match-item .match-center-table-row .table-time span, .match-center-section .match-center-table .match-item .match-center-table-row .table-teams span, .match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn, .match-center-section .match-center-table .match-item .match-center-table-row .table-quote-hidden-content .table-quote-hidden-content-quotes p {
    font-size: 0.8rem;
  }
  .match-center-section .match-center-table .match-item .match-center-table-row .match-center-table-btn .btn-green-border {
    padding: 0.5rem;
    width: auto;
  }
  .bonus-card {
    margin-left: 7rem;
  }
  .bonus-card .bonus-card-img-container {
    width: 16.5rem;
  }
  .premier-league-standings .tab-content .dropdown-container {
    margin: 1.6rem 0;
  }
  .premier-league-standings .tab-content .league-table-responsive {
    overflow-x: auto;
    margin-bottom: 1rem;
  }
  .premier-league-standings .tab-content .league-table {
    width: 65rem;
  }
  .compare-betting-table.table thead tr th {
    padding: 1rem 0.3rem;
  }
  .compare-betting-table.table tbody tr td .betting-card-logo {
    max-width: 4.5rem;
  }
  .main-content .single-league-transfer .transfer-zone-section .transfer-table thead tr th i {
    margin-left: 0.3rem;
  }
  .main-content .single-league-transfer .transfer-zone-section .transfer-table thead tr th > div img {
    margin-right: 0.3rem;
  }
  .main-content .single-league-transfer .transfer-zone-section .transfer-table tbody td.table-when {
    padding-left: 0.7rem;
    text-align: center;
  }
  .lastest-injuries-and-bans-accordion-section .input-container {
    gap: 1rem;
  }
  .lastest-injuries-and-bans-accordion-section .input-container .last-update-date {
    margin-left: 0;
  }
  .main-content .single-news-card-content .single-news-card-content-footer {
    flex-direction: column;
    gap: 1rem;
  }
  .worlds-live-sportsbook-wrapper .worlds-live-sportsbook .second-col p, .worlds-live-sportsbook-wrapper .worlds-live-sportsbook .third-col .footer-text {
    text-align: center;
  }
  .pros-cons-tables {
    padding: 0;
    gap: 1.25rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 2rem;
    align-items: start;
    justify-content: center;
    padding-right: 0;
  }
  .footer-top .footer-column ul {
    margin-bottom: 0;
  }
  .footer-top .logo {
    order: 6;
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
    align-self: center;
    padding: 0;
  }
  .footer-top .footer-column:nth-child(3) {
    order: 5;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-top .footer-column:nth-child(3) ul.first-list li {
    margin-left: 0;
  }
  .footer-sec-menu {
    padding-top: 2.3rem;
  }
  .footer-sec-menu ul li {
    margin: 0;
  }
  .footer-sec-menu .footer-navigation ul {
    gap: 1rem;
    justify-content: center;
  }
  .footer-utility-row {
    gap: 8px 24px;
  }
  .footer-sec-menu .footer-logos {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1.6rem;
  }
  .footer-sec-menu .footer-logos ul {
    gap: 0.6rem;
  }
  .footer-sec-menu .copyright p {
    font-size: 0.93rem;
  }
}
@media (max-width: 991px) {
  .match-center-section .match-center-table .match-item .match-center-table-row {
    display: flex;
    flex-direction: column;
  }
  .match-center-section .match-center-table .stadion.active {
    width: 30rem;
    height: 52.5rem;
    margin: 0 auto 4rem auto;
    margin: auto auto;
    justify-content: center;
    flex-direction: column;
    background-image: url("../../img/stadion.png");
    background-size: cover;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left, .match-center-section .match-center-table .stadion.active .stadion-right {
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper, .match-center-section .match-center-table .stadion.active .stadion-left .defancers, .match-center-section .match-center-table .stadion.active .stadion-left .sec-mid-filder, .match-center-section .match-center-table .stadion.active .stadion-left .mid-filder, .match-center-section .match-center-table .stadion.active .stadion-left .atacker, .match-center-section .match-center-table .stadion.active .stadion-right .golkiper, .match-center-section .match-center-table .stadion.active .stadion-right .defancers, .match-center-section .match-center-table .stadion.active .stadion-right .sec-mid-filder, .match-center-section .match-center-table .stadion.active .stadion-right .mid-filder, .match-center-section .match-center-table .stadion.active .stadion-right .atacker {
    width: 100%;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper ul, .match-center-section .match-center-table .stadion.active .stadion-left .defancers ul, .match-center-section .match-center-table .stadion.active .stadion-left .sec-mid-filder ul, .match-center-section .match-center-table .stadion.active .stadion-left .mid-filder ul, .match-center-section .match-center-table .stadion.active .stadion-left .atacker ul, .match-center-section .match-center-table .stadion.active .stadion-right .golkiper ul, .match-center-section .match-center-table .stadion.active .stadion-right .defancers ul, .match-center-section .match-center-table .stadion.active .stadion-right .sec-mid-filder ul, .match-center-section .match-center-table .stadion.active .stadion-right .mid-filder ul, .match-center-section .match-center-table .stadion.active .stadion-right .atacker ul {
    flex-direction: row;
    height: fit-content;
    margin-bottom: 0;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper ul li, .match-center-section .match-center-table .stadion.active .stadion-left .defancers ul li, .match-center-section .match-center-table .stadion.active .stadion-left .sec-mid-filder ul li, .match-center-section .match-center-table .stadion.active .stadion-left .mid-filder ul li, .match-center-section .match-center-table .stadion.active .stadion-left .atacker ul li, .match-center-section .match-center-table .stadion.active .stadion-right .golkiper ul li, .match-center-section .match-center-table .stadion.active .stadion-right .defancers ul li, .match-center-section .match-center-table .stadion.active .stadion-right .sec-mid-filder ul li, .match-center-section .match-center-table .stadion.active .stadion-right .mid-filder ul li, .match-center-section .match-center-table .stadion.active .stadion-right .atacker ul li {
    flex-direction: column;
    height: fit-content;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper ul li #name, .match-center-section .match-center-table .stadion.active .stadion-left .defancers ul li #name, .match-center-section .match-center-table .stadion.active .stadion-left .sec-mid-filder ul li #name, .match-center-section .match-center-table .stadion.active .stadion-left .mid-filder ul li #name, .match-center-section .match-center-table .stadion.active .stadion-left .atacker ul li #name, .match-center-section .match-center-table .stadion.active .stadion-right .golkiper ul li #name, .match-center-section .match-center-table .stadion.active .stadion-right .defancers ul li #name, .match-center-section .match-center-table .stadion.active .stadion-right .sec-mid-filder ul li #name, .match-center-section .match-center-table .stadion.active .stadion-right .mid-filder ul li #name, .match-center-section .match-center-table .stadion.active .stadion-right .atacker ul li #name {
    display: block;
    border-radius: 1rem;
    padding: 0.5rem;
    margin-left: 0;
    text-align: center;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper ul li p, .match-center-section .match-center-table .stadion.active .stadion-left .defancers ul li p, .match-center-section .match-center-table .stadion.active .stadion-left .sec-mid-filder ul li p, .match-center-section .match-center-table .stadion.active .stadion-left .mid-filder ul li p, .match-center-section .match-center-table .stadion.active .stadion-left .atacker ul li p, .match-center-section .match-center-table .stadion.active .stadion-right .golkiper ul li p, .match-center-section .match-center-table .stadion.active .stadion-right .defancers ul li p, .match-center-section .match-center-table .stadion.active .stadion-right .sec-mid-filder ul li p, .match-center-section .match-center-table .stadion.active .stadion-right .mid-filder ul li p, .match-center-section .match-center-table .stadion.active .stadion-right .atacker ul li p {
    margin-left: 0;
    border-radius: 1rem;
    padding: 0.5rem;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper ul li #name, .match-center-section .match-center-table .stadion.active .stadion-right .golkiper ul li #name {
    margin-right: 0;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left {
    flex-direction: column;
    padding-top: 1.5rem;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper ul li, .match-center-section .match-center-table .stadion.active .stadion-left .defancers ul li, .match-center-section .match-center-table .stadion.active .stadion-left .sec-mid-filder ul li, .match-center-section .match-center-table .stadion.active .stadion-left .mid-filder ul li, .match-center-section .match-center-table .stadion.active .stadion-left .atacker ul li {
    justify-content: flex-end;
  }
  .match-center-section .match-center-table .stadion.active .stadion-right {
    flex-direction: column-reverse;
    padding-bottom: 1.5rem;
  }
  .footer-sec-menu .footer-logos {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: center;
  }
  .footer-sec-menu .footer-logos a[aria-label=GamCare], .footer-sec-menu .footer-logos a[aria-label="Be Gamble Aware"] {
    justify-self: end;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 3vw;
  }
  .right-column > article {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: max-content max-content;
  }
  .footer-top .logo {
    grid-column: span 2;
    margin-left: -12%;
  }
  .footer-top .footer-column:nth-child(3) {
    grid-column: span 2;
  }
  .footer-top .footer-column:nth-child(3) .list-title {
    margin-left: -9%;
  }
  .main-content .intro-content {
    flex-direction: column;
    gap: 2rem;
  }
  .main-content .intro-content .intro-content-left, .main-content .intro-content .best-ofs {
    width: 100%;
  }
  .main-content .head-2-head .nav-tabs {
    flex-direction: column;
  }
  .top-trends-premier-league-section .top-trends-card {
    margin: 0;
    padding-left: 0;
    padding-top: 1rem;
    gap: 2rem;
  }
  .top-trends-premier-league-section .top-trends-card .top-trends-card-right {
    padding-right: 0;
  }
  .top-trends-premier-league-section .top-trends-card .top-trends-card-right p {
    padding-left: 1rem;
  }
  .top-trends-premier-league-section .top-trends-card .top-trends-card-right .btn-green-border {
    margin: auto;
  }
  .latest-transfer .transfer-card .transfer-content {
    justify-content: center;
    padding: 0 2rem;
  }
  .latest-transfer .transfer-card .transfer-content .transfer-details {
    padding-top: 0;
  }
  .descriptive-cards-section .info-card .icon-container {
    width: 15%;
  }
  .descriptive-cards-section .info-card .info-content {
    padding-right: 0;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left .golkiper ul li #number, .match-center-section .match-center-table .stadion.active .stadion-left .defancers ul li #number, .match-center-section .match-center-table .stadion.active .stadion-left .sec-mid-filder ul li #number, .match-center-section .match-center-table .stadion.active .stadion-left .mid-filder ul li #number, .match-center-section .match-center-table .stadion.active .stadion-left .atacker ul li #number, .match-center-section .match-center-table .stadion.active .stadion-right .golkiper ul li #number, .match-center-section .match-center-table .stadion.active .stadion-right .defancers ul li #number, .match-center-section .match-center-table .stadion.active .stadion-right .sec-mid-filder ul li #number, .match-center-section .match-center-table .stadion.active .stadion-right .mid-filder ul li #number, .match-center-section .match-center-table .stadion.active .stadion-right .atacker ul li #number {
    width: 1.85rem;
    height: 1.85rem;
    max-width: 1.85rem;
    max-height: 1.85rem;
    min-width: 1.85rem;
    min-height: 1.85rem;
  }
  .bonus-card {
    flex-direction: column;
    align-items: center;
    margin: 6.5rem auto 3.9rem auto;
  }
  .bonus-card .bonus-card-img-container {
    margin: 0;
    background-size: 14rem;
    rotate: 90deg;
    margin-top: -5.5rem;
  }
  .bonus-card .bonus-card-img-container .bonus-card-img {
    left: 3.8rem;
    rotate: -90deg;
  }
  .bonus-card .bonus-card-center-content {
    width: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bonus-card .bonus-card-center-content > p {
    text-align: start;
  }
  .bonus-card .pay-cards {
    width: 100%;
    flex-direction: row;
    padding: 0.5rem 0;
    gap: 0;
    justify-content: space-evenly;
  }
  .betting-card .betting-card-content {
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 2rem;
  }
  .betting-card .betting-card-content .betting-card-first, .betting-card .betting-card-content .betting-card-sec, .betting-card .betting-card-content .betting-card-third, .betting-card .betting-card-content .betting-card-fourth {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .betting-card .betting-card-content .betting-card-sec {
    border: none;
  }
  .betting-card .betting-card-content .betting-card-fourth {
    display: block;
  }
  .betting-card .betting-card-content .betting-card-fourth .green-btn {
    margin-bottom: 1rem;
  }
  .betting-card .betting-card-content .betting-card-fourth .payment-card {
    margin-bottom: 2rem;
  }
  .betting-card .betting-card-hidden .features ul {
    flex-direction: column;
  }
  .betting-card .betting-card-hidden .betting-card-hidden-paymant-methods .pay-cards {
    padding-left: 1rem;
  }
  .betting-card .betting-card-hidden .betting-card-hidden-paymant-methods .pay-cards ul {
    width: auto;
  }
  .betting-card .betting-card-hidden .betting-card-hidden-paymant-methods .pay-cards p {
    text-align: start;
  }
  .betting-card .betting-card-hidden .features ul li {
    width: auto;
  }
  .betting-card .betting-card-hidden .editors-take {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .pros-cons-tables {
    flex-direction: column;
  }
  .top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden {
    right: auto;
    width: 17rem;
  }
  .top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden:after, .top-bookmakers-table .main .bookmaker-card .col-middle .terms-and-conditions .tooltip-hidden:before {
    left: 11%;
  }
  .sort-filter-container .last-update-date {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 2.8vw;
  }
  .worlds-live-sportsbook {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .worlds-live-sportsbook .second-col {
    border-left: none;
  }
  .latest-transfer .transfer-card {
    width: 100%;
  }
  .footer-sec-menu .footer-logos {
    display: flex;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
  .footer:before {
    width: 82%;
  }
  .footer .hook {
    left: 75%;
  }
  .match-center-section .match-center-table .stadion.active {
    width: 24rem;
    height: 42rem;
  }
  .match-center-section .match-center-table .stadion.active .stadion-left {
    padding-top: 0.5rem;
  }
  .match-center-section .match-center-table .stadion.active .stadion-right {
    padding-bottom: 0.5rem;
  }
  .lastest-injuries-and-bans-accordion-section .input-container {
    flex-direction: column;
  }
  .latest-transfer .transfer-card .transfer-header {
    padding: 1rem 0.7rem;
  }
  .latest-transfer .transfer-card .transfer-header .teams i {
    margin: 0 0.5rem;
  }
  .sort-filter-container p {
    width: 100%;
  }
}
@media (max-width: 436px) {
  .footer-sec-menu .footer-navigation ul {
    padding: 0 2.1rem;
  }
  .footer-utility-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-utility-label {
    margin-right: 0;
    margin-bottom: 2px;
  }
  .betting-card .betting-card-hidden .editors-take .editors-take-btns {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .latest-transfer .transfer-card .transfer-content .transfer-details .progress {
    width: 16rem;
  }
  #accordionFaq .accordion-button {
    padding-left: 1rem;
  }
  #accordionFaq .accordion-button h3 {
    padding-right: 1rem;
  }
  #accordionFaq .accordion-header span.plus-minus {
    margin-right: 0;
  }
}
#readMoreBtn {
  margin-top: 1.5rem;
}

#tocMoreContent {
  overflow: hidden;
  transition: height 0.4s ease;
}

/* Play button overlay for top videos */
.play-button-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	pointer-events: none;
}

.card-video .b-image {
	position: relative;
	overflow: hidden;
}

/* Hover effect for top videos card */
.card-video {
  transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.card-video:hover {
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  z-index: 2;
}
.card-video .b-image {
  transition: none;
}
.card-video:hover .b-image {
  transform: none;
}
.card-video .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), filter 0.28s, opacity 0.28s;
  will-change: transform, opacity;
  backface-visibility: hidden;
  opacity: 0.92;
}
.card-video:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.13);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
  opacity: 1;
}

/* Mobile responsive styles for play button overlay */
@media (max-width: 991px) {
  .play-button-overlay {
    /* Slightly larger base size for tablet */
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.95;
  }
  
  .card-video:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media (max-width: 767px) {
  .play-button-overlay {
    /* Larger base size for mobile */
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
    /* Remove pointer-events: none for mobile to allow touch interaction */
    pointer-events: auto;
  }
  
  .card-video:hover .play-button-overlay,
  .card-video:active .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.3);
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.2));
  }
  
  /* Make the entire card more touch-friendly */
  .card-video {
    transition: transform 0.2s ease;
  }
  
  .card-video:active {
    transform: scale(0.98);
  }
}

@media (max-width: 575px) {
  .play-button-overlay {
    /* Even larger for small mobile devices */
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  
  .card-video:hover .play-button-overlay,
  .card-video:active .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.4);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  }
}

@media (max-width: 436px) {
  .play-button-overlay {
    /* Maximum size for very small screens */
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
  }

  .card-video:hover .play-button-overlay,
  .card-video:active .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.5);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
  }
}

/*# sourceMappingURL=global-style.css.map */

/* ----------------------------------------------------------------
   Transfer Zone – widget footer CTA
   ---------------------------------------------------------------- */
.transfer-zone-section .widget-footer {
    margin-top: 0.5rem;
    text-align: right;
}

.transfer-zone-section .widget-footer .widget-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    font-size: 0.875rem;
    font-weight: 600;
    color: #149688;
    text-decoration: none;
    transition: color 0.2s ease;
}

.transfer-zone-section .widget-footer .widget-cta:hover {
    color: #0e7066;
    text-decoration: underline;
}

/* Soccer Betting Leagues dropdown */
.main-content-header .header-menu .sn-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}
.main-content-header .header-menu .sn-nav-item > a {
    display: inline;
}
.main-content-header .header-menu .sn-nav-item.active > a {
    font-weight: bold;
    color: #149688;
}
.main-content-header .header-menu .sn-nav-parent {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: uppercase;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.main-content-header .header-menu .sn-nav-item.active .sn-nav-parent {
    font-weight: bold;
    color: #149688;
}
.main-content-header .header-menu .sn-nav-panel {
    position: absolute;
    top: 1.3rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white-gray-light-bkg);
    box-shadow: 0 0 0.4375rem 0 rgba(0, 0, 0, 0.16);
    border-top: 0.052rem solid #149688;
    padding: 1rem;
    list-style: none;
    margin: 0;
    z-index: 9;
    min-width: 180px;
}
.main-content-header .header-menu .sn-nav-panel li {
    white-space: nowrap;
    margin-bottom: 0.2rem;
    font-size: 0.875rem;
}
.main-content-header .header-menu .sn-nav-panel li a {
    display: block;
    padding: 2px 0;
    text-transform: none;
}
.main-content-header .header-menu .sn-nav-panel li a:hover,
.main-content-header .header-menu .sn-nav-panel li a.active {
    color: #149688;
    font-weight: bold;
}

/* ============================================================
   POKER OPERATOR FILTER BAR
   ============================================================ */
.poker-operator-filter-bar {
    background: #f5f6f7;
    border: 1px solid #e3e6e8;
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 24px;
}
.poker-filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef0f1;
}
.poker-filter-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.poker-filter-row-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6c7378;
    font-weight: 600;
    min-width: 90px;
}
.poker-filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border: 0.5px solid #c8cbce;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 400;
    background: #fff;
    color: #6c7378;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.poker-filter-chip[aria-pressed="true"] {
    padding: 4px 14px;
    border-width: 1px;
    font-weight: 600;
    color: #fff;
}
.poker-filter-chip:hover {
    border-color: #149688;
    color: #0d7a70;
}
.poker-filter-chip[aria-pressed="true"] {
    background: #149688;
    border-color: #149688;
}
.poker-filter-chip[aria-pressed="true"]::after {
    content: '✓';
    margin-left: 6px;
    font-size: 11px;
}
.poker-filter-chip:focus-visible {
    outline: 2px solid #149688;
    outline-offset: 2px;
}
.poker-filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed #e3e6e8;
    margin-top: 4px;
}
.poker-filter-sort-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6c7378;
    font-weight: 600;
    white-space: nowrap;
}
.poker-sort-dropdown {
    padding: 6px 12px;
    border: 1px solid #e3e6e8;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    background: #fff;
    cursor: pointer;
    width: auto;
}
.poker-filter-reset {
    margin-left: auto;
    background: transparent;
    border: none;
    font-size: 13px;
    color: #0d7a70;
    cursor: pointer;
    text-decoration: underline;
    white-space: nowrap;
}
.poker-filter-reset:hover { color: #1a1d24; }
.poker-filter-reset[disabled] {
    color: #6c7378;
    cursor: default;
    text-decoration: none;
}

.poker-result-count {
    font-size: 13px;
    color: #6c7378;
    margin-bottom: 10px;
}
.poker-result-count strong {
    color: #1a1d24;
    font-weight: 600;
}
