:root {
  /* color */
  --color-text-black: #333;
  --color-text-white: #fff;
  --color-red: #c40606;
  --color-black: #000;
  --color-bardo: #a70a0a;
  --color-gray: #eee;

  /* background */
  --background-font: #f7f7f7;

  /* size */

  /* shadow */
  --box-shadow1: 0 4px 10px rgb(0, 0, 0, 0.1);
  --box-shadow2: 0 4px 10px rgb(0, 0, 0, 0.2);
  --box-shadow3: 0 4px 10px rgb(0, 0, 0, 0.3);
  --box-shadow4: 0 4px 10px rgb(0, 0, 0, 0.4);
  --box-shadow5: 0 4px 10px rgb(0, 0, 0, 0.5);
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  font-family: "PT Sans", sans-serif;
  color: var(--color-text-black);
  background-color: var(--background-font);
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

.show-modals {
  display: block !important;
}

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

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

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

a {
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.2s linear;
}

a:focus,
a:hover {
  color: var(--color-red);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* .title__h1 {
	text-align: center;
} */

.margin-top50 {
  margin-top: 50px;
}

.margin-top100 {
  margin-top: 100px;
}

.margin-bottom50 {
  margin-bottom: 50px;
}

.margin-bottom100 {
  margin-bottom: 100px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.img__custom200 {
  height: 200px !important;
  object-fit: contain;
}

.img__custom300 {
  height: 300px !important;
  object-fit: contain;
}

.img__custom400 {
  height: 400px !important;
  object-fit: contain;
}

.img__custom500 {
  height: 500px !important;
  object-fit: contain;
}

.wrapper {
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.site-main {
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1300px;
  height: auto;
  padding: 0 20px;
  margin: 0 auto;
}

.btn__red {
  outline: none;
  background-color: var(--color-bardo);
  padding: 10px 20px;
  color: var(--color-text-white);
  border: none;
  border-radius: 4px;
  box-shadow: var(--box-shadow2);
  cursor: pointer;
  transition: all 0.2s linear;
}

.btn__red:focus,
.btn__red:hover {
  background-color: var(--color-red);
  color: var(--color-text-white);
  box-shadow: var(--box-shadow4);
}

.btn__black {
  outline: none;
  background-color: var(--color-black);
  padding: 10px 20px;
  color: var(--color-text-white);
  border: none;
  border-radius: 4px;
  box-shadow: var(--box-shadow2);
  cursor: pointer;
  transition: all 0.2s linear;
}

.btn__black:focus,
.btn__black:hover {
  background-color: var(--color-text-black);
  color: var(--color-text-white);
  box-shadow: var(--box-shadow4);
}

/* header */

.header__language {
  background: #eee;
  padding: 20px;
  border-radius: 50%;
}

.header__language a {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.header__content {
  position: relative;
}

.header__one {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__one-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 40px; */
}

.header__one-item:nth-child(2) {
  margin-left: 110px;
}

.header__one-item--width .search-form {
  display: flex;
  justify-content: flex-end;
  min-width: 200px;
}

.header__one-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

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

.header__one-logo img {
  max-width: 200px;
  height: 60px;
  object-fit: cover;
}

.header__one-mobile-menu {
  display: none;
}

.header__one-menu-bt {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header__two {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__two-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__two-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

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

.header__two-logo img {
  max-width: 200px;
}

.header__two-mobile-menu {
  display: none;
}

.header__three {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__three-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__three-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

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

.header__three-logo img {
  max-width: 200px;
}

.header__three-mobile-menu {
  display: none;
}

.header__four {
  background: #333;
  color: var(--color-text-white);
  padding: 10px 0;
  width: 100%;
  box-shadow: var(--box-shadow4);
}

.header__four-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header__four-group__btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

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

.header__four-logo img {
  max-width: 200px;
}

.header__four-mobile-menu {
  display: none;
}

/* ./header */

/* mobile menu */

.mobile__menu-container {
  position: relative;
}

.mobile__menu-btn {
  display: block;
  width: 40px;
  height: 40px;
  background: #ff0000;
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
  outline: none;
  border: none;
  transition: all 0.2s linear;
  position: relative;
  z-index: 9999;
  font-size: 0;
}

.mobile__menu-btn.active {
  position: fixed;
  top: 20px;
  right: 20px;
}

.mobile__menu-btn.active .mobile__menu-line {
  height: 0;
}

.mobile__menu-btn.active .mobile__menu-line::before {
  transform: translateY(10px) rotate(-45deg);
}

.mobile__menu-btn.active .mobile__menu-line::after {
  transform: translateY(-10px) rotate(45deg);
}

.mobile__menu-line {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.mobile__menu-line::after,
.mobile__menu-line::before {
  content: "";
  position: absolute;
  border-radius: 4px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transform: translateY(0) rotate(0);
}

.mobile__menu-line::before {
  bottom: 10px;
}

.mobile__menu-line::after {
  bottom: -10px;
}

.mobile__menu-menu {
  /* display: none; */
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 999;
  background-color: #000;
  width: 75%;
  height: 100%;
  transition: transform 0.3s ease;
}

.mobile__menu-menu.active {
  display: block;
  transform: translateX(133%);
  overflow-y: auto;
  height: 100%;
}

.mobile__menu-menu #menu-top > ul {
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  padding: 0 20px;
}

.mobile__menu-menu #menu-top a {
  padding: 0;
  color: #fff;
  transition: all 0.2s linear;
}

.mobile__menu-menu #menu-top a:focus,
.mobile__menu-menu #menu-top a:hover {
  color: #ff0000;
}

.mobile__menu-logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  padding: 0 20px;
}

.mobile__menu-logo.left {
  align-items: flex-start;
}

.mobile__menu-logo.right {
  align-items: flex-end;
}

.mobile__menu-img {
  max-width: 250px;
  object-fit: contain;
}

.mobile__menu-text {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.mobile__menu-container .header__one-group__btn {
  padding: 0 20px;
  margin-top: 40px;
  justify-content: center;
}

.header__two-mobile-menu .mobile__menu-btn.active {
  right: inherit;
  left: 20px;
}

.header__three-mobile-menu .mobile__menu-btn.active {
  right: inherit;
  left: 20px;
}

.header__four-mobile-menu .mobile__menu-line {
  display: none;
}

.header__four-mobile-menu .mobile__menu-btn {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  border-radius: 0;
}

.mobile__menu-container .header__one-group__btn.left {
  justify-content: flex-start;
}

.mobile__menu-container .header__one-group__btn.right {
  justify-content: flex-end;
}

.mobile__menu-menu.active .botton__btn-fixed {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
}

.mobile__menu-menu.active .botton__btn-fixed .header__one-btn {
  width: 50%;
  text-align: center;
}

/* ./ mobile menu */

/* menu */

#menu-top * {
  margin: 0;
  padding: 0;
}

#menu-top ul,
#menu-top ol {
  list-style: none;
}

#menu-top > ul {
  display: flex;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
}

#menu-top > ul li {
  position: relative;
  /* border-right: 1px solid #c7c8ca; */
}

#menu-top > ul li:first-child {
  /* border-left: 1px solid #b2b3b5; */
}

#menu-top > ul li:last-child {
  /* border-right: 1px solid #babbbd; */
}

#menu-top > ul li > a i.fa {
  position: absolute;
  top: 15px;
  left: 12px;
  font-size: 18px;
}

#menu-top > ul li a {
  display: block;
  /* background: rgb(201, 201, 201);
	background: -moz-linear-gradient(top, rgba(201, 201, 201, 1) 0%, rgba(246, 246, 246, 1) 2%, rgba(196, 197, 199, 1) 98%, rgba(117, 117, 119, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(201, 201, 201, 1) 0%, rgba(246, 246, 246, 1) 2%, rgba(196, 197, 199, 1) 98%, rgba(117, 117, 119, 1) 100%);
	background: linear-gradient(to bottom, rgba(201, 201, 201, 1) 0%, rgba(246, 246, 246, 1) 2%, rgba(196, 197, 199, 1) 98%, rgba(117, 117, 119, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9c9c9', endColorstr='#757577', GradientType=0); */

  padding: 10px 20px 0 10px;
  font-size: 14px;
  color: var(--color-text-white);
  text-decoration: none;
  text-transform: math-auto;
  transition: all 0.3s ease;
}

.footer-menu #menu-top > ul li a {
  padding: 0;
}

#menu-top li a:hover {
  /* background: rgb(224, 225, 229);
	background: -moz-linear-gradient(top, rgba(224, 225, 229, 1) 0%, rgba(69, 69, 71, 1) 2%, rgba(69, 69, 71, 1) 98%, rgba(224, 225, 229, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(224, 225, 229, 1) 0%, rgba(69, 69, 71, 1) 2%, rgba(69, 69, 71, 1) 98%, rgba(224, 225, 229, 1) 100%);
	background: linear-gradient(to bottom, rgba(224, 225, 229, 1) 0%, rgba(69, 69, 71, 1) 2%, rgba(69, 69, 71, 1) 98%, rgba(224, 225, 229, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e0e1e5', endColorstr='#e0e1e5', GradientType=0); */

  color: var(--color-red) !important;
  /* box-shadow: 1px 5px 10px -5px black; */
  transition: all 0.3s ease;
}

/*sub menu*/
#menu-top li ul {
  position: absolute;
  min-width: 270px;
  background: #333333;
  display: none;
  border-radius: 4px;
  z-index: 999;
}

#menu-top li > ul li {
  border: 1px solid #c7c8ca;
}

#menu-top li > ul li a {
  padding: 10px;
  text-transform: none;
  /* background: #e4e4e5; */
}

#menu-top li > ul li ul {
  position: absolute;
  right: -150px;
  left: 100%;
  top: 0;
  z-index: 1;
}

#menu-top li:hover > ul {
  display: block;
}

#menu-top ul li:has(ul) > a::after {
  content: "\25BC";
  position: absolute;
  top: 41%;
  right: -18px;
  transform: translateY(-50%) rotate(0);
  transition: all 0.2s linear;
  width: 10px;
  height: 10px;
}

#menu-top > ul > li:has(ul) > a:focus::after,
#menu-top > ul > li:has(ul) > a:hover::after {
  /* transform: translateY(50%) rotate(180deg); */
}

#menu-top > ul > li > a::after {
  content: none;
}

#menu-top > ul > li > ul > li:has(ul) > a::after {
  z-index: 2;
  right: 8px;
  transition: all 0.2s linear;
}

#menu-top > ul > li > ul > li:has(ul):hover > a::after,
#menu-top > ul > li:has(ul):hover > a::after,
#menu-top > ul > li:has(ul):hover > a:hover::after,
#menu-top > ul > li:has(ul):hover ul li a:hover + a::after {
  /* transform: translateY(-50%) rotate(180deg); */
}

#menu-top > ul > li > ul > li:has(ul):hover > a,
#menu-top > ul > li:hover > a {
  color: var(--color-red);
  /* Используйте нужный вам цвет */
}

#menu-top .sub-menu-toggle {
  display: none;
}

#menu-top .sub-menu-top-toggle {
  content: "\25BC";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(0) rotate(0);
  transition: all 0.2s linear;
  width: 10px;
  height: 10px;
  background: url(/wp-content/themes/gmb/assets/images/down.png);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  border: none;
  display: block;
}

#menu-top .sub-menu-top-toggle:focus,
#menu-top .sub-menu-top-toggle:hover,
#menu-top .sub-menu-top-toggle:active {
  transform: translateY(0) rotate(180deg);
}

.top-menu > li > .sub-menu-top-toggle {
  right: 0px !important;
}

#menu-top > ul > li:focus > .sub-menu-top-toggle,
#menu-top > ul > li:hover > .sub-menu-top-toggle {
  transform: translateY(0) rotate(180deg);
}

.menu-item-has-children:focus > .sub-menu-top-toggle,
.menu-item-has-children:hover > .sub-menu-top-toggle {
  transform: translateY(0) rotate(180deg);
}

.icon-plus {
  display: none;
}

.icon-minus {
  display: none;
}

.screen-reader-text {
  display: none;
}

#menu-top ul li:has(ul) > a::after {
  display: none;
}

/* ./menu */

.content__page {
  padding: 60px 0;
}

/* e-rating */

.e-rating-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}

.e-rating-wrapper svg {
  width: 15px;
  height: 15px;
}

.e-icon {
  position: relative;
}

.e-icon-marked > svg {
  fill: #f0ad4e;
}

.e-icon-marked:last-child {
  --e-rating-icon-marked-width: 50%;
}

.e-icon-unmarked {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.e-icon-unmarked > svg {
  fill: #ccd6df;
}

/* ./e-rating */

/* info */

.info {
  margin-top: 30px;
}

.info-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--color-text-white);
  padding: 20px;
  border: 1px solid;
}

.info-logo {
  max-width: 190px;
  object-fit: contain;
}

.info-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 10px;
  align-items: center;
}

.info__title {
  font-size: 18px;
  font-weight: 600;
  color: #999;
}

.info__text {
  font-size: 17px;
  font-weight: 700;
}

/* ./info */

/* banner__casino */

.banner__casino {
  margin-top: 40px;
}

.banner__casino-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: #fff;
  padding: 20px;
  border: 1px solid;
}

.banner__casino-item:nth-child(1) {
  width: 60%;
}

.banner__casino-item:nth-child(2) {
  width: 40%;
}

.banner__casino-item__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.banner__casino-img {
  border-radius: 10px;
}

.banner__casino-single-item {
  display: flex;
  justify-content: center;
}

.banner__casino-link {
  background: #f7f7f7;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  cursor: pointer;
}

.banner__casino-link:focus,
.banner__casino-link:hover {
  box-shadow: var(--box-shadow4);
}

.banner__casino-single-img {
  max-width: 300px !important;
  height: auto !important;
  object-fit: cover;
}

.banner__casino-single-content {
  margin-top: 15px;
  padding: 0 20px;
}

.banner__casino-single-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.banner__casino-single-subtitle {
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
  font-weight: 700;
  color: #999;
}

/* ./banner__casino */

/* tables */

.tables {
  max-width: 800px;
  margin: 60px auto 0;
}

.tables-inner {
  display: block;
}

.tables-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

.tables-pole {
  border: 1px solid #999;
  padding: 10px 20px;
}

.tables-pole:nth-child(2) {
  font-weight: 600;
}

/* ./tables */

/* block_co */

.block_co {
  margin-top: 60px;
}

.block_co-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.block_co-item {
  display: flex;
  width: 14%;
}

.block_co-link {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  cursor: pointer;
  width: 100%;
}

.block_co-link:focus,
.block_co-link:hover {
  box-shadow: var(--box-shadow4);
}

.block_co-img {
  max-width: 100% !important;
  height: 130px !important;
  object-fit: cover;
}

.block_co-content {
  margin-top: 15px;
  padding: 0 20px;
}

.block_co-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

/* ./block_co */

/* block_co */

.block_rand {
  margin-top: 30px;
}

.block_rand-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.block_rand-item {
  display: flex;
  width: 15%;
}

.block_rand-link {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  cursor: pointer;
  width: 100%;
}

.block_rand-link:focus,
.block_rand-link:hover {
  box-shadow: var(--box-shadow4);
}

.block_rand-img {
  max-width: 100% !important;
  height: 130px !important;
  object-fit: cover;
}

.block_rand-content {
  margin-top: 15px;
  padding: 0 20px;
}

.block_rand-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

/* ./block_co */

/* providers */

.providers {
  margin-top: 40px;
}

.providers-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 30px;
}

.providers-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow2);
  cursor: pointer;
  transition: all 0.2s linear;
}

.providers-item:focus,
.providers-item:hover {
  box-shadow: var(--box-shadow4);
}

.providers-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.providers-img {
  display: block;
  max-width: 100% !important;
  height: 150px !important;
  object-fit: contain;
}

.providers-title {
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s linear;
}

.providers-item:focus .providers-title,
.providers-item:hover .providers-title {
  color: var(--color-bardo);
}

.slider-partners__inner {
  padding-bottom: 40px;
}

/* footer */

.footer {
  background-color: var(--color-text-black);
  color: #fff;
  padding: 0 0 30px;
  margin-top: 50px;
}

.footer-content {
}

.footer-redactor {
  margin-top: 30px;
}

.footer-gallery {
  margin-top: 30px;
  display: flex;
}

.footer-gallery.center {
  justify-content: center;
}

.footer-gallery.left {
  justify-content: flex-start;
}

.footer-gallery.right {
  justify-content: flex-end;
}

.footer-gallery__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-gallery__item {
}

.footer-gallery__item img {
  max-width: 100px !important;
  height: auto !important;
  object-fit: contain;
}

.copyright {
  margin-top: 30px;
}

/* ./footer */

/* btn-game */

.btn-game__container {
  display: flex;
  margin-top: 60px;
}

.btn-game__container.left {
  justify-content: flex-start;
}

.btn-game__container.right {
  justify-content: flex-end;
}

.btn-game__container.center {
  justify-content: center;
}

.btn-game {
  padding: 10px 30px;
}

/* ./btn-game */

/*  Modal */

.modals {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10999999;
  overflow: auto;
  margin: 0 !important;
}

.modals__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  padding: 20px;
  opacity: 0;
  box-shadow: var(--box-shadow4);
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.modals__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1010;
  background: none;
  outline: none;
  border: 0;
  cursor: pointer;
  padding: 7px 12px;
  font-size: 18px;
  background-color: #333 !important;
  color: #fff;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.modals__close:focus,
.modals__close:hover {
  color: var(--color-bardo);
}

/* ./ Modal */

/* modals__game */

.modals__game-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

.modals__game-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.modals__game-btn {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

/* ./modals__game */

.counter {
  font-size: 18px;
  font-weight: 700;
}

.redactor {
  margin: 50px 0 0;
  font-size: 16px;
}

/* footer-menu */

.footer-menu {
  margin: 30px 0;
}

.footer-menu.left #menu-footer-menu {
  justify-content: flex-start !important;
}

.footer-menu.right #menu-footer-menu {
  justify-content: flex-end !important;
}

.footer-menu.center #menu-footer-menu {
  justify-content: center !important;
}

/* ./footer-menu */

/* slider-full */

.slider-full .swiper-wrapper {
  /* padding: 0 0 40px; */
}

.slider-full__item {
  position: relative;
}

.slider-full__img img {
  height: 500px;
  object-fit: cover;
}

.slider-full__content {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.slider-full__text {
  font-size: 24px;
  font-weight: 600;
  max-width: 700px;
}

.swiper-button-prev,
.swiper-button-next {
  background: #fff;
  padding: 10px;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  transition: all 0.2s linear;
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-next:hover {
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 25px !important;
  font-weight: 700;
  color: #333;
}

.slider-full-pagination {
}

/* ./slider-full */

/* content__page__row */

.content__page__row {
  display: grid;
  grid-template-columns: 9fr 3fr;
  grid-gap: 40px;
}

.content__right {
  max-width: 330px;
}

.content__right > div {
  border-bottom: 2px solid #333;
  padding-bottom: 30px;
  margin-top: 30px;
}

/* ./content__page__row */

/* planets */

.planets {
  margin-top: 40px;
}

.planets__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  border-top: 2px solid #333;
  /* border-bottom: 2px solid #333; */
  padding: 30px 0 0;
}

.planets__link img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ./planets */

/* sidebar__img */

.sidebar__img__title {
  font-size: 20px;
  font-weight: 700;
}

.sidebar__img__img {
  margin-top: 20px;
}

.sidebar__img__text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}

.sidebar__slider {
  margin-top: 20px;
}

.sidebar__slider-pagination {
  bottom: 18px !important;
}

.sidebar__slider .sidebar__slider__text {
  margin-top: 20px;
}

/* ./sidebar__img */

/* custom__text__sidebar */

.custom__text__sidebar__title {
  font-size: 20px;
  font-weight: 700;
}

.custom__text__sidebar__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
}

/* ./custom__text__sidebar */

/* conclution__img */

.conclution__img {
  margin-top: 30px;
}

.conclution__img__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}

.conclution__img__inner-two {
  grid-template-columns: 1fr 1fr;
}

.conclution__img__inner-tree {
  grid-template-columns: 1fr 1fr 1fr;
}

.conclution__img__item img {
  height: 100%;
  max-width: 100%;
}

/* ./conclution__img */

/* block__news */

.block__news {
  margin-top: 50px;
}

.block__news__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}

.block__news__item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/4;
}

.block__news__item:nth-child(2) {
}

.block__news__item:nth-child(3) {
}

.block__news__item:nth-child(4) {
}

.block__news__item:nth-child(5) {
}

.block__news__link {
  text-decoration: none;
}

.block__news__item:nth-child(1) .block__news__thumbnail img {
  height: 408px;
}

.block__news__thumbnail img {
  height: 157px;
  object-fit: cover;
}

.block__news__content {
  margin-top: 20px;
}

.block__news__item__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.block__news__date {
  font-size: 12px;
  margin-top: 10px;
}

/* ./block__news */

/* search */

.search-form {
  position: relative;
}

.search-wrapper {
  position: relative;
  display: inline-block;
}

.search-fields {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease;
}

.search-fields input.search-field {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  outline: none;
  border: none;
  border-bottom: 1px solid #333;
  font-size: 20px;
}

.search-fields button.search-submit {
  padding: 10px 20px;
  background: #ff0000;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
}

.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  /* Размер иконки поиска */
}

.search-icon img {
  width: 30px;
  height: 30px;
}

.search-wrapper.active .search-fields {
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  padding: 30px;
  background: #fff;
  z-index: 99999;
  box-shadow: 0 4px 10px rgb(0, 0, 0, 0.2);
}

/* ./search */

.btn__not__lemited {
  margin-top: 50px;
}

.btn__not__lemited__inner {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.btn__not__lemited__inner2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.custom__link__one-link {
  text-decoration: underline;
  font-size: 16px;
}

.custom__link__one-link:focus,
.custom__link__one-link:hover {
  text-decoration: none !important;
}

/* news__str */

.news__str-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news__str-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.news__str-thumbnail img {
  height: 260px;
  object-fit: cover;
}

.news-content {
  padding-top: 20px;
}

.news__str-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.news__str-date {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
}

.news__str-excerpt {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}

.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ./news__str */

/* host__countries__block */

.host__countries__block {
  margin-top: 50px;
}

.host__countries__block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.host__countries__block-link {
  padding: 20px;
  box-shadow: var(--box-shadow2);
  display: block;
  transition: all 0.2s linear;
  text-decoration: none !important;
}

.host__countries__block-link:focus,
.host__countries__block-link:hover {
  box-shadow: var(--box-shadow4);
  text-decoration: none !important;
}

.host__countries__block-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.host__countries__block-group img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.host__countries__block-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.host__countries__block-link:focus .host__countries__block-text,
.host__countries__block-link:hover .host__countries__block-text,
.host__countries__block-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 15px;
  min-height: 100px;
  text-decoration: none !important;
}

/* ./host__countries__block */

/* qualification__block */

.qualification__block {
  margin-top: 50px;
}

.qualification__block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}

.qualification__block-item {
  min-height: 200px;
}

.qualification__block-link {
  padding: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: rgb(255, 255, 255, 0.7);
}

.qualification__block-link:focus,
.qualification__block-link:hover {
  box-shadow: var(--box-shadow4);
  text-decoration: none !important;
  background: rgb(255, 255, 255, 0);
}

.qualification__block-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.qualification__block-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 15px;
  min-height: 100px;
  text-decoration: none !important;
}

/* ./qualification__block */

/* block__group */

.block__group {
  margin-top: 50px;
}

.block__group-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.block__group-item-decore {
  grid-column: 1/3;
}

.block__group-link {
  width: 100%;
  display: block;
}

.block__group-title {
  font-size: 20px;
}

/* ./block__group */

/* gorizon__btn */

.gorizon__btn {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gorizon__btn-two {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

/* .gorizon__btn-two .gorizon__btn-link {
	width: 50%;
} */

.gorizon__btn-tree {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}

/* .gorizon__btn-tree .gorizon__btn-link {
	width: 33%;
} */

.gorizon__btn-link {
  text-align: center;
  font-size: 20px;
  padding: 14px;
}

/* ./gorizon__btn */

/* city__group */

.city__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  max-width: 800px;
  margin: 50px auto 0;
}

.city__group-item {
  min-height: 180px;
}

.city__group-link {
  padding: 20px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: rgb(255, 255, 255, 0.7);
}

.city__group-link:focus,
.city__group-link:hover {
  box-shadow: var(--box-shadow4);
  text-decoration: none !important;
  background: rgb(255, 255, 255, 0);
}

.city__group-title {
  font-size: 30px;
  font-weight: 600;
}

/* ./city__group */

/* choice__tables */

.choice__tables {
  margin-top: 50px;
}

.choice__tables-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 15px;
  left: 10px;
}

.choice__tables-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.choice__tables-item {
  position: relative;
}

.choice__tables-row {
  display: grid;
  grid-template-columns: 1fr;
}

.choice__tables-row-13 .choice__tables-col {
  grid-template-columns: 1fr 3fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1.5fr 1fr 1.5fr;
}

.choice__tables-col {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1.5fr 1fr 1.5fr;
  border-bottom: 1px solid #eee;
}

.choice__tables-col:nth-child(2n) {
  background-color: #f7f7f7;
}

.choice__tables-col:nth-child(1) .choice__tables-num,
.choice__tables-col:nth-child(1) .choice__tables-city {
  font-size: 14px;
  font-weight: 700;
  color: #b4b4b4;
}

.choice__tables-col:nth-child(1) .choice__tables-pole {
  border-top: 1px solid #eee;
}

.choice__tables-group-flag {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.choice__tables-city {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.choice__tables-city img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.choice__tables-num {
  padding: 5px;
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
}

.choice__tables-col:nth-child(1) .choice__tables-num {
  border-right: none;
}

.choice__tables-city {
  padding: 5px;
  display: flex;
  align-items: center;
  border-right: 1px solid #eee;
}

.choice__tables-pole {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eee;
}

.choice__tables-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.choice__tables-group-num {
  font-size: 14px;
  font-weight: 600;
}

.choice__tables-pole-zn {
  font-size: 13px;
  font-weight: 600;
}

.choice__tables-pole-color {
  background-color: #eee;
  width: 100%;
  height: 100%;
}

/* ./choice__tables */

/* schedule */

.schedule {
  margin-top: 50px;
}

.schedule__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.schedule__item {
}

.schedule__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: var(--box-shadow2);
  transition: all 0.2s linear;
  /* background: #eee; */
  padding: 20px;
}

.schedule__link:focus,
.schedule__link:hover {
  box-shadow: var(--box-shadow4);
}

.schedule__link__item:nth-child(1) {
  width: 60%;
}

.schedule__link__item:nth-child(2) {
  width: 40%;
}

.schedule__title {
  font-size: 24px;
  font-weight: 700;
}

.schedule__link img {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ./schedule */

/* tables__commands */

.tables__commands {
  margin-top: 50px;
}

.tables__commands__title {
  font-size: 24px;
  font-weight: 700;
}

.tables__commands__item {
  margin-top: 20px;
}

.tables__commands__row {
}

.tables__commands__col {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr 1fr;
  border-bottom: 1px solid #eee;
  transition: all 0.2s linear;
}

.tables__commands__col:not(:nth-child(1)):focus,
.tables__commands__col:not(:nth-child(1)):hover {
  background-color: rgba(255, 125, 0, 0.08);
}

.tables__commands__col:nth-child(2n) {
  background-color: #f7f7f7;
  transition: all 0.2s linear;
}

.tables__commands__col:nth-child(2n):focus,
.tables__commands__col:nth-child(2n):hover {
  background-color: rgba(255, 125, 0, 0.08);
}

.tables__commands__col:nth-child(1) .tables__commands__tur,
.tables__commands__col:nth-child(1) .tables__commands__data,
.tables__commands__col:nth-child(1) .tables__commands__match,
.tables__commands__col:nth-child(1) .tables__commands__schet {
  color: #d4d4d4;
}

.tables__commands__tur {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #eee;
}

.tables__commands__data {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #eee;
}

.tables__commands__match {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #eee;
}

.tables__commands__schet {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

/* ./tables__commands */

/* knockout-tree */

.knockout-tree {
  margin-top: 50px;
}

.knockout-tree__mobile {
  display: none;
}

.t-grid-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 0;
}

.t-grid-column:first-child {
  padding-left: 0;
}

.t-grid-column {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 5px;
  pointer-events: none;
  position: relative;
}

.t-grid-match {
  background: #fff;
  display: block;
  height: 52px;
  min-width: 202px;
  pointer-events: auto;
  position: relative;
}

.t-grid-team._highlighted {
  /* background: #022236;
	border-color: #022236; */
  background: initial;
  border-color: #d7d8dc;
  color: #fff;
}

.t-grid-team:first-of-type {
  border-bottom: 0;
}

.t-grid-team {
  border: 1px solid #d7d8dc;
  color: #36393f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font: 13px / 1.38 Roboto Condensed, Arial Narrow, sans-serif;
  height: 26px;
  padding: 0 0 0 5px;
}

.t-grid-team__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  height: 20px;
  margin: 0 8px 0 0;
  text-align: center;
  white-space: nowrap;
}

.t-grid-team__logo img {
  display: inline-block;
  height: auto;
  width: 20px;
}

.t-grid-team._highlighted .t-grid-team__name,
.t-grid-team._highlighted .t-grid-team__score span {
  color: #fff;
  font-weight: 400;
}

.t-grid-team__name {
  color: #36393f;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  line-height: 26px;
  min-width: 0;
  overflow: hidden;
  padding-right: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._with-additional .t-grid-team__score {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
}

.t-grid-team__score {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 23px;
  flex: 0 0 23px;
  height: 100%;
  letter-spacing: -0.5px;
  line-height: 26px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.score-content {
  color: #333;
}

._with-additional .t-grid-team__score .score-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.t-grid-team__score .score-content {
  display: block;
  height: 100%;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.t-grid-team__score a {
  cursor: pointer;
}

.t-grid-team .t-grid-team__name-font {
  color: #333;
}

._with-additional .t-grid-team__score:after {
  width: 45px;
}

.t-grid-team__score:after {
  background: #fff5ed;
  bottom: 1px;
  content: "";
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 23px;
}

.t-grid-team:last-of-type {
  border-top: 0;
}

.t-grid-match:nth-child(odd):after {
  border-bottom: 0;
  top: 26px;
}

.t-grid-match:after {
  border: 1px solid #d7d8dc;
  border-left: 0;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  right: -30px;
  width: 30px;
}

.t-grid-match:nth-child(2n) {
  margin-top: 10px;
}

.t-grid-team._lose .t-grid-team__name {
  color: #333;
}

.t-grid-match:nth-child(2n):after {
  border-top: 0;
  bottom: 26px;
}

.t-grid-match:nth-child(2n + 3) {
  margin-top: 20px;
}

.js-t-grid-columns.t-grid-columns > div:nth-child(4) > div:after {
  display: none;
}

.t-grid-column:last-child {
  padding-right: 0;
}

@media print, screen and (min-width: 768px) {
  .t-grid-column:first-child .t-grid-match:after {
    height: 5px;
  }

  .t-grid-column:nth-child(2) {
    max-width: 228px;
    padding-top: 31px;
  }

  .t-grid-column:nth-child(2) .t-grid-match:after {
    height: 41px;
  }

  .t-grid-column:nth-child(2) .t-grid-match + .t-grid-match {
    margin-top: 82px;
  }

  .t-grid-column:nth-child(3) {
    max-width: 228px;
    padding-top: 98px;
  }

  .t-grid-column:nth-child(4) {
    max-width: 228px;
    padding-top: 232px;
  }

  .t-grid-column:nth-child(3) .t-grid-match + .t-grid-match {
    margin-top: 216px;
  }

  .t-grid-column:nth-child(3) .t-grid-match:after {
    height: 108px;
  }

  .t-grid-column:first-child {
    max-width: 328px;
    padding-top: 0;
  }
}

/* ./knockout-tree */

/* play__off */

.play__off {
  margin-top: 50px;
}

.play__off-title {
  font-size: 30px;
  font-weight: 700;
}

.play__off-tag {
  font-size: 16px;
  font-weight: 500;
  color: #94999f;
  margin-top: 20px;
}

.play__off-inner {
  margin-top: 10px;
  max-width: 500px;
  /* border: 1px solid #d7d8dc; */
}

.play__off-item {
  /* border-bottom: 1px solid #d7d8dc; */
}

.play__off-item:last-child {
  border-bottom: none;
}

.play__off-item:nth-child(odd) {
  background-color: #f7f7f7;
  border-top: 1px solid #d7d8dc;
  border-bottom: 1px solid #d7d8dc;
}

.play__off-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.play__off-col {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

/* .play__off-col:nth-child(2) {
	align-items: center;
} */

.play__off-tage-name {
  padding: 5px;
  min-width: 50px;
}

.play__off-schet {
  padding: 5px 10px;
  font-weight: 600;
  min-width: 80px;
}

.play__off-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  min-width: 160px;
}

.play__off-name {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.play__off-name img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.play__off-name span {
}

/* ./play__off */

/* blok__permalink */

.blok__permalink {
  margin-top: 50px;
}

.blok__permalink-inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blok__permalink-item {
  width: 30%;

  background-size: cover;
  background-repeat: no-repeat;
}

.blok__permalink-item-bg {
  width: 100%;
  height: 100%;

  display: block;
  background-color: rgb(255, 255, 255, 0.6);
}

.blok__permalink-link {
  padding: 20px 20px 40px;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.blok__permalink-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  min-height: 60px;
}

.blok__permalink-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 20px;
  font-size: 14px;
}

/* ./blok__permalink */

/* footer2 */

.footer2 {
  padding: 60px 0 30px;
}

.footer2__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}

.footer2__logo img {
  max-width: 170px;
  object-fit: contain;
}

.footer__img-cont {
  display: flex;
  justify-content: flex-end;
}

.footer__img-cont img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.footer2__item:nth-child(4) {
  /* align-content: center; */
}

.footer2__item:nth-child(5) {
  grid-column: 1/5;
  grid-row: 2/3;
}

.footer2__item:nth-child(6) {
  grid-column: 1/5;
  grid-row: 3/4;
}

.footer2__redactor {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #505050;
}

.footer2 .copyright {
  text-align: center;
  margin-top: 0;
}

.footer2__menu .footer-menu-b {
  flex-direction: column;
  gap: 0px;
}

.footer2__menu #menu-top > ul li a {
  padding: 0;
}

/* ./footer2 */

/* forecasts */

.forecasts {
  margin-top: 50px;
}

.forecasts__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.forecasts__item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 230px;
}

.forecasts__item__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, 0.6);
  transition: all 0.2s linear;
}

.forecasts__item__link:focus,
.forecasts__item__link:hover {
  background: rgb(255, 255, 255, 0);
}

.forecasts__item__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.forecasts__item__date {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

/* ./forecasts */

/* all__forecasts */

.all__forecasts {
  margin-top: 50px;
}

.all__forecasts__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  justify-content: center;
}

.all__forecasts__group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.all__forecasts__group img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.all__forecasts__link {
  box-shadow: var(--box-shadow2);
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
  min-height: 280px;
}

.all__forecasts__link:focus,
.all__forecasts__link:hover {
  box-shadow: var(--box-shadow4);
}

.all__forecasts__date {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.all__forecasts__name {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.all__forecasts__name span {
  display: block;
}

/* ./all__forecasts */

/* ogr__forecasts__inner */

.ogr__forecasts__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ogr__forecasts__item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.ogr__forecasts__link {
  box-shadow: var(--box-shadow2);
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, 0.6);
}

.ogr__forecasts__link:focus,
.ogr__forecasts__link:hover {
  box-shadow: var(--box-shadow4);
  background: rgb(255, 255, 255, 0);
}

.ogr__forecasts__group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.ogr__forecasts__group img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.ogr__forecasts__date {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.ogr__forecasts__name {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.ogr__forecasts__name span {
  display: block;
}

/* ./ogr__forecasts__inner */

/* tables__coef */

.tables__coef {
  margin-top: 30px;
  overflow-x: auto;
  width: 100%;
}

.tables__coef__inner {
  /* overflow-x: auto; */
  /* min-width: 100px; */
  display: block;
  padding-bottom: 20px;
}

.tables__coef__list {
  display: grid;
  grid-template-columns: 3fr 3fr 1fr 1fr 1fr 1fr 1fr 1fr;
  padding: 10px;
}

.tables__coef__item:nth-child(1) .tables__coef__name,
.tables__coef__item:nth-child(1) .tables__coef__date,
.tables__coef__item:nth-child(1) .tables__coef__pole {
  font-weight: 600;
}

.tables__coef__date,
.tables__coef__name {
  white-space: nowrap;
  /* min-width: 230px; */
}

/* .tables__coef__pole {
	min-width: 50px;
} */

.tables__coef__item:nth-child(odd) {
  background-color: #f7f7f7;
  border-top: 1px solid #d7d8dc;
  border-bottom: 1px solid #d7d8dc;
}

/* ./tables__coef */

.all__strategii__item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.all__strategii__item a {
  box-shadow: var(--box-shadow2);
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255, 0.6);
}

.all__strategii__item a:focus,
.all__strategii__item a:hover {
  box-shadow: var(--box-shadow4);
  background: rgb(255, 255, 255, 0);
}

.all__strategii__item .all__forecasts__name {
  font-size: 24px;
  margin-top: 0;
}

/* bookmeker */

.bookmeker {
  margin-top: 50px;
}

.bookmeker__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bookmeker__item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  grid-gap: 30px;
}

.bookmeker__item:nth-child(odd) {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.bookmeker__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bookmeker__logo__link img {
  width: 200px;
  height: 100px;
  object-fit: cover;
}

.bookmeker__raiting {
  position: relative;
  width: 100%;
  height: 20px;
}

.bookmeker__raiting:before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  color: #ff3d00;
  content: "\2605\2605\2605\2605\2605";
  transition: 0.1s;
  width: 100%;
}

.bookmeker__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bookmeker__cont__btn {
  display: flex;
  justify-content: center;
}

.bookmeker__cont__btn .bookmeker__btn {
  width: 100%;
  text-align: center;
}

.bookmeker__cont {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.bookmeker__cont a {
  text-align: center;
}

.bookmeker__cont a:nth-child(2) {
  width: 100%;
}

.bookmeker__reviews__link {
  font-weight: 600;
}

.bookmeker__name {
  font-weight: 600;
}

/* ./bookmeker */

/* tables__5 */

.tables__5 {
  margin-top: 30px;
}

.tables__5__inner {
  padding-bottom: 20px;
}

.tables__5__item {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr 1fr 2fr;
}

.tables__5__item:nth-child(2n) {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #f7f7f7;
}

.tables__5__item:nth-child(1) .tables__5__pole {
  font-size: 14px;
  font-weight: 700;
  color: #9a9a9a;
}

.tables__5__pole {
  padding: 10px;
  border-right: 1px solid #eee;
}

.tables__5__pole:last-child {
  border-right: none;
}

/* ./tables__5 */

/* faq */

.faq {
  margin: 40px 0;
}

.faq-title {
  text-align: center;
}

.faq-accordion {
  margin-top: 60px;
}

.faq-accordion__item {
  padding: 30px 0 27px;
  border-bottom: 1px solid #000;
}

.faq-accordion__item:first-child {
  border-top: 1px solid #000;
}

.faq-accordion__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-accordion__text {
  color: #000;
}

.accordion-icon {
  background: #727272;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 40px;
  transition: transform 0.3s ease;
}

.accordion-icon span {
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  line-height: 20px;
  width: 21.6px;
  height: 21.6px;
  /* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}

/* ./faq */

/* OGL */

.contents__block {
  margin-top: 30px;
  border: 1px solid #eee;
  padding: 20px;
}

.contents__block__title {
  font-size: 20px;
  font-weight: 600;
}

.contents__block__content {
}

#table-of-contents {
  list-style-type: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ./OGL */

/* flexible-tables */

.flexible-tables {
  margin: 50px 0;
}

.flexible {
  overflow-x: auto;
}

.flexible-tables__row {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  overflow-x: auto;
  min-width: 1000px;
}

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

.flexible-tables__col:nth-child(2n) {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #f7f7f7;
}

.flexible-tables__item {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  border-right: 1px solid #eee;
}

.flexible-tables__item:last-child {
  border-right: none;
}

/* ./flexible-tables */
