:root {
  --font-family: "Roboto", sans-serif;
  --light-color: #fff;
}

.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoMedium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/RobotoBlack.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  padding: 0;
  font-family: "Roboto", sans-serif;
  width: 100%;
  margin: 0 auto;
  background: #0A0F1D;
  font-weight: 400;
}

.main{
  margin: 0 auto;
}

main {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5px;
}
@media (max-width: 700px) {
  main {
    padding-top: 65px;
  }
}
@media (max-width: 480px) {
  main {
    padding-top: 85px;
  }
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

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

a {
  text-decoration: none;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

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

.input-reset {
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

header {
  background: #181E31;
  width: 100%;
  z-index: 5;
}
@media (max-width: 700px) {
  header {
    position: fixed;
  }
}

.d_flex {
  display: flex;
  justify-content: flex-end;
}

.header__container {
  padding: 14px 0;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #181E31;
  padding: 10px 10px;
  border-radius: 10px;
  align-items: center;
}
@media (max-width: 700px) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .header__container {
    flex-direction: column;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  width: 82px;
}
@media (max-width: 700px) {
  .header__logo {
    margin-left: 40px;
    margin-right: auto;
    z-index: 5;
  }
}

.header__logo img {
  width: 100%;
}

.reg {
  background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 5px 20px;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .reg {
    width: 50%;
  }
}

.reg-mob {
  display: none !important;
}

.log {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  background: linear-gradient(107deg, rgb(255, 202, 77) 0%, rgb(255, 148, 0) 100%);
  border-radius: 3px;
  padding: 5px 20px;
  margin-right: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .log {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .log {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .menu-cnt {
    width: 100%;
  }
}

.log-mob {
  display: none !important;
}

.header__menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}

.menu__right {
  display: flex;
  align-items: center;
  width: 100%;
}

.menu__right a:hover{
  font-weight: 700;
}

.lengts select {
  background-color: transparent;
  color: #fff;
  width: 45px;
  margin-right: 10px;
  cursor: pointer;
  border: none;
}

.lengts select option {
  color: #276aa5;
}

@media (max-width: 800px) {
  .lengts {
    display: none;
  }
}

.content {
  padding: 30px 30px;
  background-color: #181E31;
  border-radius: 10px;
  margin: 0 10px;
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 500px) {
  .content {
    padding: 20px 10px;
  }
}
.content h1 {
  font-size: 25px;
  margin-bottom: 35px;
}
.content h2 {
  font-size: 20px;
  margin-bottom: 25px;
}
.content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.content p {
  font-size: 16px;
  margin-bottom: 15px;
}
.content img {
  display: block;
  margin: 35px auto;
}
.content ul li:not(:last-child) {
  margin-bottom: 5px;
}
.content table {
  width: 100%;
  margin: 20px auto;
  border-radius: 10px;
  overflow: hidden;
  color: #000;
}
.content table tr {
  width: 100%;
  background-color: #fff;
}
.content table tr:nth-child(even) {
  width: 100%;
  background-color: #eeeef0;
}
.content table td {
  padding: 15px;
  border-right: 1px solid #eeeef0;
  white-space: wrap;
}

.content ul{
  margin: 20px 0;
  padding-left: 15px;
}

.content ul li ul{
  list-style-type: disc;
}

.content .list{
  list-style-type: disc;
  margin: 10px 0;
}

.footer {
  background: #0A0F1D;
  padding: 40px 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0px 0px;
  background: #0A0F1D;
  border-radius: 0 0 10px 10px;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.footer__logo img {
  width: 70px;
  margin-right: 15px;
}

.footer__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer__topcol {
  width: 100%;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__topcol {
    flex-direction: column;
  }
}

.social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
  padding-left: 0;
}

.social__item {
  margin-right: 10px;
  border-radius: 10px;
  overflow: hidden;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.social__item:hover {
  transform: scale(1.1);
}

.bg-tg {
  background: linear-gradient(240.2deg, #0fb1d6 0%, #08c 61.34%);
  box-shadow: 0 5px 16px rgba(76, 162, 246, 0.3019607843);
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  align-items: center;
}

.social__link img {
  width: 21px;
  height: 21px;
}

.bg-you {
  background: linear-gradient(135deg, #ff4f4f 0%, #f00 100%);
  box-shadow: 0 5px 16px rgba(246, 76, 76, 0.3019607843);
}

.bg-vk {
  background: linear-gradient(108.65deg, #91b8ef 2.63%, #4288ed 101.05%), linear-gradient(135deg, #ff4f4f 0%, #f00 100%);
  box-shadow: 0 5px 16px rgba(76, 185, 246, 0.3019607843);
}

.bg-inst {
  background: linear-gradient(214.99deg, #7e2bf4 7.65%, #ed146e 51.93%, #ffc90c 95.29%);
  box-shadow: 0 5px 16px rgba(186, 77, 101, 0.3019607843);
}

.sports {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  max-width: 700px;
}

.sports__item {
  margin-right: 10px;
}

.sports__item:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.sports__item img {
  object-fit: contain;
  height: 25px;
}

.sports__item:last-child {
  margin-right: 0px;
}

.pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .pay {
    overflow-x: scroll;
    flex-wrap: nowrap;
  }
}

.pay__item {
  background-color: #0A0F1D;
  opacity: 0.4;
  margin-right: 5px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .pay__item {
    min-width: 70px;
  }
}
.pay__item:hover {
  opacity: 1;
}

.pay__item img {
  height: 19px;
}

.footer__bototm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #215783;
  border-radius: 5px;
  margin: 5px 0;
}

.footer__text {
  background: #0A0F1D;
  width: 100%;
  border-radius: 10px;
}

.footer__cont {
  border-radius: 5px;
  padding: 15px;
}

.footer__text p {
  color: #bed2e4;
  font-size: 12px;
}

.footer__cont p {
  margin-bottom: 10px;
}

.footer__cont strong {
  font-weight: 700;
}

.footer__text p a {
  color: #fff;
  font-size: 12px;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 0 20px 0;
}

.footer__link {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 576px) {
  .content__rating__stars {
    display: flex;
    flex-direction: column;
  }
}

.sidebare-left {
  width: 15%;
  position: relative;
  padding-top: 10px;
  width: 25%;
}
@media (max-width: 1050px) {
  .sidebare-left {
    display: none;
  }
}
.sidebare-left__box {
  position: sticky;
  top: 10px;
  left: 0;
}
.sidebare-left__title {
  background: #1D2438;
  color: #fff;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.sidebare-left__titlesub {
  background: #E9EEF2;
  color: #0A0F1D;
  padding: 10px;
  text-transform: uppercase;
}

.ac {
  border: solid 0.5px #e9eef2;
}

.ac-input {
  display: none;
}

.ac-label {
  position: relative;
  padding: 0.5em 1em;
  display: block;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.15s ease-in-out;
  color: #0A0F1D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.ac-label > svg {
  margin-right: 10px;
}

.ac-label:after,
.ac-input:checked + .ac-label:after {
  content: "";
  background-image: url(/img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  width: 16px;
  height: 100%;
  transition: background-color 0.15s ease-in-out;
}

.ac-text,
.ac-sub-text {
  opacity: 0;
  height: 0;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

.ac-sub {
  background-color: #fff;
  border-bottom: solid 0.5px #e9eef2;
}

.ac-sub .ac-input:checked + label,
.ac-sub .ac-label:hover {
  background: none;
}

.ac-sub img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.ac-input:checked + .ac-label:after {
  content: "";
  transform: rotate(180deg);
}

.ac-sub .ac-label:after,
.ac-sub .ac-input:checked + .ac-label:after {
  content: "";
  background-image: url(/img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  display: block;
  right: 10px;
  top: 0;
  width: 16px;
  height: 100%;
  transition: background-color 0.15s ease-in-out;
}

.ac-input:checked ~ .ac-text,
.ac-sub .ac-input:checked ~ .ac-sub-text {
  opacity: 1;
  height: auto;
}

.ac-sub-text {
  padding: 0 1em 0 1em;
}

.ac-text,
.ac-sub-text {
  opacity: 0;
  height: 0;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

.ac-sub-text-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #276aa5;
}

.ac-sub .ac-label {
  background: none;
  font-weight: 600;
  margin-bottom: 0;
}

.ac-input:checked + label,
.ac-label:hover {
  background-color: #d3dee8;
}

.ac-subnum {
  font-size: 0.6875em;
}

.ac-sub-text-item img {
  width: 10px;
  height: 10px;
}

.sidebare-right {
  width: 19%;
  position: relative;
  padding: 10px 0;
}
@media (max-width: 1050px) {
  .sidebare-right {
    display: none;
  }
}
.sidebare-right__box {
  background: #e9eef2;
  padding: 15px;
}
.sidebare-right__box form input {
  padding: 5px 10px;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #1D2438;
  border-radius: 5px;
  border: none;
}
.sidebare-right__box form button {
  background: #92c738;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 5px;
  border-radius: 5px;
  margin-top: 5px;
  width: 100%;
  border: none;
}
.sidebare-right__text {
  color: #7599b8;
  font-size: 10px;
  text-align: center;
  margin-top: 15px;
}
.sidebare-right__text a {
  color: #3da5ff;
  font-size: 10px;
  text-decoration: underline;
}

.sidebare-right-all {
  position: sticky;
  top: 10px;
  left: 0;
}

.sidebare__androidios {
  margin: 15px 0;
}

.sidebare__androidios-top {
  background-color: #1D2438;
  display: flex;
  align-items: center;
  padding: 15px;
}

.sidebare__android {
  color: #fff;
  width: 45%;
  display: flex;
  justify-content: center;
  align-content: center;
  cursor: pointer;
}

.sidebare__ios {
  color: #fff;
  width: 45%;
  display: flex;
  justify-content: center;
  align-content: center;
  cursor: pointer;
}

.sidebare__x {
  width: 10%;
  cursor: pointer;
}

.sidebare__android svg {
  margin-right: 10px;
}

.sidebare__boxclicck {
  background-color: #E9EEF2;
  padding: 5px;
}

.sidebare__androidios--hidden {
  display: none;
}