body::-webkit-scrollbar {
  width: .5em;
  /* height: .35em; */
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #4DABFF;
}

main {
	background: #1E4268;
	flex: 1;
    width: 100%;
    padding: 117px 6px 30px 6px;
    margin: 0 auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 895px;
  width: 100%;
  container-type: inline-size;
  container-name: mainContent;
}

aside {
	width: 249px;
	flex-shrink: 0
}

.layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 11px;
}

.breadcrumbs {
  padding: 14px 30px;
  display: flex;
  gap: 6px;
  color: #A1BCD4;
}

.breadcrumbs a {
  font-size: 14px;
  transition: color 0.3s;
  
}

.breadcrumbs a:hover {
	color: #6ea6d8;
}

.crumb {
  color: #FFFFFF;
}

.breadcrumbs a.crumb:hover {
	color: #A1BCD4;
}

.mobItemMenu img {
  height: 20px;
  width: auto;
}

.sidebar-left,
.sidebar-right {
  flex-shrink: 1;
  max-width: 262px;
  width: 100%;
}

/* left sidebar */

.sidebar-block {
  width: 100%;
  border-radius: 7px;
  margin-bottom: 8px;
  overflow: hidden;
}

.sidebar-block .block-title {
  background: #276AA5;
  color: #FFFFFF;
  padding: 5px 20px;
  border-radius: 7px 7px 0 0;
  min-height: 28px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-block.top-games .block-title {
  background: var(--sidebar-top-games-bg-title);
  color: var(--sidebar-top-games-title);
}

.sidebar-block.recommended .block-title {
  background: var(--sidebar-recommended-bg-title);
  color: var(--sidebar-recommended-title);
}

.game-info {
  padding: 9px 10px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.recommended .game-info {
  background: var(--sidebar-recommended-bg-match);
}

.top-games .game-info {
  background: var(--sidebar-top-games-bg-match);
}

.game-info .league {
  font-size: 11px;
  color: #276AA5;
}

.recommended .game-info .league {
  color: #276AA5;
}

.top-games .game-info .league {
  color: #276AA5;
}

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

.league p {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--sidebar-recommended-text-events);
}

.sidebar-block.top-games .league p {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--sidebar-top-games-text-events);
}

.league img {
  width: 12px;
  height: auto;
}

.game-info .status {
  color: var(--body-card-game-text-status);
  font-size: 11px; 
}

.top-games .game-info .status {
  color: var(--sidebar-top-games-text-status);
}

.recommended .game-info .status {
  color: var(--sidebar-recommended-text-status); 
}

.teams {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.teams .team {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  align-items: center;
}

.name {
  font-size: 11px;
  color: var(--body-card-game-text-name);
  align-items: center;
  display: flex;
  gap: 5px;
}

.top-games .name {
	color: var(--sidebar-top-games-text-name);
}

.recommended .name {
	color: var(--sidebar-recommended-text-name);
}

.score {
  font-size: 11px;
  color: #224F7B;
  font-weight: 700;
  padding: 0 4px;
}

.top-games .score {
	color: var(--sidebar-top-games-text-score);
}

.recommended .score {
	color: var(--sidebar-recommended-text-score);
}

.recomContent .detailed {
  display: flex;
  gap: 7px;
  justify-content: flex-start;
  align-items: center;
}

.recomContent .detailed::after {
  content: "";
    display: inline-block;
    background: url(../img/menu-icons/arrow-blue.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 10px;
    transition: transform 0.4s;
}

.detailed {
  font-size: 11px;
  color: #276AA5;
  position: relative;
  cursor: pointer;
  width: fit-content;
  padding-right: 10px;
  width: 100%;
}

.top-games .detailed {
   color: #276AA5;
}
.recommended .detailed {
   color: var(--sidebar-recommended-text-ds);
}

.more-info > p:first-of-type {
    display: flex;
    justify-content: flex-start;
    gap: 7px;
    align-items: center;
    color: var(--sidebar-top-games-text-ds);
}

.detailed > p:first-of-type::after {
    content: "";
    display: inline-block;
    background: url(../img/menu-icons/arrow-blue.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 10px;
    transition: transform 0.4s;
}

.detailedScore {
  display: none;
}

.detailed.open .detailedScore {
  display: flex;
  gap: 9px;
  flex-direction: column;
  padding-top: 10px;
}


.detailed.open > p:first-of-type::after {
  transform: translateY(0%) rotate(180deg);
} 


.detailedScore .detScors {
  display: flex;
  gap: 10px;
}

.detailedScore p {
  color: #224F7B;
  font-size: 11px;
}

.detailedScore .detScors p:first-child {
  font-weight: 700;
}

.odds {
  display: flex;
  justify-content: space-between;
  gap: 7px;
}

.odd {
  background: #D4DEE8;
  padding: 5px;
  min-height: 27px;
  width: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.odd:hover {
  background: #87ADCE;
}

.odd p {
  color: var(--body-card-game-text-coeficient);
  font-size: 11px;
}

.odd p:hover {
  color: var(--body-card-game-text-coeficient-hover);
  font-size: 11px;
}

.top-games .odd {
  background: var(--sidebar-top-games-text-bg-cf);
}

.top-games .odd:hover {
  background: var(--sidebar-top-games-text-bg-cf-hover);
}


.top-games .odd p {
  color: var(--sidebar-top-games-text-text-cf);
  font-size: 11px;
}

.recommended .odd {
  background: var(--sidebar-recommended-text-bg-cf);
}

.recommended .odd:hover {
  background: var(--sidebar-recommended-text-bg-cf-hover);
}


.recommended .odd p {
  color: var(--sidebar-recommended-text-text-cf);
  font-size: 11px;
}

.recommended .infoButton .odd p  {
  color: var(--sidebar-recommended-text-text-btn);
}

.recommended .odd p:hover {
  color: var(--sidebar-recommended-text-text-cf-hover);
  font-size: 11px;
}


.recommended .infoButton .odd p:hover {
  color: var(--sidebar-recommended-text-text-btn-hover);
}

.recommended .infoButton .odd:hover {
    background: var(--sidebar-recommended-text-bg-btn-hover);
}



/* Tabs */
.tabs {
  display: flex;
  min-height: 38px;
}

.tabs .tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  background: #215583;
  color: #A1BCD4;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.tabs .tab {
  background: #215583;
  color: #A1BCD4;
}

.liveSport .tabs .tab {
  background: #215583;
  color: #A1BCD4;
}

.liveSport .tabs .tab {
  background: var(--sidebar-live-sports-bg-tab);
  color: var(--sidebar-live-sports-title);
}

.mobApp .tabs .tab {
  background: var(--sidebar-best-slip-bg-tab);
  color: var(--sidebar-best-slip-title);
}

.betsSlip .tabs .tab {
  background: var(--sidebar-mobile-app-bg-tab);
  color: var(--sidebar-mobile-app-title);
}

.tabs .tab.active {
  background: #276AA5;
  color: #FFFFFF;
}


.liveSport .tabs .tab.active {
  background: var(--sidebar-live-sports-bg-active-tab);
  color: var(--sidebar-live-sports-title-active);
}

.mobApp .tabs .tab.active {
  background: var(--sidebar-mobile-app-bg-active-tab);
  color: var(--sidebar-mobile-app-title-active);
}

.betsSlip .tabs .tab.active {
  background: var(--sidebar-best-slip-bg-active-tab);
  color: var(--sidebar-best-slip-title-active);
  
}

.betsSlip .tab-content.active {
  display: flex;
  flex-direction: column;	
  background: var(--sidebar-best-slip-bg);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  background: var(--sidebar-mobile-app-bg);
}

.tab-content .categories {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
}

.tab-content .categories li {
  border-bottom: 1px solid #D4DEE8;
  font-size: 14px;
  min-height: 25px;
  display: flex;
  flex-direction: column;
}

.tab-content .categories li a {
  padding: 5px 10px;
  display: flex;
  gap: 5px;
  align-items: center;
  width: 100%;
}

.viewArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
  border-left: 1px solid #D4DEE8;
  width: 32px;
  min-height: 25px;
  cursor: pointer;
}

.viewArrow::after {
 content: "";
    display: inline-block;
    background: url(../img/menu-icons/arrow-blue.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 10px;
    transition: transform 0.4s;
}

.viewArrow.open::after {
  transform: translateY(0%) rotate(180deg);
} 
 
.categories p { 
color: var(--sidebar-live-sports-text-category);
font-size: 12px;
}

.tabHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sidebar-live-sports-bg-filter);
  padding: 10px;
  min-height: 32px;
  gap: 15px;
}

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

.tabHead .tabHeadItem:nth-child(2) {
  margin-right: auto;
}

.tabHeadItem p {
  color: var(--sidebar-live-sports-text-filter-active);
  font-size: 14px;
  font-weight: 700;
}

.tabHead .tabHeadItem:nth-child(2) p {
  color: var(--sidebar-live-sports-text-filter);
  font-weight: 400;
}

.tabName {
  padding: 10px;
  min-height: 32px;
  color: var(--sidebar-live-sports-text-name-tab);
  font-size: 14px;
  background: var(--sidebar-live-sports-bg-name-tab);
}

.recommended .block-title {
  padding: 0 0 0 20px;
  justify-content: space-between;
}

.recommended .viewArrow {
  border-left: 2px solid #1E4268;
}

.recomName {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recommended .viewArrow::after {
 content: "";
    display: inline-block;
    background: url(../img/menu-icons/arrow.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 10px;
    transition: transform 0.4s;
}

.recommended :hover::after {
  transform: none;
} 

.game-info {
  border-bottom: 1px solid #D4DEE8;
}

.infoButton {
  padding: 9px 10px;
    background: var(--sidebar-recommended-text-bg-under-btn);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.infoButton .odd {
  justify-content: center;
  color: #FFFFFF;
  background: var(--sidebar-recommended-text-bg-btn);
}


.recomContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sidebar-block.open .recomContent {
  max-height: 1000px; 
}

.sidebar-block.open .viewArrow::after {
  transform: rotate(180deg);
}

.sideSports {   
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--sidebar-live-sports-bg-category);
}

.categories .submenu.open {
    display: flex;
    flex-direction: column;
    position: static;
    padding: 0;
    gap: 0;
	z-index: 9;
}

.tab-content .categories .submenu.open li a {
    padding: 0 0 0 10px;
    display: flex;
    justify-content: space-between;
    background: var(--sidebar-live-sports-bg-podcategory);
}

.tab-content .categories .submenu.open li {
  border-top: 1px solid #D4DEE8;
  border-bottom: none;
  background: #BEC0D5;
}

.tab-content .categories .submenu.open p {
  margin-right: auto;
  color: var(--sidebar-live-sports-text-podcategory);
}

.tab-content .categories .submenu.open .viewArrow.submenu-toggle::after {
  transform: rotate(180deg);
}

.viewArrow.active::after {
  transform: translateY(0%) rotate(180deg);
} 

.slotsBlock  .block-title {
   background: var(--sidebar-filter-providers-bg-title);
   color: var(--sidebar-filter-providers-title);
}

.providersFiltr.slotsBlock .block-title {
   background: var(--sidebar-filter-providers-bg-title);
   color: var(--sidebar-filter-providers-title);
}

.typesFiltr.slotsBlock .block-title {
   background: var(--sidebar-filter-types-bg-title);
   color: var(--sidebar-filter-types-title);
}

.slotsBlock .slotsContent {
  max-height: 172px;
  overflow-y: auto;
  padding: 12px 12px;
  background: var(--sidebar-filter-providers-bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-flow: column;
  justify-content: normal;
  scrollbar-gutter: stable; 
}

.providersFiltr.slotsBlock .slotsContent {
  background: var(--sidebar-filter-providers-bg);
}

.typesFiltr.slotsBlock .slotsContent {
  background: var(--sidebar-filter-types-bg);
}


.checkboxItem {
  display: flex;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}

.checkboxItem input {
  display: none;
  font-size: 13px;
}

.checkboxItem {
  color: var(--sidebar-filter-providers-text);
}

.providersFiltr .checkboxItem {
  color: var(--sidebar-filter-providers-text);
}

.typesFiltr .checkboxItem {
  color: var(--sidebar-filter-types-text);
}

.customCheck {
  width: 14px;
  height: 14px;
  border: 0.6px solid #A1BCD4;
  border-radius: 4px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.providersFiltr .customCheck {
	 border: 0.6px solid #A1BCD4;
}
	
.typesFiltr .customCheck {
	 border: 0.6px solid #A1BCD4;
}

.checkboxItem input:checked + .customCheck {
  background: #A1BCD4;
  border-color: #A1BCD4;
}

.providersFiltr .checkboxItem input:checked + .customCheck {
    background: var(--sidebar-filter-providers-checkbox);
    border-color: var(--sidebar-filter-providers-checkbox-border);
}

.typesFiltr .checkboxItem input:checked + .customCheck {
    background: var(--sidebar-filter-types-checkbox);
    border-color: var(--sidebar-filter-types-checkbox-border);
}

.checkboxItem input:checked + .customCheck::after {
  content: "";
  display: block;
  width: 10px;       
  height: 10px;
  background: url("../img/sport-icons/check.svg") no-repeat center center;
  background-size: contain;
}

.slotsBlock .slotsContent::-webkit-scrollbar {
    width: 2px;
}

.slotsBlock .slotsContent::-webkit-scrollbar-track {
    background: #224F7D;
}

.providersFiltr.slotsBlock .slotsContent::-webkit-scrollbar-track {
    background: #224F7D;
}

.typesFiltr.slotsBlock .slotsContent::-webkit-scrollbar-track {
    background: #224F7D;
}

.slotsBlock .slotsContent::-webkit-scrollbar-thumb {
    background-color: var(--color-scrollbar-slotsblock);
    border-radius: 4px;
}

.providersFiltr.slotsBlock .slotsContent::-webkit-scrollbar-thumb {
    background-color: var(--color-scrollbar-slotsblock);
}

.typesFiltr.slotsBlock .slotsContent::-webkit-scrollbar-thumb {
    background-color: var(--color-scrollbar-slotsblock);
}

/* right sidebar */
.registration-block {
  width: 100%;
  background: var(--sidebar-registration-bg);
  border-radius: 6px;
  overflow: hidden;
  padding: 10px 8px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.regTitle {
  color: var(--sidebar-registration-title);
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.regTabs {
  display: flex;
  justify-content: center;
  padding: 8px;
}

.regTabs {
  padding: 6px 12px;
  border-radius: 7px;
  font-size: 14px;
  cursor: pointer;
  color: var(--sidebar-registration-blue-btn-text);
  font-size: 12px;
  min-height: 32px;
  background: var(--sidebar-registration-blue-btn-bg);
  display: flex;
  align-items: center;
  gap: 5px;
}

.regTabs.active {
  background: #e9f0fb;
  border-color: #99badd;
}

.regInput {
  width: 100%;
  background: #FFFFFF;
  border-radius: 7px;
  font-size: 14px;
  min-height: 27px;
  font-size: 12px;
}

.regInput.phoneLink {
  background: var(--sidebar-registration-num-input-bg);
}

.regInput.selectBlock {
  background: var(--sidebar-registration-currenty-bg);
}

.regInput.promocod {
  background: var(--sidebar-registration-code-bg);
}

.regInput.promoCode {
  background: var(--sidebar-registration-promo-bg);
}

.phoneText {
	background: transparent;
}

.phoneLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #333;
  overflow: hidden;
  gap: 5px;
  padding-left: 10px;
}

.phoneLink .mailIcon {
  margin-left: auto;
  background: var(--sidebar-registration-num-input-btn);
  display: flex;
  align-items: center;
  min-width: 58px;
  height: 100%;
  min-height: 27px;
  justify-content: center;
  transition: background 0.3s;
}

.phoneLink .mailIcon:hover {
   background: var(--sidebar-registration-num-input-btn-hover);
}

.regInput.select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.regInput.disabled {
  color: #aaa;
  background: #e0e0e0;
}

.phoneText {
  color: #224F7B;
  border: none;
  font-size: 12px;
}

.phoneText:focus, .codeText:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.phoneText::placeholder {
  color: var(--sidebar_registration_num_input_text);
  font-size: 12px;
}

.regBtn {
  width: 100%;
  padding: 12px;
  background: var(--sidebar-registration-green-btn-bg);
  border: none;
  border-radius: 7px;
  color: var(--sidebar-registration-green-btn-text);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.regCheck {
    display: flex;
    gap: 9px;
    font-size: 10px;
    flex-direction: column;
}

.regCheck input {
  margin-top: 2px;
}

.regCheck a {
  color: #45ACFF;
  font-size: 10px;
  text-decoration: underline;
}
.regCheck p {
  font-size: 10px;
  color: var(--sidebar-registration-text-checkbox);
}

.regCheck .customCheck {
flex-shrink: 0;
background: #FFFFFF;
}

.regCheck input:checked + .customCheck {
    background: #FFFFFF;
    border: 1px solid #717A83;
}

.regCheck .checkbox {
    width: 15px;
    height: 15px;
    border: 0.6px solid #A1BCD4;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.regBonus {
  background: var(--sidebar-registration-bg-stripe);
  color: var(--sidebar-registration-text-stripe);
  padding: 10px;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 -10px;
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
}

.arrowLink {
  position: relative;
}

.arrowLink::after {
    content: "";
    display: inline-block;
    background: url(../img/menu-icons/arrow-blue.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 10px;
    transition: transform 0.4s;
}

.selectBlock {
   display: flex;
   align-items: center;
   padding: 0 10px;
   justify-content: space-between;
}

.selectBlock .selectInput {
   color: #276AA5;
   font-size: 12px;
   padding: 5px 0;
   width: 100%;
}

.selectBlock .selectInput::placeholder {
  color: #276AA5;
  font-size: 12px;
}
 
.arrowLink {
  display: flex;
  align-items: center;
  min-width: 50px;
  height: 100%;
  min-height: 27px;
  justify-content: flex-end;
}

.selectBlock a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: var(--sidebar-registration-currenty-text);
  font-size: 12px;
}

.promocod .codeText::placeholder {
  color: var(--sidebar-registration-code-text);
  font-size: 12px;
}

.promocod {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #276AA5;
  overflow: hidden;
  gap: 5px;
  padding-left: 10px;
}

.promocod .codeText {
  color: #276AA5;
  font-size: 12px;
  border: none;
  padding: 5px 0;
  width: 100%;
  background: transparent;
}

.promocod .mailIcon {
  margin-left: auto;
  background-color: var(--sidebar-registration-code-btn);
  display: flex;
  align-items: center;
  min-width: 58px;
  height: 100%;
  min-height: 27px;
  justify-content: center;
}

.promoCode .selectInput {
    color: #276AA5;
    font-size: 12px;
    padding: 5px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    background: sidebar-registration-promo-bg;
}

.promoCode .selectInput::placeholder {
  color: var(--sidebar-registration-promo-text);
  font-size: 12px;
}

.promoCode {
  display: flex;
  align-items: center;
}

.regCheck .checkboxItem {
  display: flex;
  align-items: flex-start;
}


.slip, .bet, .andrItem, .iosItem {
  background: #E9EEF2;
  color: #FFFFFF;
}

.andrItem, .iosItem {
  padding: 30px 10px 0 0;
}

.tab-content.slip.active, .tab-content.bet.active  {
  display: flex;
  flex-direction: column;
  background: var(--sidebar-best-slip-bg);
}

.mobApp .btnGreen {
	font-style: normal;
}

.slipContent{
  display: flex;
  flex-direction: column;
  gap: 10px;
 padding: 10px;
 background: var(--sidebar-best-slip-bg);
}

.slipHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #276AA5;
  text-transform: uppercase;
  font-size: 12px;
}

.slipHeader p {
  color: var(--sidebar-best-slip-text-above-input);
  text-transform: uppercase;
  font-size: 12px;
}

.slipHeader .btn {
  background: #D4DEE8;
  height: 21px;
  width: 21px;
  min-height: 21px;
  min-width: 21px;
}
.slipHeader .btn img {
  max-height: 11px;
  max-width: 11px;
}

.slipSettings {
  width: 24px;
  height: 24px;
  background: url('settings-icon.svg') no-repeat center/contain;
  border: none;
  cursor: pointer;
}

.slipBox {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 12px;
  color: #26527F;
  font-size: 12px;
  resize: none;
  min-height: 80px;
  outline: none;
  min-height: 112px;
}

.slipBox::placeholder {
  color: var(--sidebar-best-slip-text-input);
  text-align: center;
  font-size: 12px;
}

.slipBox {
  color: #26527F;
  text-align: center;
  font-size: 12px;
  background: var(--sidebar-best-slip-bg-input);
}

.slipBtn {
  background: var(--sidebar-best-slip-btn-bg);
  border: none;
  border-radius: 7px;
  color: var(--sidebar-best-slip-btn-text);
  padding: 9px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  min-height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.slipBtn:hover {
  background: var(--sidebar-best-slip-btn-bg-hover);
  color: var(--sidebar-best-slip-btn-text-hover);
  }


.slipSave {
  text-align: center;
  font-size: 12px;
  color: var(--sidebar-best-slip-text-link);
  text-decoration: underline dashed;
  padding: 10px;
  border-top: 1px dashed transparent;
  border-image: repeating-linear-gradient(to right, #7599B8 0, #7599B8 5px, transparent 5px, transparent 10px) 1;
  background: var(--sidebar-best-slip-bg-link);
}

.app {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.app .menuQr {
    width: 55%;
}

.app .blockQr img {
max-width: 105px;
max-height: 25px;
}

.app .blockQr p {
  color: var(--sidebar-mobile-app-text-logo);
  font-size: 12px;
  text-align: center;
}

.app .blockQr {
  padding: 0;
}

.app .btnGreen {
  width: 100%;
  transition: background 0.3s; 
  background: var(--sidebar-mobile-app-green-btn-bg);
  color: var(--sidebar-mobile-app-green-btn-text);
}

.app .btnGreen:hover {
  background: var(--sidebar-mobile-app-green-btn-bg-hover);
  color: var(--sidebar-mobile-app-green-btn-text-hover);
}

.tab .appActive {
  display: none;
}

.tab.active .appActive {
  display: block;
}

.tab.active .appInactive {
  display: none;
}

.tabClose {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    background: #276AA5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 35px;
}


/* блок main */

 .casinosItems {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0 20px;
}

 .casinosItems .row {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between;
    background: var(--body-listing-casino-bg);
    border-radius: 15px;
    min-height: 125px;
    padding: 0 20px;
}

 .casinosItems .row .column {
    word-wrap: break-word;
    display: flex;
    vertical-align: middle;
    text-align: center;
    padding: 15px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.casinosItems .row .column1 {
    width: 70px;
    flex-shrink: 0;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: var(--body-listing-casino-bg-num);
    border: 1px solid var(--body-listing-casino-border-num);
    color: var(--body-listing-casino-num);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

 .casinosItems .row .column.column2 img {
   max-width: 64px;
    max-height: 63px;
    border-radius: 8px;
    object-fit: cover;
}

.casinosItems .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
     width: 100px;
}

.casinosItems .rating li {
    list-style: none;
}

.rating img {
    width: 17px;
}

.casinosItems .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 130px;
}

.casinosItems .button.green {
    background: #77c043;
    color: #fff;	
}

.casinosItems .button.hollow {
    color: #7EAC2F;
    background-color: transparent;
    box-shadow: 0 0 0 1px #7EAC2F, 0 0 0 0px #FFF;
}

.casinosItems .button.green:hover {
    background-color: #97DD01;
}

.casinosItems .button.hollow:hover {
    color: #97DD01;
    box-shadow: 0 0 0 1px #97DD01, 0 0 0 0px #FFF;
}

.buttons .button {
   padding: 6px 3px;
   min-width: 128px;
   min-height: 28px;
}

.casinosItems .button.green {
    background: var(--body-listing-casino-green-btn-bg);
    color: var(--body-listing-casino-green-btn-text);  
}

.casinosItems .button.hollow {
    color: var(--body-listing-casino-hollow-btn-text);
    background-color: transparent;
    box-shadow: 0 0 0 1px var(--body-listing-casino-hollow-btn-bg), 0 0 0 0px #FFF;
}

.casinosItems .button.green:hover {
    background-color: var(--body-listing-casino-green-btn-bg-hover);
    color: var(--body-listing-casino-green-btn-text-hover);
}

.casinosItems .button.hollow:hover {
    color: var(--body-listing-casino-hollow-btn-text-hover);
    box-shadow: 0 0 0 1px var(--body-listing-casino-hollow-btn-bg-hover), 0 0 0 0px #FFF;
}


.column .casino-name {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
}

.column .bonus {
  color: var(--body-listing-casino-description);
  font-size: 12px;
  font-weight: 500;
  text-align: left;
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}

.column .casino-name {
  width: 100px;
  color: var(--body-listing-casino-name);
}


.providersGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
}

.providersGrid .card {
  background: var(--body-providers-bg);
  border-radius: 10px;
  min-height: 86px;
  padding: 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 4px;
  transition: background 0.3s;
}

.providersGrid .card:hover {
  background: var(--body-providers-bg-hover);
}

.providersGrid .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: flex-start;
  gap: 4px;
}

.providersGrid .title {
  font-size: 11px;
  font-weight: 500;
  color: var(--body-providers-title);
  text-transform: uppercase;
}

.providersGrid .games {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  background: var(--body-providers-bg-game);
  padding: 5px;
  border-radius: 5px;
  min-height: 17px; 
  min-width: 46px;
}

.providersGrid .games img {
  max-width: 12px;
  height: auto;
}

.providersGrid .logoGame img {
  max-width: 85px;
  max-height: 57px;
  object-fit: contain;
}

.providersGrid .games p {
  font-size: 11px;
  color: var(--body-providers-text-game);
  font-weight: 500;
}

.cardsGame {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  padding-bottom: 20px !important;
}

.cardsGame .game-info {
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  min-height: 134px;
  background: var(--body-card-game-bg);
}

.cardsGame .game-info .league p{
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--body-card-game-text-league);
}

.cardsGame .game-info .odd {
 width: 64px;
 background: var(--body-card-game-bg-coeficient);
}

.cardsGame .game-info .odd:hover {
 width: 64px;
 background: var(--body-card-game-bg-coeficient-hover);
}

.cardsGame .odd.cent {
  justify-content: center;
}

.cardsGame .odd.cent p {
  text-decoration: underline;
}

.cardsGame .odd.cent:hover {
  background: #D4DEE8;
}

.game-info > * {
  z-index: 0;
}

.cardGameback {
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  z-index: 0;
}

.swiper-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
    position: absolute;
    right: 0;
    bottom: -5px;
    z-index: 9;
}
.swiper-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    color: #FFFFFF;
}


.games-next::after, .games-prev::after, .event-next::after, .event-prev::after, .leagues-next::after, .leagues-prev::after  {
    content: "";
    display: inline-block;
    background: url(../img/menu-icons/arrow.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 10px;
}
.games-next::after, .event-next::after, .leagues-next::after {
  transform: rotate(-90deg);
}

.games-prev::after, .event-prev::after, .leagues-prev::after {
  transform: rotate(90deg);
}

.eventsBlock {
  display: flex;
  gap: 10px;
  width: 100%;
  position: relative;
}

.eventCard {
  flex: 1;
  background: var(--body-icon-slots-bg);
  border-radius: 10px;
  overflow: hidden;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.eventCard:hover {
  background: var(--body-icon-slots-bg-hover);
}

.eventCard img {
  width: 100%;
  height: 89px;
  object-fit: cover;
  display: block;
}

.eventTitle {
  text-align: center;
  color: var(--body-icon-slots-text);
  padding: 5px;
  font-size: 11px;
}

.eventsBlock.swiper {
  padding-bottom: 20px;
  position: relative;
}

.leaguesBlock {
  display: flex;
  gap: 5px;
  width: 100%;
  padding-bottom: 20px!important;
}

.leagueCard {
  background: var(--body-icon-team-bg);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 100%;
  transition: background 0.3s;
}

.leagueCard:hover {
 background: var(--body-icon-team-bg-hover);
}

.leagueCard img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
}


.statsBlock {
  background-color: var(--body-stat-bg);
  border-radius: 15px;
  padding: 15px 40px;
  color: #FFFFFF;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 100px;
  min-height: 50px;
  position: relative;
}

.statsColumns.swiper  {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  width: 30%;
}

.statsColumn  {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.statsColumn .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--body-stat-text);
  text-transform: uppercase;
}

.mainNumber {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(to right, var(--body-stat-num), var(--body-stat-num-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statsRow {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  width: 35%;
  flex-wrap: wrap;
  row-gap: 5px;
}

.statItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.statItem .label {
  font-size: 8px;
  margin-bottom: 5px;
  background: linear-gradient(to right, #FFE49A, #FFBB00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statItem .icon {
  max-height: 24px;
  width: auto;
}

.statItem .value {
  font-size: 12px;
  font-weight: 400;
  background: linear-gradient(to right, #FFE49A, #FFBB00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swiper-button-next.stats-next, .swiper-button-prev.stats-prev {
   color: #9A9A9A;
    background: var(--body-stat-arrow-bg);
    width: 28px;
    height: 29px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.stats-prev {
    left: 0;
}

.stats-next {
    right: 0;
}

.swiper-button-prev.stats-prev::after {
    content: "";
    display: inline-block;
    background: url(../img/games/arr2.svg) no-repeat center;
    background-size: contain;
    width: 14px;
    height: 14px;
    transform: rotate(180deg);
}
.swiper-button-next.stats-next::after {
    content: "";
    display: inline-block;
    background: url(../img/games/arr2.svg) no-repeat center;
    background-size: contain;
    width: 14px;
    height: 14px; 
}

.swiper-button-next.stats-next:hover, .swiper-button-prev.stats-prev:hover {
  background: #276AA5;
}

.selection, .folding {
  width: 100%;
}

.selection .drop {
    background-color: #286196; 
    border-radius: 10px;
    overflow: hidden;
}

.folding .drop {
	background-color: var(--body-dropdown-bg-open); 
    border-radius: 10px;
    overflow: hidden;
}


.selection .drop .toc-default, .folding .drop .toc-default {
    border: 0;
    margin: 0;
    font-size: 14px;
    line-height: 120%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 50px 18px 50px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.selection .drop .toc-default {
	 background-color: var(--body-content-bg);
	 color: var(--body-content-title);
}

.folding .drop .toc-default {
	background-color: var(--body-dropdown-bg); 
	color: var(--body-dropdown-text);
}

.folding .drop .articleBlock {
    display: flow-root;
    width: 100%;
    padding: 0px 20px 10px;
    font-size: 12px;
    font-weight: 400;
    color: var(--body-dropdown-text);
}

.selection .drop.active .toc-default:after, .folding .drop.active .toc-default:after {
    transform: rotate(-180deg);
}

.selection .drop .toc-default:after, .folding .drop .toc-default:after {
    content: "";
    display: inline-block;
    background: url(../img/menu-icons/arrow.svg) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    transition: transform 0.4s;
}

.selection .drop .options-holder {
    display: none;
    padding: 0;
    border-radius: 0 0 10px 10px;
    background: var(--body_content_bg_open);
}

 .selection .drop ol, .selection .drop ul {
    margin-top: 0;
    padding-left: 65px;
    list-style: decimal;
    color: #FFFFFF;
    font-size: 14px;
}

.selection .drop .options-holder ul li a, .selection .drop .options-holder ol li a {
    color: var(--body-content-text); 
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 20px 15px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.selection .drop ol ol, .selection .drop ul ul {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 35px;
}

.selection .drop ol ol li, .selection .drop ul ul li {
  padding-left: 10px;
}


.selection .drop ol {
  counter-reset: item;
  list-style: none;
  padding-left: 70px;
}

.selection .drop ol li {
  counter-increment: item;
  position: relative;
}

.selection .drop ol li a::before {
  content: counters(item, ".") ". ";
  position: absolute;
  left: -20px; 
  color: var(--body-content-number);
  font-weight: bold;
}

.options-holder {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.foldBlock {
    padding: 20px 0;
    display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
}

.foldBlock .button.green {
    background: var(--body-dropdown-green-btn-bg);
    color: var(--body-dropdown-green-btn-text);
}

.foldBlock .button.hollow {
	color: var(--body-dropdown-hollow-btn-text);
    background-color: transparent;
	box-shadow: 0 0 0 1px var(--body-dropdown-hollow-btn-bg), 0 0 0 0px #FFF;
}

.foldBlock .button.green:hover {
	background-color: var(--body-dropdown-green-btn-bg-hover);
    color: var(--body-dropdown-green-btn-text-hover);
}
.foldBlock .button.hollow:hover {
	color: var(--body-dropdown-hollow-btn-text-hover);
    box-shadow: 0 0 0 1px var(--body-dropdown-hollow-btn-bg-hover), 0 0 0 0px #FFF;
}

.foldBlock .articleBlock h1, .foldBlock .articleBlock h2, .foldBlock .articleBlock h3, .foldBlock .articleBlock h4, .foldBlock .articleBlock h5, .foldBlock .articleBlock h6 {
	color: var(--body-dropdown-title);
}

.foldBlock .articleBlock a {
/*     color: var(--body-dropdown-link); */
	color: #FFF;
	transition: color 0.3s;
}

.foldBlock .articleBlock a:hover {
    color: var(--body-dropdown-link-hover);
}

.foldBlock .articleBlock p {
	color: var(--body-dropdown-text);
}

.foldBlock .articleBlock ol li, .foldBlock .articleBlock ul li  {
	color: var(--body-dropdown-text);
}

.foldBlock .articleBlock ol li, .foldBlock .articleBlock ul li  {
	color: var(--body-dropdown-text);
}

.foldBlock .articleBlock th {
	color: #FFFFFF;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
}

.foldBlock .articleBlock th, .foldBlock .articleBlock td {
    border: 1px solid #215584;
    background-color: #1E4268;
}

.foldBlock .articleBlock table {
	color: #FFFFFF;
}

.aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.articleBlock .size-full {
  /*width: 100%;
  max-width: 100%;
  max-height: 282px;*/
  object-fit: cover;
}

.articleBlock table {
    display: table;
    white-space: wrap !important;
    overflow-x: auto;
    overflow: auto;
    border-collapse: collapse;
    width: 100%;
    color: #FFFFFF;
    overflow: hidden;
    font-size: 12px;
    margin: 0 auto;
}
.articleBlock thead tr {
    background-color: #2E1010;
}
 .articleBlock th, .articleBlock td {
    min-width: auto;
    width: auto;
    border: 1px solid #215584;
    padding: 9px 10px;
    text-align: left;
    vertical-align: top;
    background-color: #1E4268;
}
.articleBlock th {
    font-weight: 700;
    color: #FFFFFF;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
}

/*.folding .options-holder {
  height: auto;
}*/

main .articleBlock ol {
  list-style-type: decimal; 
}
  
/* iframe start */

.slotCard {
  background: var(--slots-slot-bg);
  border-radius: 24px;
  width: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slotCards {
 display: flex;
  gap: 20px;
}

.slotCardPreview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  width: 100%;
}

.slotCardPreview img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.slotCardPreview .img-wrap img {
   min-height: 430px;
   max-height: 600px;
}

.slotCardButtons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slotCardLeft .button {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.single-slotsl  .slotCardLeft .button.green {
  background: var(--slots-slot-green-btn-bg);
    color: var(--slots-slot-green-btn-text);
}

.single-slotsl  .slotCardLeft .button.green:hover {
  background: var(--slots-slot-green-btn-bg-hover);
    color: var(--slots-slot-green-btn-text-hover);
}

.slotCardLeft .button.blue {
  background: #194b70;
  color: #fff;
}

.slotCardInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  gap: 10px;
  max-width: 1000px;
  column-gap: 100px;
  row-gap: 30px;
}

.infoItem {
  display: flex;
  justify-content: space-between;
  color: var(--slots-slot-feature-name);
  font-size: 19px;
}

.infoItem .textInfo {
  color: var(--slots-slot-feature-value);
}

 .slotCardLeft {
  width: 60%;
}

.slotCardRight {
  width: 40%;
}

.slotCardLeft {
  display: flex;
  gap: 13px;
}

.slotCards:not(:has(.slotCardRight)) .slotCardLeft {
  width: 100%;
}

.slotCardRight h3 {
  margin: 0 0 10px;
  color: var(--slots-slot-title);
  font-size: 18px;
}

.ratings {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ratingValue {
  font-size: 52px;
  font-weight: bold;
  color: var(--slots-slot-rating);
}

.stars {
  color: #77c043;
  font-size: 18px;
}

.reviews {
  font-size: 15px;
  color: var(--slots-slot-under-star);
}

.ratingBars {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ratings .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100px;
}

.slotCardRight .ratings .rating {
  width: auto;
}

.bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--slots-slot-name-category-rating);
}

.barText {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  
}

.progress {
  background: #0d355c;
  border-radius: 5px;
  overflow: hidden;
  height: 8px;
}

.progress div, .progress article  {
  height: 100%;
  background: var(--slots-slot-line-category-rating);
}

.value {
  font-size: 14px;
  color: var(--slots-slot-value-category-rating);
}

.boxGame {
    display: none;
    height: 100%;
    width: 100%;
	min-height: 500px;
}

iframe {
    width: 100%;
    height: 100%;
	min-height: 500px;
}

 .img-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    /*max-width: 676px;*/
}

 .img-wrap img {
    width: auto;
    width: 100%;
    border-radius: 15px;
    vertical-align: bottom;
    height: auto;
    object-fit: cover;
}

.img-wrap img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #151843 0%, #151843 100%);
    pointer-events: none;
    z-index: 2;
}

.single-slotsl  .img-wrap .buttons {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 10px;
    position: absolute;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(7, 16, 65, 0.62);
    gap: 10px;
}


.single-slotsl  .slotCardLeft .hollow.btn-play {
    background: #1A466D;
    color: #FFFFFF;
}

.single-slotsl  .slotCardLeft .btn-play.hollow:hover {
   background: #143655;
   color: #FFFFFF;
}

/* iframe finish */

.slotGames {
  position: relative;
  height: 100%;
  align-items: center;
  align-self: center;
  display: flex;
  justify-content: center;
  width: 98px;
}

.slotGames .swiper {
  height: 350px; 
}

.slotGames img {
  width: 98px;
  height: 61px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.slotG-prev,
.slotG-next {
  position: relative;
}

.slotG-prev,
.slotG-next {
  width: 15px;
  height: 15px;
  border-radius: 1.5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  background-color: transparent; 
  background-image: url("../img/slots/polygon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.slotG-prev {
  top: 5px;
}

.slotG-next {
  bottom: 5px;
  transform: translateX(-50%) rotate(180deg);
}

.slotCardPreview .button {
  min-width: 201px;
  min-height: 45px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raitRev {
  display: flex;
  flex-direction: column;
}

.container404 {
 max-width: 1040px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    padding: 71px 0;
}

.textLeft-404 {
 display: flex;
 gap: 20px;
 flex-direction: column;
 max-width: 385px;
}

.page-404 {
 background: var(--404-bg);
}

.title404 {
  color: var(--404-title);
  font-size: 25px;
  font-weight: 500;
}
.textError {
  color: var(--404-subtitle);
  font-size: 18px;
  font-weight: 400;
}

.textLeft-404 .button {
  max-width: 182px;
  min-height: 28px;
  text-transform: uppercase;
}

.buttons404 {
  display: flex;
  gap: 10px;
}

.buttons404 .button {
  max-width: 104px;
  min-height: 28px;
  background: var(--404-grey-btn-bg);
  color: var(--404-grey-btn-text);
  font-size: 14px;
  transition: background 0.3s;
}

.buttons404 .button:hover {
  background: var(--404-grey-btn-bg-hover);
  color: var(--404-grey-btn-text-hover);
}

.container404 img{
  max-width: 500px;
}

.textLeft-404 .button.green {
  color: var(--404-green-btn-text);
  background-color: var(--404-green-btn-bg);
}

.textLeft-404 .button.green:hover {
  color: var(--404-green-btn-text-hover);
  background-color: var(--404-green-btn-bg-hover);
}

.folding .articleBlock p:first-of-type {
     font-weight: 400; 
}

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

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

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}


.container:after  {
    content: "";
    display: table;
    clear: both;
}

/* slots page */

.single-slotsl .advantages {
    background-color: var(--slots-plus-color-bg);
}

.single-slotsl .advantages h1, .single-slotsl .advantages h2, .single-slotsl .advantages h3, .single-slotsl .advantages h4, .single-slotsl .advantages h5, .single-slotsl .advantages h6 {
    color: var(--slots-plus-color-title);
}

.single-slotsl .pros-cons .item.plus {
    border-color: var(--slots-minus-color-border-plus);
}

.single-slotsl .pros-cons .item.minus {
    border-color: var(--slots-minus-color-text-border-plus);
}

.single-slotsl .pros-cons .item ul li {
   color: var(--slots-plus-minus-color-text);
}

.single-slotsl .pros-cons .item.minus ul li:before {
    background-image: url(../img/icons/ico-cons.svg);
}

.single-slotsl .pros-cons .item ul li:before {
	background-image: url(../img/icons/ico-pros.svg);
}

.single-slotsl .articleBlock h2, .single-slotsl .articleBlock h3, .single-slotsl .articleBlock h4, .single-slotsl .articleBlock h5, .single-slotsl .articleBlock h6 {
	color: var(--slots-text-title);
}

.single-slotsl .articleBlock h1{
	color: var(--slots-text-h1);
}

.single-slotsl .articleBlock {
	color: var(--slots-text-main);
}

.single-slotsl .articleBlock a {
	color: var(--slots-text-link);
}

.single-slotsl .articleBlock a:hover {
	color: var(--slots-text-hover);
}

.single-slotsl .button.hollow {
    color: var(--slots-button-text-hollow);
    box-shadow: 0 0 0 1px var(--slots-button-border-hollow), 0 0 0 0px #FFF;
}

.single-slotsl .button.hollow:hover {
    color: var(--slots-button-text-hollow-hover);
    box-shadow: 0 0 0 1px var(--slots-button-border-hollow-hover), 0 0 0 0px #FFF;
}

.single-slotsl .button.green {
    background: var(--slots-button-bg-green);
    color: var(--slots-button-text-green);
}

.single-slotsl .button.green:hover {
    background: var(--slots-button-bg-green-hover);
    color: var(--slots-button-text-green-hover);
}

.single-slotsl .slotInfo {
	background-color: var(--slots-slots-bg-slots);
    color: var(--slots-slots-description-slots);
}

.single-slotsl .slotTitle {
	color: var(--slots-slots-title-slots);
}

.single-slotsl .slotFooter {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.single-slotsl .slotWarning {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mobApp .tab-content.active {
	padding: 30px 10px 0 0;
}

.languages span, .languages i, .languages #tka_time {
	font-weight: 400;
}

@media (max-width: 767px) {
    .alignleft,
    .alignright {
        float: none;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
}

@media screen and (max-width: 1350px) {
  main {
    padding-top: 75px;
  }
  .layout {
    flex-direction: column;
    align-items: center;
  }
  .content {
    order: 0;
    min-width: auto;
  }
  .sidebar-left, .sidebar-right {
    order: 1;
    width: 60%;
  }
}

@media screen and (max-width: 1100px) {
  .slotCards {
    flex-direction: column;
  }
  .slotCardLeft, .slotCardRight {
   width: 100%;
  }
  .slotG-prev {
    top: -40px;
}
  .slotG-next {
    bottom: -40px;
}
.slotCardPreview .img-wrap img {
min-height: auto;
}
}

@media (max-width: 870px) {
  .providersGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  .eventsBlock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .statsColumns.swiper {
    width: 50%;
  }
  .slotCardInfo {
    gap: 20px;
  }
  .container404 {
    flex-direction: column-reverse;
    padding: 40px 20px;
  }
  .title404 {
    text-align: center;
  }
  .container404 img {
    width: 100%;
}
  .textLeft-404 {
    align-items: center;
  }
  .buttons404 .button {
    min-width: 91px;
  }
  .slotCardPreview .buttons .button {
    font-size: 16px;
    width: 154px;
  }
}


@media screen and (max-width: 728px) {
  .casinosItems {
    flex-direction: row;
    gap: 5px;
    padding: 0;
	margin-top: 15px;
  }
  .casinosItems .row {
    flex-direction: column;
    padding: 20px 18px;
    gap: 10px;
  }
  .casinosItems .row .column {
    padding: 0;
  }
  .casinosItems .row .column1 {
    top: 0;
    left: 50%;
  }
.column .bonus {
  -webkit-line-clamp: 9;
  text-align: center;
}
.providersGrid {
  grid-template-columns: repeat(3, 1fr);
  }
  .leaguesBlock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  }
  .statsBlock {
    gap: 30px;
  }
  .statsRow {
    width: auto;
    gap: 15px;
  }
  .swiper-button-prev.stats-prev {
    left: 0;
  }
   .swiper-button-next.stats-next {
    right: 0;
  }
  .slotCardLeft {
    flex-direction: column;
  }
  .slotGames {
    width: 100%;
  }
  .slotGames .swiper {
    height: auto; 
    width: 90%;
}

    .slotCardInfo {
       grid-template-columns: 1fr;
    }
    .infoItem, .barText, .reviews {
      font-size: 12px;
    }
    .barText {
      text-transform: uppercase;
    }

    .slotG-prev {
    top: 50%!important;
    left: -4px;                 
    transform: translateY(-50%) rotate(-90deg); 
    margin-right: auto; 
}

.slotG-next {
    top: 50%!important;
    right: -4px;                
    transform: translateY(-50%) rotate(90deg);   
    margin-left: auto;
}
.sidebar-left, .sidebar-right {
        order: 1;
        width: 100%;
}
.slotGames .swiper {
    height: auto;
}
 table {
        display: block!important;
        overflow-x: auto!important;   
  }
  td, th {
        min-width: 230px !important;
        width: 100%;
    }
	.boxGame {
	min-height: 300px;
}

iframe {
	min-height: 300px;
}
}

@media screen and (max-width: 550px) {
.providersGrid {
    grid-template-columns: repeat(2, 1fr);
  }
.eventsBlock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
.statsColumn .title {
    font-size: 16px;
}
.mainNumber {
    font-size: 22px;
    word-break: break-all;
}
.statItem .label {
    font-size: 5px;
}
.statItem .value {
    font-size: 8px;
}
.statsRow {
    width: 50%;
    gap: 8px;
  } 
.statsBlock {
  gap: 6px;
  padding: 15px 30px;
}
.selection .drop .toc-default, .selection .drop .options-holder ul li a, .selection .drop .options-holder ol li a, .folding .drop .toc-default{
  font-size: 12px;
}
.selection .drop .toc-default, .folding .drop .toc-default {
padding: 8px 20px;
}
.selection .drop ol {
    padding-left: 40px;
}
.selection .drop .toc-default:after, .folding .drop .toc-default:after {
  width: 16px;
  height: 16px;
}

.slotCardPreview .button {
    min-width: 128px;
    min-height: 28px;
    font-size: 14px;
}

.slotGames img {
  width: 64px;
  height: 40px;
}

.eventsBlock.swiper .eventCard {
 background: transparent;
 align-items: center;
 min-height: 85px;
}

.eventsBlock.swiper img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
}
	.boxGame {
	min-height: 250px;
}

iframe {
	min-height: 250px;
}
}

@container mainContent (min-width: 1078px) {
  .game-info .league, .team, .name, .game-info .status, .odd p {
    font-size: 13px;
  }
  .statsColumn .title {
    font-size: 24px;
  }
  .mainNumber {
    font-size: 38px;
  }
  .statItem .label {
    font-size: 19px;
  }
  .statItem .value {
    font-size: 14px;
  }
  .eventTitle {
    font-size: 13px;
  }
  .providersGrid .title {
    font-size: 13px;
  }
  .providersGrid .games p {
    font-size: 13px;
  }
  .numb, .column .casino-name, .column .bonus {
    font-size: 14px;
  }
  .rating img {
    width: 21px;
}
.casinosItems .row .column.column2 img {
  max-width: 76px;
  max-height: 75px;
}
.articleBlock table {
  font-size: 14px;
}
.statItem .icon {
    max-height: 29px;
    width: auto;
}
.swiper-button-next.stats-next, .swiper-button-prev.stats-prev {
  width: 35px;
  height: 36px;
}
.cardsGame .game-info {
  min-height: 153px;
}
.statsBlock {
  min-height: 121px;
}
.league img {
  width: 14px;
  height: auto;
}
.casinosItems .buttons {
  width: 180px;
}
.eventCard {
  min-height: 134px;
}
.leagueCard {
  height: 75px;
}
.providersGrid .card {
  min-height: 103px;
}
.providersGrid .logoGame img {
  max-width: 113px;
  max-height: 100px;
}

}

@container mainContent (min-width: 1411px) {
  .selection .drop .toc-default {
    font-size: 16px;
  }
  .statsColumn .title {
    font-size: 31px;
  }
  .mainNumber {
    font-size: 50px;
  }
  .statItem .label {
    font-size: 13px;
  }
  .statItem .value {
    font-size: 19px;
  }
  .eventTitle {
    font-size: 17px;
  }
  .providersGrid .title {
    font-size: 17px;
  }
  .providersGrid .games p {
    font-size: 17px;
  }
  .numb {
    font-size: 19px;
  }
  .column .casino-name, .column .bonus {
    font-size: 19px;
  }
   .slotCardPreview .buttons .button {
    font-size: 22px;
    max-width: 201px;
  }
  .rating img {
    width: 25px;
}
.casinosItems .row .column.column2 img {
  max-width: 100px;
  max-height: 99px;
}
.articleBlock table {
  font-size: 19px;
}
.statItem .icon {
    max-height: 38px;
    width: auto;
}
.swiper-button-next.stats-next, .swiper-button-prev.stats-prev {
  width: 45px;
  height: 46px;
}
.swiper-button-prev.stats-prev::after, .swiper-button-next.stats-next::after {
  width: 20px;
  height: 20px;
}
.cardsGame .game-info {
  min-height: 200px;
}
.statsBlock {
  min-height: 159px;
}
.league img {
  width: 19px;
  height: auto;
}
.casinosItems .buttons {
  width: 230px;
}
.eventCard {
  min-height: 173px;
}
.games-next::after, .games-prev::after, .event-next::after, .event-prev::after, .leagues-next::after, .leagues-prev::after {
  width: 13px;
  height: 13px;
}
.leagueCard {
  height: 98px;
}
.providersGrid .card {
  min-height: 135px;
}
.providersGrid .logoGame img {
  max-width: 147px;
  max-height: 130px;
}

}

@container mainContent (max-width: 900px) {
.slotCards {
        flex-direction: column;
        align-items: center;
    }
.slotCardLeft {
		width: 100%;
	}
.slotCardRight {
		width: 100%;
	}
.slotG-next {
    bottom: -25px;
  }
.slotG-prev {
    top: -25px;
}
}

/* amp */

.middleHead .menu amp-img {
    max-width: 20px!important;
}

.logo amp-img {
	 max-width: 210px;
}
.logo > amp-img {
	 max-width: 60px;
}

.middleHead .menu amp-img {
    max-height: 17px;
    max-width: 20px;
}

.iconBtn amp-img {
    height: 17px;
}

.languages amp-img {
	width: 35px;
}

.languages::after {
	width: 15px;
}

.block-title amp-img {
	max-width: 25px;
}
.tabHead amp-img, .categoryLink amp-img, .regTabs amp-img, .mailIcon amp-img {
	max-width: 20px;
}

.promocod .mailIcon amp-img {
	max-width: 40px;
}

.slipHeader .btn {
	padding: 5px;
}

.slipHeader .btn amp-img {
	max-width: 30px;
}

.mobApp .tabs amp-img {
	max-width: 30px;
}

.btnGreen amp-img {
    width: 23px;
}

.statItem amp-img.icon {
    max-width: 38px;
}

 .casinosItems .row .column2 {
	flex-shrink: 0;
}

.listLang.open {
  display: flex;
  background: #1E4268;
}

.listLang li {
    color: #FFFFFF;
}

amp-sidebar {
	max-width: 100%;
}

.mobItemMenu  {
	font-size: 11px;
    color: #7599b9;
}

.mobMenuHeader .listLang.open { 
  background: #fff;
}

.mobMenuHeader .listLang.open li { 
	color: var(--mobile-menu-lang-text);
}

.amp-sidebar-mask {
	display: none!important;
	z-index: 0;
}

amp-accordion .options-holder, amp-accordion .recomContent {
	height: auto;
}

amp-accordion .recomContent {
max-height: 100%;
}

amp-accordion.drop .toc-default:after {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease; 
}

amp-accordion .toc-default[aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(180deg);
} 

.languages.open::after {
  transform: translateY(0%) rotate(180deg);
}

amp-accordion .block-title {
	border: none;
    display: flex!important;
}

amp-accordion .block-title.i-amphtml-accordion-header {
    display: flex !important;
    align-items: center; /* по вертикали */
    justify-content: space-between; /* чтобы текст слева, стрелка справа */
}

amp-accordion .viewArrow {
    transition: transform 0.3s;
}

amp-accordion .block-title.open .viewArrow {
    transform: rotate(180deg);
}

amp-accordion .recomName {
    display: inline-block;
    width: 83%;
}

amp-accordion  .viewArrow {
	display: inline-block;
}

amp-accordion .block-title[aria-expanded="true"] .viewArrow::after {
  transform: translateY(0%) rotate(180deg);
} 

.tab-content amp-accordion .sideSports {
	padding-right: 0;
	border: none;
	line-height: 0;
}

aside .submenu amp-img {
	max-width: 20px;
}

 .tab-content .categories amp-accordion a {
    padding: 5px 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.tab-content .categories amp-accordion a.categoryLink {
	display: inline-block;
	width: 84%;
}
.categories amp-accordion p {
	display: inline-block;
}

 .categories amp-accordion .submenu.open li,  .categories amp-accordion .submenu.open li a {
	max-height: 30px;
}

.sideSports[aria-expanded="true"] .viewArrow::after {
   transform: translateY(0%) rotate(180deg);
}

.mobMenuList amp-accordion h3 {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--mobile-menu-text);
    font-weight: 500;
    font-size: 14px;
    gap: 9px;
    padding-right: 40px;
	background-color: transparent;
	border-bottom: none;
}

.mobMenuList amp-accordion a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mobMenuList amp-accordion a p {
	font-weight: 600;
}

.mobMenuList amp-accordion h3[aria-expanded="true"] .submenu-toggle::before {
	transform: translateY(0%) rotate(180deg);
}

@media screen and (max-width: 728px) {
.casinosItems .buttons {
    width: 120px;
}}

@media screen and (max-width: 550px) {
    amp-accordion.drop .toc-default {
        padding: 18px 20px!important;
    }
	.logo amp-img {
    max-width: 81px;
}
}

.amp-slide {
  flex: 0 0 20%; /* по умолчанию 5 карточек (20% каждая) */
  box-sizing: border-box;
  padding: 5px;
}

amp-carousel .eventCard {
    min-height: 134px;
}

/* мобильные устройства */
@media (max-width: 600px) {
  .amp-slide {
    flex: 0 0 100%; /* по одной карточке */
  }
}

.leagueCard amp-img {
	max-width: 150px;
}

.statsBlock amp-carousel {
	max-width: 300px;
}

.faq amp-accordion h3.tocDefault {
	font-size: 12px;
	border: none;
}

.faq amp-accordion.answersArea {
	display: flex!important;
}

.faq amp-accordion .drop {
	margin-bottom: 7px;
}

 .tocDefault[aria-expanded="true"] {
  background: var(--body-faq-answer-bg);
}

.drop .tocDefault[aria-expanded="true"]:after {
	transform: translateY(0%) rotate(180deg);
}

.iconBtn img {
    height: 17px;
}

@media screen and (min-width: 1351px) {
.sidebar-left,
.sidebar-right {
/*   max-height: 100vh;  */
  overflow-y: auto; 
  position: sticky;
/*   top: 0; */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE и Edge Legacy */
}
	
.sidebar-left::-webkit-scrollbar,
.sidebar-right::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.content {
  flex: 1; 
}
	.sidebar-left,
.sidebar-right {
  position: sticky;
  top: 145px; 
  max-height: calc(100vh - 145px);
  overflow-y: auto;
}
}
.mainSlider .button {
	max-width: fit-content;
	min-width: 150px;
}





.footerNav {
    justify-content: flex-start;
	column-gap: 100px;
}

@media screen and (max-width: 600px) {
   .footerNav { column-gap: 50px;
}
	.faq h3 {
	font-size: 15px;
    font-weight: 600;
    padding-right: 30px;
	}
}

@media screen and (max-width: 415px) {
.partnersItem {
    width: 50px;
    height: 50px;
	}
	.blockTitle {
		margin-bottom: 15px;
	}
	.partnersItem:after {
	top: 4px;
    right: 5px;
	}
}

.articleBlock p:first-of-type {
    font-weight: 400;
}

@media screen and (min-width: 1351px) {
    .sidebar-left, .sidebar-right {
        position: sticky;
        top: 119px;
        max-height: calc(100vh - 119px);
        overflow-y: auto;
    }
}

.oneHead {
	padding: 70px 6px 30px 6px;
}

@media screen and (min-width: 1351px) {
    .oneHead .sidebar-left, .oneHead .sidebar-right {
        position: sticky;
        top: 70px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
}


/* amp */

.middleHead .menu amp-img {
    max-width: 20px!important;
}

.logo amp-img {
	 max-width: 210px;
}
.logo > amp-img {
	 max-width: 60px;
}

.middleHead .menu amp-img {
    max-height: 17px;
    max-width: 20px;
}

.iconBtn amp-img {
    height: 17px;
}

.languages amp-img {
	width: 35px;
}

.languages::after {
	width: 15px;
}

.block-title amp-img {
	max-width: 25px;
}
.tabHead amp-img, .categoryLink amp-img, .regTabs amp-img, .mailIcon amp-img {
	max-width: 20px;
}

.promocod .mailIcon amp-img {
	max-width: 40px;
}

.slipHeader .btn {
	padding: 5px;
}

.slipHeader .btn amp-img {
	max-width: 30px;
}

.mobApp .tabs amp-img {
	max-width: 30px;
}

.btnGreen amp-img {
    width: 23px;
}

.statItem amp-img.icon {
    max-width: 38px;
}

 .casinosItems .row .column2 {
	flex-shrink: 0;
}

.listLang.open {
  display: flex;
  background: #1E4268;
}

.listLang li {
    color: #FFFFFF;
}

amp-sidebar {
	max-width: 100%;
}

.mobItemMenu  {
	font-size: 11px;
    color: #7599b9;
}

.mobMenuHeader .listLang.open { 
  background: #fff;
}

.mobMenuHeader .listLang.open li { 
	color: var(--mobile-menu-lang-text);
}

.amp-sidebar-mask {
	display: none!important;
	z-index: 0;
}

amp-accordion .options-holder, amp-accordion .recomContent {
	height: auto;
}

amp-accordion .recomContent {
max-height: 100%;
}

amp-accordion.drop .toc-default:after {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease; 
}

amp-accordion .toc-default[aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(180deg);
} 

.languages.open::after {
  transform: translateY(0%) rotate(180deg);
}

amp-accordion .block-title {
	border: none;
    display: flex!important;
}

amp-accordion .block-title.i-amphtml-accordion-header {
    display: flex !important;
    align-items: center; /* по вертикали */
    justify-content: space-between; /* чтобы текст слева, стрелка справа */
}

amp-accordion .viewArrow {
    transition: transform 0.3s;
}

amp-accordion .block-title.open .viewArrow {
    transform: rotate(180deg);
}

amp-accordion .recomName {
    display: inline-block;
    width: 83%;
}

amp-accordion  .viewArrow {
	display: inline-block;
}

amp-accordion .block-title[aria-expanded="true"] .viewArrow::after {
  transform: translateY(0%) rotate(180deg);
} 

.tab-content amp-accordion .sideSports {
	padding-right: 0;
	border: none;
	line-height: 0;
}

aside .submenu amp-img {
	max-width: 20px;
}

 .tab-content .categories amp-accordion a {
    padding: 5px 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.tab-content .categories amp-accordion a.categoryLink {
	display: inline-block;
	width: 84%;
}
.categories amp-accordion p {
	display: inline-block;
}

 .categories amp-accordion .submenu.open li,  .categories amp-accordion .submenu.open li a {
	max-height: 30px;
}

.sideSports[aria-expanded="true"] .viewArrow::after {
   transform: translateY(0%) rotate(180deg);
}

.mobMenuList amp-accordion h3 {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--mobile-menu-text);
    font-weight: 500;
    font-size: 14px;
    gap: 9px;
    padding-right: 40px;
	background-color: transparent;
	border-bottom: none;
}

.mobMenuList amp-accordion a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mobMenuList amp-accordion a p {
	font-weight: 600;
}

.mobMenuList amp-accordion h3[aria-expanded="true"] .submenu-toggle::before {
	transform: translateY(0%) rotate(180deg);
}

@media screen and (max-width: 728px) {
.casinosItems .buttons {
    width: 120px;
}}

@media screen and (max-width: 550px) {
    amp-accordion.drop .toc-default {
        padding: 18px 20px!important;
    }
	.logo amp-img {
    max-width: 81px;
}
}

.amp-slide {
  flex: 0 0 20%; 
  box-sizing: border-box;
  padding: 5px;
}

amp-carousel .eventCard {
    min-height: 112px;
}

.eventCard amp-img {
	max-width: 169px;
}

/* мобильные устройства */
@media (max-width: 600px) {
  .amp-slide {
    flex: 0 0 100%; 
  }
}

.leagueCard amp-img {
	max-width: 84px;
    max-height: 42px;
}

amp-carousel .leagueCard {
	height: 62px;
}

.leaguesBlock .amp-slide, .eventsBlock .amp-slide {
	padding: 0;
}

.faq amp-accordion h3.tocDefault {
	font-size: 12px;
	border: none;
}

.faq amp-accordion.answersArea {
	display: flex!important;
}

.faq amp-accordion .drop {
	margin-bottom: 7px;
}

 .tocDefault[aria-expanded="true"] {
  background: var(--body-faq-answer-bg);
}

.drop .tocDefault[aria-expanded="true"]:after {
	transform: translateY(0%) rotate(180deg);
}

.iconBtn img {
    height: 17px;
}

@media screen and (min-width: 1351px) {
.sidebar-left,
.sidebar-right {
/*   max-height: 100vh;  */
  overflow-y: auto; 
  position: sticky;
/*   top: 0; */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE и Edge Legacy */
}
	
.sidebar-left::-webkit-scrollbar,
.sidebar-right::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.content {
  flex: 1; 
}
.sidebar-left,
.sidebar-right {
  position: sticky;
  top: 145px; 
  max-height: calc(100vh - 145px);
  overflow-y: auto;
}
}
.mainSlider .button {
	max-width: fit-content;
	min-width: 150px;
}

.footerNav {
    justify-content: flex-start;
	column-gap: 100px;
}

@media screen and (max-width: 600px) {
   .footerNav { column-gap: 50px;
}
	.faq h3 {
	font-size: 15px;
    font-weight: 600;
    padding-right: 30px;
	}
}

@media screen and (max-width: 415px) {
.partnersItem {
    width: 50px;
    height: 50px;
	}
	.blockTitle {
		margin-bottom: 15px;
	}
	.partnersItem:after {
	top: 4px;
    right: 5px;
	}
}

.articleBlock p:first-of-type {
    font-weight: 400;
}

amp-carousel .eventTitle {
	font-size: 11px;
}

.statsBlock amp-carousel .title {
	font-size: 20px;
}
.statsBlock amp-carousel .mainNumber {
    font-size: 32px;
}

.statsBlock amp-carousel {
	width: 205px;
	overflow: visible!important;
}

.statsBlock .i-amphtml-carousel-arrows {
	left: -19px!important;
    right: -16px!important;
}

.amp-carousel-button {
	margin: 0;
}

.ampContent .statsBlock {
    min-height: 50px;
}

.ampContent .statItem .icon {
    max-height: 24px;
}

.ampContent .statItem .icon {
    max-height: 24px;
    width: auto;
}
.ampContent .statItem .label {
	font-size: 8px; 
}

.i-amphtml-layout-size-defined {
    overflow: visible!important;
}
.ampContent .statItem .value {
    font-size: 12px;
}

.ampContent .mainSlider amp-carousel {
	height: 250px!important;
}

.ampContent .slideContent p.slideTitle {
    font-size: 35px;
}

.ampContent .slideContent p {
    font-size: 13px;
}

.ampContent .slideContent {
    gap: 20px;
}

@media (max-width: 870px) {
   .ampContent .eventsBlock {
         grid-template-columns: auto; 
    }
}

@media screen and (max-width: 728px) {
    .ampContent .leaguesBlock {
        grid-template-columns: auto;
    }
}

@media screen and (max-width: 550px) {
   .ampContent .eventsBlock {
        grid-template-columns: auto;
    }
}

.amp-carousel-button {
	background-color: rgba(0,0,0,.4)!important;
	height: 24px;
    width: 24px;
}

.ampContent .categoryItem {
    font-size: 13px;
}

.ampContent .categoryItem  amp-img {
	max-width: 15px;
}

.ampContent  .providersGrid .title {
    font-size: 11px;
}

.ampContent .providersGrid .games p {
    font-size: 11px;
}

.ampContent .providersGrid .logoGame img {
    max-width: 85px;
	max-height: 57px; 
}

.ampContent .providersGrid .card {
    min-height: 103px;
}

.casinosItems .row .column.column2 amp-img {
    width: 64px;
    height: 63px;
}

.ampContent .column .casino-name {
    font-size: 12px;
}

.ampContent .numb, .ampContent .column .casino-name, .ampContent .column .bonus {
    font-size: 12px;
}

.rating amp-img {
    width: 17px;
	height: 17px;
}

.cardsGame amp-carousel amp-img {
	width: 12px!important;
    height: 12px!important;
}

.ampContent .cardsGame .game-info {
    min-height: 134px;
	width: 295px;
}

@media screen and (max-width: 728px) {
	.statsBlock amp-carousel .title {
		font-size: 16px;
	}
	.statsBlock amp-carousel .mainNumber {
		font-size: 16px;
	}
	.statsBlock amp-carousel {
    width: 130px;
}
	.ampContent .oddButton {
    font-size: 10px;
}
	.ampContent .matchDetails {
		 font-size: 8px;
	}
}

@media screen and (min-width: 1351px) {
    .sidebar-left, .sidebar-right {
        position: sticky;
        top: 119px;
        max-height: calc(100vh - 119px);
        overflow-y: auto;
    }
}

.oneHead {
	padding: 70px 6px 30px 6px;
}

@media screen and (min-width: 1351px) {
    .oneHead .sidebar-left, .oneHead .sidebar-right {
        position: sticky;
        top: 70px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
}


@media screen and (min-width: 1351px) {
   .ampContent .sidebar-left, .ampContent .sidebar-right {
        position: sticky;
        top: 144px;
        max-height: calc(100vh);
        overflow-y: auto;
    }
}

.ampContent .mainSlider amp-carousel {
    height: 250px!important;
}

.leaguesBlock .amp-slide {
	width: 104px;
}

.ampContent .content {
        overflow: hidden;
    }