html {
  font-size: 16px;
  scroll-behavior: smooth;
}

*,
:after,
:before {
  box-sizing: border-box;
}

a:active,
a:focus {
  outline: 0;
}

body,
h1,
h3,
p,
ul {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

h2 {
  padding: 0;
  font-weight: 400;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 12px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  cursor: pointer;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #050505;
  min-width: 320px;
  background: #f0f2f5;
  padding-bottom: 20px;
}

a,
button,
input {
  transition: all 0.15s ease-out;
}

.state.content img {
  display: block;
  margin: 15px auto;
  position: relative;
}

.container {
  padding: 0 10px;
}

.header {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header__content {
  max-width: 940px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  height: 56px;
  margin: 0 auto;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .header__content {
    padding: 0 10px;
  }
}

.header__logo {
  width: 40px;
  height: 40px;
  display: block;
}

.header__col,
.header__round,
.header__square {
  display: flex;
  align-items: center;
}

.header__col.logo-col {
  width: 92px;
  margin-right: 10px;
}

.header__col.logo-col .icon {
  opacity: 0.9;
}

.header__col.logo-col .header__round {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .header__col.main-col {
    justify-content: space-between;
    width: calc(100% - 92px);
  }
}

.header__round,
.header__square {
  justify-content: center;
}

.header__round {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #e4e6eb;
  margin-left: 10px;
}

.header__round:hover {
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 400px) {

  .header__round:first-child,
  .header__round:nth-child(3) {
    display: none;
  }
}

.header__round .icon {
  width: 20px;
  height: 20px;
}

.header__square {
  height: 48px;
  border-radius: 8px;
  inset: 4px 0;
  width: 90px;
}

@media (max-width: 800px) {
  .header__square {
    width: 48px;
  }
}

@media (max-width: 600px) {
  .header__square {
    display: none;
  }

  .header__square:last-child {
    display: flex;
  }
}

.header__square .icon {
  width: 28px;
  height: 28px;
  fill: #65676b;
}

.header__square:hover {
  background: rgba(0, 0, 0, 0.05);
}

.state {
  max-width: 700px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin: 16px auto 0;
  width: 100%;
  padding: 16px 20px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}

.state.comments {
  padding-top: 5px;
}

@media (max-width: 768px) {
  .state {
    padding: 15px 20px;
  }
}

.state__comments-wrap {
  margin-top: 20px;
}

#comments_component {
  margin: 0;
  font-family: sans-serif;
  padding-bottom: 15px;
  display: none;
}

#comments_component .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 0 0 20px;
}

#comments_component .component_ava {
  background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 10px 0 0;
}

#comments_component .component_info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin: 0 0 5px;
}

#comments_component .component_info_inner {
  background-color: #ebedf0;
  border-radius: 18px;
  display: inline-block;
  line-height: 16px;
  margin-top: 0;
  min-width: 0;
  overflow: hidden;
}

#comments_component .component_name {
  color: #000;
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 3px 3px;
  text-decoration: none;
  margin-left: 0;
}

#comments_component .component_body {
  width: 100%;
}

.component_reposy {
  font-weight: 600;
  font-size: 12px;
  margin: 6px 0 0 12px;
  display: flex;
  flex-wrap: wrap;
}

.component_reposy b {
  font-weight: 100;
  word-spacing: 0 !important;
  color: #757575;
}

#comments_component a {
  font-weight: 600;
  text-decoration: none;
  color: #232323;
}

.icons {
  white-space: nowrap;
  display: flex;
  margin: 0;
}

#comments_component .component_name p {
  color: #050505;
  font-weight: 700;
  line-height: 1.2308;
  font-size: 0.8125rem;
}

#comments_component p {
  color: #050505;
  font-size: 0.9375rem;
}

#comments_component .component_info_inner {
  background: #f0f2f5;
  padding: 8px 12px;
}

#comments_component .component_ava {
  margin-right: 6px;
}

.component_reposy {
  color: #65676b;
}

.state.content h1,
.state.content h2 {
  margin-bottom: 20px !important;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 24px;
}

.state.content p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.3333;
}

.state.content a {
  color: red;
  text-decoration: none;
}

.state.content a:hover {
  text-decoration: underline;
}

h1,
h2,
h2::after {
  display: block;
}

a {
  font-weight: 700;
}

h1,
h2 {
  line-height: 1.3;
  color: #0a0a0a;
}

h1 {
  width: auto;
  font-size: 26px;
}

h2 {
  font-size: 19px;
  margin: 25px 0 0;
}

.content::after {
  content: "";
  display: block;
  clear: both;
}

:focus {
  outline: 0;
}

button:active,
button:focus {
  outline: 0 !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

@media screen and (max-width: 599px) {

  .content {
    padding: 10px;
  }

  body {
    margin: 0;
  }
}

.plus_list li {
  margin-bottom: 15px;
}

.yellow_block {
  background-color: #f7f4ea;
  border: 2px solid #c33138;
  border-radius: 14px;
  padding: 20px 30px 30px 40px;
}

.yellow_block span,
.state.content .yellow_block p {
  color: #c33138;
  font-size: 20px;
}

.state.content .yellow_block span a {
  color: #c33138;
  text-decoration: underline;
}

.offer_btn {
  width: 100%;
  background-color: #c33138;
  border-radius: 14px;
  border: 1px solid #c33138;
  padding: 15px 10px;
  cursor: pointer;
}

.state.content .offer_btn a {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  text-decoration: none;
}

@media (max-width: 500px) {
  .state.content .offer_btn a {
    font-size: 22px;
  }
}

.state.comments {
  padding-top: 5px;
}

.item * {
  font-family: sans-serif !important;
}

.component_text>img,
.state__comments-wrap {
  margin-top: 20px;
}

#comments_component .component_info_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #f0f2f5;
}

.component_reposy b {
  font-weight: 600;
  word-spacing: 0 !important;
  color: #757575;
  margin-left: 0;
  margin-right: 6px;
}

.component_reposy * {
  color: #65676b;
}

#comments_component a {
  font-weight: 600;
  text-decoration: none;
  color: #232323;
}

.component_reposy nav {
  display: inline;
  font-weight: 600;
  margin: 0 6px 0 0;
}

#comments_component .user_request .component_ava {
  background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  width: 43px;
  height: 37px;
  min-width: 24px;
  min-height: 24px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 10px 0 0;
  min-width: 36px !important;
  min-height: 36px !important;
}

#comments_component p {
  color: #050505;
  font-size: 0.9375rem;
  margin: 0;
}

#comments_component .component_name p {
  color: #050505;
  font-weight: 700;
  line-height: 1.2308;
  font-size: 0.8125rem;
}

#state_close_prev img {
  width: 21px;
}

#state_close_prev img:nth-child(2) {
  position: relative;
  left: -9px;
}

@media screen and (max-width: 340px) {
  .like-hidden {
    display: none;
  }
}

#comments_component {
  margin: 0 0 0-7px;
  padding-bottom: 15px;
  display: none;
}

.component_reposy {
  display: flex;
}

.user_request .component_ava {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
}

#comments_component .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 0 0 20px;
}

#comments_component .component_ava {
  background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 10px 0 0;
}

#comments_component .component_info {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin: 0 0 5px;
}

#comments_component .component_info_inner {
  background-color: #f0f2f5;
  border-radius: 18px;
  display: inline-block;
  line-height: 1.3333;
  margin-top: 0;
  min-width: 0;
  overflow: hidden;
  padding: 12px 22px 7px 12px;
}

#comments_component .component_name {
  color: #000;
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 3px 3px;
  text-decoration: none;
  margin-left: 0 !important;
}

#comments_component .component_licked {
  position: relative;
  bottom: 3px;
  left: 0;
  display: flex;
}

.component_body {
  width: 100%;
}

.component_reposy {
  color: #929292;
  font-weight: 600;
  font-size: 12px;
  margin: 6px 0 0 12px;
  flex-wrap: wrap;
  line-height: 1.5;
}

.component_licked {
  background: #fff;
  border-radius: 10px;
  color: #909192;
  font-size: 11px;
  font-weight: 400;
  height: 20px;
  line-height: 20px;
  padding-right: 4px;
  transform: translateY(-6px);
  z-index: 5;
}

.icons {
  white-space: nowrap;
  display: flex;
  margin: 0;
}

.component_reposy {
  cursor: pointer;
}

.component_reposy nav:hover {
  text-decoration: underline !important;
}

.user_request .component_ava {
  margin-left: 46px !important;
}

#comments_component .component_reposy,
#comments_component .component_text,
.component_licked span {
  font-style: normal;
}

.component_licked {
  display: inline-flex;
  margin-top: 12px;
  margin-bottom: -14px;
  text-align: right;
  float: right;
  background: 0;
  box-shadow: none;
  margin-right: -14px;
}

#state_close,
#state_close_prev {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: end;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding: 10px;
  color: gray;
  margin: -24px -15px 18px;
}

#state_close {
  justify-content: space-around;
  margin: 23px -15px;
}

@media screen and (max-width: 340px) {
  .like-hidden {
    display: none;
  }
}

.item {
  display: flex;
}

.component_ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.component_licked span {
  font-style: normal;
}

.state.content img {
  border-radius: 14px;
}

* {
  font-family: Helvetica, Arial, sans-serif !important;
}

/*span {
  line-height: 1.3333;
}*/

.popular {
  line-height: inherit;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.author__block {
  display: flex;
  gap: 20px;
  align-items: center;
}

.state.content .author__block img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #0866ff;
  outline: 2px solid #fff;
  margin: 0;
}

.author__block-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author__block-name {
  font-size: 20px;
  font-weight: 600;
}

.textarea {
  display: flex;
}

.custom-form {
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
  /* padding: 15px; */
  /* padding-top: 7px; */
  box-sizing: border-box;
  font-family: Tahoma, Arial, Helvetica, sans-serif !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-form__top-field {
  display: flex;
  gap: 12px;
  align-items: center;
}

.custom-form__ava-block {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(118, 118, 118, 0.46);
  transition: 0.3s;
  flex: 0 0 auto;
  border-radius: 50%;
}

.custom-form__ava-block:hover {
  box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.2);
}

.custom-form__ava-input {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  display: none;
}

.custom-form__ava-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  height: 100%;
  width: 100%;
  line-height: 12px;
  cursor: pointer;
  background: rgb(185 185 185 / 26%);
  font-family: inherit;
}

.custom-form__ava-label img {
  /* border-radius: 50%; */
  max-width: 40px;
}

.custom-form__name {
  width: 100%;
  max-width: 350px;
  display: inline-block;
  outline: none;
  border: 1px solid rgba(118, 118, 118, 0.46);
  padding: 12px 16px;
  font-size: 16px !important;
  text-indent: 0;
  box-sizing: border-box;
  font-family: inherit;
  width: 100%;
  display: inline-block;
  outline: none;
  border: 1px solid rgba(118, 118, 118, 0.46);
  padding: 12px 16px;
  font-size: 14px;
  text-indent: 0;
  height: 42px;
  box-sizing: border-box;
  font-family: inherit;
  background: rgb(0 0 0 / 2%);
  border-radius: 20px;
}

.textarea {
  border: 1px solid rgba(118, 118, 118, 0.46);
  border-radius: 20px;
  padding: 10px 12px;
  background: rgb(0 0 0 / 2%);
  height: 42px;
  display: flex;
  align-items: center;
}

.custom-form__message {
  resize: none;
  width: 100%;
  outline: none;
  border: 0;
  /* min-height: 50px; */
  height: 42px;
  text-indent: 0;
  font-size: 14px;
  line-height: unset;
  font-family: inherit;
  box-sizing: border-box;
  font-size: 16px !important;
  background-color: transparent;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    max-height: 0;
  }
}

.hidden {
  animation: fade-out 1s ease;
}

.custom-form__bottom-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-form__btn {
  width: 100%;
  max-width: 300px;
  outline: none;
  padding: 12px 12px;
  background: url('../images/send2.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border: 0;
  color: #7b7b7b;
  font-weight: bold;
  font-size: 15px;
  transition: 300ms ease;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
}

.custom-form__btn:hover {
  transform: scale(1.15);
}

.custom-form__photo-block {
  position: relative;
}

.custom-form__photo-input {
  width: 20px;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: none;
  opacity: 0;
}

.custom-form__photo-label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 100;
  border: none;
  text-decoration: underline;
  color: #2196f3;
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  /* background: url(./assets/plus.png) no-repeat center;
    background-size: contain; */
}

@media (max-width: 480px) {
  .custom-form__bottom-field {
    align-items: center;
  }
}

.custom-form label {
  margin-bottom: 0;
}

.comments__left {
  width: 40px !important;
  min-width: 40px;
}

.comments__left img {
  width: 36px;
  border-radius: 50%;
}

.comments {}

.comments__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0;
}

.comments__left {
  min-width: 50px;
  max-width: 50px;

  margin-right: 8px;
}

.comments__left img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.comment__body {
  padding: 10px;
  border-radius: 20px;
  background-color: #f0f1f6;
}

.comment__name {
  font-weight: 700;
  margin-bottom: 5px;
}

.comment__text {
  line-height: 1.4;
}

.comment__text img {
  width: 100%;
  border-radius: 10px;
}

.like-comm {
  padding-left: 6px;
  padding-right: 6px;
}