@charset "UTF-8";
/** Подключение sass переменных */
/** Обнуление стилей*/
* {
  margin: 0;
  border: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  inline-size: 100%;
  block-size: 100%;
  min-inline-size: 320px;
}

body {
  overscroll-behavior: none;
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  font-size: 16px;
  font-weight: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input[type=number] {
  appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  appearance: none;
}

button {
  cursor: pointer;
  user-select: none;
  background-color: transparent;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a {
  user-select: none;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

/* Подключение шрифтов локально из папки "./src/fonts" */
@font-face {
  font-family: PTRootUI;
  font-display: swap;
  src: url("../fonts/PTRootUI-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: PTRootUI;
  font-display: swap;
  src: url("../fonts/PTRootUI-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: PTRootUI;
  font-display: swap;
  src: url("../fonts/PTRootUI-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/** Подключение переменных */
/* ----------------------------------------------------------------------------------------------------
 КОРНЕВЫЕ ПЕРЕМЕННЫЕ 
------------------------------------------------------------------------------------------------------*/
:root {
  --container-width: 1760px;
  --container-padding: 20px;
  --font-family: "PTRootUI", sans-serif;
  --white-text: white;
  --black-text: #333;
  --red: #F89061;
  --scrollbar: red;
  --scrollbar-track: green;
  --scrollbar-thumb: blue;
  --beige-background: #F4F0E8;
  --black-border: #333;
}

/* Подключение sass function и mixins и extends стилей */
/* Подключение типографии */
/* ----------------------------------------------------------------------------------------------------
   Типография
 ----------------------------------------------------------------------------------------------------*/
h1 {
  margin-bottom: 40px;
  letter-spacing: 0%;
}

h1,
h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 90%;
}

/* Подключение дополнительный иутилит */
/* ----------------------------------------------------------------------------------------------------
   БАЗОВЫЕ
 ----------------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PTRootUI", sans-serif;
  text-wrap: balance;
  color: var(--black-text);
  background: var(--beige-background);
}

*::-webkit-scrollbar {
  inline-size: 0rem;
  background-color: var(--scrollbar);
}
*::-webkit-scrollbar-track {
  border-radius: var(--radius);
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  background: var(--scrollbar-track);
}
*::-webkit-scrollbar-thumb {
  border-radius: var(--radius);
  border: 0 none #fff;
  background-color: var(--scrollbar-thumb);
  cursor: pointer;
}
@media (any-hover: hover) {
  *::-webkit-scrollbar-thumb:hover {
    background-color: grey;
  }
}

.no-scroll {
  overflow: hidden;
}

[hidden] {
  display: none;
}

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

.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.ml-40 {
  margin-left: 40px;
}

.myrow {
  display: flex;
  flex-direction: row;
  margin-left: -10px;
  margin-right: -10px;
  height: inherit;
}

.mycolumn {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
}

/* Подключение стилей отдельных блоков и секций */
.bred {
  border: 1px solid red;
}

.gred {
  border: 1px solid green;
}

/* ----------------------------------------------------------------------------------------------------------------
КНОПКИ 
------------------------------------------------------------------------------------------------------------------*/
.back-to-top_wrapper {
  width: 100%;
  position: fixed;
  bottom: 50%;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 100;
}

.back-to-top_container {
  position: relative;
  max-width: calc(var(--container-width) + 120px);
  padding: 0 var(--container-padding);
  margin: 0 auto;
  width: 100%;
}

.back-to-top_button {
  position: absolute;
  right: 10px;
  top: 0;
  transform: translateY(-50%);
  background-color: white;
  border-radius: 40px;
  border: 1px solid #eee;
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.2);
}
.back-to-top_button.is-active {
  visibility: visible;
  opacity: 1;
}
.back-to-top_button:hover {
  background-color: rgba(238, 238, 238, 0.9333333333);
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  min-width: 46px;
  padding: 15px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.btn-transparent {
  background-color: transparent;
  color: #52856a;
  border: 1px solid #52856a;
}

.btn-transparent-2 {
  background-color: transparent;
  color: #1f1687;
  border: 1px solid #1f1687;
}

.btn-transparent-3 {
  background-color: transparent;
  color: #7d2e3c;
  border: 1px solid #7d2e3c;
}

.btn-fill {
  background-color: #52856a;
  color: white;
}

.btn-fill-2 {
  background-color: #1f1687;
  color: white;
}

.btn-fill-3 {
  background-color: #7d2e3c;
  color: white;
}

.btn-widget,
.btn-widget-2 {
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #fff;
  min-height: 31px;
  padding: 5px 0;
}

.btn-widget {
  background: #96b292;
}

.btn-widget-2 {
  margin-inline: auto;
  max-width: 173px;
  background: #c6c6e7;
  border: 1px solid #c6c6e7;
}

.btn-like,
.like {
  display: block;
  width: 44px;
  height: 43px;
  background-image: url("../icons/heart-transparentr.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btn-like.active,
.like.active {
  background-image: url("../icons/heart-fill.svg");
}

.btn-like-2,
.like-2 {
  display: block;
  width: 44px;
  height: 43px;
  background-image: url("../icons/heart-transparentr-2.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btn-like-2.active,
.like-2.active {
  background-image: url("../icons/heart-fill.svg");
}

.btn-like-3,
.like-3 {
  display: block;
  width: 44px;
  height: 43px;
  background-image: url("../icons/heart-transparentr-3.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btn-like-3.active,
.like-3.active {
  background-image: url("../icons/heart-fill.svg");
}

.btn-comment {
  display: block;
  width: 44px;
  height: 43px;
  background-image: url("../icons/message-rectangle.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.btn-comment-2 {
  display: block;
  width: 44px;
  height: 43px;
  background-image: url("../icons/message-rectangle-2.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.btn-comment-3 {
  display: block;
  width: 44px;
  height: 43px;
  background-image: url("../icons/message-rectangle-3.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ----------------------------------------------------------------------------------------------------------------
РЕАЛИЗАЦИЯ КРИВОЙ РАМКИ С СЫЛКАМИ
------------------------------------------------------------------------------------------------------------------*/
/* 1... Стилизуем рамку */
.page-home {
  padding-bottom: 90px;
}
.page-home .container-frame:before {
  background-image: url("../images/tab.png");
}
.page-home .container-frame {
  margin-top: 120px;
}

.container-frame {
  position: relative;
  border: 2px solid var(--black-border);
  border-radius: 40px;
  border-top-left-radius: 0;
  margin-top: 80px;
  /*2... Стилизуем псевдоэлемент для рамки (вкладку)*/
}
.container-frame:before {
  content: "";
  position: absolute;
  top: -66px;
  left: -2px;
  width: calc(100% - 2rem);
  min-height: 66px;
  background-repeat: no-repeat;
}

/* 3... Родительский контейнер для ссылок */
.frame-links {
  position: relative;
}

/* 4... Дочерний контейнер для левой ссылки */
.frame-links_left {
  position: absolute;
  top: -2.2rem;
  left: 2rem;
}

/* 5... Дочерний контейнер для правой ссылки */
.frame-links_right {
  position: absolute;
  top: -2.4rem;
  right: 2rem;
}

/* 6... Стилизуем левую ссылку */
.frame-links_left a {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-weight: 400;
  font-size: 30px;
  line-height: 90%;
  text-decoration-skip-ink: none;
  color: var(--black-text);
}
.frame-links_left a:hover {
  text-decoration: underline;
}

/* 7... Стилизуем правую ссылку */
.frame-links_right a {
  font-weight: 500;
  font-size: 25px;
  line-height: 90%;
  text-decoration-skip-ink: none;
  color: var(--black-text);
}
.frame-links_right a:hover {
  text-decoration: underline;
}

.padding-inline {
  padding-left: 100px;
  padding-right: 100px;
}

/* ----------------------------------------------------------------------------------------------------------------
                                                СТРАНИЦЦА 1
------------------------------------------------------------------------------------------------------------------*/
.intro {
  /* 8... Одно фоновое изображение сведенное в Фигма */
}
.intro_background {
  background-image: url("../images/hacker-cracking-code.png");
  background-size: 763px 645px;
  background-position: right 0 top 0;
  background-repeat: no-repeat;
}

/* ----------------------------------------------------------------------------------------------------------------
Секция ПРИВЕТСТВИЕ
------------------------------------------------------------------------------------------------------------------*/
.greeting {
  padding-top: 70px;
}
.greeting p {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 25px;
}
.greeting strong {
  font-weight: 700;
}

/* ----------------------------------------------------------------------------------------------------------------
 Секция ПРЕДУПРЕЖДЕНИЕ
------------------------------------------------------------------------------------------------------------------*/
.warning {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 150px;
  margin-top: 30px;
}
.warning img {
  position: relative;
  content: "";
  width: 264px;
  height: 200px;
  top: 30px;
  left: 50px;
}
.warning_paragraph {
  font-weight: 500;
  font-size: 36px;
}

/* ----------------------------------------------------------------------------------------------------------------
 Секция ИНФРМАЦИО О ДАННЫХ
------------------------------------------------------------------------------------------------------------------*/
.data-info {
  background-color: #f8f8f8;
  border-radius: 40px;
  padding: 60px 60px;
  margin: 0 39px 50px 41px;
}
.data-info_paragraph {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.data-info p,
.data-info li {
  font-weight: 500;
  font-size: 30px;
}
.data-info li {
  margin-left: 45px;
}

/* ----------------------------------------------------------------------------------------------------------------
 Секция КАК ИГРАТЬ
------------------------------------------------------------------------------------------------------------------*/
.how-to-play h2 {
  margin-bottom: 40px;
  letter-spacing: 0%;
}
.how-to-play p,
.how-to-play li {
  font-weight: 500;
  font-size: 36px;
}
.how-to-play li {
  margin-left: 45px;
}

/* ----------------------------------------------------------------------------------------------------------------
 Секция СТАРТ
------------------------------------------------------------------------------------------------------------------*/
.start {
  margin-top: 30px;
}
.start .game-console-first {
  position: relative;
  top: 7px;
  width: 217px;
  height: 185px;
}
.start .game-console-second {
  position: relative;
  top: -80px;
  width: 274px;
  height: 227px;
}
.start_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 30px;
}
.start_flex p {
  font-weight: 700;
  font-size: 45px;
  text-align: center;
}
.start_invite {
  font-weight: 700;
  font-size: 80px;
  line-height: 90%;
  text-align: center;
  margin-bottom: 70px;
}
.start_button {
  text-align: center;
  margin-bottom: 70px;
}
.start_button .button {
  color: black;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 80px;
  line-height: 90%;
  border-radius: 40px;
  padding: 60px 120px;
  width: 479px;
  height: 176px;
  background: linear-gradient(90deg, #f89061, #ffc1a3, #f87040, #f89061);
  background-size: 200%;
  transition: transform 0.3s ease;
  margin-inline: auto;
}
.start_button .button:hover {
  animation: shimmer 2s linear infinite;
  transform: translateY(-2px);
}
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* ----------------------------------------------------------------------------------------------------------------
                                                СТРАНИЦЦА 2
------------------------------------------------------------------------------------------------------------------*/
.container-out {
  margin: 0 auto;
  width: 100%;
  background-color: #f4f0e8;
  border-radius: 0 0 140px 140px;
  max-width: 1920px;
  padding-top: 40px;
  padding-bottom: 100px;
}

.page-profile .container-frame:before {
  background-image: url("../images/tab-white.png");
}
.page-profile .container-frame {
  background: linear-gradient(0deg, #f4f0e8 39.42%, #fff 100%);
}

/* ----------------------------------------------------------------------------------------------------------------
ПРАВИЛА ИГРЫ 
------------------------------------------------------------------------------------------------------------------*/
.game-rules {
  padding-top: 70px;
  padding-bottom: 90px;
}
.game-rules_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game-rules_title .level {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
  font-weight: 700;
  font-size: 60px;
  line-height: 90%;
  color: var(--red);
}
.game-rules_description {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: var(--black-text);
  margin-bottom: 50px;
}
.game-rules_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.game-rules_grid .item-left p,
.game-rules_grid .item-left li {
  font-weight: 500;
  font-size: 35px;
  line-height: 120%;
}
.game-rules_grid .item-left li {
  text-indent: -7px;
  margin-left: 30px;
}
.game-rules_grid .item-right {
  align-self: flex-end;
}
.game-rules_grid .item-right_tile {
  border-radius: 40px;
  padding: 40px;
  width: 100%;
  background: #fff;
}
.game-rules_grid .item-right p {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: var(--red);
}

/* ----------------------------------------------------------------------------------------------------------------
ФОРМА ПОИСКА 
------------------------------------------------------------------------------------------------------------------*/
.search-form {
  margin-top: 120px;
  margin-bottom: 40px;
}
.search-form_inner {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  width: 100%;
  border-radius: 40px;
  background-color: #fff;
  min-height: 62px;
  padding-left: 20px;
  padding-right: 20px;
}
.search-form_inner button {
  flex-shrink: 1;
  width: 30px;
  height: 30px;
}
.search-form_inner button img {
  width: 100%;
  height: auto;
}
.search-form_inner input {
  flex-grow: 1;
  font-weight: 400;
  font-size: 20px;
}
.search-form_inner input::placeholder {
  font-weight: 400;
  font-size: 20px;
  color: #000;
  opacity: 0.7;
}

/* ----------------------------------------------------------------------------------------------------------------
СЕКЦИЯ ПРОФИЛЬ 
------------------------------------------------------------------------------------------------------------------*/
.profile {
  /* ----------------------------------------------------------------------------------------------------------------
   СЕКЦИЯ КОНТЕНТ  (ВКЛАДКИ , ПОСТЫ)
  ------------------------------------------------------------------------------------------------------------------*/
}
.profile-header {
  border-radius: 40px;
  min-height: 453px;
  background: #fff;
}
.profile-header_top {
  border-radius: 40px;
  width: 100%;
  min-height: 280px;
  background: linear-gradient(180deg, #fff 0%, #96b292 100%);
}
.profile-header_top-2 {
  border-radius: 40px;
  width: 100%;
  min-height: 280px;
  background: linear-gradient(180deg, #fff 0%, #9098d0 100%);
}
.profile-header_top-3 {
  border-radius: 40px;
  width: 100%;
  min-height: 280px;
  background: linear-gradient(180deg, #fff 0%, #dcacb5 100%);
}
.profile-header_bottom .bottom-grid {
  display: grid;
  grid-template-columns: 210fr 560fr 230fr;
}
.profile-header_bottom .bottom-grid_item {
  position: relative;
}
.profile-header_bottom .bottom-grid_item.item-1 img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(40px, -55%);
  width: 236px;
  height: 236px;
  border-radius: 100%;
  overflow: hidden;
}
.profile-header_bottom .bottom-grid_item.item-2 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.profile-header_bottom .bottom-grid_item.item-2 .name {
  font-weight: 700;
  font-size: 30px;
  color: #000;
  padding-bottom: 20px;
}
.profile-header_bottom .bottom-grid_item.item-2 p {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #000;
}
.profile-header_bottom .bottom-grid_item.item-3 {
  padding-top: 40px;
  padding-bottom: 40px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 15px;
}
.profile-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 210fr 790fr;
}
.profile-sidebar {
  margin-right: 40px;
  background: linear-gradient(0deg, #fff 0%, #96b292 100%);
  border-radius: 40px 40px 0 0;
}
.profile-sidebar-2 {
  margin-right: 40px;
  background: linear-gradient(0deg, #fff 0%, #9098d0 100%);
  border-radius: 40px 40px 0 0;
}
.profile-sidebar-3 {
  margin-right: 40px;
  background: linear-gradient(0deg, #dcacb5 100%, #fff 0%);
  border-radius: 40px 40px 0 0;
}
.profile .widget {
  border-radius: 40px;
  padding: 35px;
  width: 100%;
  background: #fff;
  margin-bottom: 90px;
}
.profile .widget-menu_title {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}
.profile .widget-menu_nav li {
  width: 100%;
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: flex-start;
  justify-content: start;
  gap: 15px;
  transition: all 0.3s ease-in-out;
}
.profile .widget-menu_nav li:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.profile .widget-menu_nav li:not(:last-child) {
  margin-bottom: 25px;
}
.profile .widget-prompt p,
.profile .widget-prompt li {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #598552;
  list-style: none;
}
.profile .widget-prompt li span:before {
  display: inline-block;
  content: "";
  width: 3px;
  height: 3px;
  background-color: #598552;
  border: 1px solid #598552;
  border-radius: 50%;
  margin-right: 5px;
  margin-bottom: 3px;
}
.profile .widget-prompt p strong {
  font-weight: 700;
}
.profile .widget-prompt .btn {
  margin-top: 30px;
}
.profile .widget-prompt-22 p, .profile .widget-prompt-2 p {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #1f1687;
  padding-bottom: 30px;
}
.profile-content {
  border-radius: 40px 40px 0 0;
  width: 100%;
  background: #fff;
  padding: 40px;
}
.profile-content_tabs {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.profile-content_tabs span,
.profile-content_tabs button {
  font-weight: 400;
  font-size: 30px;
  color: #598552;
  transition: all 0.3s ease-in-out;
}
.profile-content_tabs span.active,
.profile-content_tabs button.active {
  font-weight: 700;
}
.profile-content_tabs-2 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.profile-content_tabs-2 span,
.profile-content_tabs-2 button {
  font-weight: 400;
  font-size: 30px;
  color: #1f1687;
  transition: all 0.3s ease-in-out;
}
.profile-content_tabs-2 span.active,
.profile-content_tabs-2 button.active {
  font-weight: 700;
}
.profile-content_tabs-3 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.profile-content_tabs-3 span,
.profile-content_tabs-3 button {
  font-weight: 400;
  font-size: 30px;
  color: #7d2e3c;
  transition: all 0.3s ease-in-out;
}
.profile-content_tabs-3 span.active,
.profile-content_tabs-3 button.active {
  font-weight: 700;
}
.profile-content_panels .panel {
  display: none;
}
.profile-content_panels .panel.active {
  display: block;
}
.profile-content_panels .post {
  padding-top: 20px;
}
.profile-content_panels .post-header_grid {
  display: grid;
  grid-template-columns: 85px 1fr;
  column-gap: 20px;
}
.profile-content_panels .post-header_grid .item-beetwen {
  padding-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.profile-content_panels .post-header_grid h3 {
  font-weight: 700;
  font-size: 30px;
  color: #000;
}
.profile-content_panels .post-header_grid small {
  font-weight: 300;
  font-size: 20px;
  color: #000;
}
.profile-content_panels .post-image {
  display: block;
  margin-top: 15px;
  transform: scale(1);
  overflow: hidden;
  border-radius: 40px;
}
.profile-content_panels .post-image img {
  transition: all 0.3s ease-in-out;
}
.profile-content_panels .post-image img:hover {
  transform: scale(1.01);
}
.profile-content_panels .post-message {
  margin-top: 15px;
}
.profile-content_panels .post-message p {
  font-weight: 400;
  font-size: 30px;
  color: #000;
}
.profile-content_panels .post-message p strong {
  font-weight: 700;
}
.profile-content_panels .post-meta {
  margin-top: 40px;
  padding-bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.profile-content_panels .post-meta_item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.profile-content_panels .post-meta_item span {
  margin-top: -10px;
}
.profile-content_panels .post-comments {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.profile-content_panels .post-comments_item {
  border-radius: 0 40px 40px 40px;
  padding: 40px 39px;
  width: 50%;
  background: #e2eddd;
}
.profile-content_panels .post-comments_item p {
  font-weight: 400;
  font-size: 30px;
  color: #000;
}
.profile-content_panels .post-comments_item p strong {
  font-weight: 700;
}
.profile-content_panels .post:not(:last-child) {
  border-bottom: 1px solid #c2c2c2;
}

.sticky-parent {
  position: sticky;
  top: 100px;
}

.sticky-parent-3 {
  position: sticky;
  top: 0px;
}

.center-menu {
  background-color: rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.center-menu a {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  font-size: 2rem;
  line-height: 200%;
  text-decoration: none;
  transition: all 0.3s ease-in-outF;
}
.center-menu a:hover {
  color: green;
}

/* -------------------------------------------------------------------------------------------------------------------------\
Extra styles for level 2
---------------------------------------------------------------------------------------------------------------------------*/
.level_2_text {
  font-weight: 700;
  font-size: 60px;
  line-height: 90%;
  color: #85b97b;
}

.game-rules_description .think {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  padding-top: 40px;
}
.game-rules_description .slim {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
}

.hidden {
  display: none;
}

.index-up {
  position: relative;
  z-index: 10;
  margin-top: 60px;
  margin-bottom: 80px;
}

/* -------------------------------------------------------------------------------------------------------------------------\
Extra styles for level 3
---------------------------------------------------------------------------------------------------------------------------*/
#level-3 .level_3_text {
  font-weight: 700;
  font-size: 60px;
  line-height: 90%;
  color: #dcacb5;
}
#level-3 .padding-left-50 {
  padding-left: 50px;
}
#level-3 .margin-bottom-50 {
  margin-bottom: 40px;
}
#level-3 .game-rules_description {
  margin-bottom: 0;
}
#level-3 .search-form input::placeholder {
  color: #7d2e3c;
}
#level-3 .link {
  color: blue;
  cursor: pointer;
}
#level-3 .link:hover {
  color: violet;
}
#level-3 .widget-prompt-3 {
  margin-bottom: 0;
}
#level-3 .widget-prompt-3 .title-widget-3 {
  text-align: center;
  font-weight: 700;
  font-size: 25px;
  line-height: 120%;
  color: #7d2e3c;
  margin-bottom: 15px;
}
#level-3 .widget-prompt-3 p {
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #7d2e3c;
  text-align: center;
  margin-bottom: 20px;
}
#level-3 .widget-prompt-3 input.input-widget-3 {
  display: block;
  border: 1px solid #7d2e3c;
  border-radius: 40px;
  padding: 10px 15px;
  width: 248px;
  height: 31px;
  margin-inline: auto;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: justify;
  color: #7d2e3c;
  margin-bottom: 10px;
}
#level-3 .widget-prompt-3 input.input-widget-3::placeholder {
  color: #dcacb6;
}
#level-3 .widget-prompt-3 .btn-widget-3 {
  border-radius: 40px;
  padding: 10px 15px;
  height: 31px;
  background: #7d2e3c;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #fff;
  display: block;
  margin-inline: auto;
  transition: background-color 1s ease-in-out;
}
#level-3 .widget-prompt-3 .btn-widget-3:active {
  color: gray;
}
#level-3 .widget-prompt-3 .btn-widget-3.success {
  background-color: green !important;
}
#level-3 .widget-prompt-3 small {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  line-height: 120%;
  text-align: center;
  color: #7d2e3c;
  margin-top: 20px;
}
#level-3 .no-edit {
  pointer-events: none; /* Предотвращает взаимодействие с элементом */
  opacity: 0.3; /* Делает элемент полупрозрачным */
}

.russian {
  position: relative;
  top: -5px;
  width: 45px;
  height: 45px;
}

.alertText {
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-size: 2rem;
  line-height: 110%;
  color: black;
  font-weight: bold;
  border: 1px solid #000;
  border-radius: 40px;
  padding: 50px;
  background-color: white;
  transition: all 0.5s ease-in-out;
  z-index: 100;
}
@media (max-width: 320px) {
  .alertText {
    font-size: 1.5rem;
  }
}
.alertText.active {
  opacity: 1;
}

/*--------------------------------------------------------------------------------------------------------------
Finish page styles
---------------------------------------------------------------------------------------------------------*/
.page-finish .greeting {
  padding-top: 50px;
}
.page-finish .finish-info {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 60px;
  margin: 0 39px 50px 41px;
}
.page-finish .finish-info p {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 50px;
}
.page-finish .finish-info p:nth-child(2) {
  margin-bottom: 100px;
}
.page-finish .finish-info p:last-child {
  margin-bottom: 0;
}
.page-finish .space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 50px;
}
.page-finish .space-between h1 {
  margin-bottom: 0;
}
.page-finish .finish-intro {
  padding-bottom: 480px;
  background-image: url("../images/finish.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.page-finish .finish-note {
  margin-bottom: 100px;
}
.page-finish .finish-note h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
}
.page-finish .finish-note p {
  font-weight: 500;
  font-size: 30px;
  max-width: 70%;
}
.page-finish .finish-list {
  position: relative;
  margin-bottom: 120px;
}
.page-finish .finish-list h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 50px;
}
.page-finish .finish-list p,
.page-finish .finish-list li {
  font-size: 30px;
  margin-bottom: 10px;
}
.page-finish .finish-list li {
  position: relative;
  list-style: none;
  margin-left: 50px;
}
.page-finish .finish-list li:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 4px solid #000;
}
.page-finish .finish-list li:last-child {
  margin-bottom: 0;
}
.page-finish .finish-list:before {
  position: absolute;
  content: "";
  top: -180px;
  right: 170px;
  width: 283px;
  height: 215px;
  background-image: url("../images/laptop.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.page-finish .finish-list:after {
  position: absolute;
  content: "";
  bottom: -50px;
  right: 100px;
  width: 169px;
  height: 142px;
  background-image: url("../images/laptop-green.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.page-finish .finish-center {
  text-align: center;
}
.page-finish .finish-center p {
  font-size: 30px;
  margin-bottom: 50px;
}
.page-finish .finish-center h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  margin-bottom: 50px;
}
.page-finish .finish-inline_buttons {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

.btn-y {
  background-color: #f7d287;
  border-radius: 40px;
  display: inline-block;
  background: linear-gradient(90deg, #f7d287, #ffe4a1, #f7b74a, #f7d287);
  background-size: 200%;
  transition: transform 0.3s ease;
  animation: none;
  text-decoration: none;
  color: black;
  padding: 30px 65px;
  font-weight: 700;
  font-size: 40px;
  line-height: 90%;
  text-align: center;
}

.btn-y:hover {
  animation: shimmer 2s linear infinite;
  transform: translateY(-2px);
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.btn-o {
  background-color: #f89061;
  border-radius: 40px;
  padding: 30px 65px;
  display: inline-block;
  background: linear-gradient(90deg, #f89061, #ffc1a3, #f87040, #f89061);
  background-size: 200%;
  transition: transform 0.3s ease;
  animation: none;
  text-decoration: none;
  color: black;
  font-weight: 700;
  font-size: 40px;
  line-height: 90%;
  text-align: center;
}

.btn-o:hover {
  animation: shimmer 2s linear infinite;
  transform: translateY(-2px);
}

.finish-gradient {
  background: linear-gradient(180deg, #f4f0e8 70.19%, #fff 100%);
}

/* ----------------------------------------------------------------------------------------------------------------
ПОПАП
------------------------------------------------------------------------------------------------------------------*/
.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.popup.show {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
.popup-message, .popup-inner {
  max-width: 476px;
  display: inline-block;
  padding: 50px;
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.popup-message {
  min-height: 150px;
  padding: 15px;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 25px;
  line-height: 100%;
  font-size: 1.1rem;
  font-weight: bold;
}
.popup-buttons {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
}

#cancel,
#send {
  padding: 2rem;
  background-color: #f9f7f7;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
#cancel:hover,
#send:hover {
  background-color: #b1f795;
}

#cancel {
  margin-left: 50px;
}

/* ----------------------------------------------------------------------------------------------------------------
ВСПЛЫВАЮЩИЕ БАЛЛЫ
------------------------------------------------------------------------------------------------------------------*/
.counter_wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.counter_container {
  position: relative;
  max-width: calc(var(--container-width) + 120px);
  padding: 0 var(--container-padding);
  margin: 0 auto;
  width: 100%;
}

.counter {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  text-align: center;
  font-size: 2rem;
  line-height: 110%;
  color: rgb(66, 66, 66);
  font-weight: bold;
  transition: all 0.5s ease-in-out;
  text-shadow: 0 0 5px rgba(163, 166, 179, 0.95);
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 50%;
}
.counter.show {
  display: block;
}

/* ----------------------------------------------------------------------------------------------------------------
ОБРАТНАЯ СВЯЗЬ ОКНО
------------------------------------------------------------------------------------------------------------------*/
.popup-callback {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.popup-callback.show {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.popup-callback_wrap {
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  height: 100%;
}
.popup-callback_message {
  width: 100%;
  max-width: 1720px;
  display: inline-block;
  padding: 100px;
  background: linear-gradient(0deg, #fff 4.49%, #f4f0e8 24.68%, #f4f0e8 61.5%, #fff 100%);
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.popup-callback_title {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 80px;
  line-height: 120%;
  color: #f89061;
  padding-bottom: 60px;
}
.popup-callback_btn {
  display: block;
  border-radius: 40px;
  padding: 60px 120px;
  max-width: 938px;
  min-height: 148px;
  background: linear-gradient(90deg, #f89061, #ffc1a3, #f87040, #f89061);
  background-size: 200%;
  transition: transform 0.3s ease;
  margin-inline: auto;
}
.popup-callback_btn:hover {
  animation: shimmer 2s linear infinite;
  transform: translateY(-2px);
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.popup-callback_btn span {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 90%;
  color: black;
}
.popup-callback_tile {
  position: relative;
  background-color: white;
  padding: 75px;
  border-radius: 50px;
}
.popup-callback p {
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  padding-bottom: 30px;
}
.popup-callback ul {
  position: relative;
  z-index: 10;
  margin-bottom: 70px;
}
.popup-callback ul li {
  list-style: none;
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
}
.popup-callback ul li:before {
  content: "·";
  margin-right: 15px;
}
.popup-callback .strong {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  color: #000;
  display: block;
}
.popup-callback .pb-60 {
  padding-bottom: 130px;
}
.popup-callback .plus {
  content: "+";
  margin-left: 16px;
  margin-right: 16px;
}
.popup-callback .padding-top-100 {
  padding-top: 100px;
}
.popup-callback .pn {
  padding: 0;
}
.popup-callback .tac {
  text-align: center;
}
.popup-callback .small {
  font-weight: 500;
  font-size: 40px;
}
.popup-callback p.next {
  margin-inline: auto;
  text-align: center;
  max-width: 1300px;
  padding-top: 60px;
  padding-bottom: 80px;
}
.popup-callback p.next-laptop {
  position: relative;
  margin-inline: auto;
  text-align: center;
  max-width: 1300px;
  padding-top: 90px;
  padding-bottom: 80px;
}
.popup-callback p.next-laptop:after {
  position: absolute;
  content: "";
  top: -60px;
  right: 0;
  width: 193px;
  height: 164px;
  background-image: url("../images/laptop.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.popup-callback .to-home {
  display: block;
  font-size: 40px;
  line-height: 90%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: black;
  text-align: center;
  padding: 80px 0 0 0;
}
.popup-callback .to-home:hover {
  text-decoration: none;
}
.popup-callback .laptop {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  width: 218px;
  height: 183px;
}
.popup-callback .console {
  position: absolute;
  left: 65%;
  top: 0;
  transform: translateY(-70%);
  width: 273px;
  height: 221px;
  z-index: 0;
}

#content-fail {
  display: none;
}

#content-succes {
  display: none;
}

/*-----------------------------------------------------------------------------------------------------
RESUME POPUP 
------------------------------------------------------------------------------------------------------*/
.resume-wrapper-out {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
.resume-wrapper-out.show {
  visibility: visible;
  opacity: 1;
}

.resume-wrapper-in {
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  height: 100%;
}

.resume-place {
  position: relative;
  max-width: 1720px;
  width: 100%;
  background: linear-gradient(to top, #ffffff 0%, #f9f7f3 71%, #ebced3 100%);
  border-radius: 40px;
  margin: 100px auto;
  padding-inline: 100px;
}
.resume-place p,
.resume-place li {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
}
.resume-place h3 {
  font-weight: 500;
  font-size: 80px;
}

.resume-tile .tile_title {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.resume-tile .tile_title h1 {
  font-weight: 700;
  font-size: 120px;
  line-height: 120%;
  color: black;
  margin-bottom: 0;
}
.resume-tile .tile_close {
  position: absolute;
  right: 100px;
  top: 80px;
  width: 40px;
  height: 40px;
}
.resume-tile .tile_card {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 60px;
  border-radius: 40px;
}
.resume-tile .tile_card-text h3 {
  margin-bottom: 50px;
}
.resume-tile .tile_card-text .margin-bottom-100 {
  margin-bottom: 100px;
}
.resume-tile .tile_card-image {
  max-width: 481px;
  min-height: 442px;
}

.resume_content {
  width: 100%;
  max-width: 1520px;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 100px;
}
.resume_content h3 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.resume_content h3:first-child {
  margin-top: 0;
}
.resume_content li {
  position: relative;
  list-style: none;
  margin-left: 50px;
}
.resume_content li:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 4px solid #000;
}
/*# sourceMappingURL=main.min.css.map */
