html {
  background: linear-gradient(to bottom, #191919, #000);
}
html.html_login {
  background: #fff;
}
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 400;
  background: url("../img/bg.png") top center;
  background-size: cover;
}
body.body_login {
  background: #fff;
}
.grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  grid-template-rows: 128px 1fr 64px;
  grid-template-areas: "aside header" "aside main" "footer footer";
  will-change: grid-template-columns;
  transition: grid-template-columns 0.32s;
}
.grid_collapsed {
  grid-template-columns: 80px minmax(0, 1fr);
}
.grid_collapsed .logo span {
  display: none;
}
.grid_collapsed .aside-section__title {
  display: none;
}
.grid_collapsed .aside-section-list__item a span {
  display: none;
}
.grid_collapsed .aside__head {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 33px;
}
.grid_collapsed .aside__collapse {
  transform: rotate(180deg);
}
.grid_collapsed .aside-section {
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 24px;
}
.grid_collapsed .aside-section-profile__info {
  display: none;
}
.grid_collapsed .aside-section-profile__wrap {
  flex-direction: column;
}
.grid_collapsed .footer {
  padding-left: 22px;
}
.header {
  grid-area: header;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 0 #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 40px;
}
.header__title {
  font-size: 35px;
}
.header-info {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-info-item__title {
  opacity: 0.5;
  font-size: 12px;
  font-weight: 500;
}
.header-info-item__value {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1399.98px) {
  .header__title {
    font-size: 32px;
  }
  .header-info {
    gap: 32px;
  }
}
@media (max-width: 1199.98px) {
  .header {
    padding: 0 24px;
  }
  .header {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 4px;
  }
  .header__title {
    align-self: flex-start;
  }
  .header-info {
    align-self: flex-end;
  }
}
@media (max-width: 991.98px) {
  .header {
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header__info {
    display: none;
  }
  .header__title {
    font-size: 25px;
  }
}
.aside {
  grid-area: aside;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding: 48px 0;
  white-space: nowrap;
  overflow: hidden;
}
.aside__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 40px;
}
.aside__collapse {
  cursor: pointer;
}
.aside__collapse:hover {
  opacity: 0.5;
}
.aside-section {
  padding: 0 40px;
}
.aside-section:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 0 #000;
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.aside-section__title {
  font-size: 15px;
  opacity: 0.5;
  margin-bottom: 24px;
}
.aside-section-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.aside-section-list__item:not(:last-child) {
  margin-bottom: 16px;
}
.aside-section-list__item a {
  text-decoration: none;
  display: flex;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.aside-section-list__item a img {
  position: relative;
  top: -2px;
  opacity: 0.5;
  width: 26px;
  height: 26px;
  display: block;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  flex-shrink: 0;
}
.aside-section-list__item a img.opacity-100 {
  opacity: 1;
}
.aside-section-list__item a span {
  opacity: 0.75;
}
.aside-section-list__item a:hover img {
  opacity: 1;
}
.aside-section-list__item a:hover span {
  opacity: 1;
}
.aside-section-list__item_active a img {
  opacity: 1;
}
.aside-section-list__item_active a span {
  opacity: 1;
}
.aside-section-profile__wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.aside-section-profile__main {
  display: flex;
  gap: 12px;
}
.aside-section-profile__avatar{
  border-radius: 50%;
  overflow: hidden;
  display: block;
  width: 48px;
  height: 48px;
  background-size: cover;
}
.mobile .aside-section-profile__avatar{
  width: 27px;
  height: 27px;
}
.aside-section-profile__name {
  font-size: 16px;
  font-weight: 600;
}
.aside-section-profile__name__warning a{
  color: #f15454;
  text-decoration: none;
}
.aside-section-profile__id {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.5;
}
.aside-section-profile__settings {
  flex-shrink: 0;
}
.aside-section-profile__settings a {
  display: block;
  opacity: 0.5;
}
.aside-section-profile__settings a:hover {
  opacity: 1;
}
.aside-section-profile__settings a img {
  width: 28px;
  height: 28px;
  display: block;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
@media (max-width: 1399.98px) {
  .aside-section {
    padding: 0 24px;
  }
  .aside__head {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .aside {
    display: none;
  }
}
.main {
  grid-area: main;
  min-width: 0;
}
.main__page {
  margin: 40px 0 80px;
}
.main__nearest {
  margin: 40px 0 80px;
}
.main__faq {
  margin: 40px 0 80px;
}
.main__bets {
  margin: 40px 0 80px;
}
.main__teams {
  margin: 40px 0 80px;
}
.main__account {
  margin: 40px 0 80px;
}
.main__sitemap {
  margin: 40px 0 80px;
}
.main-sitemap {
  padding: 0 40px;
}
.main-sitemap ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-sitemap ul li:not(:last-child) {
  margin-bottom: 8px;
}
.main-sitemap ul li a {
  opacity: 1;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.main-sitemap ul li a:hover {
  opacity: 0.8;
}
.main-title {
  padding-right: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 0 #000;
  padding-bottom: 36px;
}
.main-title span {
  display: block;
  font-size: 35px;
  padding: 8px 40px;
}
.main-title_danger span {
  background: #ff2f2f;
}
.main-title_edit span {
  background: #ffb016;
}
.parallax {
  will-change: transform;
  transition: transform 0.24s ease-out;
}
.main-page {
  padding: 0 40px;
}
.main-nearest {
  padding-right: 40px;
}
.user__bet__block.empty__block {
  display: none;
}
.main-nearest__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nearest table {
  width: 100%;
}
.main-nearest table thead tr {
  display: grid;
  grid-template-columns: 280px 200px 150px 1fr;
  align-items: center;
}
.main-nearest table thead tr th {
  font-weight: 400;
  padding: 16px 0;
  font-size: 20px;
}
.main-nearest table thead tr th:first-child {
  padding-left: 40px;
}
.main-nearest table tbody tr.tr_center {
  grid-template-columns: auto;
  font-size: 1.3em;
}
.main-nearest table tbody tr {
  display: grid;
  grid-template-columns: 280px 200px 150px 1fr;
  align-items: center;
}
.main-nearest table tbody tr:nth-child(odd) {
  background: #0a1330;
}
.main-nearest table tbody tr td {
  padding: 16px 0;
}
.main-nearest table tbody tr td:first-child {
  padding-left: 40px;
}
.user_bet_file{
  font-size: 1.2em;
  color: #fff;
  font-weight: 600;
}
.main-nearest__game {
  font-size: 14px;
  font-weight: 900;
}
.main-nearest__game span {
  color: #aeb9e1;
}
.main-nearest__game span.w_bet {
  color: #05c168;
}
.main-nearest__game span.w_d_bet {
  color: #64c17a;
}
.main-nearest__date {
  font-size: 12px;
}
.main-nearest__date span {
  font-weight: 900;
}
.main-nearest__bet {
  font-size: 12px;
  font-weight: 500;
}
.main-nearest__bet .user_bet_result{
  font-weight: 600;
  color: #05c168;
}
.main-nearest__bet .user_bet_result.lose{
  color: #ff2f2f;
}
.main-nearest__bet .user_bet_result.repeal{
  color: #f2994a;
}
.main-nearest__button button {
  border: none;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 8px;
  background: #05c168;
  font-size: 13px;
  font-weight: 900;
  border-radius: 2px;
}
.main-nearest__button button.user_bet_lose{
  background: #ff2f2f;
  margin: 10px 0;
}
.main-nearest__button button.user_bet_cancel{
  background: #f2994a;
}
.main-nearest__button_edit button {
  background: #ffb016;
}
.aside-section__body > .aside-section__profile{
  margin-bottom: 10px;
}
.aside-section__body > .aside-section__profile:last-child{
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .main-nearest table tbody tr,
  .main-nearest table thead tr {
    grid-template-columns: 1fr 2fr;
    gap: 0 16px;
  }
  .main-nearest__head_mobile {
    display: none;
  }
  .main-nearest table tbody tr td.main-nearest__game {
    order: 1;
    padding-bottom: 0;
  }
  .main-nearest table tbody tr td.main-nearest__date {
    order: 3;
    padding-left: 24px;
  }
  .main-nearest table tbody tr td.main-nearest__button {
    order: 2;
    padding-bottom: 0;
    padding-right: 24px;
  }
  .main-nearest table tbody tr td.main-nearest__button button {
    margin-left: auto;
  }
  .main-nearest table tbody tr td.main-nearest__bet {
    order: 4;
    text-align: right;
    padding-right: 24px;
  }
  .main-nearest table thead tr th:last-child {
    padding-right: 24px;
  }
  .main-nearest table thead tr th:last-child .main-nearest__head {
    justify-content: flex-end;
  }
  .main-nearest table tbody tr td:first-child {
    padding-left: 24px;
  }
  .main-nearest table thead tr th:first-child {
    padding-left: 24px;
  }
  .main-nearest {
    padding-right: 0;
  }
  .main-title {
    padding-right: 0;
  }
  .main-title span {
    font-size: 32px;
    padding-left: 24px;
  }
}
@media (max-width: 991.98px) {
  .main-title span {
    font-size: 25px;
  }
  .main-nearest table thead tr th:first-child {
    padding-left: 16px;
  }
  .main-nearest table thead tr th:last-child {
    padding-right: 16px;
  }
  .main-nearest table tbody tr td.main-nearest__game {
    padding-left: 16px;
  }
  .main-nearest table tbody tr td.main-nearest__date {
    padding-left: 16px;
  }
  .main-nearest table tbody tr td.main-nearest__bet {
    padding-right: 16px;
  }
  .main-nearest table tbody tr td.main-nearest__button {
    padding-right: 16px;
  }
  .main-nearest table thead tr th {
    font-size: 17px;
  }
}
@media (max-width: 575.98px) {
  .main-title span {
    line-height: 1;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .main__nearest {
    margin: 20px 0 40px;
  }
}
.main-faq {
  padding: 0 40px;
}
.main-faq__accordion {
  margin-bottom: 40px;
  max-width: 800px;
}
.accordion__item:not(:last-child) {
  margin-bottom: 40px;
}
.accordion-item {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #152329;
  overflow: hidden;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.accordion-item__head {
  display: flex;
  align-items: center;
  min-height: 80px;
}
.accordion-item__num {
  width: 100px;
  flex-shrink: 0;
  text-align: center;
  font-size: 24px;
}
.accordion-item__title {
  font-size: 24px;
  padding: 4px 0;
  padding-right: 16px;
}
.accordion-item__button {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #152329;
  align-self: stretch;
  margin-left: auto;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.accordion-item__button:hover {
  background: #4fa9e2;
}
.accordion-item__button:after {
  width: 22px;
  height: 22px;
  content: '';
  display: block;
  background: url("../img/plus.svg") no-repeat center center;
}
.accordion-item__body {
  padding: 20px 40px 20px 100px;
  display: none;
}
.accordion-item__text {
  line-height: 1.8;
  font-size: 20px;
}
.accordion-item_active .accordion-item__button {
  background: #4fa9e2;
}
.accordion-item_active .accordion-item__button:after {
  width: 20px;
  height: 3px;
  content: '';
  display: block;
  background: url("../img/minus.svg") no-repeat center center;
}
.main-faq-form {
  max-width: 560px;
}
.main-faq-form__title {
  font-size: 35px;
  margin-bottom: 16px;
}
.main-faq-form__textarea, .main-faq-form__input {
  margin-bottom: 35px;
}
.main-faq-form__textarea textarea, .main-faq-form__input input {
  width: 100%;
  padding: 10px 16px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
}
.main-faq-form__button button {
  width: 100%;
  background: #7f56d9;
  border: none;
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 1199.98px) {
  .main-faq {
    padding: 0 24px;
  }
  .accordion__item:not(:last-child) {
    margin-bottom: 24px;
  }
  .accordion-item__title {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .main-faq {
    padding: 0 16px;
  }
  .accordion-item__button {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 575.98px) {
  .accordion-item__num {
    width: auto;
    padding: 8px 16px;
    font-size: 20px;
  }
  .accordion-item__head {
    align-items: flex-start;
    min-height: auto;
  }
  .accordion-item__body {
    padding: 16px;
  }
  .accordion-item__text {
    font-size: 15px;
  }
  .accordion-item__title {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .main-faq-form__title {
    font-size: 24px;
  }
}
.main-bets__info {
  margin-bottom: 24px;
}
.main-bets__actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap-reverse;
  padding: 0 40px;
  margin-bottom: 16px;
}
.main-bets__results {
  display: none;
}
.main-bets__results button {
  height: 39px;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding-left: 20px;
  padding-right: 8px;
  display: flex;
  gap: 24px;
  align-items: center;
  background: #000;
  cursor: pointer;
}
.main-bets__results button:after {
  content: '';
  background-color: #fcfcfd;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
}
.main-bets__results_active button {
  background: #05c168;
}
.main-bets__results_active button:after {
  background-image: url("../img/check.svg");
}
.main-bets-info {
  padding: 0 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.main-bets-info-card {
  background: #a6f7e2;
  color: #2c2c2c;
  padding: 16px 12px;
  border-radius: 8px;
  max-width: 226px;
  width: 100%;
}
.main-bets-info-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.main-bets-info-card__title {
  font-size: 12px;
  font-weight: 600;
}
.main-bets-info-card__result {
  font-weight: 500;
  font-size: 12px;
  color: #77b900;
}
.main-bets-info-card__main {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.main-bets-info-card__label {
  font-weight: 900;
  color: #838383;
  font-size: 12px;
}
.main-bets-info-card__value {
  font-size: 18px;
  font-weight: 900;
}
.main-bets-info-card__chart {
  width: 78px;
  height: 24px;
  background: url("../img/chart1.svg") no-repeat center center;
  display: block;
  background-size: contain;
}
.main-bets-info-card_violet {
  background: #b79bff;
}
.main-bets-info-card_violet .main-bets-info-card__chart {
  background: url("../img/chart2.svg") no-repeat center center;
}
.main-bets-info-card_violet .main-bets-info-card__value {
  color: #fff;
}
.main-bets-info-card_violet .main-bets-info-card__result {
  color: #ff2f2f;
}
.main-bets-info-card_violet .main-bets-info-card__label {
  color: #ccc;
}
.main-bets-info-card_yellow {
  background: #f2c94c;
}
.main-bets-info-card_yellow .main-bets-info-card__chart {
  background: url("../img/chart3.svg") no-repeat center center;
}
.main-bets-info-card_yellow .main-bets-info-card__result {
  color: #fff;
}
.main-bets-info-card_gray {
  background: #828282;
}
.main-bets-info-card_gray .main-bets-info-card__chart {
  background: url("../img/chart3.svg") no-repeat center center;
}
.main-bets-info-card_gray .main-bets-info-card__value {
  color: #fff;
}
.main-bets-info-card_gray .main-bets-info-card__result {
  color: #fff;
}
.main-bets-info-card_gray .main-bets-info-card__label {
  color: #ccc;
}
.main-bets-info-card_gray .main-bets-info-card__title {
  color: #fff;
}
.main-bets-statuses {
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}
.main-bets-statuses-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-bets-statuses-item__main {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 8px;
  background: #05c168;
  font-size: 13px;
  font-weight: 900;
  border-radius: 2px;
}
.main-bets-statuses-item__main_danger {
  background: #ff2f2f;
}
.main-bets-statuses-item__main_warning {
  background: #f2994a;
}
.main-bets-statuses-item__main_attention {
  background: #f2c94c;
}
.main-bets-statuses-item__main_secondary {
  background: #828282;
}
.main-bets-statuses-item__q {
  font-size: 13px;
  text-align: center;
  width: 28px;
  height: 28px;
  line-height: 28px;
  color: #000;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.main-bets-table {
  width: 100%;
  padding-left: 40px;
}
.main-bets-table__wrap {
  overflow-x: auto;
  position: relative;
}
.main-bets-table__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-bets-table__flag {
  border-radius: 100%;
  width: 28px;
  height: 28px;
  overflow: hidden;
  display: block;
}
.main-bets-table__flag img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.main-bets-table table tr th {
  min-width: 100px;
  font-weight: 400;
  padding: 16px;
  font-size: 20px;
  z-index: 1;
}
.main-bets-table table tr th:first-child {
  padding-left: 0px;
  min-width: 260px;
  position: sticky;
  left: 0;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 2;
}
.main-bets-table table tr:nth-child(odd) {
  background: #0a1330;
}
.main-bets-table table tr td {
  min-width: 100px;
  padding: 16px;
  z-index: 1;
}
.main-bets-table table tr td:first-child {
  padding-left: 40px;
  min-width: 260px;
  position: sticky;
  left: 0;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 2;
  font-size: 14px;
  font-weight: 900;
}
.main-bets-table__status {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 8px;
  background: #05c168;
  font-size: 13px;
  font-weight: 900;
  border-radius: 2px;
  white-space: nowrap;
}
.main-bets-table__status_danger {
  background: #ff2f2f;
}
.main-bets-table__status_warning {
  background: #f2994a;
}
.main-bets-table__status_attention {
  background: #f2c94c;
}
.main-bets-table__status_secondary {
  background: #828282;
}
.main-bets-table__status_result {
  border: 1px solid #05c168;
  background: #006e3a;
  min-width: 80px;
}
.main-bets-table__status_result_danger {
  border: 1px solid #ff583d;
  background: #ff2f2f;
  min-width: 80px;
}
.main-bets-table__status_result span:after {
  font-weight: inherit;
}
.main-bets-table__status span:after {
  font-weight: 400;
  content: ' ₽';
  display: inline;
}
.main-bets-table_results table tr.tr__header th:last-child {
  white-space: nowrap;
  position: sticky;
  right: 0;
  min-width: auto;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 2;
}
.main-bets-table_results table tr.tr__header th:last-child span {
  display: none;
}
.main-bets-table_results table tr.tr__header td:last-child {
  white-space: nowrap;
  position: sticky;
  right: 0;
  min-width: auto;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 2;
}
.main-bets-datepicker {
  margin-left: auto;
}
.main-bets-datepicker__wrap {
  width: 260px;
  position: relative;
}
.main-bets-datepicker__wrap:after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/dropdown.svg") no-repeat center center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.main-bets-datepicker input {
  height: 39px;
  background: #000;
  border: none;
  color: #fff;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  padding-left: 32px;
  padding-right: 48px;
  z-index: 1;
  position: relative;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .main-bets-info {
    padding: 0 24px;
  }
  .main-bets-statuses {
    padding: 0 24px;
  }
  .main-bets-table {
    padding-left: 24px;
  }
  .main-bets-table table tbody tr td:first-child {
    min-width: 220px;
    padding-left: 24px;
  }
  .main-bets-table table tr.tr__header th:first-child {
    min-width: 220px;
  }
  .main-bets-table table tr.tr__header th {
    min-width: 120px;
  }
  .main-bets-table table tbody tr td {
    min-width: 120px;
  }
  .main-bets__actions {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .main-bets-table {
    padding-left: 0;
  }
  .main-bets-info {
    padding: 0 16px;
  }
  .main-bets-statuses {
    padding: 0 16px;
  }
  .main-bets-table table tbody tr td:first-child {
    min-width: 200px;
    padding-left: 16px;
  }
  .main-bets-table table tr.tr__header th:first-child {
    min-width: 200px;
    padding-left: 16px;
  }
  .main-bets-table table tr.tr__header th {
    font-size: 15px;
  }
  .main-bets__actions {
    padding: 0 16px;
  }
}
@media (max-width: 575.98px) {
  .main-bets-table table tbody tr td:first-child {
    min-width: 120px;
  }
  .main-bets-table table tr.tr__header th:first-child {
    min-width: 120px;
  }
  .main-bets-info {
    gap: 16px;
  }
  .main-bets-info-card {
    max-width: 191px;
    padding: 8px;
  }
  .main-bets-info-card__value {
    font-weight: 700;
  }
  .main-bets-info-card__chart {
    width: 66px;
  }
  .main-bets-table table tr.tr__header th {
    min-width: 60px;
    padding: 8px;
  }
  .main-bets-table table tbody tr td {
    min-width: 60px;
    padding: 8px;
  }
  .main-bets__results {
    display: block;
  }
  .main-bets-table_results table tr.tr__header th:last-child span {
    display: block;
  }
  .main-bets-table_results_hidden table tr.tr__header th:not(:first-child,
  .main-bets-table_results_hidden .main-bets-table__result) {
    display: none;
  }
  .main-bets-table_results_hidden table tbody tr td:not(:first-child,
  .main-bets-table_results_hidden .main-bets-table__result) {
    display: none;
  }
  .main-bets-table_results .main-bets-table__result-wrap {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-bets-table_results .main-bets-table__result {
    display: none;
  }
  .main-bets-table_results .main-bets-table__result_active {
    display: table-cell;
    width: 100%;
  }
  .main-bets-table_results .main-bets-table__result_active span {
    display: block;
  }
}
@media (max-width: 429.98px) {
  .main-bets__actions {
    justify-content: flex-end;
  }
}
.main-teams__team:not(:last-child) {
  margin-bottom: 40px;
}
.main-teams__buttons {
  gap: 16px;
  justify-content: flex-end;
  padding: 8px 24px;
  display: none;
}
.main-teams__button {
  height: 30px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  padding: 0 20px;
  border-radius: 15px;
  cursor: pointer;
  text-transform: uppercase;
}
.main-teams__button_active {
  background: #8000ff;
  color: #fff;
}
.main-teams-team__title {
  margin-left: 40px;
  height: 53px;
  background: #fff;
  border-radius: 20px;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 0 12px;
}
.main-teams-team__title img {
  display: block;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 29px;
  height: 29px;
}
.main-teams-team__name {
  font-size: 20px;
  font-weight: 900;
}
.main-teams-team__name span {
  display: inline-block;
  width: 25px;
  font-weight: 400;
  height: 25px;
  color: #fff;
  background: #1ea8ec;
  line-height: 25px;
  margin-right: 12px;
  text-align: center;
  border-radius: 5px;
}
.main-teams-team__wrap {
  overflow-x: auto;
  position: relative;
}
.main-teams-team__table table {
  min-width: 100%;
  table-layout: fixed;
}
.main-teams-team__table table thead tr th {
  min-width: 0;
  font-weight: 400;
  padding: 0 8px;
  text-transform: uppercase;
  font-size: 20px;
  padding-right: 24px;
}
.main-teams-team__table table thead tr th:first-child {
  padding-left: 40px;
  min-width: 300px;
  max-width: 300px;
  width: 300px;
  text-align: left;
  position: sticky;
  left: 0;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 2;
}
.main-teams-team__table table thead tr th:nth-child(2) {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
}
.main-teams-team__table table thead tr th:last-child {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.main-teams-team__table table tbody tr:nth-child(odd) {
  background: #0a1330;
}
.main-teams-team__table table tbody tr td {
  min-width: 0;
  padding: 8px;
  font-size: 18px;
  text-align: center;
  z-index: 1;
  padding-right: 24px;
}
.main-teams-team__table table tbody tr td:first-child {
  text-align: left;
  padding-left: 40px;
  min-width: 300px;
  max-width: 300px;
  width: 300px;
  position: sticky;
  left: 0;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 2;
}
.main-teams-team__table table tbody tr td:nth-child(2) {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
}
.main-teams-team__table table tbody tr td:last-child {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.main-teams-team__forms {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.main-teams-team__games {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.main-teams-team__game {
  width: 20px;
}
.main-teams-team__form {
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 21px;
  background: #00a83f;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.main-teams-team__form > .main-teams-team__form{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  font-size: 9px;
  line-height: 150%;
  font-weight: 600;
}
.main-teams-team__form_danger {
  background: #dc0000;
}
.main-teams-team__form_warning {
  background: #f3a000;
}
.main-teams-team__form_secondary {
  background: #c8cdcd;
}
.main-teams-tabs {
  padding: 0 24px;
  gap: 16px;
  display: none;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.main-teams-tabs__title {
  height: 53px;
  background: #fff;
  border-radius: 20px;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 0 12px;
  cursor: pointer;
}
.main-teams-tabs__title img {
  display: block;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 29px;
  height: 29px;
}
.main-teams-tabs__title_active {
  background: #8000ff;
  color: #fff;
}
@media (max-width: 1199.98px) {
  .main-teams-team__title {
    margin-left: 24px;
    height: 43px;
    font-size: 18px;
  }
  .main-teams-team__forms {
    margin-left: 0;
  }
  .main-teams-team__head {
    margin-left: 0;
  }
  .main-teams-team__buttons {
    display: flex;
  }
  .main-teams-tabs {
    display: flex;
  }
  .main-teams-tabs .main-teams-team__title {
    display: inline-flex;
    cursor: pointer;
  }
  .main-teams__buttons {
    display: flex;
  }
  /*.main-teams-team {
    display: none;
  }*/
  .main-teams-team_active {
    display: block;
  }
  .main-teams-team__col {
    display: none;
  }
  .main-teams-team__col_active {
    display: block;
  }
  .main-teams-team__table table tbody tr td:first-child,
  .main-teams-team__table table thead tr th:first-child {
    padding-left: 24px;
    width: 240px;
    max-width: 240px;
    min-width: 240px;
  }
  .main-teams-team__table table thead tr th:nth-child(2),
  .main-teams-team__table table tbody tr td:nth-child(2) {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .main-teams-tabs {
    padding: 0 16px;
  }
  .main-teams-team__table table tbody tr td:first-child,
  .main-teams-team__table table thead tr th:first-child {
    padding-left: 16px;
  }
  .main-teams__buttons {
    padding: 8px 16px;
  }
}
@media (max-width: 575.98px) {
  .main-teams-team__name span {
    font-size: 14px;
    width: 19px;
    height: 19px;
    line-height: 19px;
  }
  .main-teams-team__name {
    font-size: 15px;
  }
  .main-teams-team__table table thead tr th {
    font-size: 15px;
  }
  .main-teams-team__table table tbody tr td {
    font-size: 15px;
  }
  .main-teams-team__form {
    font-size: 10px;
    height: 16px;
    width: 16px;
    line-height: 16px;
  }
  .main-teams-team__forms {
    gap: 8px;
  }
  .main-teams-tabs__title {
    font-size: 17px;
  }
  .main-teams-team__table table thead tr th:first-child,
  .main-teams-team__table table tbody tr td:first-child {
    width: 200px;
    max-width: 200px;
    min-width: 200px;
  }
}
.main-account {
  padding: 0 40px;
  gap: 32px;
  display: grid;
  grid-template-columns: 234px minmax(0, 1fr);
  grid-template-rows: minmax(48px, auto) minmax(0, 1fr);
  grid-template-areas: "left top" "left main";
}
.main-account__avatar {
  grid-area: left;
  position: relative;
  width: 234px;
  height: 234px;
  display: flex;
  gap: 24px;
}
.main-account__avatar > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.main-account__upload {
  z-index: 2;
  position: absolute;
  bottom: 12px;
  color: #000;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.5);
}
.main-account__upload label {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.main-account__upload label input {
  display: none;
}
.main-account__wrap {
  grid-area: main;
}
.main-account__info {
  grid-area: top;
  margin-top: 40px;
}
.main-account__id {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.main-account__name {
  font-size: 20px;
  font-weight: 600;
}
.main-account__main {
  margin-bottom: 40px;
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.main-account__line {
  display: flex;
  gap: 12px;
}
.main-account__input input {
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d0d5dd;
  box-shadow: 0 1 2px rgba(16,24,40,0.05);
  font-size: 12px;
  width: 174px;
  padding: 0 14px;
}
.main-account__button button {
  height: 36px;
  border-radius: 8px;
  background: #7f56d9;
  border: none;
  box-shadow: 0 1 2px rgba(16,24,40,0.05);
  font-size: 12px;
  color: #fff;
  width: 174px;
}
.main-account__title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}
.main-account__form {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
@media (max-width: 1199.98px) {
  .main-account {
    padding: 0 24px;
  }
  .main-account {
    gap: 24px;
  }
}
@media (max-width: 991.98px) {
  .main-account {
    padding: 0 16px;
  }
}
@media (max-width: 767.98px) {
  .main-account__mobile {
    display: block;
  }
  .main-account {
    flex-direction: column;
  }
  .main-account__avatar {
    width: 171px;
    height: 171px;
  }
  .main-account {
    grid-template-columns: 171px minmax(0, 1fr);
    grid-template-areas: "left top" "main main";
  }
  .main-account__info {
    margin-top: 24px;
  }
}
@media (max-width: 429.98px) {
  .main-account__line {
    flex-direction: column;
  }
  .main-account__input input {
    width: 100%;
  }
  .main-account__main {
    gap: 32px;
  }
  .main-account {
    grid-template-areas: "left" "top" "main";
    grid-template-columns: 1fr;
  }
  .main-account__info {
    margin-top: 0;
  }
}
.login__wrap {
  margin: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 50px;
  min-height: calc(100vh - 40px);
  background: url("../img/login-bg.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 80px;
}
.login__left {
  padding: 40px 32px;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 580px;
  height: 100%;
  background: linear-gradient(to bottom, #e54c91, #f48b7b, #f7ad50);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  overflow: hidden;
}
.login__curve {
  position: absolute;
  top: 200px;
  left: 112px;
}
.login__case {
  position: absolute;
  bottom: 20px;
  right: -13px;
  z-index: 3;
}
.login__man {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.login__main {
  margin-top: 250px;
  margin-left: 800px;
  max-width: 458px;
  width: 100%;
  z-index: 9;
  position: relative;
  color: #101828;
}
.login__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 24px;
}
.login__money {
  display: block;
  content: url("../img/money.png");
  position: absolute;
  left: -100px;
  top: -80px;
}
.login__error {
  margin-bottom: 24px;
  color: #fb7185;
}
.login__description{
  color: #101828;
  font-size: 0.9em;
  font-style: italic;
  margin-bottom: 24px;
}
.login__login {
  margin-bottom: 24px;
  height: 64px;
  position: relative;
}
.login__login:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../img/login.svg") no-repeat center center;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.login__login input {
  width: 100%;
  background: #f2f4f7;
  border: none;
  height: 100%;
  border-radius: 10px;
  padding-left: 60px;
  padding-right: 16px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
.login__password {
  margin-bottom: 16px;
  height: 64px;
  position: relative;
}
.login__password:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../img/password.svg") no-repeat center center;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.login__password input {
  width: 100%;
  background: transparent;
  border: 3px solid #05c168;
  height: 100%;
  border-radius: 10px;
  padding-left: 60px;
  padding-right: 16px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
.login__password label {
  position: absolute;
  top: -6px;
  left: 16px;
  color: #3c4071;
  font-size: 12px;
  font-weight: 500;
  background: url("../img/login-bg.jpg") no-repeat center center;
  padding: 0 8px;
  background-attachment: fixed;
  background-size: cover;
}
.login__button {
  text-align: right;
}
.login__button button {
  display: inline-flex;
  background: #05c168;
  height: 60px;
  align-items: center;
  padding-left: 28px;
  gap: 12px;
  padding-right: 32px;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.login__button button:after {
  content: '';
  width: 8px;
  height: 12px;
  display: block;
  background: url("../img/right.svg") no-repeat center center;
}
.login__captcha {
  margin-bottom: 10px;
}
.login__forgot {
  text-align: right;
  margin-top: 32px;
  border-top: 1px solid #d0d5dd;
  padding-top: 32px;
}
.login__forgot a {
  color: #05c168;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 1399.98px) {
  .login__main {
    margin-left: 640px;
  }
  .login__left {
    width: 440px;
  }
  .login__man {
    width: 700px;
    top: 120px;
  }
  .login__man img {
    max-width: 100%;
  }
  .login__curve {
    left: 0px;
  }
}
@media (max-width: 1199.98px) {
  .login__main {
    margin-left: 440px;
  }
  .login__left {
    width: 300px;
  }
  .login__man {
    width: 460px;
    top: 180px;
  }
}
@media (max-width: 991.98px) {
  .login__main {
    margin-left: auto;
    margin-right: auto;
  }
  .login__man {
    display: none;
  }
  .login__curve {
    display: none;
  }
  .login__left {
    background: transparent;
    box-shadow: none;
  }
  .login__wrap {
    background-image: url("../img/login-bg-s.jpg");
  }
  .login__password label {
    background-image: url("../img/login-bg-s.jpg");
  }
  .login__case {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .login__title:before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .login__wrap {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
    padding-bottom: 40px;
  }
  .login__title {
    font-size: 20px;
    text-align: center;
  }
  .login__left {
    padding: 32px 16px;
  }
  .login__main {
    margin-top: 140px;
    padding: 0 16px;
  }
  .login__captcha {
    margin-bottom: 40px;
  }
}
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: rgba(52,64,84,0.7);
  z-index: 9999;
  will-change: visibility, opacity;
  transition: visibility 0s 0.32s, opacity 0.32s;
}
.modal_active {
  opacity: 1;
  visibility: visible;
  will-change: visibility, opacity;
  transition: visibility 0s 0s, opacity 0.32s;
}
.modal__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.modal__body {
  overflow-y: auto;
  position: relative;
  margin: 0 24px;
  max-height: 100%;
  max-width: 740px;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal__body::-webkit-scrollbar {
  display: none;
}
.modal__inner {
  display: flex;
  background: #fff;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 12px;
  position: relative;
  margin: 24px 0;
}
.modal-bet {
  color: #101828;
  width: 100%;
}
.modal-bet__head {
  padding: 24px;
  border-bottom: 1px solid #e4e7ec;
}
.modal-bet__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 48px;
}
.modal-bet__title:before {
  content: '';
  display: block;
  width: 56px;
  height: 56px;
  background: url("../img/bet1.svg") no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}
.modal-bet__close {
  position: absolute;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: url("../img/close.svg") no-repeat center center;
  display: block;
  top: 16px;
  right: 16px;
}
.modal-bet__radio {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.modal-bet__body {
  padding: 24px;
  padding-bottom: 80px;
}
.modal-bet__inputs {
  display: flex;
  gap: 24px;
  margin-bottom: 44px;
}
.modal-bet__inputs label:nth-child(1) {
  flex-basis: 40%;
}
.modal-bet__inputs label:nth-child(2) {
  flex-basis: 60%;
}
.modal-bet__textarea {
  margin-bottom: 44px;
}
.modal-bet__textarea label {
  width: 100%;
}
.modal-bet__inputs label input, .modal-bet__textarea label textarea {
  width: 100%;
  height: 44px;
  font-size: 16px;
  border: 1px solid #d0d5dd;
  box-shadow: 0 1px 2px rgba(16,24,40,0.05);
  border-radius: 8px;
  padding: 0 12px;
}
.modal-bet__inputs label span, .modal-bet__textarea label span {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}
.modal-bet__textarea label textarea {
  resize: none;
  height: 88px;
  padding: 12px;
}
.modal-bet__upload {
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 22px;
}
.modal-bet__upload input {
  width: 100%;
  height: 44px;
  box-shadow: 0 1px 2px rgba(16,24,40,0.05);
}
.modal-bet__button {
  max-width: 563px;
  margin: 0 auto;
}
.modal-bet__button button {
  width: 100%;
  height: 44px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(16,24,40,0.05);
  border: none;
  background: #7f56d9;
  border-radius: 8px;
}
.modal-bet__radio label {
  position: relative;
  cursor: pointer;
}
.modal-bet__radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.modal-bet__radio input[type="radio"] + span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 900;
  color: #000;
}
.modal-bet__radio input[type="radio"] + span::before {
  content: "";
  display: block;
  width: 22px;
  flex-shrink: 0;
  height: 22px;
  border-radius: 50%;
  background: url("../img/radio1.svg") no-repeat center center;
}
.modal-bet__radio input[type="radio"]:checked + span::before {
  background: url("../img/radio2.svg") no-repeat center center;
}
.modal-bet__upload label {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(16,24,40,0.05);
  height: 44px;
  cursor: pointer;
  border: 1px solid #d0d5dd;
  font-weight: 600;
  border-radius: 8px;
  font-size: 16px;
  color: #344054;
  text-align: center;
  padding: 0 16px;
}
.modal-bet__upload label input {
  display: none;
}
.modal-bet__upload label span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 767.98px) {
  .modal-bet__radio {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 575.98px) {
  .modal-bet__inputs {
    flex-direction: column;
    gap: 16px;
  }
  .modal-bet__inputs {
    margin-bottom: 64px;
  }
  .modal-bet__body {
    padding-bottom: 48px;
  }
}
.footer {
  grid-area: footer;
  background: rgba(128,0,255,0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.footer__policy a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}
.tippy-box {
  background-color: #8000ff;
  color: #fff;
  font-size: 13px;
  line-height: 1.384615384615385;
  border-radius: 5px;
}
.tippy-box[data-placement^='top'] > .tippy-arrow::before {
  border-top-color: #8000ff;
}
.tippy-box[data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: #8000ff;
}
.tippy-box[data-placement^='left'] > .tippy-arrow::before,
border-left-color: #8000FF,
.tippy-box[data-placement^='right'] > .tippy-arrow::before {
  border-right-color: #8000ff;
}
.mobile {
  display: none;
  margin-top: 106px;
}
.mobile__header.mobile-header{
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #3f3f3f;
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
}
.mobile-header {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9998;
  border: 1px solid transparent;
}
.bar {
  display: flex;
  position: fixed;
  bottom: 15px;
  left: 16px;
  right: 16px;
  height: 69px;
  border: 1px solid #3f3f3f;
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  background: rgba(0,0,0,0.2);
  border-radius: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 9997;
  max-width: 399px;
  margin: 0 auto;
}
.bar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.bar__item {
  opacity: 0.5;
}
.bar__item a {
  display: block;
  width: 43px;
  height: 43px;
  padding: 8px;
}
.bar__item a img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  width: 100%;
  height: 100%;
  display: block;
}
.bar__item_active {
  opacity: 1;
}
.bar__item.opacity-100 {
  opacity: 1;
}
.bar__item:hover,
.bar__item:active {
  opacity: 1;
}
.burger {
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.close {
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  background: rgba(0,0,0,0.8);
  z-index: 9998;
  will-change: visibility, opacity;
  transition: visibility 0s 0.32s, opacity 0.32s;
}
.menu_active {
  opacity: 1;
  visibility: visible;
  will-change: visibility, opacity;
  transition: visibility 0s 0s, opacity 0.32s;
}
.menu__wrap {
  height: 100%;
  padding: 0 0 32px;
  overflow-y: auto;
}
.menu__aside-section {
  padding-left: 16px;
  padding-right: 16px;
}
.menu__header-info {
  padding: 16px 16px 32px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .mobile {
    display: block;
  }
}
@media (max-width: 1399.98px) {
  .grid:not(.grid_collapsed) {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}
@media (max-width: 1199.98px) {
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .main-sitemap {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .grid:not(.grid_collapsed),
  .grid_collapsed {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "header" "main" "footer";
  }
  .grid {
    grid-template-rows: auto 1fr auto;
  }
  .footer {
    padding: 16px 16px 100px 16px;
  }
  .logo a {
    font-size: 16px;
  }
  body.frozen {
    overflow: hidden;
  }
  .main-title {
    padding-bottom: 0;
  }
  .main-title_danger {
    border-bottom: none;
    box-shadow: none;
  }
  .main-sitemap {
    padding: 0 16px;
  }
}
@media (max-width: 575.98px) {
  .footer {
    flex-direction: column;
    gap: 16px;
  }
}
