body {
  font-family: "Inter", sans-serif;
  background: rgb(245, 245, 245);
}
body h3 {
  font-size: 16px;
}

.sidebar {
  color: rgb(120, 118, 134);
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 256px;
  background: #fff;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
  z-index: 100;
  overflow-y: auto;
  gap: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.sidebar.open {
  transform: translateX(0);
}
.sidebar__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 20px;
  background: #f5f5f5;
  margin-bottom: 10px;
}
.sidebar__search .sidebar__text {
  color: #000;
}
.sidebar__navigation {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #0b4595;
  color: #fff;
  cursor: pointer;
  margin-bottom: 15px;
  text-decoration: none;
}
.sidebar__navigation:hover {
  text-decoration: none;
  color: white;
  background: #0c51af;
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar__item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}
.sidebar__item:hover {
  background: #f5f5f5;
  text-decoration: none;
}
.sidebar__item .icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar__item .icon-text .icon {
  width: 30px;
  height: 100%;
}
.sidebar__item .icon-text .sidebar__text {
  color: rgb(120, 118, 134);
}
.sidebar__item.has-submenu {
  position: relative;
}
.sidebar__item.has-submenu .checkmark {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.sidebar__item.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: -3%;
  background: #ecebeb;
  border: 1px solid #888787;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
}
.sidebar__item.has-submenu .submenu a {
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}
.sidebar__item.has-submenu .submenu a:hover {
  background: #fff;
}
.sidebar__item.has-submenu.open .checkmark {
  transform: rotate(90deg);
}
.sidebar__item.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 200;
}
.sidebar__socials {
  margin: 30px 0;
}
.sidebar__socials .socials-block {
  display: flex;
  gap: 30px;
}
.sidebar__socials .socials-block .socials-icon {
  cursor: pointer;
}
.sidebar__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar__bottom a {
  text-decoration: none;
  color: rgb(120, 118, 134);
}
.sidebar__bottom a:hover {
  background: #f5f5f5;
}
.sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  margin-top: 10px;
}
.sidebar__footer .sidebar-logo-img {
  width: 80%;
  height: auto;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar__trigger {
  position: fixed;
  top: 70px;
  left: 0;
  width: fit-content;
  padding: 10px;
  height: 50px;
  background: #0b4595;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  z-index: 110;
  transition: all 0.3s ease;
}
.sidebar__trigger:hover {
  text-decoration: none;
  color: white;
  background: #0c51af;
}
.sidebar__trigger.hidden {
  display: none;
}

.header {
  margin: 15px 0 15px 0;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.header__content .img-container {
  display: flex;
  gap: 30px;
}
.header__content .img-container .logo-1 {
  width: 350px;
  height: 56px;
}
.header__content .img-container .logo-2 {
  width: 280px;
  height: 50px;
  margin-top: 10px;
}
.header__auth {
  display: flex;
  gap: 30px;
}

.trend {
  display: flex;
  gap: 10px;
  align-items: center;
}
.trend img {
  width: 30px;
  height: 22px;
}
.trend__content {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trend__content::-webkit-scrollbar {
  display: none;
}
.trend__content a {
  border-radius: 20px;
  border: rgb(0, 160, 210) 1px solid;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  padding: 7px 15px;
  color: rgb(0, 160, 210);
  flex: 0 0 auto;
  white-space: nowrap;
  user-select: none;
}

.swiper-main {
  margin: 15px 0 15px 0;
}

.swiper-experts {
  width: 100%;
  height: 100%;
  background-color: #0a6701;
  margin: 15px 0 15px 0;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: #08bbac;
  margin: 0 10px;
}

.mainNew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mainNew__journal {
  background-color: rgb(11, 69, 149);
  padding: 20px;
  border-radius: 15px;
}
.mainNew__journal-img {
  width: 100%;
  height: auto;
}
.mainNew__journal-btn {
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  margin-bottom: 15px;
}
.mainNew__journal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.mainNew__number-block {
  display: flex;
  gap: 10px;
  color: white;
  align-items: flex-end;
}
.mainNew__number-block .circle-num {
  border-radius: 50%;
  border: 3px solid white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainNew__number-block .circle-num span {
  font-weight: bold;
}
.mainNew__read-btn {
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  text-decoration: none;
}
.mainNew__materials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.mainNew__materials-block {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  gap: 20px;
  cursor: pointer;
}
a.mainNew__materials-block {
  color: #212529;
  text-decoration: none;
}
.mainNew__materials-block-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mainNew__materials-block-text .wrapper-text {
  display: flex;
  gap: 25px;
  color: rgb(185, 185, 185);
  font-size: 14px;
}
.mainNew__materials-block-text .calendar-container {
  display: flex;
  gap: 10px;
}
.mainNew__materials-block-text-svg {
  width: 20px;
  height: auto;
}
.mainNew__materials-block-container-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.mainNew__materials-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainNew .time-container {
  display: flex;
  gap: 10px;
  color: rgb(185, 185, 185);
}
.mainNew__news .news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mainNew__news-block {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}
.mainNew__news-top {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mainNew__news-top h3 {
  margin-bottom: 0;
}
.mainNew__news-top .date-span {
  color: rgb(81, 66, 120);
  font-weight: bold;
}
.mainNew__news-top h3 {
  font-weight: bold;
}
.mainNew__news-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mainNew__news-bottom p {
  margin-bottom: 0;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1540px) {
  .mainNew {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "mainNew-wrapper mainNew__materials" "mainNew__news mainNew__news";
  }
  .mainNew > *:nth-child(1) {
    grid-area: mainNew-wrapper;
  }
  .mainNew > *:nth-child(2) {
    grid-area: mainNew__materials;
  }
  .mainNew > *:nth-child(3) {
    grid-area: mainNew__news;
  }
}
@media screen and (max-width: 1200px) {
  .header__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 994px) {
  .mainNew {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "mainNew-wrapper" "mainNew__materials" "mainNew__news";
  }
}
@media screen and (max-width: 768px) {
  .header__content .img-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .trend {
    gap: 7px;
  }
  .trend img {
    width: 25px;
  }
  .divider {
    margin: 0;
  }
  .mainNew__materials-block-text .wrapper-text {
    flex-direction: column;
    gap: 10px;
  }
  .mainNew__materials-block-text-svg {
    width: 15px;
  }
  .wrapper .sidebar__item.has-submenu .submenu {
    top: 100%;
    left: -3%;
    transform: translateY(10px);
  }
  .wrapper .sidebar__item.has-submenu.open .submenu {
    transform: translateY(0);
  }
}
.nav-btn {
  border: none;
  background: none;
}

.nav-btn:hover {
  border: none !important;
  background: none !important;
}

.nav-btn img {
  filter: none;
}

.owl-prev {
  left: -25px;
  top: 42%;
}

.owl-next {
  right: -25px;
  top: 42%;
}

#slider .owl-dots {
  display: none;
}

.swiper-experts {
  background-color: inherit;
}
.main-experts {
  margin: 30px 0 40px;
}
.specialist-slider {
  padding: 20px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #ebebeb;
}
.main-experts .owl-stage-outer {
  border: none;
}

.def-btn {
  display: none;
}

.image-container {
  width: 50%;
}


.inner-page {
  margin: 30px 0 0;
}
.games .game-header{
    padding: 30px 60px;
    background-image: url('/game/bg.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  .games  .game-header img{
    height: 60px;
  }
  @media (max-width: 768px) {
    .games  .game-header{
      padding: 15px 30px;
    }
    .games  .game-header img{
      height: 30px;
    }
  }

.tiles__item {
  text-decoration: none;
  color: inherit;
}
.tiles__item-title {
    margin-top: 10px;
}


.feldman .popup-window-titlebar div {
  font-size: larger;
  font-weight: bolder;
  margin-top: 2rem;
}

.feldman .popup-window-content div img {
  margin-bottom: 1rem !important;
}

.feldman .btn-success {
    font-weight: bolder;
    background: #0b4595;
    color: #fff;
    border-radius: 12px;
    border: 1px solid #0b4595;
    padding: 15px 50px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.feldman .btn-success:hover {
    background-color: #fff;
    transform: scale(1.05);
    color: #0b4595;
}

.feldman .bx_bt_button {
  white-space: nowrap;
}

.feldman .bx_catalog_top_home .bx_catalog_item {
  background: transparent;
  float: none;
  margin-bottom: initial;
  height: 100%;
}

.feldman .bx_catalog_item_container {
  max-width: 100%;
  height: 100%;
  justify-content: flex-start;
}
.feldman .bx_catalog_item_wrapper {
  width: 100%;
  flex: 1;
}
.feldman .bx_catalog_top_home .bx_catalog_item_title {
  max-width: 100%;
  width: 100%;
  min-height: auto;
  max-height: max-content;
  margin-top: 0;
  margin-bottom: 20px;
}
.feldman .bx_catalog_top_home .bx_catalog_item_title a {
    margin-left: 0;
    width: 100%;
    font-size: 16px !important;
    max-width: 100%;
}
.feldman .bx_catalog_item_price {
  margin-left: 0;
  margin-top: auto;
}
.feldman .bx_catalog_top_home.bx_blue .bx_bt_button {
    margin-left: 0;
    background: #0b4595;
    padding: 5px 25px;
    height: auto;
    border-radius: 9px;
    text-transform: uppercase;
}

.feldman .basket-line {
  margin-right: 0;
  text-align: right;
}
.feldman .basket-line-block {
  font-size: unset;
}
.feldman .bx_item_detail {
  margin-top: 30px;
}
.feldman .bx_cart {
  margin-left: 0;
  background: #0b4595;
  padding: 5px 45px !important;
  height: auto !important;
  border-radius: 9px;
  text-transform: uppercase;
  width: auto;
  max-width: unset !important;
  min-width: unset !important;
  display: flex;
  align-items: center;
  border-radius: 11px;
}
.feldman .bx_item_detail .bx_cart span {
  bottom: 0 !important;
}

.feldman .news-list {
  margin-top: 20px;
}

@media screen and (max-width: 575px) {
  .feldman .basket-line {
    text-align: left;
    margin-top: 20px;
  }
}

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