@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
/* @import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap'); */
body {
  width: 100%;
  margin: 0 auto;
  font-family: Inter, sans-serif;
}
@media (min-width: 1440px) {
  main {
    display: grid;
    /* grid-template-columns: minmax(210px, 300px) 1fr; */
  }
}
.lk-main-box{
  display: flex;
  margin: auto;
  max-width: 1440px;
  width: 100%;
  padding-top: 60px;
  @media (min-width:768px) {
    margin: 0;
  }  
  @media (min-width:1440px) {
    width: 1440px;
    /* max-width: 1440px; */
    margin: auto;
  }
}

.font--Unb{
  font-family: 'Unbounded', sans-serif;
}
/* @font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-Black.ttf") format("ttf");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-ExtraBold.ttf") format("ttf");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-ExtraLight.ttf") format("ttf");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: local(""), url("./fonts/Unbounded/static/Unbounded-SemiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
} */

.header {
  width: 100%;
  margin: 0 auto;
  background-color: #333936;
}
.header__nav {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  max-width: 1440px;
}
@media (min-width: 768px) {
  .header__nav {
    align-items: stretch;
    gap: 30px;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .header__nav {
    width: 1440px;
    margin: auto;
    padding: 15px 20px 15px 10px;
    justify-content: flex-start;
    gap: 90px;
  }
}
.header__menu {
  background-color: #d4e07d;
  border-radius: 30px;
  display: flex;
  padding: 0 25px 0 22px;
  justify-content: center;
  align-items: center;
  /* gap: 15px; */
  cursor: pointer;
}
@media (min-width: 1440px) {
  .header__menu {
    padding: 0 25px;
    gap: 10px;
  }
}

.body__wrapper{
  width: 100%;
  padding-top: 60px;
}
.header__menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .header__menu-toggle {
    /* display: none; */
  }
}
.header__logo {
  color: #333936;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  text-transform: uppercase;
}
.header__users {
  display: none;
}
@media (min-width: 768px) {
  .header__users {
    margin-right: auto;
    background-color: #f2f2f2;
    color: #333936;
    border-radius: 40px;
    border: 1px solid #333936;
    display: flex;
    flex-direction: row;
    height: 40px;
    padding: 5px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .header__user {
    color: #333936;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    padding: 5px 25px;
  }
}
@media (min-width: 768px) {
  .header__user--active {
    border-radius: 30px;
    background: #d4e07d;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex: 1;
  }
}
.header__wallet {
  display: none;
}
@media (min-width: 768px) {
  .header__wallet {
    border-radius: 30px;
    background: #d4e07d;
    display: flex;
    padding: 0 30px;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
}
@media (min-width: 1440px) {
  .header__wallet {
    margin-left: auto;
  }
}
.header__wallet--icon {
  width: 20px;
  height: 20px;
  vertical-align: sub;
}
@media (min-width: 768px) {
  .header__wallet--summ {
    font-size: 14px;
    color: #333936;
    font-weight: 500;
    line-height: 140%;
  }
}
.sidebar {
  display: none;
}
@media (min-width: 1440px) {
  .sidebar {
    background-color: #333936;
    display: none;
    /* display: flex; */
    flex-direction: column;
    gap: 30px;
    padding: 20px 10px;
  }
}
.sidebar-user {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.sidebar-user__avatar {
  object-fit: cover;
  border-radius: 20px;
  background: #d3d3d3 50% / cover no-repeat;
  width: 200px;
  height: 200px;
}
.sidebar-user__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  color: #fff;
}
.sidebar-user__buttons {
  display: flex;
  gap: 20px;
}
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 5px;
}
.sidebar-menu__list-box {
  display: flex;
  flex-direction: column;
}
.sidebar-menu__item {
  display: flex;
  gap: 10px;
  color: #bdbdbd;
  align-items: center;
  justify-content: flex-start;
}
.sidebar-menu__item-icon {
  width: 20px;
  height: 20px;
}
.sidebar-menu__item-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.sidebar-menu__list-button {
  margin-left: auto;
}
.sidebar-menu__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  padding: 0 30px;
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease-in-out;
}
.sidebar-menu__list--opened {
  margin-top: 10px;
}
.sidebar-menu__list-item {
  font-size: 12px;
  font-weight: 400;
  line-height: 110%;
  color: #bdbdbd;
}
.sidebar-menu__list-item--active {
  color: #d4e07d;
}
.sidebar-practice,
.sidebar-feedback {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 5px 10px;
}
.sidebar-practice__title,
.sidebar-feedback__title {
  color: #bdbdbd;
  padding-bottom: 10px;
  border-bottom: 1px solid #bdbdbd;
}
.sidebar-practice__list,
.sidebar-feedback__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 5px;
}
.sidebar-practice__list-item,
.sidebar-feedback__list-item {
  color: #bdbdbd;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.sidebar-practice__list-item a,
.sidebar-feedback__list-item a {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
body.js-mb-open {
  overflow: hidden;
}
.header-mb {
  display: flex;
  height: 0;
  background-color: #FFFEFB;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  padding: 0;
  /* transition: all 0.3s ease-in-out; */
}
@media (min-width: 768px) {
  .header-mb {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    /* background-color: transparent; */
    background: linear-gradient(rgb(133 133 132 / 0.3), transparent);
    color: #333936;
  }
}
@media (min-width: 1024px) {
  .header-mb { 
   }
}
.header-mb__list--opened {
  margin-top: 10px;
}
.header-mb--open {
  height: calc(100vh - 50px);
  padding: 10px 15px;
}
@media (min-width: 768px) {
  .header-mb--open {
    height: auto;
    padding: 20px 80px;
    position: absolute;
    width: 100%;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .header-mb--open {
display: flex;
  }
}
.header-mb__user {
  display: flex;
  gap: 10px;
  flex-direction: row;
}
@media (min-width: 768px) {
  .header-mb__user {

  }
}
.header-mb__user-avatar {
  width: 98px;
  height: 98px;
  border-radius: 10px;
  object-fit: cover;
  @media (min-width:768px) {
    
  }
}
.header-mb__user-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .header-mb__user-info {
    gap: 10px;
  }
}
.header-mb__user-name {
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  color: #333936;
}

.header-mb__user-buttons {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .header-mb__user-buttons {
    gap: 5px;
  }
}
.notification-button__icon,
.settings-button__icon,
.logout-button__icon {
  width: 30px;
  height: 30px;
}
@media (min-width: 768px) {
  .notification-button__icon,
  .settings-button__icon,
  .logout-button__icon {
    width: 20px;
    height: 20px;
  }
}
.header-mb-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .header-mb-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: start;
  }
}
.header-mb__item {
  display: flex;
  gap: 10px;
  color: #333936;
}
@media (min-width: 768px) {
  .header-mb__item {
    gap: 5px;
  }
}
.header-mb__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.header-mb__list-box {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .header-mb__list-box {
    gap: 12px;
  }
}
.header-mb__list-button {
  margin-left: auto;
}
@media (min-width: 768px) {
  .header-mb__list-button {
    display: none;
  }
}
.header-mb__list {
  padding: 0 30px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .header-mb__list {
    height: auto;
    overflow: auto;
    padding: 0 5px 0 30px;
  }
}
.header-mb-practice,
.header-mb-feedback {
  display: flex;
  gap: 10px;
  color: #333936;
  @media (min-width:1024px) {
    height: fit-content;
  }
}
.header-mb__box-practice{
display: flex;
flex-direction: column;
gap: 10px;
@media (min-width:768px) {
  flex-direction: row;
  width: max-content;
  grid-column: 1/-1;
}
@media (min-width:1024px) {
  flex-direction: column;
  width: auto;
}
}
.header-mb-feedback__title,
.header-mb-practice__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.header-mb__users {
  display: flex;
  border-radius: 30px;
  border: 1px solid #333936;
  background: #fff;
  gap: 5px;
  padding: 5px;
  align-items: stretch;
  justify-content: space-between;
}
.header-mb__user {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
  display: flex;
  align-items: center;
}
.header-mb__box {
  border: none;
  border-radius: 20px;
  background: #fffefb;
  padding: 10px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
}
.header-mb__user--left {
  padding-left: 25px;
}
.header-mb__user--active {
  border-radius: 30px;
  background: #d4e07d;
  padding: 0 25px;
}
.header-mb__balance {
  display: flex;
  height: 35px;
  padding: 0 25px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 30px;
  background: #f18467;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border: none;
}
.header-mb__footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .header-mb__footer {
    display: none;
  }
}
.unvalidated-input {
  border: 1px solid #f18467;
  color: #f18467;
}
.notification-page {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .notification-page {
    padding: 40px 20px 20px;
  }
}
@media (min-width: 1440px) {
  .notification-page {
    padding: 40px;
  }
}
.notification-page__tabs {
  border-radius: 40px;
  border: 1px solid #333936;
  height: 40px;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  justify-items: center;
}
@media (min-width: 768px) {
  .notification-page__tabs {
    width: fit-content;
  }
}
.notification-page__tab {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .notification-page__tab {
    padding: 0 50px;
  }
}
.notification-page__tab--active {
  border-radius: 30px;
  background: #d4e07d;
  padding: 0 35px;
  width: -webkit-fill-available;
  justify-content: center;
}
.notification-page__content {
  border-radius: 20px;
  background: #f2f2f2;
  display: none;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .notification-page__content {
    padding: 20px;
  }
}
.notification-page__content--active {
  display: flex;
}
.notification-page body.js-notification-opened {
  overflow: hidden;
}
.notification-page .js-notification {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00000080;
}
.notification-page .js-notification--open {
  display: block;
  height: 100%;
}
.notification-page
  .js-notification--open
  .notification-page
  .js-notification__wrapper {
  transform: translateY(0);
}
.notification-page .js-notification__wrapper {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  padding: 20px;
  background: #fff;
}
.notification-page .js-notification__header {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e5e5;
}
.notification-page .js-notification__close {
  display: flex;
  background-color: #f18467;
  padding: 8px;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.notification-page .js-notification__title {
  font-size: 18px;
}
.content-notifications {
  display: flex;
  padding: 10px 15px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: #fffefb;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .content-notifications {
    padding: 15px 20px;
  }
}
.content-notifications__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-notifications__header--name {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #333936;
}
@media (min-width: 768px) {
  .content-notifications__header--name {
    font-size: 22px;
    line-height: 140%;
  }
}
.content-notifications__header--time {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #333936;
}
@media (min-width: 768px) {
  .content-notifications__header--time {
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
  }
}
.content-notifications__body {
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-notifications__body img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .content-notifications__body img {
    width: 60px;
    height: 60px;
  }
}
.content-notifications__body p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #333936;
}
@media (min-width: 768px) {
  .content-notifications__body p {
    font-size: 14px;
    font-weight: 500;
  }
}
.content-letters {
  display: flex;
  padding: 10px 15px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: #fffefb;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .content-letters {
    padding: 15px 20px;
  }
}
.content-letters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-letters__header--name {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #333936;
}
@media (min-width: 768px) {
  .content-letters__header--name {
    font-size: 22px;
    line-height: 140%;
  }
}
.content-letters__header--time {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #333936;
}
@media (min-width: 768px) {
  .content-letters__header--time {
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
  }
}
.content-letters__body {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #333936;
}
@media (min-width: 768px) {
  .content-letters__body {
    font-size: 14px;
    font-weight: 500;
  }
}
.user__wrapper {
  display: block;
}
@media (min-width: 768px) {
  .user__wrapper {
    padding: 40px 20px 10px;
    display: flex;
    gap: 20px;
  }
}
.user {
  margin: 10px;
  padding: 20px;
  border-radius: 20px;
  border: none;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: #333936;
}
@media (min-width: 768px) {
  .user {
    margin: 0;
  }
}
.user__avatar {
  object-fit: cover;
  border-radius: 20px;
  width: 285px;
  height: 285px;
}
@media (min-width: 768px) {
  .user__avatar {
    width: 240px;
    height: 240px;
  }
}
.user__name {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 160%;
}
.user__id,
.user__id--idx {
  color: #333936;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 768px) {
  .user__id,
  .user__id--idx {
    margin-right: auto;
  }
}
.user__email {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  margin-top: -20px;
}
@media (min-width: 768px) {
  .user__email {
    margin-right: auto;
  }
}
.user__socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
}
@media (min-width: 768px) {
  .user__socials {
    justify-content: flex-start;
    gap: 20px;
  }
}
.user-tabs {
  margin: 0 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .user-tabs {
    flex: 1;
    margin: 0;
    gap: 15px;
  }
}
.user-tabs__buttons {
  border-radius: 40px;
  /* border: 1px solid #333936; */
  display: flex;
  flex-direction: row;
  height: 40px;
  padding: 3px;
  align-items: center;
}
@media (min-width: 426px) {
  .user-tabs__buttons {
    max-width: max-content;
  }
}
@media (min-width: 768px) {
  .user-tabs__buttons {
    gap: 10px;
  }
}
@media (min-width: 974px) {
  .user-tabs__buttons {
    gap: 20px;
  }
}
.user-tabs__button {
  font-size: 12px;
  font-weight: 700;
  line-height: 110%;
  color: #333936;
  padding: 5px 15px;
  cursor: pointer;
}
@media (min-width: 974px) {
  .user-tabs__button {
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    padding: 5px 25px;
  }
}
.user-tabs__button--active {
  border-radius: 30px;
  width: -webkit-fill-available;
  background: #d4e07d;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (min-width: 768px) {
  .user-tabs__button--active {
    padding: 5px 25px;
  }
}
.user-tabs__content {
  display: none;
}
.user-tabs__content--active {
  padding: 15px;
  border-radius: 20px;
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .user-tabs__content--active {
    padding: 20px;
    gap: 20px;
  }
}
.user-tabs__content .content-info__item{
  @media (min-width:968px) {
    /* align-items: center; */
  }
}
.content-info__item.field-user-about{
  @media (min-width:968px) {
    align-items: start;
  }
}

.content-info__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-info__title {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
@media (min-width: 1440px) {
  .content-info__title {
    width: 150px;
  }
}
.content-info__input {
  border-radius: 30px;
  border: 1px solid #BDBDBD;
  outline: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
}
@media (min-width: 768px) {
  .content-info__input {
    padding: 10px 30px;
    flex: 1;
    width: 100%;
  }
}
.content-info__input::placeholder {
  opacity: 0.8;
}
.content-info__textaria {
  border-radius: 10px;
  border: 1px solid #BDBDBD;
  outline: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
  height: 190px;
  resize: none;
  width: 100%;
}
@media (min-width: 768px) {
  .content-info__textaria {
    padding: 10px 30px;
    flex: 1;
  }
}
.content-info__textaria::placeholder {
  opacity: 0.8;
}
.content-link__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .content-link__item {
    flex-direction: row;
    align-items: center;
  }
}
.content-link__title {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
@media (min-width: 768px) {
  .content-link__title {
    width: 100px;
  }
}
.content-link__input {
  border-radius: 30px;
  border: 1px solid #333936;
  outline: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
}
@media (min-width: 768px) {
  .content-link__input {
    padding: 10px 30px;
    flex: 1;
    width: 100%;
  }
}
.content-link__input::placeholder {
  opacity: 0.8;
}
.content-invite__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-invite__title {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
.content-invite__input {
  border-radius: 30px;
  border: 1px solid #BDBDBD;
  outline: none;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
}
@media (min-width: 768px) {
  .content-invite__input {
    padding: 10px 30px;
    width: 100%;
  }
}
.content-invite__input::placeholder {
  opacity: 0.8;
}
.content-invite__members {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #BDBDBD;
}
.content-invite__member {
  border-radius: 10px;
  border: none;
  padding: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #333936;
}
.content-invite__members li:nth-child(odd) {
  background-color: #fff;
}
.content-invite__member-img {
  width: 36px;
  height: 35px;
  object-fit: cover;
  border-radius: 50%;
  border: none;
}
.content-invite__member-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.content-invite__member-visibility {
  width: 26px;
  height: 24px;
  margin-left: auto;
}
.user-activity-tabs {
  margin: 0 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .user-activity-tabs {
    margin: 0 20px 20px;
  }
}
.user-activity-tabs__buttons {
  border-radius: 40px;
  border: 1px solid #333936;
  display: flex;
  height: 40px;
  padding: 5px;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .user-activity-tabs__buttons {
    width: max-content;
  }
}
.user-activity-tabs__button {
  font-size: 12px;
  font-weight: 700;
  line-height: 110%;
  color: #333936;
  padding: 0px 2.5rem;
  flex: 1;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .user-activity-tabs__button {
    font-size: 18px;
    font-weight: 600;
  }
}
.user-activity-tabs__button--active {
  border-radius: 30px;
  background: #d4e07d;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  flex: 1;
}
.user-activity-tabs__content {
  display: none;
}
.user-activity-tabs__content--active {
  padding: 20px 10px;
  border-radius: 20px;
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content-activities__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-activities__title {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
.content-news__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-news__title {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
.master-skills {
  display: flex;
  gap: 5px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


.master-skills .master-skills__rectangle {
  height: 20px;
  border-radius: 10px;
  border: 1px solid #BDBDBD;
  width: 59px;
}
.master-skills .master-skills__rectangle--white{
background-color: #ffffff;
}
.master-skills .master-skills__rectangle--green {
  background-color: #d4e07d;
}
.master-skills .master-skills__rectangle--gray {
  background-color: #d1e2cf;
}
.master-skills-check {
display: flex;
flex-direction: column;
gap: 25px;
}
@media (min-width: 678px) {
  .master-skills-check {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (min-width: 974px) {
  .master-skills-check {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    grid-template-rows: 1fr 1fr;
  }
}
@media (min-width: 1440px) {
  .master-skills-check {
    display: flex;
    flex-flow: wrap;
    justify-content: left;
  }
}
.master-skills-check__block {
  display: flex;
  align-items: center;
}
.master-skills-check .checkbox--description {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
  flex: 1;
}
@media (min-width: 425px) {
  .master-skills-check .checkbox--description {
    width: 100px;
  }
}
@media (min-width: 968px) {
  .master-skills-check .checkbox--description {
    width: auto;
  }
}
.master-skills-check .checkbox--wrapper .checkbox {
  position: relative;
  z-index: -1;
  opacity: 0;
}
.master-skills-check .checkbox--wrapper .checkbox + label {
  position: relative;
  cursor: pointer;
}
.master-skills-check .checkbox--wrapper .checkbox + label:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 55px;
  height: 29px;
  border-radius: 30px;
  background: #fffefb;
  transition: 0.2s;
  border: 1px solid #bdbdbd;
}
.master-skills-check .checkbox--wrapper .checkbox + label:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #bdbdbd;
  transition: 0.2s;
}
.master-skills-check .checkbox--wrapper .checkbox:checked + label:before {
  background: #d4e07d;
}
.master-skills-check .checkbox--wrapper .checkbox:checked + label:after {
  left: 28px;
  background: #fffefb;
}
.master-skills-check .checkbox--wrapper #box:checked + label:before {
  background: #8bc34a;
}
.master-skills-check .checkbox--wrapper .checkbox + label {
  position: relative;
  padding: 0 0 0 60px;
  cursor: pointer;
}
.settings-page {
  display: flex;
  padding: 20px 10px;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .settings-page {
    gap: 10px;
    padding: 40px 20px 20px;
  }
}
.settings-page .settings-tabs__buttons {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border-radius: 15px;
  border: 1px solid #333936;
  align-items: stretch;
}
@media (min-width: 768px) {
  .settings-page .settings-tabs__buttons {
    flex-direction: row;
    border-radius: 40px;
    width: max-content;
    padding: 5px;
  }
}
.settings-page .settings-tabs__buttons .settings-tabs__button {
  display: flex;
  padding: 8px 20px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
@media (min-width: 768px) {
  .settings-page .settings-tabs__buttons .settings-tabs__button {
    padding: 0 20px 0 30px;
  }
}
.settings-page .settings-tabs__buttons .settings-tabs__button--active {
  border-radius: 20px;
  background: #d4e07d;
}
@media (min-width: 768px) {
  .settings-page .settings-tabs__buttons .settings-tabs__button--active {
    border-radius: 30px;
  }
}
.settings-page .tabs-content {
  display: none;
  border-radius: 15px;
  background: #f2f2f2;
  padding: 15px;
}
@media (min-width: 768px) {
  .settings-page .tabs-content {
    padding: 20px;
    border-radius: 20px;
  }
}
.settings-page .tabs-content--active {
  display: flex;
}
.settings-page .tabs-content .attention-box {
  padding: 15px;
  gap: 10px;
  border-radius: 15px;
  background: #f18467;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  color: #fff;
}
@media (min-width: 768px) {
  .settings-page .tabs-content .attention-box {
    padding: 15px 20px;
  }
}
.settings-page .tabs-content .attention-box span {
  font-weight: 600;
}
.settings-page .tabs-content-pay {
  flex-direction: column;
  gap: 20px;
}
.settings-page .tabs-content-pay__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333936;
}
@media (min-width: 768px) {
  .settings-page .tabs-content-pay__block {
    flex-direction: row;
    align-items: center;
  }
}
.settings-page .tabs-content-pay__block label {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 150px;
}
.settings-page .tabs-content-pay__block input {
  border-radius: 30px;
  border: 1px solid #333936;
  padding: 10px 20px;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #858584;
}
@media (min-width: 768px) {
  .settings-page .tabs-content-pay__block input {
    flex: 1;
  }
}
.settings-page .tabs-content-pay__block input::placeholder {
  opacity: 0.8;
}
.settings-page .tabs-content-pay__save {
  border-radius: 30px;
  background: #d4e07d;
  padding: 8px 35px;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
@media (min-width: 768px) {
  .settings-page .tabs-content-pay__save {
    padding: 8px 60px;
    width: max-content;
    margin-left: 160px;
  }
}
.settings-page .tabs-content-notifications {
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .settings-page .tabs-content-notifications {
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.settings-page .tabs-content-notifications__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.settings-page .tabs-content-notifications__block .checkbox--description {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
  flex: 1;
}
.settings-page .tabs-content-notifications__block .checkbox--wrapper .checkbox {
  position: relative;
  z-index: -1;
  opacity: 0;
}
.settings-page
  .tabs-content-notifications__block
  .checkbox--wrapper
  .checkbox
  + label {
  position: relative;
  cursor: pointer;
}
.settings-page
  .tabs-content-notifications__block
  .checkbox--wrapper
  .checkbox
  + label:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 55px;
  height: 29px;
  border-radius: 30px;
  background: #fffefb;
  transition: 0.2s;
  border: 1px solid #bdbdbd;
}
.settings-page
  .tabs-content-notifications__block
  .checkbox--wrapper
  .checkbox
  + label:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #bdbdbd;
  transition: 0.2s;
}
.settings-page
  .tabs-content-notifications__block
  .checkbox--wrapper
  .checkbox:checked
  + label:before {
  background: #d4e07d;
}
.settings-page
  .tabs-content-notifications__block
  .checkbox--wrapper
  .checkbox:checked
  + label:after {
  left: 28px;
  background: #fffefb;
}
.settings-page
  .tabs-content-notifications__block
  .checkbox--wrapper
  #box:checked
  + label:before {
  background: #8bc34a;
}
.settings-page
  .tabs-content-notifications__block
  .checkbox--wrapper
  .checkbox
  + label {
  position: relative;
  padding: 0 0 0 60px;
  cursor: pointer;
}
.settings-page .tabs-content-password {
  flex-direction: column;
  gap: 20px;
}
.settings-page .tabs-content-password__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333936;
}
.settings-page .tabs-content-password__block label {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.settings-page h1{
  color: #333936;
  font-size: 22px;
  font-weight: 500;
  line-height: 31px;
}
@media (min-width:768px) {
  .settings-page h1{
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
  }
}
.settings-page .tabs-content-password__block input {
  border-radius: 30px;
  border: 1px solid #bdbdbd;
  padding: 10px 20px;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #858584;
}
@media (min-width: 768px) {
  .settings-page .tabs-content-password__block input {
    flex: 1;
  }
}
.settings-page .tabs-content-password__block input::placeholder {
  opacity: 0.8;
}
.settings-page .tabs-content-password__save {
  border-radius: 30px;
  background: #d4e07d;
  color: #333936;
  padding: 8px 35px;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}
@media (min-width: 768px) {
  .settings-page .tabs-content-password__save {
    padding: 8px 60px;
    width: max-content;
  }
}
.transactions-wrapper {
  padding: 20px 10px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .transactions-wrapper {
    padding: 40px;
  }
}
.transactions-tabs{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  align-items: stretch;
  @media (min-width:768px) {
    flex-direction: row;
    align-items: center;
  }
}
.transactions-tabs .tab{
  border: 1px solid #BDBDBD;
  width: 100%;
  color: #858584;
  padding: 5px 13px 5px 20px;
  border-radius: 60px;
  height: 34px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  cursor: pointer;
  @media (min-width:768px) {
    font-size: 18px;
  font-weight: 500;
  color: #333936;
  border: none;
  width: fit-content;
  padding: 9px 30px;
  height: 40px;
  text-align: center;
  }
}
.center-desktop{
  @media (min-width:1024px){
    place-self: center;
  }
}
.transactions-tabs .tab--active{
  border: none;
  width: 100%;
  color: #333936;
  padding: 5px 13px 5px 20px;
  border-radius: 60px;
  height: 42px;
  font-size: 18px;
  font-weight: 500;
  background-color: #D4E07D;
  display: flex;
  align-items: center;
  cursor: pointer;
  @media (min-width:768px) {
    width: fit-content;
    font-size: 18px;
  font-weight: 500;
  padding: 9px 30px;
  height: 40px;
  text-align: center;
  }
}
.transactions-wrapper__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 42px;
}
.actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
  }
}
@media (min-width: 924px) {
  .actions {
    gap: 20px;
  }
}
.actions__item {
  padding: 15px;
  border-radius: 30px;
  background-color: #d4e07d;
  color: #333936;
  display: flex;
  @media (min-width:1024px) {
    padding: 20px;
  }
}

.actions__box{
  padding: 15px;
  border-radius: 30px;
  background-color: #F2F2F2;
  color: #333936;
  @media (min-width:768px) {
    padding: 20px;
  }
}

.actions__item--wallet {
display: flex;
flex-direction: column;
gap: 25px;
  @media (min-width:768px) {
    gap: 22px;
  }
}

.actions__item--wallet-header{
  @media (min-width:768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.actions__balance {
  display: flex;
  gap: 10px;
  padding: 15px;
  border-radius: 30px;
  background-color: #333936;
  color: #fff;
  justify-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  align-items: start;
  @media (min-width:768px) {
    flex-direction: row;
    gap: 20px;
  }
  @media (min-width:1024px) {
    padding: 20px;
  }
}
.actions__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
  color: #333936;
}
.actions__balance--wallet{
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
  }
}
.action-layout{
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333936;
}

.actions__balance--count-box{
  display: flex;
  gap: 5px;
}
.actions__title--count{
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  color: #333936;
}

.actions__item--wallet-footer{
  display: flex;
  gap: 10px;
}
.actions__title--primary {
  color: #d4e07d;
}
@media (min-width: 768px) {
  .actions__title--primary {
    font-size: 30px;
  }
}
.balance-table{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
    gap: 20px;
  }
}
.balance-table .btns-wallet{
  display: flex;
  gap: 10px;
  @media (min-width:768px) {
    flex-direction: column;
  }
  @media (min-width:1440px) {
    flex-direction: row;
    justify-content: end;
  }
}
.balance-table__center--layout{
  @media (min-width:1440px) {
    display: flex;
    justify-self: center;
  }
}
.balance-table .btns-wallet .btn-wallet__withdraw{
  @media (min-width:768px) {
    align-self: flex-end;
  }
}
.balance-table .btns-wallet .btn-wallet__withdraw-pd{
  @media (min-width:768px) {
    padding: 5px 3px;
  }
  @media (min-width:864px) {
    padding: 5px 10px;
  }
  @media (min-width:890px) {
    padding: 5px 20px;
  }
}
.balance-table tbody{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.balance-table tbody tr{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  @media (min-width:768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    gap: 10px;
  }
}

.balance-table__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333936;
  @media (min-width:768px) {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  @media (min-width:824px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    place-items: flex-start;
  }
}

.balance-table__USDT-list{
  @media (min-width:768px) {
    order: 1;
  }
}

.balance-table__USDT-list tr{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.balance-table__USDT-list th{
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.balance-table th:last-child{
  justify-content: end;

}
.balance-table th:first-child{
  justify-content: start;
}
.balance-table .balance-table__headers{
color: #858584;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
@media (min-width:768px) {
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: start;
}
@media (min-width:1200px) {
  grid-template-columns: 30% 30% auto;
}
}
.balance-table .balance-table__headers h3{
font-size: 16px;
font-weight: 400;
line-height: 24px;
}


.balance-table__headers .hidden{
  display: none;
  @media (min-width:768px) {
    display: flex;
  }
}
.balance-table__valuta-th {
  display: flex;
  align-items: center;
  gap: 10px;  
  @media (min-width:768px) {
place-items: start;
  }
}


.balance-table .btn-wallet__withdraw{
  background-color: #E0E0E0;
  color: #333936;
  padding: 5px;
  border: none;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  @media (min-width:768px) {
    padding: 5px 20px;
    width: fit-content;
    height: 30px;
    align-self: center;
  }
}

.actions__balance--wallet .js-balance{
  text-wrap: nowrap;
}

.rotate180{
  rotate: 180deg;
}
.animation{
  transition: all 0.3s ease-in-out;
}
.disp-none{
display: none;
}
.actions__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 8px 15px;
  border-radius: 30px;
  gap: 10px;
  background-color: #333936;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  width: 100%;
  height: 100%;
}
.actions__btn-withdraw {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 8px 10px;
  border-radius: 30px;
  gap: 10px;
  background-color: #D4E07D;
  color: #333936;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  align-self: stretch;
  @media (min-width:768px) {
    align-self: end;
    flex: 1;
  }
}

.actions__btns{
  display: flex;
    gap: 10px;
    padding: 15px;
    border-radius: 30px;
    background-color: #D4E07D;
    color: #333936;
    gap: 5px;
    @media (min-width:768px) {
      display: none;
    }
}
.actions__btns--btn{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 8px 15px;
  border-radius: 30px;
  gap: 10px;
  background-color: #333936;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  width: 100%;
  height: 100%;
}

.actions__item--wallet .actions__btns--btn{
  display: none;
  @media (min-width:768px) {
    display: flex;
  }
}

.actions__icon .arrow-icon{
  rotate: -90deg;
}
.actions__icon {
  width: 20px;
  height: 20px;
}
.transactions {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .transactions {
    margin-top: 40px;
  }
}
.transactions__header {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .transactions__header {
    flex-direction: row;
    justify-content: space-between;
  }
}
.transactions__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30.8px;
  color: #333936;
}
@media (min-width: 768px) {
  .transactions__title {
    font-size: 30px;
  }
}
.transactions__pagination {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  height: 40px;
  border: 1px solid #858584;
  border-radius: 40px;
  padding: 5px;
}
.tabs__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  color: #333936;
  border-radius: 30px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  line-height: 13px;
}
@media (min-width: 768px) {
  .tabs__item {
    font-size: 16px;
  }
}
.tabs__item--active {
  background-color: #d4e07d;
}
.datalist {
  --cols: 5;
  --row-bg: transparent;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .datalist {
    grid-template-columns: repeat(var(--cols), 1fr);
  }
}
.datalist--cols-5 {
  --cols: 5;
}
.datalist--cols-6 {
  --cols: 6;
}
.datalist--cols-7 {
  --cols: 7;
}
@media (min-width: 768px) {
  .datalist--with-lead {
    grid-template-columns: 0.2fr repeat(calc(var(--cols) - 1), auto);
  }
}
.datalist thead,
.datalist tbody,
.datalist tr {
  display: contents;
}
.datalist__header {
  padding: 20px 0;
}
.datalist__item--hide {
  display: none;
}
@media (min-width: 768px) {
  .datalist__item--hide {
    display: block;
  }
}
.datalist__title {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #858584;
}
.datalist__content {
  font-weight: 500;
}
.datalist td,
.datalist th {
  background-color: var(--row-bg);
  padding: 10px;
}
.datalist tr {
  padding: 15px 10px;
}
.datalist tr:nth-child(2n) {
  --row-bg: #f2f2f2;
}
.datalist__name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
  .datalist__name {
    font-size: 16px;
  }
}
.datalist__name a {
  text-decoration: underline;
}
.datalist__summary {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
.datalist__btn {
  border: none;
  background: transparent;
  height: 26px;
}
@media (min-width: 768px) {
  .datalist__btn {
    display: none;
  }
}

.datalist__summary.order-btn{
  @media (min-width: 768px) {
    .datalist__btn {
      display: block;
    }
  }
}
.pagination {
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: 5px;
  border: 1px solid #333936;
  color: #333936;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .pagination {
    font-weight: 600;
  }
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #bdbdbd;
  color: #333936;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .pagination__item {
    width: 40px;
    height: 40px;
  }
}
.pagination__item--active {
  border-color: transparent;
  background: #333936;
  color: #d4e07d;
}
.pagination__separator {
  display: flex;
  justify-content: center;
  width: 35px;
  height: 35px;
}
@media (min-width: 768px) {
  .pagination__separator {
    align-items: center;
    width: 40px;
    height: 40px;
  }
}
.pagination__btn {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 5px 15px;
  border-radius: 60px;
  background: #d4e07d;
  color: #333936;
}
@media (min-width: 768px) {
  .pagination__btn {
    padding: 8px 20px;
  }
}
body.js-modal-opened {
  overflow: hidden;
}
.js-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #00000080;
  z-index: 20;
}
.js-modal--open {
  display: block;
  height: 100%;
}
.js-modal--open .js-modal__wrapper {
  transform: translateY(0);
}
.js-modal__wrapper {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
  padding: 20px;
  background: #fff;
}
.js-modal__popupWrapper {
  max-width: 95%;
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  width: max-content;
  height: fit-content;
  padding: 20px;
  background: #fff;
  left: 50%;
  translate: -50% -50%;
  align-items: center;
  justify-content: center;
}
.js-modal__popupContent {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-wrap: balance;
}
.js-modal__trashContent {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  max-width: 250px;
}
.js-modal__header {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e5e5;
}
.js-modal__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.js-modal__remove {
  width: -webkit-fill-available;
  color: #fff;
  border-radius: 30px;
  border: none;
  background: #f18467;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 15px;
  cursor: pointer;
}
.js-modal__TrashClose {
  width: -webkit-fill-available;
  color: #333936;
  border-radius: 30px;
  border: none;
  background: #d4e07d;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 15px;
  cursor: pointer;
}
.js-modal__close {
  display: flex;
  background-color: #f18467;
  padding: 8px;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.js-modal__title {
  font-size: 18px;
}
.summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
  font-size: 14px;
}
.summary__item {
  display: flex;
  flex-direction: column;
}
.summary__item a {
  font-weight: 600;
  text-decoration: underline;
}
.summary__title {
  color: #858584;
}
.waiting {
  display: flex;
  padding: 20px 30px;
  margin-top: 30px;
  border-radius: 30px;
  background-color: #d4e07d;
  color: #333936;
}
.waiting__text {
  font-size: 16px;
}
@media (min-width: 768px) {
  .waiting__text {
    font-size: 18px;
    font-weight: 600;
  }
}
@media (min-width: 1440px) {
  .waiting__text {
    font-size: 18px;
  }
}
.withdraw-page {
  display: flex;
  padding: 20px 10px;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .withdraw-page {
    padding: 40px 20px;
  }
}
@media (min-width: 1440px) {
  .withdraw-page {
    padding: 40px;
  }
}
.withdraw-page__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
  color: #333936;
}
.withdraw-page__content {
  display: flex;
  padding: 10px;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background: #f2f2f2;
}
@media (min-width: 768px) {
  .withdraw-page__content {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 1fr;
  }
}
.withdraw-page .withdraw-form {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .withdraw-page .withdraw-form {
    gap: 20px;
  }
}
.withdraw-page .withdraw-form__balance {
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
  display: flex;
  gap: 10px;
  color: #333936;
}
@media (min-width: 768px) {
  .withdraw-page .withdraw-form__balance {
    font-size: 30px;
  }
}
.withdraw-page .withdraw-form__balance--currency {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.withdraw-page .withdraw-form__select {
  color: #333936;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  border-radius: 30px;
  border: 1px solid #333936;
  display: flex;
  padding: 5px 20px 5px 5px;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  align-self: stretch;
  background-color: #fff;
}
.withdraw-page .withdraw-form__select--open-btn {
  display: none;
  margin-left: auto;
}
.withdraw-page .withdraw-form__input {
  outline: none;
  color: #333936;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  border-radius: 30px;
  border: 1px solid #bdbdbd;
  display: flex;
  flex: 1;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background-color: #fff;
}
@media (min-width: 768px) {
  .withdraw-page .withdraw-form__input {
    padding: 10px 20px;
  }
}
.withdraw-page .withdraw-form__input--invalid {
  border: 1px solid #f18467;
}
.withdraw-page .withdraw-form__input::placeholder {
  color: #858584;
}
.withdraw-page .withdraw-form__save-btn {
  border-radius: 30px;
  background: #d4e07d;
  display: flex;
  padding: 8px 60px;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
@media (min-width: 768px) {
  .withdraw-page .withdraw-form__save-btn {
    width: max-content;
  }
}
.withdraw-page .withdraw-form__error-promt {
  color: #f18467;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.withdraw-page .withdraw-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.withdraw-page .withdraw-body .withdraw-attention {
  border-radius: 15px;
  background: #f18467;
  border: none;
  display: flex;
  padding: 15px 20px;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
  text-wrap: balance;
}
.withdraw-page .withdraw-body .withdraw-attention span {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.withdraw-page .withdraw-body .withdraw-instruction {
  border-radius: 15px;
  background: #e1e7bc;
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  gap: 10px;
  color: #333936;
}
.withdraw-page .withdraw-body .withdraw-instruction__ {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.withdraw-page .withdraw-body .withdraw-instruction__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.withdraw-page .withdraw-body .withdraw-instruction__list {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  list-style-type: auto;
}
.withdraw-page .withdraw-body .withdraw-instruction__list li {
  margin-left: 20px;
  text-wrap: balance;
}
.withdraw-confirmation .confirmation-form {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #333936;
}
@media (min-width: 768px) {
  .withdraw-confirmation .confirmation-form {
    gap: 20px;
    padding: 20px;
  }
}
.withdraw-confirmation .confirmation-form__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
}
@media (min-width: 768px) {
  .withdraw-confirmation .confirmation-form__title {
    font-size: 30px;
  }
}
.withdraw-confirmation .confirmation-form__inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}
.withdraw-confirmation
  .confirmation-form__inputs
  input[type="number"]::-webkit-outer-spin-button,
.withdraw-confirmation
  .confirmation-form__inputs
  input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.withdraw-confirmation .confirmation-form__inputs input[type="number"],
.withdraw-confirmation .confirmation-form__inputs input[type="number"]:hover,
.withdraw-confirmation .confirmation-form__inputs input[type="number"]:focus {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}
.withdraw-confirmation .confirmation-form__inputs input {
  outline: inherit;
  border-radius: 15px;
  border: 1px solid #333936;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 51px;
  padding: 10px 15px;
}
@media (min-width: 768px) {
  .withdraw-confirmation .confirmation-form__inputs input {
    padding: 5px 15px;
    width: 55px;
    height: 62px;
    font-size: 34px;
    font-weight: 250;
    line-height: 140%;
  }
}
.withdraw-confirmation .confirmation-form__send-btn {
  align-self: stretch;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  padding: 8px 60px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border: none;
  border-radius: 30px;
  background: #d4e07d;
}
@media (min-width: 768px) {
  .withdraw-confirmation .confirmation-form__send-btn {
    width: max-content;
    align-self: center;
  }
}
.withdraw-confirmation .confirmation-form .confirmation-invalid__form {
  border: 1px solid #f18467;
  color: #f18467;
}
.withdraw-confirmation .confirmation-form .confirmation-invalid__text {
  font-size: 16px;
  color: #f18467;
  font-weight: 500;
  line-height: 150%;
}
.ticket-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .ticket-page {
    padding: 40px 20px;
  }
}
@media (min-width: 1440px) {
  .ticket-page {
    padding: 40px;
  }
}
.order-page {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
@media (min-width: 768px) {
  .order-page {
    padding: 40px 20px;
  }
}
@media (min-width: 1440px) {
  .order-page {
    padding: 40px;
  }
}
.order-page .order-img{
  width: 150px;
  height: 150px;
  border-radius: 20px;
  object-fit: cover;
  @media (min-width:768px) {
    width: 250px;
    height: 250px;
  }
  @media (min-width:1024px) {
    width: 350px;
    height: 350px;
  }
}
.order__box {
  background-color: #f2f2f2;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  color: #333936;
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
flex: 1;
padding: 20px;
gap: 20px;
  }
}
.order__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #BDBDBD;
  @media (min-width:768px) {
   padding-bottom: 20px;
      }
}
.order-page .order__header .title{
font-size: 22px;
font-weight: 500;
line-height: 31px;
@media (min-width:768px) {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
     }
}
.order-page .order__header .btn-gray{
font-size: 16px;
font-weight: 400;
line-height: 24px;
background-color: #E0E0E0;
padding: 5px 20px;
border: none;
border-radius: 30px;
}
.order-page .order__box .order__content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-page .order__box .item .description a{
  word-break: break-word;
}
.order__box .warning{
  background: #E0E0E0;
  border: none;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  @media (min-width:768px) {
    font-size: 16px;
  line-height: 24px;
  }
}

.order__box .warning .underline{
  color: #333936;
  text-decoration: underline;
}

.order__box .order__content-adaptiv{
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
.order__box .order__date-box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 10px;
  @media (min-width:768px) {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
.order__box .order__detail-box{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 10px;
  @media (min-width:768px) {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}

.order-page--layout .contants{
  @media (min-width:768px) {
    width: 100%;
  } 
}

.order-page .order__box .order__content .contants{
  display: contents;
  @media (min-width:768px) {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.order__box .btn-green{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #D4E07D;
  color: #000;
  padding: 5px;
  border-radius: 30px;
  height: 42px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  @media (min-width:768px) {
    width: max-content;
    padding: 5px 60px;
  }
}
.order__box .item{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.order__box  .btns{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-page .order__box  .btns .btn-green{
  display: flex;
  background-color: #d4e07d;
  color: #333936;
  padding: 9px;
  height: 40px;
  width: 100%;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  justify-content: center;
  align-items: center;
  @media (min-width:768px) {
width: fit-content;
padding: 9px 40px;
       }
}
.order-page .order-page--layout{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-page .order-page--layout{
  @media (min-width:768px) {
    flex-direction: row;
    gap: 20px;
  }
}
.order-page .order-page--layout .order-img{
  @media (min-width:768px) {
width: 250px;
height: 250px;
flex: 0 0 auto;
  }
  @media (min-width:1024px) {
width: 350px;
height: 350px;
  }
}
.order-page .contants{
  display: contents;
  @media (min-width:768px) {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.order-page .order__box  .item .title{
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
.order__box  .item .title{
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}
.order__box  .item .description{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.order__box  .item .author-box{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.order__box .item .author-box .img{
  width: 24px;
  height: 24px;
  border-radius: 20px;
}


.ticket-page__title {
  color: #333936;
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
}
.ticket-page__title span {
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
}
.ticket-page__content {
  display: flex;
  padding: 20px 10px 10px;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-radius: 20px;
  background: #f2f2f2;
}
@media (min-width: 768px) {
  .ticket-page__content {
    padding: 20px;
  }
}
.ticket-page .ticket-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333936;
}
.ticket-page .ticket-header__title {
  font-size: 18px;
  font-weight: 600;
}
.order__bilet-items{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.order__bilet-items .contants-row{
  display: contents;
  @media (min-width:768px) {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
}
.ticket-page .ticket-header__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.ticket-page .ticket-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .ticket-page .ticket-body {
    display: grid;
    grid-template-columns: max-content max-content;
  }
}
@media (min-width: 1440px) {
  .ticket-page .ticket-body {
    grid-template-columns: 1fr 1fr;
  }
}
.ticket-page .ticket-body__title {
  font-size: 18px;
  font-weight: 600;
}
.ticket-page .ticket-body__block--qr {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .ticket-page .ticket-body__block--qr {
    flex-direction: row;
  }
}
.ticket-page .ticket-body__qr {
  margin: 0 auto;
  width: 200px;
  height: 200px;
}
@media (min-width: 768px) {
  .ticket-page .ticket-body__qr {
    width: 228px;
    height: 225px;
    margin: 0;
  }
}
.ticket-page .ticket-body__details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .ticket-page .ticket-body__details {
    gap: 20px;
  }
}
.ticket-page .ticket-body__block,
.ticket-page .ticket-personality {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .ticket-page .ticket-personality {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.ticket-page .ticket-personality__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-page .ticket-personality__title {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
.ticket-page .ticket-personality__card {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 5px;
  border-radius: 10px;
  background: #fff;
  color: #333936;
}
.ticket-page .ticket-personality__avatar {
  width: 82px;
  height: 82px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}
.ticket-page .ticket-personality__card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ticket-page .ticket-personality__card-header {
  font-size: 18px;
  font-weight: 600;
  color: #333936;
}
.ticket-page .ticket-personality__card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-page .ticket-personality__description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ticket-page .ticket-personality__total {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 110%;
  color: #333936;
}
.ticket-page .ticket-personality__total span {
  line-height: 140%;
}
.ticket-page .ticket-personality__card-rectangles {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: space-around;
}
.ticket-page .ticket-personality__card-rectangle {
  height: 7px;
  border-radius: 10px;
  background: #fffefb;
  width: -webkit-fill-available;
  border: 1px solid #BDBDBD;
}
.ticket-page .ticket-personality__card-rectangle--gray {
  background-color: #d1e2cf;
}
.ticket-page .ticket-personality__card-rectangle--green {
  background-color: #d4e07d;
}
.ticket-page .ticket-personality__card-rectangle--orange {
  background-color: #f18467;
}
.ticket-page .ticket-personality__card-rectangle--bordo {
  background-color: #764135;
}
.login-header {
  background: #fffefb;
  display: flex;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .login-header {
    padding: 15px 50px;
  }
}
.login-header__logo {
  color: #333936;
  font-size: 22px;
  font-weight: 700;
  line-height: 160%;
  text-transform: uppercase;
  border-radius: 30px;
  background: #d4e07d;
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .login-header__logo {
    padding: 0 35px;
  }
}
.login-header__registration {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #fffefb;
  border-radius: 30px;
  background: #f18467;
  display: flex;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding: 0px 15px;
}
@media (min-width: 768px) {
  .login-header__registration {
    padding: 0 25px;
  }
}
.login-page {
  display: flex;
  padding: 120px 10px 160px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fffefb;
}
@media (min-width: 768px) {
  .login-page {
    padding: 80px 190px;
  }
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  align-items: center;
  background: #fffefb;
  gap: 20px;
}
@media (min-width: 768px) {
  .page-wrapper {
    padding: 40px;
    gap: 10px;
  }
}
@media (min-width: 1440px) {
  .page-wrapper {
    padding: 150px;
  }
}

.page-wrapper > h1 {
  font-size: 22px;
  font-weight: 500;
  color: #333936;
  text-align: center;
}

.page-wrapper .team-box{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #F2F2F2;
  border-radius: 20px;
  padding: 20px;
  color: #333936;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .page-wrapper .team-box {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr;
    justify-items: center;
    align-items: center;
    max-width: 890px;
  }
}
@media (min-width: 1440px) {
  .page-wrapper .team-box {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
  }
}
.form-check-btns{
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.check-btn--gray{
  background-color: #F2F2F2;
  width: 100%;
  height: 34px;
  border: 1px solid #BDBDBD;
  color: #333936;
  border-radius: 30px;
  padding: 5px 40px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  @media (min-width:768px) {
    width: fit-content;
  }
}
.check-btn--gray--active{
  /* width: 100%; */
  height: 34px;
  border: 1px solid #D4E07D;
  background-color: #D4E07D;
  outline: #d4e07d;
}

.team-box .team-box__member{
  background-color: #F2F2F2;
  width: 100%;
  height: 34px;
  border: 1px solid #BDBDBD;
  color: #333936;
  border-radius: 30px;
  padding: 5px 40px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-box .team-box__member:hover,
.team-box .team-box__member:active,
.team-box .team-box__member:focus{
  /* width: 100%; */
  height: 34px;
  border: 1px solid #D4E07D;
  background-color: #D4E07D;
  outline: #D4E07D;
}

@media (min-width: 768px) {
  .team-box a:nth-child(2n){
    width: auto;
  }
.team-box a:nth-child(3n+1){
  justify-self: end;
  width: auto;
}
.team-box a:nth-child(3n){
  justify-self: start;
  width: auto;
}
}
@media (min-width: 1440px) {
.team-box a:nth-child(3n+1){
  justify-self: center;
}
.team-box a:nth-child(3n){
  justify-self: center;
}
}

.login-page .login-form__title {
  font-size: 38px;
  font-weight: 600;
  line-height: 120%;
  color: #333936;
  margin-bottom: 10px;
}
.login-page .login-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* .login-page .login-form__input {
  display: flex;
  flex-direction: row;
  height: 46px;
  padding: 16px 20px;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  border: 1px solid #333936;
} */
.login-page .login-form__input input {
  border: none;
  outline: none;
  flex: 1;
  border-radius: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.login-page .login-form__input input::placeholder {
  color: #858584;
}
.login-page .login-form__btn {
  border-radius: 40px;
  background: #d4e07d;
  display: flex;
  height: 46px;
  padding: 0 50px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  border: none;
  color: #333936;
}
.login-page .login-form .form-valid__exit,
.login-page .login-form .form-invalid__exit {
  margin-left: auto;
}
.login-page .login-form .form-invalid__input {
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-bottom: 50px;
  border: 1px solid #f18467;
}
.login-page .login-form .form-invalid__input input {
  color: #f18467;
}
.login-page .login-form .form-invalid__input:after {
  content: "Аккаунт с этой почтой уже существует";
  position: absolute;
  color: #f18467;
  top: 55px;
  left: 10px;
}
.recovery-header {
  background: #fffefb;
  display: flex;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .recovery-header {
    padding: 15px 50px;
  }
}
.recovery-header__logo {
  color: #333936;
  font-size: 22px;
  font-weight: 700;
  line-height: 160%;
  text-transform: uppercase;
  border-radius: 30px;
  background: #d4e07d;
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .recovery-header__logo {
    padding: 0 35px;
  }
}
.recovery-header__registration {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #fffefb;
  border-radius: 30px;
  background: #f18467;
  display: flex;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (min-width: 768px) {
  .recovery-header__registration {
    padding: 0 25px;
  }
}
.recovery-page {
  display: flex;
  padding: 120px 10px 160px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fffefb;
}
@media (min-width: 768px) {
  .recovery-page {
    padding: 80px 190px;
  }
}
.recovery-page .recovery-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .recovery-page .recovery-form {
    gap: 40px;
  }
}
.recovery-page .recovery-form__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  color: #333936;
  text-align: center;
}
@media (min-width: 768px) {
  .recovery-page .recovery-form__title {
    font-size: 35px;
    font-weight: 600;
    line-height: 140%;
  }
}
.recovery-page .recovery-form__description {
  color: #333936;
  font-size: 12px;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .recovery-page .recovery-form__description {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
}
.recovery-page .recovery-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recovery-page .recovery-form__input {
  display: flex;
  flex-direction: row;
  height: 46px;
  padding: 16px 20px;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  border: 1px solid #333936;
}
.recovery-page .recovery-form__input input {
  border: none;
  outline: none;
  flex: 1;
  border-radius: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.recovery-page .recovery-form__input input::placeholder {
  color: #858584;
}
.recovery-page .recovery-form__btn {
  border-radius: 40px;
  background: #d4e07d;
  display: flex;
  height: 46px;
  padding: 0 50px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  border: none;
  color: #333936;
}
.recovery-page .recovery-form .form-valid__exit,
.recovery-page .recovery-form .form-invalid__exit {
  margin-left: auto;
}
.recovery-page .recovery-form .form-invalid__input {
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-bottom: 50px;
  border: 1px solid #f18467;
}
.recovery-page .recovery-form .form-invalid__input input {
  color: #f18467;
}
.recovery-page .recovery-form .form-invalid__input:after {
  content: "Аккаунт с этой почтой уже существует";
  position: absolute;
  color: #f18467;
  top: 55px;
  left: 10px;
}
.registration-header {
  background: #fffefb;
  display: flex;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .registration-header {
    padding: 15px 50px;
  }
}
.registration-header__logo {
  color: #333936;
  font-size: 22px;
  font-weight: 700;
  line-height: 160%;
  text-transform: uppercase;
  border-radius: 30px;
  background: #d4e07d;
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .registration-header__logo {
    padding: 0 35px;
  }
}
.registration-header__registration {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #fffefb;
  border-radius: 30px;
  background: #f18467;
  display: flex;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (min-width: 768px) {
  .registration-header__registration {
    padding: 0 25px;
  }
}
.registration-page {
  display: flex;
  padding: 120px 10px 160px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fffefb;
}
@media (min-width: 768px) {
  .registration-page {
    padding: 80px 190px;
  }
}
.registration-page .registration-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.registration-page .registration-form__title {
  font-size: 25px;
  font-weight: 600;
  line-height: 140%;
  color: #333936;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .registration-page .registration-form__title {
    font-size: 37px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .registration-page .registration-form__title {
    font-size: 35px;
  }
}
.registration-page .registration-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.registration-page .registration-form__input {
  display: flex;
  flex-direction: row;
  height: 46px;
  padding: 16px 20px;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  border: 1px solid #333936;
}
.registration-page .registration-form__input input {
  border: none;
  outline: none;
  flex: 1;
  border-radius: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.registration-page .registration-form__input input::placeholder {
  color: #858584;
}
.registration-page .registration-form__btn {
  border-radius: 40px;
  background: #d4e07d;
  display: flex;
  height: 46px;
  padding: 0 50px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  border: none;
  color: #333936;
}
.registration-page .registration-form .form-valid__exit,
.registration-page .registration-form .form-invalid__exit {
  margin-left: auto;
}
.registration-page .registration-form .form-invalid__input {
  transition: all 0.3s ease-in-out;
  position: relative;
  margin-bottom: 50px;
  border: 1px solid #f18467;
}
.registration-page .registration-form .form-invalid__input input {
  color: #f18467;
}
.registration-page .registration-form .form-invalid__input:after {
  content: "Аккаунт с этой почтой уже существует";
  position: absolute;
  color: #f18467;
  top: 55px;
  left: 10px;
}
.registration-success {
  display: flex;
  padding: 180px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fffefb;
}
@media (min-width: 768px) {
  .registration-success {
    padding: 200px 100px;
  }
}
.registration-success__content {
  border-radius: 20px;
  background: #e1e9a3;
  display: flex;
  padding: 30px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  color: #333936;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 768px) {
  .registration-success__content {
    font-size: 16px;
    line-height: 150%;
    padding: 40px;
  }
}
.registration-success__content .registration-success__header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .registration-success__content .registration-success__header {
    font-size: 30px;
    line-height: 140%;
  }
}
.creation-page {
  padding: 20px 10px;
}
.request-page {
  padding: 20px 10px;
  @media (min-width: 768px){
    padding: 40px 20px;
  }
  @media (min-width: 1440px) {
      padding: 40px;
    }
}

@media (min-width: 768px) {
  .creation-page {
    padding: 40px 20px;
  }
}
@media (min-width: 1440px) {
  .creation-page {
    padding: 40px;
  }
}
.creation-page__title {
  color: #333936;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 10px;
}
.request__title{
  color: #333936;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 10px;
  text-align: center;
}
.creation-page .creation-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  @media (min-width:1440px) {
    gap: 40px;
  }
}
.creation-page .creation-tabs__item {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.creation-tabs__item--desctop-active {
  display: none;
  @media (min-width:1440px) {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 20px 10px 13px;
    background: #333936;
    color: #d4e07d;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    border-radius: 60px;
    border: 1px solid #333936;
  }
}

.creation-tabs__item--desctop{
  display: none;
  @media (min-width:1440px) {
    padding: 5px 13px;
    border-radius: 60px;
    border: 1px solid #bdbdbd;
    background: #fffefb;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #858584;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
}

.creation-tabs__item1--mb, 
.creation-tabs__item2--mb, 
.creation-tabs__item3--mb, 
.creation-tabs__item4--mb, 
.creation-tabs__item5--mb,
.creation-tabs__item1--mb-active, 
.creation-tabs__item2--mb-active, 
.creation-tabs__item3--mb-active, 
.creation-tabs__item4--mb-active, 
.creation-tabs__item5--mb-active{
  display: flex;
  align-items: center;
  justify-content: center;
  @media (min-width:1440px) {
    display: none;
  }
}

.creation-tabs__item1--mb{
  content: url(./img/tabs-1.svg);
}
.creation-tabs__item1--mb-active{
  content: url(./img/tabs-1--active.svg);
}
.creation-tabs__item2--mb{
  content: url(./img/tabs-2.svg);
}
.creation-tabs__item2--mb-active{
  content: url(./img/tabs-2--active.svg);
}
.creation-tabs__item3--mb{
  content: url(./img/tabs-3.svg);
}
.creation-tabs__item3--mb-active{
  content: url(./img/tabs-3--active.svg);
}
.creation-tabs__item4--mb{
  content: url(./img/tabs-4.svg);
}
.creation-tabs__item4--mb-active{
  content: url(./img/tabs-4--active.svg);
}
.creation-tabs__item5--mb{
  content: url(./img/tabs-5.svg);
}
.creation-tabs__item5--mb-active{
  content: url(./img/tabs-5--active.svg);
}

.creation-page .creation-tabs .creation-tab-arrow:after {
  content: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2.5%2010C2.5%209.65482%202.77982%209.375%203.125%209.375H16.875C17.2202%209.375%2017.5%209.65482%2017.5%2010C17.5%2010.3452%2017.2202%2010.625%2016.875%2010.625H3.125C2.77982%2010.625%202.5%2010.3452%202.5%2010Z'%20fill='%23333936'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.8081%203.93306C11.0521%203.68898%2011.4479%203.68898%2011.6919%203.93306L17.3169%209.55806C17.561%209.80214%2017.561%2010.1979%2017.3169%2010.4419L11.6919%2016.0669C11.4479%2016.311%2011.0521%2016.311%2010.8081%2016.0669C10.564%2015.8229%2010.564%2015.4271%2010.8081%2015.1831L15.9911%2010L10.8081%204.81694C10.564%204.57286%2010.564%204.17714%2010.8081%203.93306Z'%20fill='%23333936'/%3e%3c/svg%3e");
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
}
@media (min-width:1440px) {
  .creation-page .creation-tabs .creation-tab-arrow:after {
    right: -30px;
  }
}

.creation-page .creation-content {
  padding: 10px;
  border-radius: 20px 20px 30px 30px;
  background: #f2f2f2;
}
.support-content {
  padding: 10px;
  border-radius: 20px 20px 30px 30px;
  background: #f2f2f2;
  @media (min-width:768px) {
    margin: 10px 15%;
  }
}
@media (min-width: 768px) {
  .creation-page .creation-content {
    padding: 20px;
    border-radius: 20px;
  }
}
.creation-page .creation-content .creation-type__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  color: #333936;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-type__title {
    font-size: 22px;
    line-height: 140%;
  }
}
@media (min-width: 1440px) {
  .creation-page .creation-content .creation-type__title {
    font-size: 18px;
    line-height: 100%;
  }
}
.creation-page .creation-content .creation-type__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-type__items {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
.creation-page .creation-content .creation-type__item {
  padding: 10px 20px;
  border-radius: 20px;
  background: #fffefb;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-items: start;
  justify-content: center;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-type__item {
    padding: 10px 20px 30px;
    flex-direction: column;
    width: 25%;
  }
}
.creation-page .creation-content .creation-type__item-icon {
  width: 100px;
  height: 100px;
  scale: 1.5;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-type__item-icon {
    width: 160px;
    height: 160px;
  }
}
.creation-page .creation-content .creation-type__item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-type__item-body {
    gap: 10px;
    text-align: center;
  }
}
.creation-page .creation-content .creation-type__item-title {
  color: #333936;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
}
.creation-page .creation-content .creation-type__item-description {
  color: #333936;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  text-wrap: balance;
}
.creation-page
  .creation-content
  .creation-type
  .creation-type__item-icon:hover {
  scale: 1.6;
  filter: drop-shadow(0px 0px 6.5px rgba(212, 224, 125, 0.5));
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}




.support-content .creation-info{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.creation-page .creation-content .creation-info__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
  color: #333936;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-info__title {
    margin-bottom: 0;
  }
}
.creation-page .creation-content .creation-info__description-box {
  padding: 15px 20px;
  border-radius: 20px;
  background: #f18467;
  text-wrap: balance;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-info__description-box {
    padding: 15px 30px;
    border-radius: 40px;
    text-align: center;
    margin-bottom: 0;
  }
}
.creation-page .creation-content .creation-info__submit {
  cursor: pointer;
  color: #333936;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  background: #d4e07d;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
}
.btn-submit--center {
  cursor: pointer;
  color: #333936;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  background: #d4e07d;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
  @media (min-width:768px) {
    width: max-content;
    padding: 10px 60px;
    align-self: center;
  }
}
.edit-image__submit {
  cursor: pointer;
  color: #333936;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  background: #d4e07d;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
  @media (min-width:1440px) {
    width: max-content;
    padding: 10px 60px;
  }
}
.support__submit {
  cursor: pointer;
  color: #333936;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  background: #d4e07d;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  @media (min-width:768px) {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-info__submit {
    width: max-content;
    padding: 10px 60px;
    align-self: center;
  }
}
.creation-page .creation-content .creation-info__directions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-info__directions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.creation-page .creation-content .creation-info .creation-info__box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .creation-page .creation-content .creation-info .creation-info__box-wrapper {

  }
}
@media (min-width: 768px) {
  .creation-page
    .creation-content
    .creation-info
    .creation-info__box-title--grid {
    grid-row: 1/-3;
  }
}
.creation-page
  .creation-content
  .creation-info
  .creation-info__item-box--check {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .creation-page
    .creation-content
    .creation-info
    .creation-info__item-box--check {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}
.creation-page .creation-content .creation-info__box-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #333936;
}
.creation-info__radio-box .creation-info__box-title {
  @media (min-width: 768px) {
    max-width: 35%;
    text-wrap: wrap;
  }
}
.creation-page .creation-content .creation-info__ckeck-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #333936;
}
.creation-page .creation-content .creation-info .creation-info__ckeck-title {
  cursor: pointer;
}

.creation-page
  .creation-content
  .creation-info
  input:checked
  + .creation-info__ckeck-title {
  background: #d4e07d;
  border: #d4e07d;
}
.creation-page .creation-content .creation-info input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.creation-page .creation-content .creation-info .creation-info__ckeck-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 20px;
  border: 1px solid #858584;
  border-radius: 30px;
}
.creation-page
  .creation-content
  .creation-info
  input:checked
  + .creation-info__ckeck-title:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%) translateY(-50%);
}
.creation-page
  .creation-content
  .creation-info
  .creation-info__radio-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #858584;
  text-align: center;
  margin-top: -5px;
}
.creation-page
  .creation-content
  .creation-info
  .creation-info__price-description {
  color: #858584;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .creation-page
    .creation-content
    .creation-info
    .creation-info__price-description {
    margin-left: 30%;
    margin-bottom: 0;
  }
}
.creation-page .creation-content .creation-info .content-info__price-list {
  display: flex;
  padding: 5px 5px 5px 3px;
  font-size: 12px;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  line-height: 140%;
  color: #333936;
  outline: inherit;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #858584;
}
.creation-page .creation-content .creation-info .creation-info__price-inputs {
  display: grid;
  gap: 5px;
  grid-template-columns: auto 1fr;
}
.creation-page .creation-content .creation-info .creation-info__item-box,
.creation-page .creation-content .creation-info .creation-info__radio-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.support__item-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;

}
/* @media (min-width: 768px) {
  .creation-page .creation-content .creation-info .creation-info__item-box {
    display: grid;
    position: relative;
    grid-template-columns: 30% auto;
  }
} */
@media (min-width: 768px) {
  .creation-page .creation-content .creation-info .creation-info__radio-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
  }
}

.creation-page .creation-content .creation-info .checkbox__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.creation-page .creation-content .creation-info .checkbox__block .checkbox {
  position: relative;
  z-index: -1;
  opacity: 0;
}
.creation-page
  .creation-content
  .creation-info
  .checkbox__block
  .checkbox
  + label {
  position: relative;
  cursor: pointer;
}
.creation-page
  .creation-content
  .creation-info
  .checkbox__block
  .checkbox
  + label:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 55px;
  height: 29px;
  border-radius: 30px;
  background: #fffefb;
  transition: 0.2s;
  border: 1px solid #bdbdbd;
}
.creation-page
  .creation-content
  .creation-info
  .checkbox__block
  .checkbox
  + label:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #bdbdbd;
  transition: 0.2s;
}
.creation-page
  .creation-content
  .creation-info
  .checkbox__block
  .checkbox:checked
  + label:before {
  background: #d4e07d;
}
.creation-page
  .creation-content
  .creation-info
  .checkbox__block
  .checkbox:checked
  + label:after {
  left: 28px;
  background: #fffefb;
}
.creation-page
  .creation-content
  .creation-info
  .checkbox__block
  #box:checked
  + label:before {
  background: #8bc34a;
}
.creation-page
  .creation-content
  .creation-info
  .checkbox__block
  .checkbox
  + label {
  position: relative;
  padding: 0 0 0 60px;
  cursor: pointer;
}
.input-text {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #333936;
  outline: inherit;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #BDBDBD;
  width: 100%;
}
.textarea-text {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #333936;
  outline: inherit;
  border-radius: 10px;
  border: 1px solid #BDBDBD;
  min-height: 120px;
  resize: none;
}

.file-upload-wrapper { 
  position: relative; overflow: hidden; 
}
.file-upload-input { 
  opacity: 0; 
  width: 0.1px; 
  height: 0.1px; 
}
.file-upload-btn { 
  background: #fff;
  padding: 5px 25px;
  border-radius: 30px;
  border: 1px solid #858584;
  cursor: pointer;
  outline: #fff;
  text-align: center;
}

.file-upload-text { 
  font-size: 16px; 
}

/* #input__file::file-selector-button {

} */

/* input[type="file"]::-ms-browse:hover,
input[type="file"]::-webkit-file-upload-button:hover,
input[type="file"]::file-selector-button:hover {
  background-color: #d4e07d;
  border: 1px solid #D4E07D;
} */

/* .input__file-button {
  width: 100%;
  background: #fff;
  padding: 5px 10px;
  outline: inherit;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #858584;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .input__file-button {
    width: max-content;
  }
} */
.draganddrop__box{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  align-items: center;
}
.draganddrop__box .dragandnrop__wrapper{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.creation-draganddrop__box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
@media (min-width: 768px) {
  .creation-draganddrop__box {
    display: grid;
    grid-template-columns: 30% auto;
  }
}
.edit-image{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  @media (min-width:768px) {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    
  }
}

.form-edit__btns--pd{
  @media (min-width:768px) {
    padding-left: 30%;
  }
}
.edit-image__title{
  font-size: 18px;
  font-weight: 400px;
}
.edit-image--contants{
  display: contents;
  @media (min-width:768px) {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}

.creation-draganddrop__description {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #858584;
  text-align: center;
}
@media (min-width: 768px) {
  .creation-draganddrop__description {
    text-align: start;
  }
}
.creation-info__box-title--grid {
  grid-row: 1/-3;
}
.input__file__validate {
  display: none;
  color: #333936;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 768px) {
  .input__file__validate {
    display: block;
  }
}

/*  */
.input-file__wrapper {
	position: relative;
	display: inline-block;
}

.input-file__btn {
  width: 100%;
  height: 30px;
  position: relative;
  display: flex;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
  color: #858584;
  text-align: center;
  border-radius: 30px;
  background-color: #ffffff;
  line-height: 17px;
  padding: 5px 20px;
  box-sizing: border-box;
  border: 1px solid #858484;
  margin: 0;
  transition: all ease-in-out 0.3s;
  align-items: center;
  justify-content: center;
  @media (min-width:768px) {
    width: 140px;
  }
}

.input-file__text {
  padding: 0 10px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  color: #333936;
  overflow-wrap: anywhere;
  @media (min-width:768px) {
    width: auto;
    display: inline-block;
  }
}
.input-file__wrapper input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}

.form-edit__btns{
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
    margin-top: auto;
    flex-direction: row;
  }
}

.btn-skip{
  cursor: pointer;
  color: #333936;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  background: #E0E0E0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
  @media (min-width:1440px) {
    padding: 10px 60px;
    width: max-content;
  }
}
 
/* Focus */
.input-file__wrapper input[type=file]:focus + .input-file__btn {
  background-color: #D4E07D;
  color: #333936;
  border-color: #333936;

}
 
/* Hover/active */
.input-file__wrapper:hover .input-file__btn {
  background-color: #D4E07D;
  color: #333936;
  border-color: #D4E07D;
}
.input-file__wrapper:active .input-file__btn {
  background-color: #D4E07D;
  color: #333936;
  border-color: #D4E07D;
}
 
/* Disabled */
.input-file__wrapper input[type=file]:disabled + .input-file__btn {
	background-color: #eee;
}

/*  */

.form-user__submitBtn{
    border-radius: 30px;
    width: -webkit-fill-available;
    background: #d4e07d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    border: none;
    padding: 10px 25px;
    color: #333936;
    margin-top: 10px;
    @media (min-width:768px) {
        min-width: 250px;
        width: max-content;
    }
    @media (min-width:1440px) {
        padding: 10px 25px;
    }
}

.user-form-tabs{
    flex: 1;
}

.has-error {
    position: relative;
}

.help-block{
    color: #F18467;
    text-align: center;
    text-wrap: balance;
    font-size: 13px;
    order: 4;
    grid-column: 2/-1;
}

.hint-block{
    font-size: 11px;
    opacity: 0.8;
    text-wrap: balance;
    order: 5;
    margin-top: -5px;
    text-align: center;
    @media (min-width:768px) {
        order: inherit;
        margin-top: 0px;
        text-align: start;
        margin-bottom: 0px;
    }
}


.has-error >input{
    border: 1px solid #F18467;
    color: #f18467;
}

.has-error >textarea{
    border: 1px solid #F18467;
    color: #f18467;
}

.master-skills .master-skills__rectangle--orange{
    background-color: #f18467;
}

.master-skills .master-skills__rectangle--bordo{
    background-color: #764135;
}



.ui-autocomplete {
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    color: #333936;
    outline: inherit;
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #858584;
    border-top: none;
    background: #fff;
}

.ui-autocomplete .ui-menu-item {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    color: #333936;
    height: 30px;
}

.ui-autocomplete .ui-menu-item:hover {
    background-color: #d4e07d;
}

.products-page {
    padding: 20px 10px;
    @media (min-width:768px) {
        padding: 40px 20px;
    }
    @media (min-width:1440px) {
        padding: 40px;
    }
}

.products-page .products-create{
  background:  #F2F2F2;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 20px 10px 10px 10px;
  margin-top: 30px;
  margin-bottom: 60px;
  @media (min-width:768px) {
    margin: 50px auto 100px auto;  
    max-width: 670px;
    gap: 20px;
  }
}
.edit-image h1{
  font-size: 22px;
  line-height: 31px;
  font-weight: 500;
  color: #333936;
  order: -1;
}

.edit-image__image{
  object-fit: cover; 
  width: 100%; 
  max-width: 315px;
  max-height: 315px;
  aspect-ratio: 1/1;
  border-radius: 10px;
}

.products-page h1{
  font-size: 22px;
  line-height: 31px;
  font-weight: 500;
  color: #333936;
  margin-bottom: 15px;
  @media (min-width:768px) {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
   }
}


.products-create .products-create__content{
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: #333936;
  @media (min-width:768px) {
    gap: 20px;
    padding: 0px 60px;
   }
}

.products-create .products-create__content h2{
 font-size: 22px;
 line-height: 31px;
 font-weight: 500;
 @media (min-width:768px) {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
 }
}

.products-create .products-create__content p{
 font-size: 14px;
 line-height: 21px;
 font-weight: 400;
 @media (min-width:768px) {
  font-size: 16px;
  line-height: 24px;
 }
}

.products-create .product-create__button{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  gap: 12px;
  background: #D4E07D;
  align-self: stretch;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #333936;
  @media (min-width:768px) {
    width: 294px;
    height: 46px;
    align-self: center;
    font-weight: 600;
   }
}

.products-page .products-tabs{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
    @media (min-width:768px) {
        width: fit-content;
        flex-direction: row;
        justify-content: flex-start;
        border-radius: 40px;
        border: 1px solid #333936;
        gap: 50px;
        padding: 3px;
        margin-bottom: 10px;
    }
}

.products-tabs .products-tabs__button{
    border-radius: 20px;
    border: 1px solid #BDBDBD;
    display: flex;
    padding: 3px 3px 3px 30px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #333936;
    line-height: 22px;
    background-color: inherit;
    @media (min-width:768px) {
        border-radius: 30px;
        border: none;
        padding: 3px;
    }
}

.products-tabs__button-quantity {
    border-radius: 60px;
    background-color: #333936;
    padding: 3px 9px;
    display: flex;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.products-tabs .products-tabs__button--active{
    border-radius: 30px;
    border: 1px solid #D4E07D;
    gap: 15px;
    background-color: #D4E07D;
    @media (min-width:768px) {
        padding-left: 20px;
    }
}

.products-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
}
.products-list--pract{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    @media (min-width:1024px) {
      display: grid;
      grid-template-columns: 1fr 1fr;
  }
}

.products-list__card{
    border-radius: 20px;
    background-color: #F2F2F2;
    display: grid;
    grid-template-columns: 99px 1fr;
    gap: 10px;
    @media (min-width:768px) {
        grid-template-columns: 200px 1fr;
    }
}

.products-list__card-pract{
  border-radius: 20px;
  background-color: #F2F2F2;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  height: 99px;
  @media (min-width:768px) {
      grid-template-columns: 150px 1fr;
      height: 150px;
  }
}

.products-list__card > img {
    border-radius: 20px 0px 0px 20px;
    object-fit: cover;
    height: 112px;
    width: -webkit-fill-available;
    @media (min-width:768px) {
        height: 200px;
    }
}

.products-list__card-pract > img {
  border-radius: 20px 0px 0px 20px;
  object-fit: cover;
  height: 99px;
  width: -webkit-fill-available;
  @media (min-width:768px) {
      height: 150px;
  }
}

.products-list__card-details {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 0px;
    gap: 10px;
    color: #333936;
    justify-content: space-between;
    @media (min-width:768px) {
        padding: 10px;
    }
}

.products-list__card-details{
  @media (min-width:768px) {
    position: relative;
  }
}

.products-list__card-header{
    display: flex;
    align-items: start;
    justify-content: start;
}

.products-list__card-header > h2 {
    font-size: 18px;
    font-weight: 600;
    /* padding-right: 35px; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    @media (min-width:768px) {
      font-size: 22px;
      font-weight: 500;
    }
}

.products-list__card-buttons{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
    min-width: 31px;
}

.products-list__card-footer--prod .products-list__card-buttons{
  @media (min-width:768px) {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

.js-product-openModal{
    border: none;
    cursor: pointer;
    @media (min-width:768px) {
        display: none;
    }
}

.products-list__card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}

.products-list__check-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.products-list__check-block .checkbox {
    position: relative;
    z-index: -1;
    opacity: 0;
}
.products-list__check-block .checkbox + label {
    position: relative;
    cursor: pointer;
}
.products-list__check-block .checkbox + label:before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 55px;
    height: 29px;
    border-radius: 30px;
    background: #FFFEFB;
    transition: 0.2s;
    border: 1px solid #BDBDBD;
}
.products-list--info-practic{
  display: flex;
  flex-direction: column;
  gap: 5px;
  
}
.products-list--info-practic{
  @media (min-width:768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }
}

.products-list--info-practic .practic__title{
  font-size: 12px;
  font-weight: 400;
  color: #333936;
  display: none;
  @media (min-width:768px) {
    display: flex;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
  }
}
.products-list--info-practic .practic__value{
  font-size: 12px;
  font-weight: 400;
  color: #333936;
  @media (min-width:768px) {
    font-size: 16px;
    font-weight: 400;
  }
}
.products-list__check-block .checkbox + label:after {
    content: "";
    position: absolute;
    top: -2px;
    left: 2px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #BDBDBD;
    transition: 0.2s;
}
.products-list__check-block .checkbox:checked + label:before {
    background: #D4E07D;
}
.products-list__check-block .checkbox:checked + label:after {
    left: 28px;
    background: #FFFEFB;
}
.products-list__check-block #box:checked + label:before {
    background: #8BC34A;
}
.products-list__check-block .checkbox + label {
    position: relative;
    padding: 0 0 0 60px;
    cursor: pointer;
}

.products-list__card-footer {
    display: none;
    @media (min-width:768px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: wrap;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
    }
}
.products-list__card-footer--prod {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: wrap;
        font-size: 16px;
        font-weight: 500;
        line-height: 150%;
        @media (min-width:768px) {
          display: contents;
        }
}

.products-list__card-footer--prod .products-list__check-block .checkbox--description{
  display: none;
  @media (min-width:768px) {
    display: block;
  }
}
.products-list__card-footer--prod .products-list__check-block{
  margin-left: -20px;
  @media (min-width:768px) {
    margin-left: 0;
  }
}

.right{
  margin-left: auto;
}

.balance-table__headers .right{
  @media (min-width:768px) {
    margin: inherit;
  }
}
.balance-table .contants{
  display: contents;
  @media (min-width:768px) {
    display: grid;
    grid-template-columns: 66% auto;
    gap: 5px;
  }
  @media (min-width:1200px) {
    grid-template-columns: 60% auto;
    gap: 10px;
  }
}
.products-list__dekstopBtn {
    display: none;
    @media (min-width:768px) {
        display: block;
        border: none;
    }
}
.products-list__dekstopBtn--prod {
    display: block;
    border: none;
}
.js-modal .products-list__dekstopBtn {
    display: contents;
}

.js-modal-productCardImg {
    border-radius: 20px;
    width: 350px;
    height: 350px;
    object-fit: cover;
}
.word-break{
  word-break: break-word;
}
.js-modal-productblock{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.js-modal-btns{
    display: flex;
    gap: 5px;
}

.js-modal-btns button{
    border: none;
    background: inherit;
    cursor: pointer;
}

.js-modal-productType, .js-modal-productNft, .js-modal-productDate, .js-modal-productQty {
    margin-top: 10px;
}

.js-modal-trashImg{
    transition: all 0.3s ease-in-out;
}

.js-modal-trashImg:hover{
    scale: 1.1;
    filter: drop-shadow(0px 0px 60.5px rgba(212, 224, 125, 0.90));
}

.js-modal__shareDesc{
    font-size: 18px;
    font-weight: 600;
}

.js-modal__shareCopyLink{
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.js-modal__socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.js-modal__copyBlock{
    display: flex;
    gap: 10px;
    width: 100%;
    border-radius: 30px;
    border: 2px solid #E5E5E5;
    padding: 5px;
    align-items: center;
    background-color: inherit;
}

.js-modal__BtnCopy{
    border-radius: 30px;
    background-color: #D4E07D;
    border: none;
    display: flex;
    color: #333936;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    align-self: stretch;
    align-items: center;
    margin-left: auto;
    padding: 0px 15px;
    cursor: pointer;
}

.js-modal__popupHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5E5E5;
}

.js-modal__popupHeader--title{
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
    color: #333936;

}

.js-modal__shareDesc{
    font-size: 18px;
    font-weight: 600;
    color: #333936;
    text-align: start;
}

.js-modal__shareContent{
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.js-modal__social{
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}



.socials-link{
    width:32px;
    height:32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease-in-out;
    display: flex;
}

.user__socials-link{
    width:32px;
    height:32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}

.imgSocial--vk{
    background-image: url(./img/vk.svg);
}
.imgSocial--vk:hover{
    background-image: url(./img/vkColored.svg);
}

.imgSocial--youtube{
    background-image: url(./img/youtube.svg);
}
.imgSocial--youtube:hover{
    background-image: url(./img/youtubeColored.svg);
}

.imgSocial--inst{
    background-image: url(./img/instagram.svg);
}
.imgSocial--inst:hover{
    background-image: url(./img/instagramColored.svg);
}

.imgSocial--fb{
    background-image: url(./img/facebook.svg);
}
.imgSocial--fb:hover{
    background-image: url(./img/facebookColored.svg);
}

.imgSocial--whApp{
    background-image: url(./img/whatsapp.svg);
}
.imgSocial--whApp:hover{
    background-image: url(./img/whatsappColored.svg);
}

.imgSocial--tg{
    background-image: url(./img/telegram.svg);
}
.imgSocial--tg:hover{
    background-image: url(./img/telegramColored.svg);
}

#depositModal{
    color: #333936;
    z-index: 20;
}

.js-modal__QrBlock{
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    background-color: #F2F2F2;
    align-items: center;
}

.js-modal__Qr {
    max-width: 250px;
    max-height: 250px;
}

.js-modal__QrBlockTitle{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    width: 200px;
    text-wrap: balance;
}

.js-modal__QrAdress{
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    overflow-wrap: anywhere;
    word-break: break-all;
    text-align: center;
}

.js-modal__depositDesc{
    max-width: 360px;
    text-wrap: balance;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
}

.js-modal__depositCopy, .js-modal__depositShare {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #D4E07D;
    border: none;
    color: #333936;
    align-self: stretch;
    padding: 10px 15px;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    cursor: pointer;
}
.user__avatarWrapper{
    position: relative;
    border-radius: 20px;
}

.changeAvatar__Btn{
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #f2f2f2;
  width: 25px;
  height: 25px;
  padding: 3px;
  border-radius: 5px;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
}

main{
    flex: 1;
}

.master-skills-check__block{
    @media (min-width: 426px) {
        place-self: start;
    }
}
#user-ref{
    opacity: 0.8;
}

.content-info__nikname-input{
    position: relative;
}

.form-user__copyBtn {
    position: absolute;
    top: 50%;
    right: 15px;
    translate: 0 -50%;
    width: 37px;
    height: 37px;
    border: none;
    background: inherit;
    cursor: pointer;
}

.content-invite__member--empty {
    height: 55px;
    justify-content: center;
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: #333936;
}

.content-invite__item {
    @media (min-width:1440px) {
        flex-direction: row;
    }
}
.content-info__title{
    @media (min-width:968px) {
        width: 150px;    
    }
}
.content-invite__title{
    @media (min-width: 1440px) {
        width: 150px;        
    }
}

.content-info__item {
    @media (min-width:968px) {
        /* display: grid;
        grid-template-columns: 150px 1fr; */
    }
}


.content-invite__members{
    @media (min-width:1440px) {
        flex: 1;
    }
}

.js-productBtnRemove{
    display: none;
    @media (min-width:768px) {
        background: #F18467;
        width: 31px;
        height: 30px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;   
        outline: none;
    }
}

.content-info__nikname-input{
    background: #fff;
    opacity: 0.8;
}

.js-modal-btnRemove{
    background: #F18467;
    width: 31px;
    height: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;   
    outline: none;
}

.footer{
    width: 100%;
    margin: 0 auto;
    background: #333936;
}
.footer-wrapper{
    padding: 40px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    color: #FFFEFB;
    max-width: 1440px;
    margin: auto;
    @media (min-width:768px) {
        padding: 20px 40px;
        gap: 20px;
    }
    @media (min-width:1440px) {
        padding: 20px 60px;
    }
}

.footer__body{
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media (min-width:768px) {
        flex-direction: row;
        gap: 30px;
        justify-content: space-between;
        width: 100%;
    }
}

.footer__logoBlock{
    font-family: 'Unbounded', sans-serif;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    color: #FFFEFB;
    align-items: center;
    justify-content: center;
    @media (min-width:768px) {
        gap: 15px;
    }
}

.footer__logoBlock img{
    width: 34px;
    height: 33px;
    @media (min-width:768px) {
        width: 40px;
        height: 39px;
    }
}

.footer__logo{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo--brand{
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    @media (min-width:768px) {
        font-size: 29px;
    }
}
.footer__logo--desc{
    font-size: 10px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.35px;
    text-transform: lowercase;
    @media (min-width:768px) {
        font-size: 12px;
    }
}

.footer__socials-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    @media (min-width:768px) {
        gap: 20px;
    }
    @media (min-width:1440px) {
        gap: 60px;
    }
}

.footer__supportBtn{
    display: flex;
    border: none;
    border-radius: 40px;
    background-color: #f18467;
    color: #fffefb;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 50px;
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    @media (min-width:768px) {
        padding: 5px 25px;
    }
    @media (min-width:1440px) {
        padding: 8px 35px;
    }
}

.footer__copyright{
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    color: #ccc;
    text-align: center;
}

.withdraw-form__block{
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 5px;
}
.withdraw-form__block.field-withdrawformadd2-token_id.required select {
  -webkit-appearance: auto;
  -moz-appearance: initial;
  appearance: none;
  text-indent: 0px;
  text-overflow: "";
  -moz-text-align-last: center;
  text-align-last: auto;
  box-shadow: none;
  line-height: 100%;
  height: 43px;
  padding-left: 20px;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 0px;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
.withdraw-form__block.field-withdrawformadd2-token_id.required select::-ms-expand{
  display:block;
}
button.products-list__dekstopBtn--prod.js-productBtnRemove:has(img) {
  background: #F18467; border-radius: 20px; width: 31px; height: 30px; display: flex; align-items: center; justify-content: center; border: none;    outline: none;
}
button.products-list__dekstopBtn--prod.js-productBtnRemove img{
  display: flex;
  flex: 1;
  width: 16px;
}

.php-sidebar__list{
    height: 40px;
    margin-top: 10px;
}

button, .sidebar-menu__item{cursor: pointer;}

.withdraw-success__box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.withdraw-success__title{
    color: #333936;
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
}

.withdraw-success__transactions{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.withdraw-success__transaction{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333936;
    @media (min-width:1440px) {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.withdraw-success__transaction-title{
    font-size: 18px;
    font-weight: 600;
}

.withdraw-success__transaction-desc{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    @media (min-width:1440px) {
        word-break: break-all;
        max-width: 60%;
    }
}

.withdraw-success__postscriptum{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #858584;
}


.js-alert__alertWrapper{
    position: absolute;
    background: #D4E07D;
    color: #333936;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 15px;
    bottom: 10px;
    left: 50%;
    translate: -50%;
    alignment-baseline: central;
    transform: none;
    @media (min-width:768px) {
        padding: 10px 30px;
        bottom: 50px;
        left: 50px;
        translate: 0;
    }
}

.js-alert{
    display:none;
    position:fixed;
    right:0;
    bottom:0;
    left:0;
    z-index: 19;
}

.js-alert--open{
    display:block;
    /* height:100%; */
}

.release-content{
    padding: 10px;
    color: #333936;
    border-radius: 20px 20px 30px 30px;
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    @media (min-width: 768px){
    padding: 20px;
    border-radius: 20px;
}
}

.release-content__title{
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
    color: #333936;
    text-align: center;
}

.release-content__desc-box{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #333936;
    text-align: center;
    max-width: 80%;
    @media (min-width: 768px){
        gap: 10px;
        text-wrap: balance;
    }
}

.release-content__QrBlock{
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #FFFEFB;
    align-items: center;
}

.release-content__Qr{
    max-width: 250px;
    max-height: 250px;
}

.release-content__QrBlockTitle{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.release-content__adressBlock{
    display: flex;
    gap: 10px;
    padding: 0px 15%;
    align-items: center;
    @media (min-width: 768px){
        padding: 0px 0px;
        justify-content: center;
    }
}

.release-content__QrAdress{
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    word-break: break-all;
    text-wrap: balance;
    @media (min-width: 768px){
        max-width: auto;
    }
}

.js-productNft{
    font-weight: 600;
}

.release-content__adressCopy{
    width: 20px;
    height: 20px;
    padding: 0px;
    border: none;
    background-color: inherit;
}

.release-content__submit{
    color: #333936;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    background: #d4e07d;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -webkit-fill-available;
    @media (min-width: 768px){
        width: max-content;
        padding: 10px 60px;
    }
}

.error-page{
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-img{
    display: none;
    @media (min-width:768px) {
        display: block;
    }
}
.error-img img{
    width: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
}

.error-content{
    @media (min-width:768px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.error-content-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.error-content-details{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    color: #333936;
}

.error-content-details__error {
    font-size: 150px;
    font-weight: 600;
    line-height: 140%;
}

.error-content-details__name {
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
}

.error-content-details__message {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.error__btn{
    background-color: #D4E07D;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333936;
    font-size: 18px;
    font-weight: 600;
    width: max-content;
}

.sidebar-menu__list-item:hover{
    color: white;
}

.table-empty__row{
    height: 40px;
}

.bg-f3{
    background-color: #f3f3f3;
}

.logoBlock{
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    color: #333936;
    align-items: center;
    justify-content: center;
    @media (min-width:768px) {
        gap: 15px;
    }
    @media (min-width:1440px) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.logoBlock img{
    width: 34px;
    height: 33px;
    @media (min-width:768px) {
        width: 40px;
        height: 39px;
    }
}

.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    @media (min-width:768px) {
        flex-direction: row;
        gap: 5px;
    }
}

.logo--brand{
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    @media (min-width:768px) {
        font-size: 32px;
    }
}
.logo--desc{
    font-size: 10px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.35px;
    text-transform: lowercase;
    @media (min-width:768px) {
        font-size: 15px;
        width: 100px;
        line-height: 85%;
    }
}

.lng-container {
    padding: 10px;
    background-color: #EEEBE4;
    @media (min-width:968px) {
        padding: 10px 20px;
    }
    @media (min-width:1440px) {
        padding: 10px 40px;
    }
}



#lng-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;

}
.lng-main-body{
  display: flex;
  flex-direction: column;
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.lng-search__wrapper{
    border-radius: 15px;
    background:  #D4E07D;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    @media (min-width:678px) {
        border-radius: 20px;
        padding: 25px;
    }
    @media (min-width:1440px) {
        border-radius: 20px;
        padding: 45px;
    }
}

.lng-search__title {
    font-size: 29px;
    font-weight: 400;
    line-height: 37px; 
    letter-spacing: -1.4px;
    color: #333936;
    @media (min-width:768px) {
        font-size: 40px;
        line-height: 64px; 
        letter-spacing: -2.5px;
        padding-right: 10%;
    }
    @media (min-width:1024px) {
        font-size: 44px;
    }
    @media (min-width:1440px) {
        font-size: 50px;
    }
}

.lng-search__title span {
    color: #fff;
    margin-right: 10px;
}
.lng-search__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  @media (min-width:784px) {
      gap: 20px;
  }
}

.lng-search__row {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    position: relative;
    z-index: 10;
    @media (min-width:768px) {
        gap: 20px;
    }
}

.lng-search{
    display: flex;   
    border-radius: 40px;
    border: 2px solid #333936;
    background:  #FFFEFB;
    flex: 1;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3px;
    position: relative;
    gap: 3px;
}

.lng-search__input{
    border-radius: 40px;
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    padding: 3px 3px 3px 20px;
    @media (min-width:768px) {
        font-size: 16px;
        padding-left: 30px;
    }
}


.lng-search__input:placeholder{
    opacity: 0.8;
    font-size: 12px;
    @media (min-width:768px) {
        font-size: 14px;
    }
}

.lng-search__btn-filter{
    border-radius: 30px;
    background: #333936;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: #333936;
    cursor: pointer;
    align-self: stretch;
    @media (min-width:768px) {
        padding: 10px 25px;
    }
}

.lng-search__btn-search span{
    display: none;
    @media (min-width:768px) {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 400;
        line-height: 140%;
        color: #fff;
    }
}
.lng-search__btn-search{
    border-radius: 30px;
    background: #333936;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: #333936;
    align-self: flex-start;
    height: 45px;
    width: 45px;
    @media (min-width:768px) {
      gap: 10px;
      padding: 10px 25px;
        align-self: center;
        width: auto;
    }
}



.lng-filter{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 40px 40px 25px 25px;
    width: 100%;
    background-color: #F2F2F2;
    color: #333936;
    border: 2px solid #F2F2F2;
    z-index: -1;
    padding: 60px 20px 20px 20px;
}

.lng-filter__content{
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  @media (min-width:768px) {
    gap: 10px;
  }
  @media (min-width:968px) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.lng-filter__content .filter__item{
  display: flex;
  flex-direction: column;
  gap: 5px;
  @media (min-width:768px) {
    gap: 5px;
  }
}

.filter__btnReset{
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #fff;
  background-color: #F18467;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 15px;
  @media (min-width:768px) {
    padding: 6px 25px;
    gap: 10px;
  }
}

.filter__btnReset--text{
  display: none;
  @media (min-width:768px) {
    display: flex;
  }
}

.lng-filter__content .order-2{
  @media (min-width:968px) {
    grid-column: 1/-1;
    grid-row: 3;
    width: 100%;

  }
  @media (min-width:1024px) {
    width: calc(50% - 5px);
  }
}
.lng-filter__content .order-1{
  @media (min-width:968px) {
    grid-column: 1/3;
    grid-row: 1;
    width: 100%;
  }
}


.lng-filter__content .order-md-3{
  grid-column: 3/-1;
  grid-row: 2;
  width: 100%;
}

.lng-filter__content .order-md-0{
  grid-column: 3/-1;
  grid-row: 1;
  width: 100%;
}

.lng-filter__content .order-md-4{
  grid-column: 1/3;
  grid-row: 2;
  width: 100%;
}

.filter__label{
  color: #333936;
  font-size: 16px;
font-weight: 400;
line-height: 150%;
}

.filter__options{
  display: flex;
  gap: 10px;
  flex-direction: column;
  color: #fff;
  @media (min-width:768px) {
    flex-direction: row;
  }
}
.filter__options--row{
  display: flex;
  gap: 10px;
  flex-direction: row;
  color: #fff;
}

.filter__option{
  display: flex;
  color: #333936;
  background-color: #FFFEFB;
  border-radius: 30px;
  border: none;
  padding: 5px;
  align-items: center;
  align-self: stretch;
  @media (min-width:768px) {
    width: 50%;
  }
}

.filter-select-box{
  display: flex;
  gap: 5px;
  border-radius: 30px;
  background-color: #FFFEFB;
  color: #333936;
  padding: 5px;
  position: relative;
  height: 38px;
  text-align: center;
  text-align: -webkit-center;
  @media (min-width:768px) {
    width: 50%;
  }
  @media (min-width:968px) {
    width: 100%;
  }
}


.arrow-select{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 9px 7px;
  border-radius: 30px;
  border: none;
  position: absolute;
  top: 5px;
  left: 5px;

}

.filter__sort{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 30px;
  border: none;
  width: 30px;
  height: 30px;
  color: #333936;
}

.form-select option{
  background-color: #FFFEFB;
  color: #333936;
  width: 100%;
}

.form-select, .filter__option-name{
  width: 100%;
  border-radius: 30px;
  background-color: #FFFEFB;
  border: 1px solid #BDBDBD;
  outline: inherit;
  color: #333936;
  text-align: center;
  height: 34px;
  padding: 0px 5px;
}

.form-select{
  -webkit-appearance: none; 
  -moz-appearance: none; 
  appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  text-align: center;
  text-align-last: center; 

}

.filter__option-name::placeholder{
  color: #333936;
  opacity: 0.8;
}

.withdraw-page__content .form-select{
  text-align: start;
}


#lng-header{
  position: fixed;
  background-color:  rgb(238, 235, 228);
  width: 100%;
  z-index: 50;
}

.relative {
  position: relative;
}

.lng-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 60px;
    padding: 10px;
    @media (min-width:768px) {
      height: 90px;
      padding: 10px 40px;
  }
    @media (min-width:1440px) {
        position: relative;
    }
}
.lng-header .lk-logo{
  @media (min-width:1440px) {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
}
.lng-header__items{
    display: none;
    @media (min-width:768px) {
      display: flex;
      gap: 5px;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
    }
    @media (min-width:1440px) {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        padding: 10px 0px;
        align-items: center;
    }
}

.lng-header__items--up{
  display: flex;
  flex-direction: row;
  gap: 5px;
  @media (min-width:1440px) {
flex-direction: column;
  }
}
.lng-header__items--up div {
  display: contents;
  gap: 5px;
  @media (min-width:1440px) {
display: flex;
flex-direction: row;
  }

}
.lng-header__items--up .lng-btn--green{
  order: 0;

}
.lng-header__items--up .lng-btn--lgreen{
  order: 1;
  @media (min-width:1440px) {
    width: max-content;
  }
}
.lng-header__items--up .lng-btn--gray{
  order: 2;
}
.lng-header__items--down .lng-btn--orange{
  @media (min-width:1440px) {
    color: #333936;
    background-color: #d4e07d;
  }
}
.lng-header__items--down{
  display: flex;
  flex-direction: row;
  gap: 5px;
}

#mb--header-wallet{
  width: 100%;
}

.lng-header__mb-items--bg{
  border-radius: 15px;
  background:  #FFFEFB;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
}



.lng-header__mb-box{
    border-radius: 15px;
    background:  #FFFEFB;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    position: absolute;
    width: 100%;
    top: 50px;
    left: 0px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    height: auto;
    @media (min-width:768px) {
        display: none;
    }
}
.mb-menu-lng{
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  height: auto;
  position: absolute;
  width: 100%;
  top: 10px;
  left: 0px;
}
.lng-header__mb-items{
  display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    width: 100%;
}
.d-flex{
  display: flex;
}
.js-mb-header{
  display: flex;
  @media (min-width:768px) {
    /* display: none; */
  }
}

.lng-header__openMenu{
    border: none;
    background-color: #EEEBE4;
    @media (min-width:768px) {
        display: none;
    }
}

.lng-btn--beige {
    background-color: #F2CC8F;
    color: #333936;
}
.lng-btn--orange {
    background-color: #F18467;
    color: #fff;
}
.lng-btn--gray {
    background-color: #EEEBE4;
    color: #333936;
    @media (min-width:768px) {
        background-color: #fffefb;
    }
}
.lng-btn--green {
    background-color: #D4E07D;
    color: #333936;
}
.lng-btn--lgreen {
    background-color: #D1E2CF;
    color: #333936;
}
.lng-btn--lgreen--mb {
  grid-column: -1 / 1;
}

.lng-header__mb-items--up{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}
.lng-header__mb-items--down{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5px;
  @media (min-width:420px) {
    gap: 10px;
  }
}

.lng-header__mb-items .lng-header__nav-btn{
    border-radius: 30px;
    padding: 10px 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    gap: 5px;
    height: 40px;
    @media (min-width:420px) {
      padding: 10px 40px;
    }
}


.lng-header__items .lng-header__nav-btn{
    border-radius: 30px;
    padding: 5px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    gap: 5px;
    height: 35px;
    @media (min-width:1024px) {
      font-size: 16px;
    }
}



.lng-mission__wrapper{
    padding: 20px;
    border-radius: 20px;
    color: #333936;
    background-color: #FFFEFB;
    height:  auto;

    @media (min-width:1024px) {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    @media (min-width:1024px) {
    }
    @media (min-width:1440px) {
      padding: 45px;
    }
}

.lng-mission__header{
    display: flex;
    flex-direction: column;
    gap: 10px;
    @media (min-width:1024px) {
max-width: 66%;
    }
}

.lng-mission__title{    
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    @media (min-width:768px) {
        font-size: 32px;
        font-weight: 400;
    }
}

.lng-mission__desc--orange{
    color: #F18467;    
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    @media (min-width:768px) {
        font-size: 40px;
    }
    @media (min-width:1024px) {
        font-size: 44px;
    }
    @media (min-width:1440px) {
        font-size: 50px;
    }
}

.lng-mission__desc{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 10px;
    @media (min-width:1024px) {
       max-width: 66%;
    }

}

.lng-mission__imgBox{
    display: flex;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    @media (min-width:1024px) {
      position: absolute;
      top: 50%;
      right: 15%;
      width: 71px;
      height: auto;
      transform: translate(-50%, -50%);
    }
}

.lng-mission__imgBox img{
  width: 71px;
  height: 71px;
}

.lng-feedback{
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15);  
    border-radius: 15px;
    background: #FFFEFB;
    padding: 15px 20px 10px 20px;
    gap: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    @media (min-width:968px) {
        padding: 20px 30px 20px 50px;
        border-radius: 60px;
        flex-direction: row;
        justify-content: start;
    }
    @media (min-width:1024px) {
        gap: 10px;
        max-width: 66%;
    }
    @media (min-width:1440px) {
        max-width: 50%;
    }
}

.lng-feedback__desc{
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: #333936;
    text-wrap: balance;
    text-align: center;
    @media (min-width:768px) {
        font-size: 20px;
        font-weight: 400;
        line-height: 150%;
    }
    @media (min-width:968px) {
        text-align: start;
    }
}

.lng-feedback__desc--orange{
    color: #F18467;
}
.lng-wheel__body .lng-feedback__desc--orange{
    color: #333936;
}

.lng-btn{
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    text-align: center;
    @media (min-width:968px) {
        padding: 10px 50px;
    }
}
.lng-feedback .lng-btn {
    @media (min-width:968px) {
        width: fit-content;
        align-self: center;
    }
}
.lng-btn--green{
    background: var(--Green, #D4E07D);
    font-size: 18px;
    font-weight: 600;
    color: #333936;
}

.lng-btn--orange{
    background: var(--Green, #F18467);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.lng-skills__wrapper{
    color: #333936;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lng-skills__header{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lng-skills__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    text-wrap: balance;
    @media (min-width:768px) {
        font-size: 32px;
    }
}

.lng-skills__desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%; 
    padding-right: 25%;
    @media (min-width:768px) {
        font-size: 20px;
        padding-right: 0px;
    }
}

.lng-skills__cards{
    display: flex;
    flex-direction: column;
    gap: 10px;
    @media (min-width:768px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    @media (min-width:968px) {
        gap: 20px;
    }
    @media (min-width:1024px) {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
    @media (min-width:1440px) {
        gap: 30px;
    }
}

.lng__card{
    border-radius: 25px;
    background: #FFFEFB;
    padding: 20px 20px 20px 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    @media (min-width:1024px) {
        flex-direction: column;
        gap: 25px;
        justify-content: flex-start;
        padding: 10px;
    }
    @media (min-width:1440px) {
        gap: 30px;
        padding: 20px;
    }
}

.lng-skills__cards .lng__card img{
    width: 150px;
    height: 150px;
    scale: 1.3;
    transition: all 0.3s ease-in-out;
    @media (min-width:1024px) {
        width: 200px;
        height: 200px;
        display: flex;
        align-items: center;
    }
}
.lng-skills__cards .lng__card img:hover{
  scale: 1.5;
  filter: drop-shadow(0px 0px 6.5px rgba(212, 224, 125, 0.5));
}

.lng__card-content {
    color: #333936;
    display: flex;
    flex-direction: column;
    gap: 10px;
    @media (min-width:1024px) {
        align-items: center;
    }
}

.lng__card-content h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 140%;
}

.lng__card-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    text-wrap: balance;
    @media (min-width:1024px) {
        text-align: center;
    }
}

.lng-skills__poscriptum {
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
    color: #858584;
    @media (min-width:1024px) {
        text-align: center;
    }    
}

.lng-wheel__wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 20px;
    background: #333936;
    @media (min-width:968px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 25px;
    }
    @media (min-width:1440px) {
        padding: 40px;
    }
}
.lng-wheel__wrapper .lng-feedback{
    @media (min-width:768px) {
        max-width: 100%;
    }
    @media (min-width:968px) {
        justify-content: space-between;
    }
    @media (min-width:1440px) {
        max-width: fit-content;
    }
}
.lng-wheel__img{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 5s ease-in;
    @media (min-width:968px) {
        order: 2;
    }
}
.lng-wheel__img:hover{
    transform: rotate(360deg);
}

.lng-wheel__body .lng-btn--orange{
    @media (min-width:968px) {
        color: #333936;
        background-color: #D4E07D;        
    }
}

.lng-wheel__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media (min-width:968px) {
        gap: 40px;
        justify-content: space-between;
    }
}

.lng-wheel__wrapper .lng-feedback__desc{
    @media (min-width:968px) {
        width: max-content;
    }
}

.lng-wheel__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lng-wheel__content h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: #D4E07D;
}

.lng-wheel__details {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lng-work__wrapper{
    border-radius: 30px;
    background: #FFFEFB;
    color: #333936;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    @media (min-width:768px) {
        border-radius: 0px;
        background: inherit;
    }

}

.lng-work__header{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lng-work__header h2{
    font-size: 26px;
    font-weight: 400;
    line-height: 130%;
    @media (min-width:968px) {
        font-size: 32px;
    }
    
}

.lng-work__header p{
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    @media (min-width:768px) {
        display: none;        
    }
}

.lng-work__wrapper .lng-btn--green {
    @media (min-width:768px) {
        display: none;        
    }
}

.lng-work__header p > strong{
    font-weight: 500;
}

.lng-work__bodyImg {
    display: none;
    @media (min-width:768px) {
        display: flex;        
    }
}

.lng-benefits__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #333936;
}
.lng-benefits__wrapper h2{
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    @media (min-width:768px) {
        font-size: 32px;       
    }
}

.lng-benefits__cards{
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media (min-width:768px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;       
    }
    @media (min-width:1024px) {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;       
    }
}

.lng-benefits__cards .lng__card {
    padding: 30px 15px;
    justify-content: flex-start;
    @media (min-width:768px) {
        align-items: center;
        justify-content: start;     
        padding: 30px 10px;
    }
    @media (min-width:1024px) {
        padding: 30px 20px;     
    }
}

.lng-benefits__cards .lng__card img {
    width: 110px;
    height: 110px;
    scale: 1.25;
    transition: all 0.3s ease-in-out;
    @media (min-width:1024px) {
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
    }
}
.lng-benefits__cards .lng__card img:hover{
  scale: 1.35;
  filter: drop-shadow(0px 0px 10px rgba(212, 224, 125, 0.5));
}

.lng-benefits__cards .lng__card h3 {
    font-size: 20px;
    @media (min-width:768px) {
        text-align: center;    
    }
}

.lng-benefits__cards .lng__card p {
    font-size: 14px;
    @media (min-width:768px) {
        text-align: center;    
    }
}

.lng-benefits__cards .lng__card:nth-child(even){
    flex-direction: row-reverse;
    text-align: end;
    @media (min-width:768px) {
        flex-direction: column;
        text-align: center;
    }
}

.lng-team__wrapper{
    border-radius: 20px;
    background-color: #333936;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #fff;
    @media (min-width:1024px) {
        padding: 25px;
    }
    @media (min-width:1440px) {
        padding: 40px;
    }
}

.lng-team__header{
    display: flex;
    flex-direction: column;
    gap: 10px;
    @media (min-width:1024px) {
      width: 50%;
  }
}
.lng-team__header h2{
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
}

.lng-team__header h2 > span{
    color: #D4E07D;
}

.lng-team__header p{
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

.lng-team{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    @media (min-width:768px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
        column-gap: 20px;
    }
    @media (min-width:1024px) {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

.lng-team__item{
    display: flex;
    gap: 20px;
    align-items: center;
    @media (min-width:768px) {
        flex-direction: column;
        text-align: center;
    }
}
.lng-team__item-avatar{
  /* @media (min-width:768px) {
    width: 150px;
    height: 150px;
  } */
}

.lng-team .position-hint{
    @media (min-width:768px) {
        display: none;
    }
}
.lng-team .hint, .lng-team .item-hint{
    display: none;
    @media (min-width:768px) {
        display: flex;
    }
}



.lng-team__item:nth-child(even){
    flex-direction: row-reverse;
    text-align: end;
    @media (min-width:768px) {
        flex-direction: column;
        text-align: center;
    }
}

.lng-team__item img{
    width: 118px;
    height: 118px;
    border: 3px solid #D4E07D;
    border-radius: 50%;
    @media (min-width:768px) {
      width: 140px;
      height: 140px;
  }
  @media (min-width:1024px) {
    width: 160px;
    height: 160px;
}
}

#lng-team__item-ques{
    border: none;
    border-radius: 0;
    width: 118px;
    height: 118px;
    scale: 1.5;
    @media (min-width:768px) {
      width: 140px;
      height: 140px;
  }
  @media (min-width:1024px) {
    width: 160px;
    height: 160px;
}
}

.lng-team__name {
    font-size: 22px;
    font-weight: 600;
    line-height: 130%;
}

.lng-team__position{
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    text-wrap: balance;
}

.lng-team__footer{
display: flex;
flex-direction: column;
gap: 20px;
@media (min-width:768px) {
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
}

.lng-symbol{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.m-wdh{
  max-width: 1440px;
  margin: 0 auto;
}

.bg-dark{
  color: #333936;
}

.lk-body-box{
  background-color: #FFFEFB;
}

#formRemindPassword .has-error > input {
  border: none;
}
#formRemindPassword .has-error {
  border: 1px solid #F18467;
}


.login__desc{
  color:  #858584;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.login-page .login__desc{
text-decoration: underline;
}

.field-signin-login::before, .field-signup-username::before, .field-remind-login::before{
  content: url(./img/user.svg);
}
.form-group.field-signup-fullname.required::before{
  content: url(./img/user.svg);
}

.field-signin-password::before, .field-signup-password::before, .field-remind-password::before{
  content: url(./img/password.svg);
}
.form-group.field-signup-password_repeat.required::before{
  content: url(./img/password.svg);
}

.field-signin-email::before, .field-signup-email::before, .field-signup-password_repeat::before{
  content: url(./img/email.svg);
}

.field-signin-login input {
  flex: 1;
}
/*  */



#formSignup {
  @media (min-width:768px) {
    max-width: 500px;    
  }
}

#formSignin {
  @media (min-width:768px) {
    max-width: 500px;    
  }
}

#formSignup > .login-form__btn {
  @media (min-width:768px) {
    width: 250px;    
    align-self: center;
  }
}
#formSignin > .login-form__btn {
  @media (min-width:768px) {
    width: 250px;    
    align-self: center;
  }
}

#formRemind {
  @media (min-width:768px) {
    max-width: 500px;    
  }
}

#formRemind > .login-form__btn {
  @media (min-width:768px) {
    width: 250px;    
    align-self: center;
  }
}


#formSignin .has-error > input {
  border: none;
}
#formSignin .has-error {
  border: 1px solid #F18467;
}


#formSignin .has-error {
  margin-bottom: 30px;
}

#formSignin .form-group > .help-block{
  position: absolute;
  top: 110%;
  bottom: 0;
  left: 20px;
}
.form-group{
  display: flex;
  flex-wrap: wrap;
  height:46px;
  padding:5px 20px;
  align-items:center;
  gap:20px;
  border-radius:40px;
  border:1px solid #333936; 
  width: 100%;
} 
.form-group input {
  flex: 1;
}
.login-form__input input::placeholder{color:#858584}
.login-form__inputs{
  @media (min-width:768px) {
      max-width: 400px;
  }
}
.login-page .login-form__inputs{display:flex;flex-direction:column;gap:15px; width: 100%; align-items: stretch;}

#formSignup .has-error > input {
  border: none;
}
#formSignup .has-error {
  border: 1px solid #F18467;
}


#formSignup .form-group.has-error {
  margin-bottom: 30px;
}

#formSignup .form-group > .help-block{
  position: absolute;
  top: 110%;
  bottom: 0;
  left: 20px;
}

#formRemindPassword .has-error > input {
border: none;
}
#formRemindPassword .has-error {
border: 1px solid #F18467;
}


#formRemindPassword .form-group.has-error {
margin-bottom: 20px;
}

#formRemindPassword .form-group > .help-block{
position: absolute;
bottom: -20px;
left: 20px;
}

.login-page .login-form__desc{
font-size: 16px;
font-weight: 400;
line-height: 150%;
/* color: #333936; */
text-align: center;
margin: 10px 0px 20px 0px;
}

.signup-success{
max-width: 1440px;
margin: 0 auto;
padding: 100px 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
@media (min-width:768px) {
  padding: 100px 120px;
}
@media (min-width:1440px) {
  padding: 100px 200px;
}
}

.signup-success__text{
  text-align: left;
}

.signup-success .signup-success__box{
border-radius: 20px;
background: #F2F2F2;
display: flex;
padding: 30px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 30px;
align-self: center;
color: #333936;
text-align: left;
@media (min-width:768px) {
padding: 40px;
width: auto;
}
}

.signup-success__box h1{
font-size: 18px;
font-weight: 600;
@media (min-width:768px) {
  font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 140%;
}
}

.signup-success__content{
  display: flex;
  flex-direction: column;
  gap: 20px;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%;
text-align: start;
@media (min-width:768px) {
  font-size: 16px;
  gap: 10px;
}
}

.signup-success .login-form__btn{border-radius:40px;background:#d4e07d;display:flex;height:46px;padding:0 50px;justify-content:center;align-items:center;gap:12px;align-self:stretch;font-size:16px;font-weight:600;line-height:140%;border:none;color:#333936; @media (min-width:768px) {
width: max-content;
align-self: center;
}}
.signup-success .login-form__btn--gray{border-radius:40px;background:#E0E0E0;display:flex;height:46px;padding:0 50px;justify-content:center;align-items:center;gap:12px;align-self:stretch;font-size:16px;font-weight:600;line-height:140%;border:none;color:#333936; @media (min-width:768px) {
width: max-content;
align-self: center;
}}

.login-form__input{
  outline: none;
  border: none;
}

.font--Unb {
  font-family: "Unbounded", sans-serif;
}

#lk-header {
  position: fixed;
  width: 100%;
  z-index: 50;
  padding: 10px;
  background-color: #FFFEFB;
}

a {
  text-decoration: none;
}

header .relative {
  position: relative;
}
header .m-wdh {
  max-width: 1440px;
  margin: 0 auto;
}

.panel-header__product{
  height: 40px;
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #333936;
  order: 2;
  @media (min-width:768px) {
    width: fit-content;
    padding: 15px 20px;
  }
}
#panel-header{
  position: fixed;
  background: #FFFEFB;
  width: 100%;
  z-index: 10;
}
header .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  height: 60px;

  /*  */
}
@media (min-width: 968px) {
  header .panel-header {
    padding: 10px 40px;
  }
}
@media (min-width: 1440px) {
  header .panel-header {
    padding: 10px 40px;
    position: relative;
  }
}
header .panel-header__items {
  display: none;
}
@media (min-width: 768px) {
  header .panel-header__items {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}
header #mb--header-wallet {
  width: 100%;
}
header .panel-header__hero-items {
  display: none;
  @media (min-width: 768px) {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      font-size: 14px;
      font-weight: 500;
      line-height: normal;
      color: #333936;
  }
  @media (min-width: 1024px) {
    font-size: 16px;
}
}
header .panel-header__hero-items a {
  display: none;
  @media (min-width: 768px) {
      color: #333936;
      display: flex;
    }
}

.panel-header__mb-box-item {
  border-radius: 20px;
  background: #FFFEFB;
  width: 100%;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
  padding: 10px;
  @media (min-width:768px) {
    width: fit-content;
    padding: 15px 20px;
  }
}
.panel-header__mb-box {
  border-radius: 15px;
  display: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  width: 100%;
  /* top: 10px;
  left: 0px; */
  padding: 10px 20px;
  height: auto;
  z-index: 20;
  @media (min-width: 768px) {
    flex-direction: column;
    padding: 10px 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    }
    @media (min-width: 1440px) {
      flex-direction: row;
      padding: 10px 40px;
      align-items: stretch;
      }
}

header .panel-header__mb-box--bg {
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
  background: #FFFEFB;
}
header .panel-header__mb-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  @media (min-width:768px) {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
}
header .d-flex {
  display: flex;
}
header .js-mb-header {
  display: flex;
}
header .panel-header__mb-item {
  display: flex;
  align-items: stretch;
  gap: 5px;
  width: 100%;
}
header .panel-header__openMenu {
  border: none;
  background-color: inherit;
  display: flex;
  align-items: center;
  justify-self: center;
}
@media (min-width: 768px) {
  header .panel-header__openMenu {
    display: none;
  }
}
header .panel-header-btn--beige {
  background-color: #F2CC8F;
  color: #333936;
}
header .panel-header-btn--orange {
  background-color: #F18467;
  color: #fff;
}
header .panel-header-btn--gray {
  background-color: #EEEBE4;
  color: #333936;
}
@media (min-width: 768px) {
  header .panel-header-btn--gray {
    background-color: #fffefb;
  }
}
header .panel-header-btn--green {
  background-color: #D4E07D;
  color: #333936;
}
header .panel-header__mb-items .panel-header-btn--gray, header .panel-header__mb-items .panel-header-btn--orange {
  width: 60%;
}
header .panel-header__mb-items .panel-header-btn--green, header .panel-header__mb-items .panel-header-btn--beige {
  width: 40%;
}
header .panel-header__mb-items .panel-header__nav-btn {
  border-radius: 30px;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 14px;
  gap: 5px;
  height: 40px;
}
header .panel-header__items .panel-header__nav-btn {
  border-radius: 30px;
  padding: 5px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  gap: 5px;
  @media (min-width:1024px) {
    font-size: 16px;
  }
}
header .header-mb__user-avatar {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}
.panel-header__user {
  padding: 10px;
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 10px;
  @media (min-width:768px) {
    width: 100%;
    max-width: 500px;
  }
}

header .panel-header__nav-btn--wallet {
  grid-column: 1/-1;
  border-radius: 30px;
  background: #F18467;
  display: flex;
  height: 35px;
  padding: 0px 25px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  color: #FFFEFB;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (min-width: 768px) {
  header .panel-header__nav-btn--wallet {
    display: none;
  }
}
header .header-mb__user-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-evenly;
}
header .header-mb__user-name {
  padding-left: 5px;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media (min-width: 768px) {
  header .header-mb__user-name {
    font-size: 18px;
  }
}
@media (min-width: 968px) {
  header .header-mb__user-name {
    font-size: 22px;
  }
}
header .panel-header__mb-role {
  border-radius: 40px;
  background: var(--White, #FFFEFB);
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  height: 40px;
  padding: 3px;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  gap: 10px;
  justify-content: space-around;
  cursor: pointer;
  order: -1;
  @media (min-width:768px) {
    width: fit-content;
    align-self: center;
    order: 1;
  }
}

header .header-mb__user {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #333936;
  text-decoration: none;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 50%;
}
header .header-mb__user--active {
  border-radius: 30px;
  background: #D4E07D;
}

header .panel-header__mb-bnts{
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
    display: none;
  }
}


header .panel-header__mb-bnts .row{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

header .panel-header__mb-bnts .row a,
header .panel-header__mb-bnts a {
  height: 42px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #333936;
  text-decoration: none;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 50%;
  gap: 5px;
  border-radius: 30px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
header .panel-header__mb-bnts .row a {
  width: 50%;
}
header .panel-header__mb-bnts .row a:first-child {
background-color: #EEEBE4;
}
header .panel-header__mb-bnts .row a:last-child {
background-color: #D4E07D;
}

header .panel-header__mb-bnts a {
  width: 100%;
  background-color: #D1E2CF;
}


.panel-header__mb-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 1;
  @media (min-width: 768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  @media (min-width: 1440px) {
    display: flex;
    flex-direction: row;
  }
}
header .panel-header__menuitem {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
header .header-menu__list--opened {
  margin-top: 10px;
  @media (min-width: 768px) {
    margin: 0;
  }
}
header .panel-header__menu-h {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  @media (min-width: 768px) {
      font-size: 16px;
    
  }
  @media (min-width: 964px) {
      font-size: 18px;
    
  }
}
header .panel-header__menu-h--opened .js-open-header-list {
  display: none;
}
header .js-open-header-list--cross {
  display: none;
}
header .panel-header__menu-h--opened .js-open-header-list--cross {
  display: block;
}
header .panel-header__menu-list {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  @media (min-width: 768px) {
      overflow: inherit;
      height: auto;
      font-size: 14px;
      line-height: 17px;
  }
  @media (min-width: 964px) {
      font-size: 12px;
  }
}
header .panel-header__menu-list a {
  color: #333936;
}
header .js-open-header-list,
header .js-open-header-list--cross {
  margin-left: auto;
  @media (min-width: 768px) {
      display: none;
      opacity: 0;
    
  }
}

.panel-header__practice {
  height: 40px;
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #333936;
  order: 3;
  @media (min-width:768px) {
    width: auto;
  }
}
.font-inter{
  font-family: Inter, sans-serif;
}
header .panel-header__practice span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #333936;
  text-decoration: none;
}

.header-menu--active{
  color: #D4E07D !important;
}

#isMasterModal, #directionsModal{
  z-index: 50;
}

.relative{
  position: relative;
}

.btn__closeModal--master{
position: absolute;
top: 10px;
right: 10px;
}

.modal-desc--master{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #333936;
  text-align: center;
}

.js-modal__btn--green{
  border-radius: 30px;
background:#D4E07D;
height: 40px;
padding: 0px 50px;
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
width: 100%;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
color: #333936;
border: 1px solid #d4e07d;
}

.input-modal{
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #333936;
  outline: inherit;
  height: 30px;
  border-radius: 30px;
  border: 1px solid #858584;
  width: 100%;
  margin-bottom: 10px;
}

.modal-master, .modal-social{
  max-width: 300px;
}


.panel-header__wrapper {
  display: none;
  height: calc(100vh - 60px);
  background: rgb(0 0 0 / 10%);
  width: 100%;
  position: fixed;
  top: 60px;
  left: 0px;
  z-index: 1;
}
.border-none{
  border: none;
}
.lng-header__wrapper {
  display: none;
  height: calc(100vh - 60px);
  background: rgb(0 0 0 / 10%);
  width: 100%;
  position: fixed;
  top: 60px;
  left: 0px;
  @media (min-width:768px) {
    top: 90px;
    height: calc(100vh - 90px);
  }
}
.panel-header__wrapper--opened {
  display: block;
}
.check-btns{
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  gap: 10px;
  @media (min-width:768px) {
    display: flex;
    flex-wrap: wrap;
  }
  @media (min-width:1440px) {
    top: 80px;
  }
}

.btn__grid-01-left {
  grid-column: 1/3;
}
.btn__grid-01-rigth{
grid-column: 3/-1;
}
.btn__grid-02-left{
  grid-column: 1/2;
}
.btn__grid-02-rigth{
grid-column: 2/-1;
}

.directions__btn{
  min-width: 125px;
  border-radius: 30px;
  border: 1px solid #BDBDBD;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #333936;
  text-align: center;
  height: 34px;
}
.directions__btn:has(.directions-btn__input:checked){
  border: none;
}
.socials-btn{
  height: 34px;
  min-width: 125px;
  border-radius: 30px;
  border: 1px solid #BDBDBD;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #333936;
  text-align: center;
  padding: 5px 40px;
}

.directions-btn__label{
  width: 100%;
  border-radius: 30px;
  padding: 5px 45px;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}


.directions-btn__input{
  opacity: 0;
  display: none;
}

.directions-btn__input:checked ~ .label--white {
  background-color: #fff;
}
.directions-btn__input:checked ~ .label--l-green {
  background-color: #D1E2CF;
}
.directions-btn__input:checked ~ .label--green {
  background-color: #D4E07D;
}
.directions-btn__input:checked ~ .label--orange {
  background-color: #F18467;
  color: #fff;
}
.directions-btn__input:checked ~ .label--bordo {
  background-color: #764135;
  color: #fff;
}

.socials-btn--vk {
background: #377DF7;
color: #fff;
border: none;
}
.socials-btn--inst {
 background: linear-gradient(75deg, #F9AF51 4.55%, #E264AB 55.72%, #9174E4 97.5%);
 color: #fff;
 border: none;
}
.socials-btn--meta {
  background: #377DF7;
color: #fff;
border: none;
}
.socials-btn--tg {
  background: #2C9BEC;
color: #fff;
border: none;
}

.body__wrapper{
  padding: 10px;
  flex: 1;
}

.form__radio-btns{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.form__radio-btn{
width: 100%;
@media (min-width:768px) {
  width: auto;
}
}


.form__radio-btn input{
  display: none;
}

.form__radio-btn label{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  border: 1px solid #BDBDBD;
  border-radius: 30px;
  color: #333936;
  height: 34px;
  padding: 5px 40px;
  font-size: 16px;
  font-weight: 400;
}

.form__radio-btn input:checked + label,
.form__radio-btn input:focus + label,
.form__radio-btn input:hover + label,
.form__radio-btn input:active + label{
  background-color: #D4E07D;
  border: 1px solid #D4E07D;
  outline: #D4E07D;
}

.hidden{
  display: none;
}

.header-menu{
  padding: 10px 10px 0px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width:768px) {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
    padding: 10px 40px 0px;
  }
  @media (min-width:1440px) {
    justify-content: center;
    padding: 10px 60px 0px;
  }
}

.header-menu__left{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-menu__box{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  @media (min-width:768px) {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
    padding: 10px 40px 0px;
  }
  @media (min-width:1440px) {
    justify-content: center;
    padding: 10px 60px 0px;
  }
}

.creation-info__content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.creation-info__content-img{
  align-self: center;
}

.max-w-finish{
  max-width: 400px;
  margin: 0 auto;
}

.pd{
  padding: 20px 10px;
  @media (min-width:768px) {
    padding: 40px 20px;
  }
  @media (min-width:1440px) {
    padding: 40px;
  }
}

/* .form__bilet-count{
  display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    @media (min-width:768px) {
      display: grid;
      grid-template-columns: 30% 1fr 250px;
      gap: 15px;
    }
} */

/* .form__bilet-count .hint-block {
  @media (min-width:768px) {
    grid-column: -1/1;
  }
} */



.mg-0{
  margin: 0;
}

.form__bilet-count{
  margin-bottom: 20px;
  @media (min-width:768px) {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
  /* @media (min-width:1130px) {
    grid-template-columns: 2.5fr 1fr;
  }
  @media (min-width:1130px) {
    grid-template-columns: 3.5fr 1fr;
  } */
}
.form__bilet-count:has(> .hint-block){
  @media (min-width:768px) {
    display: grid;
    grid-template-columns: minmax(50%, 70%) auto;
    gap: 20px; 
  }
}
.form__bilet-count .hint-block{
  @media (min-width:768px) {
  grid-column: -1 / 1;
}
}
.creation-info .form__bilet-count .creation-info__item-box.field-courseform2-bilet_count, 
.creation-info .form__bilet-count .creation-info__item-box.field-courseform3-bilet_count,
.creation-info .form__bilet-count .creation-info__item-box.field-product-bilet_count,
.creation-info .form__bilet-count .creation-info__item-box.field-product-bilet_count.required.has-error,
.creation-info .form__bilet-count .creation-info__item-box.field-product-bilet_count,
.creation-info .form__bilet-count .creation-info__item-box.field-productedit-bilet_count.required,
.creation-info .form__bilet-count .creation-info__item-box.field-productedit-bilet_count{
  @media (min-width:768px) {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 100%;
    gap: 10px;
  }
}

.form__bilet-count .creation-info__item-box .creation-info__box-title {
  flex: none;
}

.creation-page .creation-content .creation-info .form__bilet-count .checkbox__block{
  margin-bottom: 15px;
  @media (min-width:768px) {
    justify-content: end;
    margin-bottom: 0px;
    align-self: center;
    margin-bottom: 0px;

  }
}

.creation-page .creation-content .creation-info .form__bilet-count .checkbox__block .checkbox--description{
  @media (min-width:768px) {
    width: max-content;
  }
}
.creation-page .creation-content .creation-info .form__bilet-count .checkbox__block .checkbox--wrapper{
  @media (min-width:768px) {
display: flex;
align-self: baseline;
margin-top: 5px;
  }
}

.disabled{
opacity: 0.5;
}

.tree{
  --spacing : 1.5rem;
  --radius  : 10px;
}

.tree li{
  display      : block;
  position     : relative;
  padding-left : calc(2 * var(--spacing) - var(--radius) - 2px);
  margin-bottom: 10px;
}

.tree ul{
  margin-left  : calc(var(--radius) - var(--spacing));
  padding-left : 0;
}

.tree ul li{
  border-left : 2px solid #BDBDBD;
  margin-bottom: 10px;
}

.tree ul li:last-child{
  border-color : transparent;
}

.tree ul li::before{
  content      : '';
  display      : block;
  position     : absolute;
  top          : calc(var(--spacing) / -2);
  left         : -2px;
  width        : calc(var(--spacing) + 2px);
  height       : calc(var(--spacing) + 1px);
  border       : solid #BDBDBD;
  border-width : 0 0 2px 2px;
}

.tree summary{
  display : block;
  cursor  : pointer;
  margin-bottom: 10px;
}

.tree summary::marker,
.tree summary::-webkit-details-marker{
  display : none;
}

.tree summary:focus{
  outline : none;
}

.tree summary:focus-visible{
  outline : 1px dotted #000;
}

.tree li::after,
.tree summary::before{
  content       : '';
  display       : block;
  position      : absolute;
  top           : calc(var(--spacing) / 2 - var(--radius));
  left          : calc(var(--spacing) - var(--radius) - 1px);
  width         : calc(2 * var(--radius));
  height        : calc(2 * var(--radius));
  border-radius : 50%;
  background    : #bdbdbd;
}

.tree summary::before{
  z-index    : 1;
  background : #bdbdbd 0 0;
}

.tree details[open] > summary::before{
  background-position : calc(-2 * var(--radius)) 0;
  background-color: #d4e07d;
}

.get-course__link{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  color: #858584;
}
.get-course__link a{
  color: #377DF7;
  margin-left: 7px;
  text-decoration: underline;
}

#openProduct{
  background-color: #f2f2f2;
}