:root {
  --vw: 1vw;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}

body, html {
  font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: #1e1e26;
  background-color: #f6f7fe;
  font-size: 16px;
  direction: ltr;
}

body {
  min-width: 320px;
  margin: 0;
}

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

::-webkit-input-placeholder {
  color: #666;
  opacity: 1
}

::-moz-placeholder {
  color: #666;
  opacity: 1
}

:-ms-input-placeholder {
  color: #666;
  opacity: 1
}

::-ms-input-placeholder {
  color: #666;
  opacity: 1
}

::placeholder {
  color: #666;
  opacity: 1
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none
}

::selection {
  background: #b3d4fc;
  text-shadow: none
}

::-webkit-input-placeholder {
  text-align: center;
}

:-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}

::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}

:-ms-input-placeholder {
  text-align: center;
}

article,
aside,
figcaption,
figure,
footer,
header,
nav,
event-section {
  display: block
}

h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 20px;
  font-weight: 700;
}

h2 {
  font-size: 20px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 700;
}

p {
  color: #1e1e26;
  margin-top: 0;
}

a {
  color: #1e1e26;
  text-decoration: none;
}

a,
a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

button,
input,
select,
textarea,
figure {
  outline: 0;
  border: none;
  margin: 0;
  padding: 0
}

img {
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

.btn,
button {}

.btn {
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.3;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

select::-ms-expand {
  display: none
}

textarea {
  resize: none
}

table {}

table th,
table td {}

table th {}

table th:last-child {}

table tr {}

table tr:first-child {}

table td {}

table td:last-child {}

dl {}

dt {}

dd {}

mark {
  background-color: transparent;
}







.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #f6f7fe;
  color: #1e1e26;
  max-width: 100vw;
  padding: 0 15px;
}

@media (min-width: 880px) {
  .header {}
}

.header-top {
  height: 50px;
  padding: 0;
  display: grid;
grid-template-columns: auto auto;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: min-content auto auto;
  grid-column-gap: 12px;
}

.header-top .header-logo {
  display: block;
}

@media (min-width: 1000px) {
  .header-top .header-logo {
    display: block;
  }
}

.header-logo-link {
  color: currentColor;
  display: block;
  line-height: 0;
}

.header-logo svg {
  width: 130px;
  height: 20px;
  fill: #1e1e26;
}

@media (min-width: 880px) {
  .header-logo svg {
    width: 140px;
    height: 20px;
  }
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: block;
    width: 100%;
  }
}

.main-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 0;
  margin-left: 10px;
}

.main-nav-item {

}

.main-nav-link {
  font-size: 16px;
  font-weight: 700;
  color: #1e1e26;
  padding: 10px 16px;
  display: inline-block;
  position: relative;
}

.main-nav-item:hover .main-nav-dropdown {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.2s linear;
}

.main-nav-dropdown {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s linear;
  left: 0;
  width: 100vw;
  padding: 36px;
  position: absolute;
  background-color: #f6f7fe;
  min-width: 160px;
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  margin-left: calc((100vw - 100%)/-2);
  margin-left: calc((var(--vw, 1vh)*100 - 100%)/-2);
  margin-right: calc((100vw - 100%)/-2);
  margin-right: calc((var(--vw, 1vh)*100 - 100%)/-2);
}

@media (min-width: 1260px) {
  .main-nav-dropdown {
    padding: 48px;
  }
}

.main-nav-dropdown-wrapper {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 36px;
}

@media (min-width: 1260px) {
  .main-nav-dropdown-wrapper {
    grid-gap: 48px;
  }
}

.main-nav-header {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 12px;
}

.main-nav-grid {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0 12px;
}

.main-nav-grid .main-nav-link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  color: #1e1e26;
  display: grid;
  grid-template-columns: 22px auto;
  row-gap: 6px;
  column-gap: 6px;
  -webkit-box-align: center;
  align-items: center;
}

.main-nav-grid-box{
  grid-gap: 12px;
}

.main-nav-grid-box .main-nav-link {
  padding: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}

.main-nav-grid-box .nav-link-image{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.main-nav-grid-box .nav-link-title {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 12px;
  width: 100%;
  font-size: 14px;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.header-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #dfdfe5;
  border-bottom: 1px solid #dfdfe5;
}

.sub-nav {
  white-space: nowrap;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 1px;
  overflow-x: scroll;
  display: flex;
  width: 100%;
}

.sub-nav::-webkit-scrollbar {
  display: none;
}

.sub-nav-list {
  align-items: center;
  width: 100%;
}

.sub-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-nav-item {
  white-space: nowrap;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media (min-width: 576px) {
  .sub-nav-item {}
}

@media (min-width: 1000px) {
  .sub-nav-item {}
}

@media (min-width: 1260px) {
  .sub-nav-item {}
}

.sub-nav-item.is-active {}

.sub-nav-item.is-active:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 33px;
  border-bottom: 2px solid #12c147;
  opacity: 1;
}

.sub-nav-link {
  font-size: 14px;
  padding: 6px 16px;
  color: #1D1D25;
}

.nav-link-image {
  width: 22px;
  height: 22px;
}

.nav-link-title {

}

.user-component {
  display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-justify-content: flex-end;
justify-content: flex-end;
  gap: 6px;
}

@media (min-width: 1024px) {
  .user-component {
    gap: 12px;
    width: auto;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    height: 30px;
    width: 30px;
    cursor: pointer;
    z-index: 101;
    align-items: center;
    justify-content: center;
  }
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #1e1e26;
  width: 24px;
  position: relative;
}

.hamburger span:before,
.hamburger span:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1e26;
}

.hamburger span:before {
  top: -6px;
}

.hamburger span:after {
  top: 6px;
}

.hamburger.active span {
  background-color: transparent;
}

.hamburger.active span:before {
  transform: rotate(45deg);
  top: 0px;
}

.hamburger.active span:after {
  transform: rotate(-45deg);
  top: 0px;
}

.header-profile{
  display: none;
}

.header-profile-button{
background-color: #ecedf6;
color: #1e1e26;
height: 36px;
width: 36px;
border-radius: 4px;
display: block;
}


.header-odds {
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .header-odds {
    font-size: 14px;
  }
}

.header-odds-button {
  position: relative;
  width: 40px;
  height: 24px;
  border-radius: 500px;
  border: 2px solid #f6f7fe;
  background-color: #818188;
  cursor: pointer;
  appearance: none;
}

.header-odds-button.active{
  background-color: #13c147;
}

.header-odds-button::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: #f6f7fe;
  border-radius: 50%;
  transform: translateY(-50%);
}

.header-odds-button.active::before {
  left: auto;
  right: 2px;
}

.odds-switch .odds-fraction {
  display: block;
}

.odds-switch .odds-desimal {
  display: none;
}

.odds-fraction {
  display: none;
}

.odds-desimal {
  display: block;
}

.header-languages {
  position: relative;
  display: inline-block;
}

.header-languages-button {
  background-color: #ecedf6;
  color: #1e1e26;
  padding: 6px 12px;
  min-width: 70px;
  height: 36px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

@media (min-width: 880px) {
  .header-languages-button {
    padding: 8px 16px;
    min-width: 80px;
    font-size: 14px;
  }
}

.header-languages-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
}

.header-languages-button:hover,
.header-languages-button:focus {
  color: #1e1e26;
}

.header-languages-content {
  display: none;
  position: absolute;
  background-color: #f6f7fe;
  min-width: 200px;
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  right: 0;
}

.header-languages-content.active {
  display: block;
}

.header-languages-link {
  color: #1e1e26;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid #dfdfe5;
  display: grid;
grid-template-columns: 22px auto;
row-gap: 6px;
column-gap: 6px;
-webkit-box-align: center;
align-items: center;
}

.header-languages-link:hover {}







.mobile-nav {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  padding: 12px 15px 15px 15px;
}

@media (min-width: 644px) {
  .mobile-nav {
    padding: 0 24px 24px 24px;
  }
}

@media (min-width: 844px) {
  .mobile-nav {
    padding: 0 36px 36px 36px;
  }
}

@media (max-width: 1024px) {
  .mobile-nav {
    position: fixed;
    width: 100%;
    height: calc(100% - 80px);
    background-color: #f6f7fe;
    left: 0;
    top: 62px;
    overflow: hidden;
    transform: translateY(0px);
    transition: all 0.0s ease;
    visibility: hidden;
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .mobile-nav.active {
    z-index: 1000;
    overflow-y: scroll;
    transform: translateY(20px);
    visibility: visible;
    opacity: 1;
    transition-duration: 0.7s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-behavior: normal;
    transition-property: all;
    animation-duration: 0.3s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    animation-play-state: running;
    animation-name: fadein;
  }
}

.mobile-nav-go-back {
  height: 50px;
  align-items: center;
  position: relative;
  z-index: 501;
  background-color: #f6f7fe;
  top: 0;
  cursor: pointer;
  line-height: 50px;
  color: #1e1e26;
  display: none;
}

.mobile-nav-go-back.active {
  display: flex;
  align-items: center;
}

.mobile-nav-go-back .mobile-nav-arrow {
  transform: rotate(90deg);
}

.mobile-nav-current {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #1e1e26;
}

.mobile-nav-list {
  background-color: #f6f7fe;
  margin: 0;
  padding: 0;
  position: relative;
  margin-bottom: 24px;
}

.mobile-nav-list.active {
  height: 100%;
}

.mobile-nav-list.active .mobile-nav-text {
  transform: translateY(-20px);
  transition: all 0.0s ease;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}

.mobile-nav-list.inactive .mobile-nav-text {
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
  transition-duration: 0.7s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
  transition-property: all;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: fadein;
}

.mobile-nav-item {
  margin: 0;
  display: block;
  height: 50px;
}

.mobile-nav-text {
  font-size: 24px;
  line-height: 50px;
  font-weight: 700;
  height: 50px;
  display: block;
  color: #1e1e26;
  position: absolute;
  width: 100%;
  cursor: pointer;
}

.mobile-nav-text i {
  width: 24px;
  height: 50px;
}

.mobile-nav-text i:before {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI0LjAuMiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojMUUxRTI2O30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEwLDZMOC42LDcuNGw0LjYsNC42bC00LjYsNC42TDEwLDE4bDYtNkwxMCw2eiIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: 24px;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 14px;
}

.mobile-nav-fadein {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0; /* Высота 0, чтобы не мешать другим элементам */
  overflow: hidden; /* Прячем содержимое */
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  background-color: #f6f7fe;
  transition: opacity 0.7s ease, transform 0.7s ease, height 0s linear 0.7s;
}

.mobile-nav-fadein.active {
  z-index: 101;
  height: auto; /* Включаем контент */
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, height 0s linear 0s;
}

.mobile-nav-header {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 12px;
}

.mobile-nav-grid {
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0 12px;
}

@media (min-width:320px) {
  .mobile-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width:474px) {
  .mobile-nav-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width:644px) {
  .mobile-nav-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 36px;
  }
}

.mobile-nav-link {
  padding: 12px 0;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1e1e26;
  display: grid;
  grid-template-columns: 22px auto;
  row-gap: 6px;
  column-gap: 6px;
  -webkit-box-align: center;
  align-items: center;
}

.mobile-nav-grid-box{
  grid-gap: 12px;
}

.mobile-nav-grid-box .mobile-nav-link {
  padding: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
}

.mobile-nav-grid-box .nav-link-image{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.mobile-nav-grid-box .nav-link-title {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 12px;
  width: 100%;
  font-size: 14px;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

@media (max-width: 1024px) {
  .mobile-nav-overlay {
    position: fixed;
    background-color: #f6f7fe;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.0s ease;
  }
}

@media (max-width: 1024px) {
  .mobile-nav-overlay.active {
    z-index: 98;
    visibility: visible;
    opacity: 1;
  }
}







.main-content {
  padding: 80px 15px 0 15px;
}

@media (min-width: 880px) {
  .main-content {}
}







.content-wrapper {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.left-content-area {
  max-width: 100%;
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width:1024px) {
  .left-content-area {
    max-width: 65%;
    width: 65%;
  }
}

.right-content-area {
  max-width: 100%;
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
}

@media (min-width:1024px) {
  .right-content-area {

  }
}

@media (min-width:1024px) {
  .right-content-area {
    max-width: 35%;
    flex: 0 0 35%;
    padding: 0 0 0 2rem;
    position: relative;
  }
}

.full-content-area{
  width: 100%;
}







.odds-strip-carousel {
  width: 100%;
  border-top: 1px solid #dfdfe5;
  border-bottom: 1px solid #dfdfe5;
  flex-grow: 0;
flex-shrink: 1;
flex-basis: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: hidden;
position: relative;
}

.odds-strip-no-games{
  height: 130px;
  padding: 56px 0;
  margin: 0 auto;
  color: #818188;
  font-size: 14px;
}

.carousel-button-prev{
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 24px 0px;
  background-color: #f6f7fe;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0px;
top: 50%;
transform: translateY(-50%);
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
cursor: pointer;
z-index: 3;
opacity: 0.8;
}

.carousel-button-next{
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 24px 0px;
  background-color: #f6f7fe;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0px;
top: 50%;
transform: translateY(-50%);
display: flex;
-webkit-box-pack: center;
justify-content: center;
-webkit-box-align: center;
align-items: center;
cursor: pointer;
z-index: 3;
opacity: 0.8;
}

.carousel-inner {
  display: flex;
  row-gap: 0px;
  column-gap: 0px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Убираем полосу прокрутки в Firefox */
}

.carousel-inner::-webkit-scrollbar {
  display: none; /* Убираем полосу прокрутки в Chrome и Safari */
}

.carousel-item {
  flex: 0 0 auto;
  min-width: 100%;; /* Убедитесь, что у элементов фиксированная ширина */
  scroll-snap-align: start;
  scroll-snap-align: start;
  border-right: 1px solid #dfdfe5;
  padding: 12px 36px;
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (min-width: 530px) {
  .carousel-item {
    min-width: 50%;
    padding: 12px 24px;
  }
}

@media (min-width: 780px) {
  .carousel-item {
    min-width: 33.3%;
  }
}

@media (min-width: 1280px) {
  .carousel-item {
    min-width: 25%;
  }
}

.carousel-item:first-child {
  border-left: 1px solid #dfdfe5;
}

.game-card {

}

.game-odds-and-score {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
}

.game-card .game-odds-teams {
  width: 100%;
  margin-right: 12px;
  cursor: pointer;
}







.game-odds-teams {
  display: grid;
  grid-template-rows: auto;
  row-gap: 6px;
  column-gap: 6px;
  grid-gap: 6px;
}

.game-odds-team {
  height: 40px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.game-odds-team-placeholder {
  height: 24px;
  width: 24px;
  min-width: 24px;
  margin-right: 6px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.game-odds-team-placeholder-icon {
  height: 24px;
}

.game-odds-team-name {
  font-size: 14px;
  line-height: 20px;
  color: #1e1e26;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.game-odds-team-name-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .game-odds-team-name-desktop {
    display: block;
  }
}

.game-odds-team-name-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .game-odds-team-name-mobile {
    display: none;
  }
}

.game-info {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
}

.game-status {
  font-size: 12px;
  line-height: 14px;
  color: #818188;
  white-space: nowrap;
}

.game-status span {
  color: #12c147;
  font-size: 12px;
  font-weight: 400;
  background-color: #e1f1e8;
  padding: 0 4px;
  margin-left: 4px;
  display: none;
}

.game-odds-buttons {
  display: grid;
  row-gap: 6px;
  column-gap: 6px;
  position: relative;
}







.odds-button {
  display: flex;
  min-width: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #1e1e26;
  width: 76px;
  height: 40px;
  padding: 6px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: rgb(164, 164, 170) 0px 2px 4px;
  margin: auto;
}

@media (min-width: 425px) {
  .odds-button {
    width: 80px;
  }
}

.odds-button:hover {
  box-shadow: 0 2px 4px rgb(202, 202, 209);
}

.odds-button-price {
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  color: #1e1e26;
}

.odds-button-bookie {
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
}

.odds-button-handicap {
  font-size: 10px;
  color: #818188;
  font-weight: 500;
  line-height: 10px;
}

.odds-button_not-available{
  background-color: #ecedf6;
  cursor: default;
  color: #818188;
  box-shadow: 0 2px 4px rgb(202, 202, 209);
}

.odds-button_not-available .odds-button-bookie,
.odds-button_not-available .odds-button-handicap{
  display: none;
}

.odds-button_empty{
box-shadow: none;
border: 1px solid #dfdfe5;
cursor: default;
display: none;
}

.odds-button_empty:hover{
box-shadow: none;
}







.breadcrumbs{
padding-top: 15px;
}

.breadcrumbs ol {
padding: 0;
margin: 0;
}

.breadcrumbs li {
list-style: none;
font-family: -apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol';
font-size: 14px;
font-weight: 700;
line-height: 18px;
color: #818188;
display: inline;
}

.breadcrumbs a {
color: inherit;
-webkit-text-decoration: none;
text-decoration: none;
-webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out;
transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out;
}

.breadcrumbs li:after {
content: '/';
margin: 0 6px;
}

.breadcrumbs li:last-child {
color: #1e1e26;
}

.breadcrumbs li:last-child:after {
content: '';
margin: 0;
}







.headline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #1e1e26;
  scroll-snap-align: start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.headline-text {

}

.headline h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  margin-right: 0;
}







.section{
  margin-bottom: 40px;
}

.section-headline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #1e1e26;
  scroll-snap-align: start;
  padding-top: 14px;
  padding-bottom: 14px;
}

.section-headline-text {

}

.section-headline h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  margin-right: 0;
}

.section-headline h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.section-headline h3{
  font-size: 18px;
  line-height: 22px;
}

.section-headline h4{
  font-size: 16px;
  line-height: 20px;
}

.section-headline-link {
  margin-left: 24px;
  align-items: center;
  font-size: 14px;
  color: #0178f6;
  line-height: 24px;
  white-space: nowrap;
}

.section-bottom-link {
  text-align: center;
  font-size: 14px;
  color: #0178f6;
  display: block;
  white-space: nowrap;
  margin-top: 6px;
}

.section-headline-dropdown{
  width: 150px;
  position: relative;
}

.section-headline-dropdown::before {
width: 24px;
height: 24px;
margin-left: auto;
background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSIjQTRBNEFBIiBzdHJva2U9IiNBNEE0QUEiIHN0cm9rZS13aWR0aD0iMCI+PHBhdGggZD0iTTEwIDZMOC41OSA3LjQxIDEzLjE3IDEybC00LjU4IDQuNTlMMTAgMThsNi02eiI+PC9wYXRoPjwvc3ZnPg==");
background-repeat: no-repeat;
background-size: 24px;
content: "";
position: absolute;
top: 8px;
right: 6px;
transform: rotate(90deg);
}

.section-headline-dropdown select{
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  margin: 0;
  background-color: transparent;
  text-transform: capitalize;
  letter-spacing: .2px;
  color: #1d1d25;
  padding: 10px 28px 10px 12px;
  width: 100%;
  height: 100%;
  border: 1px solid #dfdfe5;
  border-radius: 4px;
  outline: none;
  text-indent: 0;
  position: relative;
}







.section-odds-strip{
  margin-bottom: 0;
  display: none;
}

.section-odds-strip .section-headline {
  padding: 6px 0;
}







.nav-dropdown{
  position: relative;
  margin-bottom: 12px;
}

.nav-dropdown::before {
  width: 24px;
  height: 24px;
  margin-left: auto;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsPSIjQTRBNEFBIiBzdHJva2U9IiNBNEE0QUEiIHN0cm9rZS13aWR0aD0iMCI+PHBhdGggZD0iTTEwIDZMOC41OSA3LjQxIDEzLjE3IDEybC00LjU4IDQuNTlMMTAgMThsNi02eiI+PC9wYXRoPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 24px;
  content: "";
  position: absolute;
  top: 8px;
  right: 6px;
  transform: rotate(90deg);
}

.nav-dropdown select{
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  margin: 0;
  background-color: transparent;
  text-transform: capitalize;
  letter-spacing: .2px;
  color: #1d1d25;
  padding: 10px 28px 10px 12px;
  width: 100%;
  height: 100%;
  border: 1px solid #dfdfe5;
  border-radius: 4px;
  outline: none;
  text-indent: 0;
  position: relative;
}

.nav-date{
  width: 100%;
border: 1px solid #dfdfe5;
border-radius: 4px;
max-width: inherit;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-bottom: 12px;
-webkit-flex-basis: 40%;
-ms-flex-preferred-size: 40%;
flex-basis: 40%;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
justify-content: space-between;
align-items: center;
text-align: center;
}

.nav-date-display{
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #1d1d25;
}

.nav-date-button-prev,
.nav-date-button-next{
  padding: 6px;
  display: inline-block;
  text-align: center;
  background: transparent;
  background-origin: border-box;
  color: #1D1D25;
  font-size: 0.875rem;
  font-weight: 800;
  cursor: pointer;
  width: auto;
}

.nav-date-button-prev svg,
.nav-date-button-next svg{
height: auto;
vertical-align: middle;
border-style: none;
}







.best-odds-table {
  overflow-x: scroll;
  margin-bottom: 24px;
}

.game-odds-table {
  overflow-x: scroll;
}

.best-odds-table table,
.game-odds-table table {
  width: 100%;
  display: table;
  position: relative;
  white-space: nowrap;
  border-spacing: 0;
}

.best-odds-table th,
.game-odds-table th {
  font-size: 12px;
  font-weight: 500;
  color: #818188;
  top: 0px;
  padding: 8px 6px;
  background: #f6f7fe;
  border-top: 1px solid rgba(164, 164, 170, 0.3);
  border-bottom: 1px solid rgba(164, 164, 170, 0.3);
  white-space: nowrap;
}

.best-odds-table th:first-of-type,
.best-odds-table td:first-of-type {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  text-align: left;
  background: #F7F8FD;
  z-index: 3;
}

.best-odds-table th:not(:first-of-type),
.best-odds-table td:not(:first-of-type) {
  width: 112px;
}

.game-odds-table th:first-of-type,
.game-odds-table td:first-of-type {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  text-align: left;
  background: #F7F8FD;
  z-index: 3;
}

.game-odds-table th:not(:first-of-type),
.game-odds-table td:not(:first-of-type) {
  width: 25%;
}

.best-odds-table .game-odds-teams,
.game-odds-table .game-odds-teams {
  width: 80px;
  display: grid;
  grid-template-rows: auto;
  grid-gap: 6px;
  column-gap: 6px;
}

@media (min-width: 992px) {
  .best-odds-table .game-odds-teams,
  .game-odds-table .game-odds-teams {
    width: 200px;
  }
}

.best-odds-table .game-odds-buttons,
.game-odds-table .game-odds-buttons {
  margin: 6px;
}

.best-odds-table .game-status {
  font-size: 12px;
  color: #818188;
  margin-bottom: 12px;
  left: 0;
  z-index: 2;
  white-space: normal;
  overflow-wrap: break-word;
}







.tips-grid {

}

@media (min-width: 992px) {
  .tips-grid {}
}

.tip {
  color: #1e1e26;
  position: relative;
}

.tip+.tip {
margin-top: 36px;
}

.tip-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tip-author {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: flex;
}

.tip-author-img {
  width: 32px;
  height: 32px;
  position: relative;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.tip-author-link {
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.tip-author-url {
  font-size: 12px;
  color: #818188;
}

.tip-follow {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.tip-selections {
}

.tip-selection+.tip-selection{
margin-top: 12px;
}

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

.tip-event {
  margin-top: 4px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
}

.tip-event-details {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
 font-size: 12px;
   color: #818188;
}

.tip-event-team-name-desktop {
  display: none;
}

@media (min-width: 1024px){
  .tip-event-team-name-desktop {
display: inline-block;
}
}

.tip-event-team-name-mobile {
  display: inline-block;
}

@media (min-width: 1024px){
  .tip-event-team-name-mobile {
display: none;
}
}

.tip-event-team-placeholder{
  margin: 0 3px;
}

.tip-event-team-placeholder-icon {
  width: 16px;
  height: 16px;
}

.tip-event-date {
  margin-left: 12px;
  font-size: 12px;
  color: #818188;
}

.tip-reason {
  margin-top: 6px;
}

.tip-reason p {
  color: #818188;
  font-size: 12px;
  line-height: 14px;
  margin: 0;
}

.tip-link {
  margin-left: 2px;
  color: #0178f6;
}

.tip-bet {
  margin-top: 6px;
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  gap: 12px;
}

.tip-bet div {
}

.tip-returns{
  color: #818188; 
  font-size: 12px; 
  margin-top: 4px;
}

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

.tip-button {
  display: flex;
  min-width: 95px;
  height: 38px;
  justify-content: center;
  align-items: center;
  color: #1e1e26;
  padding: 10px 12px;
  border-radius: 50px;
  margin-right: 2px;
  position: relative;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0px 2px 4px rgb(164, 164, 170);
  white-space: nowrap;
  text-decoration: none; /* Убрано подчеркивание у ссылки */
}

.tip-button:hover {
  box-shadow: 0 2px 4px rgb(202, 202, 209);
}

.tip-button-cta {
  font-size: 14px;
  font-weight: 700;
}

.tip-button-bookie {
  z-index: 1;
  margin-left: 4px;
}







.article-analysis {
  position: relative;
  height: auto;
  display: block;
  overflow: visible;
}

.article-analysis-img {
  display: block;
  width: 100%;
  border-radius: 15px;
}

.article-analysis-content {
  padding: 0;
  margin-top: 12px;
  overflow: visible;
}

.article-analysis-category {
  line-height: 12px;
  margin-bottom: 5px;
}

.article-analysis-category .category-link {
  font-size: 12px;
  font-weight: 600;
  color: #818188;
}

.article-analysis-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 18px;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.article-analysis-date {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #818188;
  white-space: nowrap;
}

.article-analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
  position: relative;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 520px) {
  .article-analysis-grid {
    width: 490px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 770px) {
  .article-analysis-grid {
    width: 744px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .article-analysis-grid {
    width: 492px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1170px) {
  .article-analysis-grid {
    width: 744px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.article-analysis-grid .article-analysis {
  width: 240px;
}

.article-analysis-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
}

.article-analysis-list .article-analysis {
  color: #1e1e26;
  display: flex;
  height: 90px;
  flex-direction: row;
  text-decoration: none;
  position: relative;
  border-radius: 8px;
}

.article-analysis-list .article-analysis-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  width: 100px;
  min-width: 100px;
}

.article-analysis-list .article-analysis-content {
  display: flex;
  flex-grow: 99;
  flex-direction: column;
  padding: 0 0 0 12px;
  margin-top: 0;
}

.article-analysis-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1px;
  padding-top: 2px;
  row-gap: 0px;
  column-gap: 12px;
  width: 100%;
}

.article-analysis-carousel .article-analysis {
  min-width: 240px;
  width: 240px;
  scroll-snap-align: start;
}

.article-analysis-featured {
  position: relative;
}

.article-analysis-featured .article-analysis-category {
  margin-bottom: 8px;
}

.article-analysis-featured .article-analysis-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  max-height: none;
  margin-bottom: 0;
}

.article-analysis-featured .article-analysis-date {
  display: none;
}

.article-analysis-stories {
  display: grid;
  grid-gap: 12px;
  position: relative;
  grid-template-columns: 1fr;
}

@media (min-width: 620px) {
  .article-analysis-stories {
    grid-template-columns: 1fr 1fr;
  }
}

.article-analysis-stories .article-analysis {
  color: #1e1e26;
  display: flex;
  height: 90px;
  flex-direction: row;
  text-decoration: none;
  position: relative;
  border-radius: 8px;
}

.article-analysis-stories .article-analysis-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  width: 100px;
  min-width: 100px;
  object-fit: cover;
}

.article-analysis-stories .article-analysis-content {
  display: flex;
  flex-grow: 99;
  flex-direction: column;
  padding: 0 0 0 12px;
  margin-top: 0;
}

.article-analysis-related {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
  margin: 24px 0;
}

.article-analysis-related .article-analysis {
  color: #1e1e26;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.article-analysis-related .article-analysis-img {
  display: block;
  width: 140px;
  border-radius: 15px;
}

@media (min-width: 570px) {
  .article-analysis-related .article-analysis-img {
    width: 200px;
  }
}

.article-analysis-related .article-analysis-content {
  display: flex;
  flex-grow: 99;
  flex-direction: column;
  padding: 0 0 0 12px;
  margin-top: 0;
}







.pagination {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 12px;
  -webkit-box-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.pagination a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1D1D25;
  line-height: 1;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
}

.pagination .active {
  background: #ecedf6;
  font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 18px;
  line-height: 1;
  padding: 12px;
  border-radius: 50%;
}







.article-actions{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.article-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}

.article-date-updated {
  font-weight: 700;
  margin-right: 4px;
}

.article-date-time {
  color: #818188;
}

.article-bookmarks{
cursor: pointer;
font-size: 12px;
border: 1px solid #dfdfe5;
padding: 6px;
border-radius: 4px;
display: flex;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 6px;
}

.bookmarked svg{
  fill: #848484;
}

.article-image {
  margin-bottom: 12px;
}

.article-image figure {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.article-image-img {
  width: 100%;
  height: auto;
}

.article-image-caption {
  font-size: 10px;
  color: #818188;
  margin-top: 2px;
  margin-bottom: 6px;
}

.article-author-follow {
  display: flex;
  justify-content: space-between;
  margin: 12px auto;
}

.article-author {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: flex;
}

.article-author-img {
  width: 40px;
  height: 40px;
  position: relative;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.article-author-content {}

.article-author-title {}

.article-author-link {
  font-size: 14px;
  font-weight: 700;
}

.article-author-url {
  font-size: 12px;
  color: #818188;
}

.article-follow {
  display: flex;
-webkit-box-align: center;
align-items: center;
}

.follow-button{
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 400;
  color: #0178f6;
  border: 1px solid #0178f6;
}

.following {
}







.article-content {
}

.article-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 14px 0;
  line-height: 24px;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 14px 0;
  line-height: 22px;
}

.article-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px 0;
  line-height: 22px;
}

.article-content p {
  margin: 0 0 14px 0;
  line-height: 22px;
}

.article-content a {
  color: #0178f6;
}

.article-content ul,
.article-content ol {
  margin: 14px 0 14px 0;
  padding: 0 0 0 24px;
}

.article-content li {
  margin: 12px 0 12px 0;
  line-height: 22px;
}

.article-content table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #dfdfe5;
  margin-bottom: 14px;
}

.article-content table th {
  height: 52px;
  text-align: center;
  padding: 6px;
  font-weight: 700;
}

.article-content table td {
  border-top: 1px solid #dfdfe5;
  height: 52px;
  text-align: center;
  padding: 6px;
}

.article-content table a {
  color: #0178f6;
}

.article-content blockquote {
  box-sizing: border-box;
  margin: 28px 0;
  padding: 0 0 0 28px;
  border-left: #818188 2px solid;
  font-style: italic;
}

.article-content .offers-grid {
  margin-bottom: 24px;
}

.article-title {
  margin: 24px 0 14px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.article-title+.article-title{
  margin: 14px 0 14px 0;
}

.article-title h2,
.article-title h3,
.article-title h4{
  margin: 0;
}

.article-title p{
  color: #818188;
  margin: 0;
  font-size: 16px;
  line-height: 22px;
}

.article-title-logos{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 6px;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-title-logo {
  width: 36px;
}

.article-title-bookie {
  height: 24px;
}

.article-title-secondary {
  margin: 14px 0 14px 0;
}

.article-title-secondary .article-title-logo{
  width: 24px;
}

.article-game-matchup {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid #dfdfe5;
  margin-bottom: 12px;
}

.article-game-matchup-team {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.article-game-matchup-team-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
}

.article-game-matchup-team-logo {
  width: 60px;
}

.article-game-matchup-center {
  border-left: 1px solid #dfdfe5;
  border-right: 1px solid #dfdfe5;
  display: grid;
  justify-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.article-game-matchup-center div {
  font-weight: 700;
  width: 100%;
  padding: 2px 2px;
  text-align: center;
}

.article-gallery {
  margin: 24px 0;
}

.article-gallery figure {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.article-gallery-img {
  width: 100%;
  height: auto;
}

.article-gallery-caption {
  font-size: 10px;
  color: #818188;
  margin-top: 2px;
  margin-bottom: 6px;
}

.article-missing-game {
  border: 1px solid #dfdfe5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px;
  margin-bottom: 12px;
}

.article-missing-game p {
  font-weight: 700;
}

.article-missing-game a {
  color: #fff;
}

.article-missing-game-link {
  text-align: center;
  border-radius: 4px;
  border: 1px solid transparent;
  background: #12c147;
  background-origin: border-box;
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: auto;
}

/*
.article-bet {
  border: 1px solid #dfdfe5;
  padding: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.article-bet-text {
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article-bet-image {

}
*/







.teams-section {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 24px 12px;
  -webkit-box-align: center;
  align-items: center;
}

@media (max-width: 700px) {
  .teams-section {
    flex-direction: column;
    -webkit-box-align: start;
    align-items: start;
  }
}

@media (max-width: 700px) {
  .teams-section-team {
    margin-bottom: 12px;
  }
}

@media (max-width: 700px) {
  .teams-section-team.team-right {
    margin-bottom: 0;
  }
}

@media (min-width: 700px) {
  .teams-section-team {
    width: 50%;
  }
}

.teams-section-team.team-right .teams-section-link {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

@media (max-width: 700px) {
  .teams-section-team.team-right .teams-section-link {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row-reverse;
    text-align: left;
  }
}

.teams-section-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-direction: initial;
  text-align: initial;
}

.teams-section-logo {
  width: 48px;
  height: 48px;
  margin: 0px;
}

.teams-section-name {
  font-size: 16px;
  font-weight: 700;
  padding: 6px 12px;
}

.teams-section-score {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .teams-section-score {
    display: none;
  }
}







.page-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.page-navigation-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: calc(100vw - (2 * 12px));
  overflow-x: auto;
}

.page-navigation-item {
  white-space: nowrap;
}

.page-navigation-link {
  padding: 4px 8px;
  font-size: 14px;
  color: #0178f6;
  display: block;
  text-align: center;
  cursor: pointer;
}

.active .page-navigation-link {
  color: #1e1e26;
}







.next-game {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

@media (min-width: 620px){
.next-game {
  padding: 12px;
}
}

.next-game-odds-team {
  width: 50%;
}

.next-game-odds-team.team-right .next-game-link {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.next-game-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-direction: initial;
  text-align: initial;
}

.next-game-logo {
  width: 48px;
  height: 48px;
  margin: 0px;
}

.next-game-name {
  font-size: 16px;
  font-weight: 700;
  padding: 6px 12px;
}

.next-game-score {
  color: #818188;
  font-size: 14px;
  font-weight: 700;
}







.offers-grid {
}

.offer {
  border: 1px solid #dfdfe5;
  padding: 12px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  column-gap: 12px;
}

.offer:hover {
  
}

.offer+.offer {
  margin-top: 10px;
}

.offer-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 250px;
  column-gap: 12px;
}

.offer-bookie-logo {
  left: 12px;
  height: 35px;
  width: 35px;
  z-index: 1;
}

.offer-head {}

.offer-bookie-name {
  font-size: 12px;
  color: #818188;
  font-weight: 700;
}

.offer-cta {
  color: #1e1e26;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.offer-terms {
  font-size: 8px;
  line-height: 12px;
  font-weight: 400;
  color: #818188;
}

.offer-buttons {
  width: 100%;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 250px;
  justify-content: space-between;
  row-gap: ;
  column-gap: 12px;
}

.offer-bonus {
  border-radius: 4px;
  text-align: center;
  padding: 4px;
  height: 40px;
  width: 50%;
  background-color: #ecedf6;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.offer-bonus::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
}

.offer-bonus.active {
  background-color: #e6eee9;
}

.offer-bonus .copy-to,
.offer-bonus.active .copied {
  display: block;
}

.offer-bonus .copied,
.offer-bonus.active .copy-to {
  display: none;
}

.offer-bonus-code {
  color: #1e1e26;
  font-size: 14px;
  font-weight: 700;
}

.offer-bonus-code.no-code {
  font-size: 14px;
  font-weight: 700;
  color: #818188;
}

.offer-bonus-text {
  font-size: 10px;
  color: #818188;
}

.offer-button {
  color: #f6f7fe;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 4px;
  width: 50%;
  background-color: #12c147;
  border-radius: 4px;
  text-align: center;
  line-height: 14px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.offer-button:hover{
background-color: #15cf4d;
}






.section-banner{
  margin-bottom: 0;
}

.banner {
  display: block;
  color: #ffffff;
  box-sizing: border-box;
  min-height: 82px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 12px;
  padding: 8px;
  display: grid;
  gap: 6px;
  grid-template-columns: 35px 1fr 100px;
  grid-template-areas:
    "logo cta bonus"
    "terms terms terms";
  background: 
    radial-gradient(100% 100% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(90deg, #00000022 0%, #00000000 30%),
    linear-gradient(270deg, #00000011 0%, #00000000 30%);
  margin-top: 10px;
  margin-bottom: 0;
}

.banner-logo {
  grid-area: logo;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  align-self: center;
}

.banner-cta {
  grid-area: cta;
  display: flex;
  flex-direction: column;
  align-self: center;
  font-weight: 800;
  font-size: 14px;
}

.banner-terms {
  grid-area: terms;
  background-color: #ffffff33;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 8px;
  line-height: 11px;
}

.banner-bonus {
  grid-area: bonus;
  flex: 0 1 100px;
  border-radius: 4px;
  background-color: #ffffff33;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  color: #ffffff;
}

.banner-bonus:hover {
  background-color: #ffffff55;
}

.bonus-code {
  font-size: 14px;
  font-weight: 800;
}

.bonus-text {
  font-size: 9px;
  font-weight: 800;
}

@media (min-width: 576px) {
  .banner {
    background: 
      radial-gradient(100% 100% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 0.3) 100%),
      linear-gradient(90deg, #000000aa 0%, #00000022 70%);
    grid-template-columns: 50px auto auto 100px;
    grid-template-areas: "logo cta terms bonus";
    padding: 12px;
  }

  .banner-cta {
    font-size: 20px;
  }

  .banner-terms {
    width: fit-content;
    justify-self: end;
    margin-left: 50px;
    font-size: 10px;
    line-height: 14px;
  }
}







.seo {
  color: #1e1e26;
  margin-bottom: 40px;
}

.seo h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 14px 0;
  line-height: 24px;
}

.seo h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0;
  line-height: 22px;
}

.seo p {
  margin: 0 0 14px 0;
  line-height: 22px;
}

.seo a {
  color: #0178f6;
}

.seo a:hover {
  text-decoration: none;
}

.seo ul,
.seo ol {
  margin: 14px 0 14px 0;
  padding: 0 0 0 24px;
}

.seo li {
  line-height: 22px;
  margin: 12px 0 12px 0;
}

.seo img {
  height: auto;
  margin-top: 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  max-width: 100%;
}







.tab {
  width: 100%;
  border: 1px solid #dfdfe5;
  border-radius: 15px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ecedf6;
}

.tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tab .tablink {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #1e1e26;
  background: #ecedf6;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 15px;
}

.tab .tablink:not(:last-of-type) {}

.tab .tablink:hover {}

.tab .tablink.active {
  background: #F7F8FD;
  border-radius: 15px;
}

.tabcontent {
  display: none;
}







.sidebar-nav-list{
  list-style-type: none;
margin: 0;
padding: 0;
}

.sidebar-nav-item{
  font-size: 14px;
  list-style-type: none;
margin: 0;
padding: 0;
}

.sidebar-nav-link {
  color: #1e1e26;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 12px 0;
gap: 12px;
}

.sidebar-nav-icon{
  margin-right: 12px;
}







.anchor{
  display: block;
padding-top: 90px;
margin-top: -104px;
}







.footer {
  font-size: 14px;
  color: #dcdee9;
  position: relative;
  padding: 40px 15px;
  background-color: #171729;
}

@media (min-width: 880px) {
  .footer {}
}

.footer-top {
  margin-bottom: 30px;
  position: relative;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.footer-back-to-top {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  color: #f6f7fe;
}

.footer-back-to-top:hover {
  text-decoration: underline;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo-link {
  fill: #f6f7fe;
}

.footer-logo-link svg {
  width: 130px;
}

.footer-nav {
  width: 100%;
  display: grid;
  grid-gap: 10px;
  position: relative;
  grid-template-columns: 1fr;
}

@media (min-width: 620px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.footer-nav-header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-right: 20px;
}

.footer-nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav-item {
  margin-right: 20px;
  margin-bottom: 12px;
}

.footer-nav-link {
  font-size: 14px;
  color: #acaeb6;
}

.footer-nav-link:hover {}

.footer-bottom {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  margin-bottom: 10px;
  line-height: 17px;
}

.gamble-responsibly {
  margin-bottom: 20px;
  line-height: 17px;
}

.footer-cookies,
.footer-begambleaware,
.footer-affiliate {
  font-size: 11px;
  color: #f6f7fe;
  margin-bottom: 10px;
  line-height: 17px;
}

.footer-cookies a,
.footer-begambleaware a,
.footer-affiliate a {
  color: #12c147;
  font-weight: 700;
}

.footer-cookies a:hover,
.footer-begambleaware a:hover,
.footer-affiliate a:hover {
  text-decoration: underline;
}

.footer-icons {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icons a {
  margin-right: 15px;
}

.footer-icons a svg {
  fill: #f6f7fe;
}







.cookie-banner {
  font-size: 12px;
  position: fixed;
  background-color: #fff;
  color: #1e1e26;
  padding: 12px;
  text-align: left;
  z-index: 1000;
}

.cookie-banner a {
  color: #0178f6;
}

.cookie-button {
  font-size: 12px;
  font-weight: 700;
  background-color: #12c147;
  color: #fff;
  border: none;
  padding: 4px 4px;
  width: 50%;
  height: 40px;
  cursor: pointer;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .cookie-button {
    width: 200px;
  }
}

.initial-cookie-banner {
  bottom: 0;
  width: 100%;
  display: none;
}

.initial-cookie-banner-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
}

@media (min-width: 768px) {
  .initial-cookie-banner-wrapper {
    grid-template-columns: 1fr auto;
  }
}

.initial-cookie-title {
  font-size: 14px;
  font-weight: 700;
}

.initial-cookie-content p {
  margin: 10px 0;
}

.initial-cookie-buttons {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 400px;
  column-gap: 12px;
  align-items: center;
}

.cookie-button.open-preferences {
  background-color: #ecedf6;
  color: #1e1e26;
}

.cookie-button.reopen-preferences{
  color: #0178f6;
  background-color: transparent;
  padding: 0;
  font-size: 16px;
}

.cookie-preferences-banner {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  display: none;
}

@media (min-width: 768px) {
  .cookie-preferences-banner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-height: 800px;
  }
}

.cookie-preferences-header {
  font-size: 18px;
  font-weight: 700;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cookie-preferences {
  font-size: 14px;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  height: calc(100% - 120px);
}

.cookie-preferences-stack {
  display: grid;
  grid-template-columns: 1fr min-content;
  gap: 30px;
  padding: 12px 0;
  width: 100%;
}

.cookie-preferences-stack-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cookie-preferences-button {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  border-radius: 50px;
  border: 2px solid #f6f7fe;
  background-color: #818188;
  cursor: pointer;
}

.cookie-preferences-button.active {
  background-color: #13c147;
}

.cookie-preferences-button::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: #f6f7fe;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left 0.3s ease;
}

.cookie-preferences-button.active::before {
  left: auto;
  right: 2px;
}

.cookie-preferences-footer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
}

.cookie-button.save-preferences {
  width: 240px;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 999;
  display: none;
}
