:root {
  --content-width: 470px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.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: "Open Sans";
  src: url("../fonts/../fonts/OpenSansRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSansBold.woff2") format("woff2");
  font-weight: 700;
  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%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  color: #fff;
  background-color: #003265;
}

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

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  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);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.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;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.header__container {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #003976;
  height: 60px;
}

.header__logo {
  width: 130px;
}

.header__btn {
  background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
  box-shadow: 0 10px 30px #fa410066;
  color: #fff;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 15px;
}

.header__btn:hover {
  opacity: .8;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    height: auto;
    min-height: 60px;
    padding-bottom: 12px;
  }

  .header__logo {
    order: 0;
  }

  .header__burger {
    order: 1;
  }

  .header__btn {
    order: 2;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    padding: 10px 15px;
  }
}

/* Бургер — виден на всех разрешениях */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  z-index: 12;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Мобильное меню */
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  padding: 70px 20px 20px;
  background-color: #003976;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.25s ease, visibility 0.25s;
}

.header__nav--open {
  transform: translateX(0);
  visibility: visible;
}

.header__nav-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
  box-shadow: 0 10px 30px rgba(250, 65, 0, 0.4);
  color: #fff;
  font-size: 14px;
  padding: 12px 15px;
  border-radius: 15px;
}

.header__nav-btn:hover {
  opacity: 0.9;
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__nav-list li {
  margin: 0;
}

.header__nav-link {
  display: block;
  padding: 12px 0;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__nav-link:hover {
  color: #ffba00;
}

.header__nav-list li:last-child {
  margin-top: 16px;
}

/* Оверлей */
.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.header__overlay--active {
  opacity: 1;
  visibility: visible;
}

.content__container {
  background-color: #002954;
  padding: 75px 15px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.footer__container {
  height: 60px;
  background-color: #000;
}

.main__footer {
  background-color: #000;
  margin: 0 auto;
  max-width: 500px;
  padding: 90px 0;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}

.nav__item {
  border-radius: 30px;
}

.nav__item:hover {
  background-color: #11344F;
}

.nav__link {
  width: 45px;
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  font-size: 13px;
}

.nav__svg {
  width: 20px;
  color: #93C2EA;
}

/*# sourceMappingURL=main.css.map */

.content h1 {
  color: #ffba00;
  font-size: 30px;
  margin-bottom: 35px;
}

.content h2 {
  color: #ffba00;
  font-size: 25px;
  margin-bottom: 25px;
}

.content h3 {
  color: #ffba00;
  font-size: 20px;
  margin-bottom: 15px;
}

.content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.content img {
  display: block;
  margin: 25px auto;
}

.content ul {
  margin: 25px 0;
  padding-left: 30px;
}

.content li:not(:last-child) {
  margin-bottom: 10px;
}

.content ul li strong {
  color: #ffba00;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 25px 0;
}

table tr td {
  border: 1px solid #ffba00;
  padding: 10px;
}

.content__action {
  padding: 20px 0;
  background-color: #132e64;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 2;
  font-family: Roboto, sans-serif;
  color: #bdbdbd;
}

.content__action strong {
  font-weight: 700;
  text-transform: uppercase
}

.content__action--1win {
  padding: 0
}

.action-relative {
  position: relative;
  padding: 20px 0
}

.content__action__wrap--all {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

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

.content__action__left {
  display: flex;
  align-items: flex-start;
  margin-right: 10px
}

.content__action__left picture {
  margin-right: 20px;
  max-width: 50px;
  width: 100%;
  grid-area: picture
}

.content__action__left .action__img {
  width: 50px;
  display: block;
  border-radius: 5px
}

.content__action__left__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.content__action__btns {
  display: flex;
  align-items: center;
  max-width: 300px
}

.content__action__btn {
  background: linear-gradient(0deg, #fa4d00 0, #fa5e00);
  color: #fff;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 15px;
  text-align: center;
  text-transform: uppercase;
  transition: .2s linear;
  line-height: 1;
}

.content__action__btn:hover {
  background-color: #262C3C
}

.content__action__descr {
  max-width: 400px;
  margin-left: 20px
}

.action__descr__text {
  font-size: 14px;
  display: block
}


.content__rating__wrap {
  display: flex
}

.content__rating__wrap p {
  margin-right: 10px
}

.content__rating__stars img {
  width: 10px
}

.content__action__link {
  width: 50px;
  margin-right: 10px;
}



@media (max-width:800px) {


  .stars_none {
    display: none
  }
}

@media (max-width:550px) {
  .content__action__left picture {
    margin-right: 5px
  }

  .arrow__up__action {
    right: 20px
  }

  .content__action__btn--all {
    width: 100px
  }

  .content__action__btn {
    margin-right: 0;
    font-size: 12px
  }

  .content__action {
    padding: 10px 0
  }

  .action__descr__text,
  .content__action p {
    font-size: 12px
  }

  .content__action--1win {
    padding: 0
  }

  .content__action__descr {
    margin-left: 10px
  }

 

}

.dn {
  display: block;
}