/*!************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/scss/index.scss ***!
  \************************************************************************************************************************************************************************************/
@font-face {
  font-family: "Golos Text";
  src: url(../assets/fonts/GolosText-Regular.woff) format("woff"), url(../assets/fonts/GolosText-Regular.woff2) format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Golos Text";
  src: url(../assets/fonts/GolosText-Medium.woff) format("woff"), url(../assets/fonts/GolosText-Medium.woff2) format("woff2");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Golos Text";
  src: url(../assets/fonts/GolosText-DemiBold.woff) format("woff"), url(../assets/fonts/GolosText-DemiBold.woff2) format("woff2");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url(../assets/fonts/Manrope-Medium.woff) format("woff"), url(../assets/fonts/Manrope-Medium.woff2) format("woff2");
  font-style: normal;
  font-weight: 500;
}

/***************************************
****************reset*******************
***************************************/
:root {
  --primary-font: 'Golos Text', sans-serif;
  --green: #234932;
  --dark-green: #1A331D;
  --accent: #E6AD5C;
  --black: #1F1F1F;
  --gray-medium: #8E8E8E;
  --gray-light: #EAEAEA;
  --bg: #F0F2F1;
  --text: 18px;
  --text-2: 15px;
  --h2: 20px;
}

@media (max-width: 1600px) {
  :root {
    --text: 1.13vw;
    --text-2: .94vw;
    --h2: 1.25vw;
  }
}

@media (max-width: 767.9px) {
  :root {
    --text: 4.45vw;
    --text-2: 4.1vw;
    --h2: 5.2vw;
  }
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
  display: block;
}

input,
textarea,
button {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: var(--text);
  line-height: 1.4;
  color: var(--black);
}

html,
body {
  height: 100%;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: var(--text);
  line-height: 1.4;
  color: var(--black);
}

button {
  cursor: pointer;
  background-color: transparent;
}

._wrapper {
  min-height: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

._container {
  margin: 0 auto;
  max-width: 1520px;
  padding: 0 20px;
  box-sizing: content-box;
}

main {
  flex: 1 1 auto;
}

._pb_img,
._pb_img_contain {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

._pb_img_contain {
  object-fit: contain;
}

body._lock {
  overflow: hidden;
}

@media (max-width: 1600px) {
  ._container {
    padding: 0 1.25vw;
  }
}

.wall-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.wall-content__header h1 {
  margin: 0;
}

.summary__video-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  padding: 14px 20px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
  border: 1px solid #2a2a3e;
}

.summary__video-link:hover {
  background: #2a2a3e;
}


.customReact-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.customReact-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.customReact-btn:hover {
  opacity: 1;
}

.customReact-btn--active {
  opacity: 1;
}

.customReact-icon {
  width: 1.7vw;
  /* width: 18px; */
  /* height: 18px; */
}


.select2-user-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
}

.post__txt img {
  max-width: 100% !important;
}

.select2-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.customReact-count {
  font-size: 11px;
  color: #8b8ba7;
}

.summary__video-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.community-join-btn {
  white-space: nowrap;
  transition: all 0.2s ease;
}

.community-join-btn.joined {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

.community-join-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

._btn {
  padding: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: var(--accent);
  border-radius: 16px;
  font-size: 20px;
  border: 1px solid transparent;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  color: #000;
}

._btn._btn-w {
  background: #fff;
}

._btn._btn-w:hover {
  background: #fff;
}

._btn._btn-transparent {
  padding: 0;
  background: transparent;
  border: none;
  transition: opacity 0.3s ease-in-out;
}

._btn._btn-transparent:hover {
  opacity: 0.8;
}

._btn._btn-transparent:hover {
  background: transparent;
}

._btn img {
  width: 10px;
  height: 10px;
}

._btn._btn-sm {
  font-size: 16px;
  gap: 25px;
  padding: 18px 24px;
}

._btn._btn-sm img {
  width: 8px;
  height: 8px;
}

._btn:hover {
  background: transparent;
  border-color: var(--accent);
}

.mini-post__txt {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: var(--text-2);
  line-height: 1.5;
  color: var(--black);
}

.mini-post__stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mini-post__stat-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 14px;
  color: var(--green);
}

.mini-post__stat-item img {
  width: 23px;
  min-width: 23px;
  height: 18px;
}

.mini-post__stat-item span {
  height: fit-content;
}

.mini-post>*:not(:first-child) {
  margin-top: 20px;
}

.mini-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mini-author__img-wrap {
  display: block;
  width: 70px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.mini-author__img-wrap-inner {
  display: block;
  padding-bottom: 100%;
}

.mini-author__content>*:not(:first-child) {
  display: inline-block;
  margin-top: 7px;
}

.mini-author__name {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}

.mini-author__txt {
  font-size: 13px;
  color: var(--green);
}

.mini-author__dot {
  color: var(--gray-medium);
}

.tag {
  /* padding: 10px 15px; */
  padding: 8px 13px;
  border-radius: 40px;
  background: var(--bg);
  color: var(--dark-green);
  /* font-size: 15px; */
  font-size: 12px;
  text-transform: uppercase;
}

.tag--green {
  color: var(--bg);
  background-image: url(../assets/img/wall/tag-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.form {
  width: 48.6%;
}

.form>*:not(:first-child) {
  margin-top: 6px;
}

.form p {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: var(--text-2);
  line-height: 1.5;
  color: var(--gray-medium);
}

.form input {
  padding: 10px 16px;
  outline: none;
  border: 1px solid var(--gray-light);
  background: #F9F9F9;
  border-radius: 12px;
  width: 100%;
}

@media (max-width: 1600px) {
  ._btn {
    padding: 1.5vw;
    gap: 1.88vw;
    border-radius: 1vw;
    font-size: 1.25vw;
    border: 0.06vw solid transparent;
  }

  ._btn img {
    width: 0.63vw;
    height: 0.63vw;
  }

  ._btn._btn-sm {
    font-size: 1vw;
    gap: 1.56vw;
    padding: 1.13vw 1.5vw;
  }

  ._btn._btn-sm img {
    width: 0.5vw;
    height: 0.5vw;
  }

  .mini-post__stat {
    gap: 1vw;
  }

  .mini-post__stat-item {
    gap: 0.31vw;
    font-size: 0.88vw;
  }

  .mini-post__stat-item img {
    width: 1.44vw;
    min-width: 1.44vw;
    height: 1.13vw;
  }

  .mini-post>*:not(:first-child) {
    margin-top: 1.25vw;
  }

  .mini-author {
    gap: 0.94vw;
  }

  .mini-author__img-wrap {
    width: 4.38vw;
    border-radius: 1.25vw;
  }

  .mini-author__content>*:not(:first-child) {
    margin-top: 0.44vw;
  }

  .mini-author__name {
    font-size: 0.94vw;
  }

  .mini-author__txt {
    font-size: 0.81vw;
  }

  .tag {
    padding: 0.63vw 0.94vw;
    border-radius: 2.5vw;
    font-size: 0.94vw;
  }

  .form>*:not(:first-child) {
    margin-top: 0.38vw;
  }

  .form input {
    padding: 0.63vw 1vw;
    border: 0.06vw solid var(--gray-light);
    border-radius: 0.75vw;
  }
}

.header__inner {
  background: var(--dark-green);
  padding: 20px 0;
}

.header__inner .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__inner .menu__list {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__inner .menu__link {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.4;
  color: #fff;
  transition: opacity 0.3s ease-in-out;
}

.header__inner .menu__link:hover {
  opacity: 0.8;
}

.header__inner .menu__link {
  text-transform: uppercase;
}

.header__inner .header__actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__inner .header__search img {
  width: 20px;
  height: 20px;
}

.header__inner .header__actions-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__inner .header__profile img {
  width: 22px;
  height: 21px;
}

.header__inner .header__star img {
  width: 30px;
  height: 30px;
}

.header .menu__icon {
  display: none;
}

.header__inner {
  background-image: url(../assets/img/header/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header__bottom {
  padding: 28px 0;
  background: var(--green);
}

.header__bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 35px;
}

.header__bottom-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.3s ease-in-out;
}

.header__bottom-item:hover {
  opacity: 0.8;
}

.header__bottom-triangle {
  width: 7px;
  height: 14px;
  background-color: var(--accent);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.header__bottom-time,
.header__bottom-txt {
  color: #fff;
}

.header__bottom-txt {
  font-size: 16px;
}

.footer .header__inner {
  padding: 40px 0;
  background-image: none;
}

.wall-sidebar {
  width: 428px;
  min-width: 428px;
  -webkit-align-content: flex-end; 
  -ms-flex-line-pack: end;
  align-content: flex-end; 
  -webkit-align-items: flex-end; 
  -ms-flex-align: end;
  align-items: flex-end;    
}
.wall-sidebar .aside_container {
  position: sticky;
  bottom: 50px;
  align-self: flex-end;
}

.wall-sidebar-sm {
  width: 333px;
  min-width: 333px;
  position: sticky;
  top: 50px;
}

.wall-sidebar-l {
  width: 380px;
  min-width: 380px;
}

.post {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.post>*:not(:first-child) {
  margin-top: 20px;
}

.post__author {
  transition: opacity 0.3s ease-in-out;
}

.post__author:hover {
  opacity: 0.8;
}

.post__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post__author-img-wrap {
  width: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.post__author-img-wrap-inner {
  padding-bottom: 100%;
}

.post__author-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post__author-top p {
  color: var(--black);
  font-size: 18px;
}

.post__photo {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.post__photo-inner {
  padding-bottom: 66.71%;
}

.post__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.post__txt--hidden {
  display: none;
}

._visible .post__txt--hidden {
  display: block;
}

.post__more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
}

._visible .post__more {
  display: none;
}

.post__content>*:not(:first-child) {
  margin-top: 10px;
}

.post__content-inner>*:not(:first-child) {
  margin-top: 10px;
}

.post .header__bottom-triangle {
  display: block;
  transform: rotate(90deg);
  height: 10px;
  width: 6px;
}

.post__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post__actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.post__actions-txt {
  color: var(--gray-medium);
  font-size: 14px;
  transition: color 0.3s ease 0s;
}

.post__reactions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post__like-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post__comments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post__like img,
.post__dislike img {
  filter: grayscale(1);
  transition: all 0.3s;
}

.post__like img:hover,
.post__dislike img:hover {
  filter: grayscale(0);
}

._active .post__like img {
  filter: grayscale(0);
}

._active .post__actions-txt {
  color: var(--black);
}

.post__dislike._active img {
  opacity: 1;
}

.post__dislike img {
  opacity: 0.5;
}

.post__dislike img:hover {
  opacity: 1;
}

.post__views img:hover {
  opacity: 0.5;
}

.post__like img,
.post__dislike img {
  width: 40px;
}

.post__comments img {
  width: 35px;
}

.post__views img {
  width: 30px;
}

.post__views {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1600px) {
  .header__inner {
    padding: 1.25vw 0;
  }

  .header__inner .menu__list {
    gap: 2.19vw;
  }

  .header__inner .header__actions {
    gap: 2.5vw;
  }

  .header__inner .header__search img {
    width: 1.25vw;
    height: 1.25vw;
  }

  .header__inner .header__actions-inner {
    gap: 0.63vw;
  }

  .header__inner .header__profile img {
    width: 1.38vw;
    height: 1.31vw;
  }

  .header__inner .header__star img {
    width: 1.88vw;
    height: 1.88vw;
  }

  .header__bottom {
    padding: 1.75vw 0;
  }

  .header__bottom-container {
    gap: 2.1vw;
  }

  .header__bottom-item {
    gap: 1vw;
  }

  .header__bottom-triangle {
    width: 0.44vw;
    height: 0.88vw;
  }

  .header__bottom-txt {
    font-size: 1vw;
  }

  .footer .header__inner {
    padding: 2.5vw 0;
  }

  .wall-sidebar {
    width: 26.75vw;
    min-width: 26.75vw;
    top: 3.13vw;
  }

  .wall-sidebar-sm {
    width: 20.81vw;
    min-width: 20.81vw;
    top: 3.13vw;
  }

  .wall-sidebar-l {
    width: 23.75vw;
    min-width: 23.75vw;
  }

  .post {
    padding: 1.88vw;
    border-radius: 1.25vw;
  }

  .post>*:not(:first-child) {
    margin-top: 1.88vw;
  }

  .post__author {
    gap: 0.63vw;
  }

  .post__author-img-wrap {
    width: 3.5vw;
    border-radius: 1.25vw;
  }

  .post__author-top {
    gap: 0.63vw;
  }

  .post__author-top p {
    font-size: 1.13vw;
  }

  .post__photo {
    border-radius: 1.25vw;
  }

  .post__tags {
    gap: 0.63vw;
  }

  .post__more {
    gap: 0.5vw;
    font-size: 0.94vw;
  }

  .post__content>*:not(:first-child) {
    margin-top: 1.25vw;
  }

  .post__content-inner>*:not(:first-child) {
    margin-top: 0.63vw;
  }

  .post .header__bottom-triangle {
    height: 0.63vw;
    width: 0.38vw;
  }

  .post__actions {
    gap: 2.5vw;
  }

  .post__actions-txt {
    font-size: 0.88vw;
  }

  .post__reactions {
    gap: 0.5vw;
  }

  .post__like-wrap {
    gap: 0.63vw;
  }

  .post__comments {
    gap: 0.5vw;
  }

  .post__like img,
  .post__dislike img {
    width: 2.5vw;
  }

  .post__comments img {
    width: 2.19vw;
  }

  .post__views img {
    width: 1.88vw;
  }

  .post__views {
    gap: 0.5vw;
  }
}

body {
  background: var(--bg);
  background-image: url(../assets/img/page/bg.png);
  /* background-repeat: no-repeat; */
  /* background-size: cover;   */
  /* background-attachment: fixed; */
}

.main {
  /*background: var(--bg);
  background-image: url(../assets/img/page/bg.png);
  background-repeat: no-repeat;
  background-size: cover;*/
}

.wall {
  display: flex;
  justify-content: space-between;
  gap: 47px;
  padding: 50px 20px;
  -webkit-align-content: stretch;
  align-content: stretch;
  
}

.wall__inner,
.wall-content {
  flex-grow: 1;
}

.h1 {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--black);
  text-transform: uppercase;
}

.h2 {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.4;
  color: var(--black);
}

.wall-sidebar>.aside_container>*:not(:first-child) {
  margin-top: 30px;
}

.wall-sidebar ._btn {
  width: 100%;
}

.wall-sidebar__posts {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  width: 100%;
}

.wall-sidebar__posts>*:not(:first-child) {
  margin-top: 30px;
}

.wall-sidebar__posts-list>*:not(:last-child) {
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 20px;
}

.wall-sidebar__posts-list>*:not(:first-child) {
  margin-top: 20px;
}

.wall-content>*:not(:first-child) {
  margin-top: 30px;
}

.wall-sidebar__posts-list a:hover {
  text-decoration: underline;
}
.wall-sidebar__posts-list a {
  color:var(--black);
}

.wall-content__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 15px; */
  gap: 9px;
}

.wall-content__inner>*:not(:first-child) {
  margin-top: 30px;
}

.wall-content__btn-wrap {
  display: flex;
  justify-content: center;
}

.wall-content__btn-wrap button {
  padding: 30px 40px;
}

.map-sm {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 17px;
}

.map-sm__inner {
  padding-bottom: 60.75%;
}

.map-sm ._btn {
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  z-index: 2;
  width: 92%;
  bottom: 17px;
  left: 17px;
}

.day-summary__item>*:not(:first-child) {
  margin-top: 20px;
}

.day-summary__item .h2 {
  color: var(--green);
}

.day-summary__list>*:not(:first-child) {
  margin-top: 20px;
}

.day-summary__list>li {
  padding-left: 22px;
  position: relative;
}

.day-summary__list>li::before {
  content: "";
  display: block;
  position: absolute;
  left: 8px;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
}

.summary__inner {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.summary__inner>*:not(:first-child) {
  margin-top: 50px;
}

.summary__list>*:not(:first-child) {
  margin-top: 40px;
}

.summary__item>*:not(:first-child) {
  margin-top: 18px;
}

.summary__item-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.summary__item-inner._transparent .summary__time {
  color: #CECECE;
}

.summary__item-line {
  flex-grow: 1;
  height: 1px;
  background: var(--gray-light);
}

.summary__time {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.4;
  color: var(--green);
}

.sections {
  padding: 50px 0;
}

.sections>*:not(:first-child) {
  margin-top: 47px;
}

.articles__container>*:not(:first-child) {
  margin-top: 30px;
}

.articles__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.articles__list {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.articles__item {
  width: 363px;
  overflow: hidden;
  border-radius: 20px;
}

.articles__img-wrap {
  width: 100%;
  position: relative;
}

.articles__img-wrap-inner {
  padding-bottom: 65.29%;
}

.articles__content {
  padding: 20px;
  background: #fff;
}

.articles__content>*:not(:first-child) {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-light);
}

.articles__time {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: var(--text-2);
  line-height: 1.5;
  color: var(--gray-medium);
}

.popular__content>*:not(:first-child) {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.popular__members {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popular__members-txt {
  font-size: 18px;
  color: #727272;
}

.popular__members-quant {
  display: flex;
  align-items: center;
  gap: 10px;
}

.popular__members-quant p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: var(--h2);
  line-height: 1.4;
  color: var(--green);
}

.popular__members-quant img {
  width: 24px;
}

.popular__nav {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  pointer-events: all;
  position: relative;
}

.popular__nav.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.6;
}

.popular__nav img {
  width: 20px;
  height: 20px;
}

.popular__navigation {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 100%;
  pointer-events: none;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.popular__prev {
  left: -22px;
}

.popular__next {
  right: -22px;
  transform: rotate(180deg);
}

.popular__swiper-wrap {
  position: relative;
}

.communities__form {
  width: 100%;
  position: relative;
}

.communities__form input {
  width: 100%;
  background: #fff;
  padding: 16px 16px 16px 44px;
  border-radius: 12px;
  outline: none;
}

.communities__form img {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}

.communities__item {
  display: block;
  width: 351px;
}

.communities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
}

.community {
  margin-top: 50px;
}

.community__container-inner {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
}

.community__cover {
  width: 100%;
  position: relative;
}

.community__cover-inner {
  padding-bottom: 13.95%;
}

.community__avatar {
  width: 110px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  min-width: 110px;
}

.community__avatar-inner {
  position: relative;
  padding-bottom: 100%;
}

.community__info {
  background: #fff;
  padding: 35px 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.community__info-main {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.community__title {
  font-size: 28px;
  font-weight: 500;
}

.community__info-inner>*:not(:first-child) {
  /* margin-top: 30px; */
}

.community__info-content {
  display: flex;
  gap: 22px;
}

.community__info-content>*>*:not(:first-child) {
  margin-top: 10px;
}

.lk-statistic__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lk-statistic__icon {
  width: 44px;
  height: 44px;
  background: #F8F8F8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.lk-statistic__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 26%;
}

.lk-statistic__title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.lk-statistic__name {
  font-size: 14px;
  color: #727272;
  text-align: center;
}

.lk__inner {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-top: 50px;
}

.lk__inner>*:not(:first-child) {
  margin-top: 15px;
}

.lk__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lk__main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.lk__avatar {
  width: 165px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.lk__avatar-inner {
  padding-bottom: 100%;
}

.lk__avatar-wrap {
  position: relative;
}

.lk__edit {
  transition: opacity 0.3s ease-in-out;
}

.lk__edit:hover {
  opacity: 0.8;
}

.lk__edit {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk__edit img {
  width: 21px;
  height: 20px;
}

.lk__forms {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.lk__forms ._btn {
  display: none;
}

.lk__calendar::-webkit-calendar-picker-indicator {
  background-image: url(../assets/img/calendar.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

@media (max-width: 1600px) {
  .wall {
    gap: 2.94vw;
    padding: 3.13vw 1.25vw;
  }

  .h1 {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 1.5vw;
    line-height: 1.4;
    color: var(--black);
  }
}

@media (max-width: 1600px) {
  .wall-sidebar>*:not(:first-child) {
    margin-top: 1.88vw;
  }

  .wall-sidebar__posts {
    padding: 2.19vw 1.88vw;
    border-radius: 1.25vw;
  }

  .wall-sidebar__posts>*:not(:first-child),
  .wall-sidebar__posts .day-summary__wrap>*:not(:first-child) {
    margin-top: 1.88vw;
  }

  .wall-sidebar__posts-list>*:not(:last-child) {
    border-bottom: 0.06vw solid var(--gray-light);
    padding-bottom: 1.25vw;
  }

  .wall-sidebar__posts-list>*:not(:first-child) {
    margin-top: 1.25vw;
  }

  .wall-content>*:not(:first-child) {
    margin-top: 1.88vw;
  }

  .wall-content__tags {
    gap: 0.94vw;
  }

  .wall-content__inner>*:not(:first-child) {
    margin-top: 1.88vw;
  }

  .wall-content__btn-wrap button {
    padding: 1.88vw 2.5vw;
  }

  .map-sm {
    border-radius: 1.25vw;
    padding: 1.06vw;
  }

  .map-sm ._btn {
    bottom: 1.06vw;
    left: 1.06vw;
  }

  .day-summary__item>*:not(:first-child) {
    margin-top: 1.25vw;
  }

  .day-summary__list>*:not(:first-child) {
    margin-top: 1.25vw;
  }

  .day-summary__list>li {
    padding-left: 1.38vw;
  }

  .day-summary__list>li::before {
    left: 0.5vw;
    top: 0.56vw;
    width: 0.31vw;
    height: 0.31vw;
  }

  .summary__inner {
    padding: 1.88vw;
    border-radius: 1.25vw;
  }

  .summary__inner>*:not(:first-child) {
    margin-top: 3.13vw;
  }

  .summary__list>*:not(:first-child) {
    margin-top: 2.5vw;
  }

  .summary__item>*:not(:first-child) {
    margin-top: 1.13vw;
  }

  .summary__item-inner {
    gap: 1.13vw;
  }

  .summary__item-line {
    height: 0.06vw;
  }

  .sections {
    padding: 3.13vw 0;
  }

  .sections>*:not(:first-child) {
    margin-top: 2.94vw;
  }

  .articles__container>*:not(:first-child) {
    margin-top: 1.88vw;
  }

  .articles__list {
    gap: 1.5vw;
  }

  .articles__item {
    width: 22.69vw;
    border-radius: 1.25vw;
  }

  .articles__content {
    padding: 1.25vw;
  }

  .articles__content>*:not(:first-child) {
    margin-top: 0.94vw;
    padding-top: 0.63vw;
    border-top: 0.06vw solid var(--gray-light);
  }

  .popular__content>*:not(:first-child) {
    margin-top: 1.25vw;
  }

  .popular__members {
    gap: 0.75vw;
  }

  .popular__members-txt {
    font-size: 1.13vw;
  }

  .popular__members-quant {
    gap: 0.63vw;
  }

  .popular__members-quant img {
    width: 1.5vw;
  }

  .popular__nav {
    width: 2.75vw;
    height: 2.75vw;
    border-radius: 0.75vw;
  }

  .popular__nav img {
    width: 1.25vw;
    height: 1.25vw;
  }

  .popular__prev {
    left: -1.38vw;
  }

  .popular__next {
    right: -1.38vw;
  }

  .communities__form input {
    padding: 1vw 1vw 1vw 2.75vw;
    border-radius: 0.75vw;
  }

  .communities__form img {
    width: 1.25vw;
    height: 1.25vw;
    left: 1vw;
  }

  .communities__item {
    width: 21.94vw;
  }

  .communities__list {
    gap: 2.38vw;
  }

  .community {
    margin-top: 3.13vw;
  }

  .community__container-inner {
    border-radius: 1.25vw;
  }

  .community__avatar {
    width: 6.88vw;
  }

  .community__info {
    padding: 2.19vw 1.88vw;
  }

  .community__info-main {
    gap: 1.88vw;
  }

  .community__title {
    font-size: 1.75vw;
  }

  .community__info-inner>*:not(:first-child) {
    margin-top: 1.88vw;
  }

  .community__info-content {
    gap: 1.38vw;
  }

  .community__info-content>*>*:not(:first-child) {
    margin-top: 0.63vw;
  }

  .lk-statistic__list {
    gap: 2.5vw;
  }

  .lk-statistic__icon {
    width: 2.75vw;
    height: 2.75vw;
    font-size: 1.56vw;
  }

  .lk-statistic__item {
    gap: 0.5vw;
  }

  .lk-statistic__title {
    font-size: 1.13vw;
  }

  .lk-statistic__name {
    font-size: 0.88vw;
  }

  .lk__inner {
    padding: 1.88vw;
    border-radius: 1.25vw;
    margin-top: 3.13vw;
  }

  .lk__inner>*:not(:first-child) {
    margin-top: 0.94vw;
  }

  .lk__main {
    gap: 2.5vw;
  }

  .lk__avatar {
    width: 10.31vw;
  }

  .lk__edit {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 0.63vw;
  }

  .lk__edit img {
    width: 1.31vw;
    height: 1.25vw;
  }

  .lk__forms {
    gap: 1.25vw 1.88vw;
  }

  .lk__calendar::-webkit-calendar-picker-indicator {
    width: 1.5vw;
    height: 1.5vw;
  }
}

@media (max-width: 767.9px) {
  .wall-sidebar {
    order: 1;
  }
  ._wrapper {
    overflow: hidden;
  }

  .header .menu__icon {
    display: block;
    position: relative;
    cursor: pointer;
    width: 6vw;
    height: 4vw;
  }

  .header .menu__icon span,
  .header .menu__icon::before,
  .header .menu__icon::after {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 10%;
    background: #fff;
    transition: all 0.3s ease 0s;
  }

  .header .menu__icon::before,
  .header .menu__icon::after {
    content: "";
    transform-origin: left;
  }

  .header .menu__icon::before {
    top: 0;
  }

  .header .menu__icon::after {
    bottom: 0;
  }

  .header .menu__icon span {
    top: 50%;
    transform: translateY(-50%) scale(1);
  }

  .header .menu__list {
    padding: 5vw 0;
    position: fixed;
    z-index: 15;
    top: 14.6vw;
    left: 0;
    transition: transform 0.3s ease 0s;
    transform: translateX(-120%);
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    gap: 4.19vw;
  }

  .header .menu._active .menu__list {
    transform: translateX(0);
  }

  .header .menu._active .menu__icon span {
    transform: translateY(-50%) scale(0);
  }

  .header .menu._active .menu__icon::before {
    transform: rotate(45deg);
    left: 0.5vw;
    top: -0.25vw;
  }

  .header .menu._active .menu__icon::after {
    transform: rotate(-45deg);
    left: 0.4vw;
    bottom: -0.25vw;
  }

  .header__inner {
    padding: 5.25vw 0;
  }

  .header__inner .header__search img {
    width: 5.25vw;
    height: 5.25vw;
  }

  .header__inner .header__profile img {
    width: 5.2vw;
    height: 5.2vw;
  }

  .header__inner .header__star img {
    width: 7.5vw;
    height: 7.5vw;
  }

  .header__inner .header__actions {
    gap: 3.1vw;
  }

  .header__inner .header__actions-inner {
    gap: 2.63vw;
  }

  .header__bottom-txt {
    font-size: 4vw;
  }

  .header__bottom-triangle {
    width: 2.44vw;
    min-width: 2.44vw;
    height: 3.6vw;
  }

  .header__bottom-item {
    gap: 4vw;
  }

  .header__bottom-container {
    flex-wrap: nowrap;
  }

  .header__bottom-time,
  .header__bottom-txt {
    white-space: nowrap;
  }

  .header__bottom {
    padding: 5vw 0;
    overflow: auto;
  }

  .header__bottom-container>*:last-child {
    padding-right: 1vw;
  }

  .wall {
    flex-direction: column;
    gap: 8.94vw;
    padding: 7.13vw 1.25vw;
  }

  ._btn img {
    width: 2.2vw;
    height: 2.2vw;
  }

  .wall-sidebar {
    width: 100%;

  }

  ._btn {
    padding: 5.5vw;
    gap: 5.2vw;
    border-radius: 3vw;
    font-size: 4vw;
    border: 0.1vw solid transparent;
  }

  .wall-sidebar>*:not(:first-child) {
    margin-top: 9.3vw !important;
  }

  .h1 {
    font-size: 5.2vw;
  }

  .wall-sidebar__posts {
    background: transparent;
    padding: 0;
    border-radius: 2.25vw;
  }

  .wall-sidebar__authors .wall-sidebar__posts-list {
    display: block;
    background: #fff;
    padding: 4.2vw;
    border-radius: 5vw;
  }

  .wall-sidebar__authors .wall-sidebar__posts-list>*:not(:last-child) {
    border-bottom: 0.3vw solid var(--gray-light);
    padding-bottom: 5vw;
  }

  .wall-sidebar__authors .wall-sidebar__posts-list>*:not(:first-child) {
    margin-top: 5vw;
  }

  .wall-sidebar__authors .wall-sidebar__posts-list .mini-author {
    width: 100%;
  }

  .wall-sidebar__authors .wall-sidebar__posts-list .mini-author__name {
    font-size: 3.94vw;
  }

  .wall-sidebar__posts>*:not(:first-child) {
    margin-top: 2.88vw;
  }

  .mini-post>*:not(:first-child) {
    margin-top: 5.25vw;
  }

  .mini-post__stat-item {
    gap: 1.5vw;
    font-size: 3.6vw;
  }

  .mini-post__stat-item img {
    width: 5.44vw;
    min-width: 5.44vw;
    height: 4.13vw;
  }

  .mini-post__stat {
    gap: 8vw;
  }

  .wall-sidebar__posts-list>*:not(:last-child) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .wall-sidebar__posts-list>*:not(:first-child) {
    margin-top: 0;
  }

  .mini-post {
    width: 70.5vw;
    min-width: 70.5vw;
    padding: 4.5vw;
    border-radius: 5vw;
    background: #fff;
  }

  .wall-sidebar__posts-list {
    display: flex;
    gap: 4.6vw;
    overflow: auto;
  }

  .tag {
    padding: 2.8vw 3.5vw;
    border-radius: 6.5vw;
    font-size: 3.94vw;
  }

  .wall-content__tags {
    max-width: 100%;
    flex-wrap: nowrap;
    overflow: auto;
    gap: 2.94vw;
  }

  .wall-content__tags .tag {
    white-space: nowrap;
  }

  .wall__content {
    width: 100%;
  }

  .wall-content>*:not(:first-child) {
    margin-top: 8.88vw;
  }

  .post {
    padding: 3.5vw;
    border-radius: 3.25vw;
  }

  .post__author-img-wrap {
    width: 14.5vw;
    border-radius: 5.25vw;
  }

  .post__author {
    gap: 2.3vw;
  }

  .post__author-top p {
    font-size: 4.6vw;
  }

  .mini-author__dot {
    font-size: 5vw;
    line-height: 0.5;
  }

  .post__author-top {
    gap: 1.63vw;
  }

  .mini-author__txt {
    font-size: 3.2vw;
  }

  .post>*:not(:first-child) {
    margin-top: 7vw;
  }

  .post__photo {
    border-radius: 5.25vw;
  }

  .post__tags {
    gap: 1.3vw;
  }

  .post__more {
    gap: 1.5vw;
    font-size: 3.8vw;
  }

  .post .header__bottom-triangle {
    height: 2.63vw;
    width: 1.38vw;
  }

  .post__actions-txt {
    font-size: 4vw;
  }

  .post__like img,
  .post__dislike img {
    width: 7.8vw;
  }

  .post__like-wrap {
    gap: 2.63vw;
  }

  .post__reactions {
    gap: 2.5vw;
  }

  .post__actions {
    gap: 6.5vw;
  }

  .post__comments img {
    width: 7.8vw;
  }

  .post__comments {
    gap: 1.5vw;
  }

  .post__views img {
    width: 4.88vw;
  }

  .post__views {
    gap: 1.5vw;
  }

  .wall-content__inner>*:not(:first-child) {
    margin-top: 5.88vw;
  }

  .wall-content__btn-wrap button {
    padding: 5.88vw 7.5vw;
  }

  .post__content>*:not(:first-child) {
    margin-top: 5.25vw;
  }

  .mini-author {
    gap: 2.94vw;
    width: 46vw;
    min-width: 46vw;
  }

  .mini-author__img-wrap {
    width: 15.38vw;
    min-width: 15.38vw;
    border-radius: 4.25vw;
  }

  .mini-author__name {
    font-size: 2.94vw;
    white-space: nowrap;
  }

  .mini-author__content>*:not(:first-child) {
    margin-top: 1.44vw;
  }

  .footer .header__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 7.5vw;
  }

  .footer .menu__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 7.6vw;
  }

  .footer .header__search {
    display: none;
  }

  .footer .header__inner {
    padding: 5.5vw 0;
  }

  .map-sm {
    border-radius: 3.25vw;
    padding: 3.06vw;
  }

  .map-sm ._btn {
    bottom: 3.06vw;
    left: 3.06vw;
    width: 93%;
  }

  .day-summary {
    padding: 0;
  }

  .wall-sidebar__posts .day-summary__wrap>*:not(:first-child) {
    margin-top: 0;
  }

  .day-summary__wrap {
    display: flex;
    gap: 4.5vw;
    overflow: auto;
  }

  .day-summary__item>*:not(:first-child) {
    margin-top: 3.25vw;
  }

  .day-summary__list>li {
    padding-left: 5.38vw;
  }

  .day-summary__list>*:not(:first-child) {
    margin-top: 4vw;
  }

  .day-summary__list>li::before {
    left: 0.6vw;
    top: 2.4vw;
    width: 1.1vw;
    height: 1.1vw;
  }

  .day-summary__item {
    background: #fff;
    padding: 4vw;
    border-radius: 5vw;
    width: 81vw;
    min-width: 81vw;
  }

  .summary__inner {
    padding: 8vw 3.88vw;
    border-radius: 5.25vw;
  }

  .summary__item-inner {
    gap: 3.13vw;
    align-items: flex-start;
  }

  .summary__item-inner._transparent {
    align-items: center;
  }

  .summary__inner>*:not(:first-child) {
    margin-top: 7.13vw;
  }

  .map-sm__inner {
    padding-bottom: 43.75%;
  }

  .summary__list>*:not(:first-child) {
    margin-top: 3.5vw;
  }

  .summary__item>*:not(:first-child) {
    margin-top: 4.13vw;
  }

  .sections {
    padding: 6.13vw 0;
  }

  .sections>*:not(:first-child) {
    margin-top: 11.94vw;
  }

  .articles__container>*:not(:first-child) {
    margin-top: 3.88vw;
  }

  .articles__list {
    overflow: auto;
    gap: 3.5vw;
  }

  .articles__item {
    width: 73.69vw;
    min-width: 73.69vw;
    border-radius: 3.25vw;
  }

  .articles__content {
    padding: 3.25vw;
  }

  .articles__content>*:not(:first-child) {
    margin-top: 1.94vw;
    padding-top: 2.63vw;
    border-top: 0.3vw solid var(--gray-light);
  }

  .popular__nav {
    width: 6.75vw;
    height: 6.75vw;
    border-radius: 1.75vw;
  }

  .popular__nav img {
    width: 3.25vw;
    height: 3.25vw;
  }

  .popular__members-quant {
    gap: 2.63vw;
  }

  .popular__members-quant img {
    width: 6.2vw;
  }

  .popular__members-txt {
    font-size: 4.6vw;
  }

  .popular__members {
    gap: 1.75vw;
  }

  .popular__nav {
    display: none;
  }

  .popular__slide {
    border-radius: 6.25vw;
    display: block;
    min-width: auto;
  }

  .popular__content>*:not(:first-child) {
    border: none;
  }

  .communities__form img {
    width: 5.25vw;
    height: 5.25vw;
    left: 2.5vw;
  }

  .communities__item {
    width: 100%;
  }

  .communities__form input {
    padding: 4vw 4vw 4vw 11.75vw;
    border-radius: 3.75vw;
  }

  .communities__list {
    gap: 6vw;
  }

  .community {
    margin-top: 5.13vw;
  }

  .community__cover-inner {
    padding-bottom: 36.95%;
  }

  .community__info {
    padding: 4.19vw 2.88vw;
    gap: 5vw;
    flex-direction: column;
    align-items: stretch;
  }

  .community__avatar {
    width: 16.88vw;
  }

  .community__info-main {
    gap: 4.88vw;
  }

  .community__title {
    font-size: 4.2vw;
  }

  .community__info-content>*>*:not(:first-child) {
    margin-top: 1.63vw;
  }

  .community__info-content {
    gap: 2.38vw;
  }

  .community .popular__members-txt {
    font-size: 3.8vw;
  }

  .community__container-inner {
    border-radius: 3.25vw;
  }

  .lk-statistic {
    background: #fff;
    padding: 4vw;
    border-radius: 5.25vw;
  }

  .lk-statistic__icon {
    width: 11.75vw;
    height: 11.75vw;
    font-size: 7.56vw;
  }

  .lk-statistic__title {
    font-size: 4.7vw;
  }

  .lk-statistic__name {
    font-size: 3.88vw;
  }

  .lk-statistic__list {
    gap: 6.5vw;
    justify-content: center;
  }

  .lk-statistic__item {
    gap: 1.5vw;
  }

  .lk__inner>*:not(:first-child) {
    margin-top: 2.94vw;
  }

  .lk__main {
    flex-direction: column;
    align-items: flex-start;
  }

  .lk__inner {
    padding: 3.2vw;
    border-radius: 3.25vw;
    margin-top: 5.13vw;
  }

  .lk__avatar {
    width: 33.31vw;
  }

  .lk__edit {
    width: 10.5vw;
    height: 10.5vw;
    border-radius: 2.63vw;
  }

  .lk__edit img {
    width: 5.31vw;
    height: 5.25vw;
  }



  ._btn._btn-sm {
    font-size: 2.2vw;
    gap: 1.56vw;
    padding: 2.13vw 3.5vw;
  }

  .form {
    width: 100%;
  }

  .form>*:not(:first-child) {
    margin-top: 2.38vw;
  }

  .form input {
    padding: 2.63vw 4vw;
    border: 0.2vw solid var(--gray-light);
    border-radius: 3.75vw;
  }

  .lk__forms {
    gap: 6vw;
  }

  .lk__calendar::-webkit-calendar-picker-indicator {
    width: 6vw;
    height: 6vw;
  }

  .lk__intro ._btn {
    display: none;
  }

  .lk__forms ._btn {
    display: flex;
    width: 100%;
  }



}


.auth {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth__avatar-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.auth__avatar-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #16213e;
  border: 2px solid #2d2d4a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 4px;
}

.auth__avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth__avatar-placeholder {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.auth__avatar-btn {
  background: #ffffff;
  border: 1px solid #2d2d4a;
  border-radius: 8px;
  padding: 8px 16px;
  color: #8b8ba7;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth__avatar-btn:hover {
  border-color: #4a7aff;
  color: #4a7aff;
}

.auth__avatar-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.auth__avatar-input {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.modal__content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.modal__close:hover {
  opacity: 1;
}

.modal__close img {
  width: 16px;
  height: 16px;
}

.modal__title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 24px;
  line-height: 1.4;
}

.modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal__btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.modal__btn--primary {
  background: #2b6ef0;
  color: #fff;
}

.modal__btn--primary:hover {
  background: #1a5ad9;
}

.modal__btn--secondary {
  background: #f0f2f5;
  color: #2b6ef0;
  border: 1px solid #d1d5db;
}

.modal__btn--secondary:hover {
  background: #e5e7eb;
}

.auth__avatar-remove {
  background: none;
  border: none;
  color: #ff4757;
  font-size: 12px;
  cursor: pointer;
  margin-top: 4px;
}

.editor-layout {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  min-height: calc(100vh - 200px);
}

.editor-main {
  flex: 1;
  min-width: 0;
}

.editor-sidebar {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.editor-card {
  background: #ffffff;
  border: 1px solid #dadde6;
  border-radius: 12px;
  padding: 20px;
}

.editor-title-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dadde6;
  border-radius: 8px;
  padding: 14px 16px;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  outline: none;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.editor-title-input:focus {
  border-color: #4a7aff;
}

.editor-title-input::placeholder {
  color: #9ca3af;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 0px !important;
  padding: 3px 4px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:active {
  background: transparent !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
}

.editor-section-title {
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Select2 */
.select2-container--default .select2-selection--multiple {
  background: #ffffff;
  border: 1px solid #dadde6;
  border-radius: 8px;
  min-height: 42px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #4a7aff;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 13px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #ffffff;
  margin-right: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #ffcccc;
}

.select2-container--default .select2-search--inline .select2-search__field {
  color: #000000;
}

.select2-dropdown {
  border: 1px solid #dadde6;
  border-radius: 8px;
}

.select2-results__option {
  padding: 8px 12px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #4a7aff;
}

/* Flatpickr */
.flatpickr-calendar {
  background: #ffffff;
  border: 1px solid #dadde6;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flatpickr-day.selected {
  background: #4a7aff;
  border-color: #4a7aff;
}

.flatpickr-day {
  color: #000000 !important;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  color: #000000 !important;
}

.flatpickr-time input.flatpickr-hour {
  color: #000000 !important;
}

.flatpickr-day {
  color: #000000 !important;
}

.flatpickr-time {
  color: #000000 !important;
}

.datetime-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dadde6;
  border-radius: 8px;
  padding: 12px 16px;
  color: #000000;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
}

.datetime-input:focus {
  border-color: #4a7aff;
}

.schedule-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.schedule-toggle input[type="checkbox"] {
  accent-color: #4a7aff;
  width: 16px;
  height: 16px;
}

.schedule-toggle label {
  color: #374151;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  accent-color: #4a7aff;
  width: 16px;
  height: 16px;
}

.checkbox-label {
  color: #374151;
  font-size: 14px;
}

.editor-tip-content {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.editor-tip-content p {
  margin-bottom: 10px;
}

.editor-tip-content ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.editor-tip-content li {
  margin-bottom: 4px;
}

.preview-mode-btn {
  background: #f3f4f6;
  border: 1px solid #dadde6;
  color: #6b7280;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preview-mode-btn.active {
  background: #4a7aff;
  border-color: #4a7aff;
  color: #ffffff;
}

.preview-block {
  background: #f9fafb;
  border: 1px solid #dadde6;
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
  max-height: 300px;
  overflow-y: auto;
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}

.preview-feed .preview-feed-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.preview-feed .preview-feed-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.preview-feed .preview-feed-more {
  color: #4a7aff;
  font-size: 13px;
  margin-top: 8px;
}

.preview-feed .preview-feed-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.preview-page {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

.preview-page h1 {
  font-size: 24px;
  color: #111827;
  margin-bottom: 16px;
}

.preview-page h2 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 12px;
}

.preview-page h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 10px;
}

.preview-page p {
  margin-bottom: 12px;
}

.preview-page img {
  max-width: 100%;
  border-radius: 8px;
  margin: 10px 0;
}

.preview-page blockquote {
  border-left: 3px solid #4a7aff;
  padding-left: 16px;
  color: #6b7280;
  margin: 12px 0;
}

.preview-page ul,
.preview-page ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.preview-page code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

.preview-page pre {
  background: #f3f4f6;
  padding: 12px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 12px 0;
}

.editor-submit {
  width: 100%;
  padding: 14px;
  background: #4a7aff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.editor-submit:hover {
  background: #3d6ae8;
}

.editor-submit-wrap {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .editor-layout {
    flex-direction: column;
  }

  .editor-sidebar {
    width: 100%;
  }
}

.auth__avatar-remove:hover {
  text-decoration: underline;
}

.auth__inner {
  background: #f4f7f5;
  border: 1px solid #2d2d4a;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
}

.auth__title {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

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

.auth__form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth__label {
  color: #8b8ba7;
  font-size: 14px;
  font-weight: 500;
}

.auth__input {
  background: #f4f7f5;
  border: 1px solid #2d2d4a;
  border-radius: 8px;
  padding: 12px 16px;
  color: #5b5858;
  font-size: 16px;
  transition: border-color 0.3s ease;
  outline: none;
}

.auth__input:focus {
  border-color: #4a7aff;
}

.auth__input--error {
  border-color: #ff4757;
}

.auth__input::placeholder {
  color: #5a5a7a;
}

.auth__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238b8ba7' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.auth__password-wrap {
  position: relative;
}

.auth__password-wrap .auth__input {
  width: 100%;
  padding-right: 50px;
}

.auth__password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth__password-toggle img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.auth__password-toggle:hover img {
  opacity: 1;
}

.auth__error {
  color: #ff4757;
  font-size: 12px;
}

.auth__agreement {
  margin-top: 10px;
}

.auth__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.auth__checkbox {
  display: none;
}

.auth__checkbox-custom {
  min-width: 20px;
  height: 20px;
  border: 2px solid #2d2d4a;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.auth__checkbox:checked+.auth__checkbox-custom {
  background: #4a7aff;
  border-color: #4a7aff;
}

.auth__checkbox:checked+.auth__checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth__checkbox-text {
  color: #8b8ba7;
  font-size: 14px;
  line-height: 1.4;
}

.auth__link {
  color: #4a7aff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth__link:hover {
  color: #6b9aff;
  text-decoration: underline;
}

.auth__submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.auth__footer {
  text-align: center;
  margin-top: 10px;
}

.auth__footer-text {
  color: #8b8ba7;
  font-size: 14px;
}

/* Адаптивность */
@media (max-width: 576px) {
  .auth__inner {
    padding: 24px;
  }

  .auth__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.post_title {
  font-size: 1.8em;
  margin: 0;
  font-weight: 400;
  color: #1F1F1F;
}

.post_title a {
  color: #1F1F1F;
}

.post_title:hover {
  text-decoration: underline;
}

.post__author-top a {
  color: #1F1F1F;
}

.post__content-inner {
  max-height: 40vh;
  overflow: hidden;
  position: relative;
}

.post__content-inner.expanded {
  max-height: none;
  overflow: visible;
}

.post__content-inner:not(.expanded) {
  cursor: pointer;
}

.post__content-inner:not(.expanded):after {
  content: '';
  display: block;
  height: 30%;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  left: 0;
  cursor: pointer;
}

.community__cover-inner ._pb_img {
  filter: blur(3px);
}



/* search */
.search-container {
  margin: 0 auto;
  padding: 50px .5rem 0 0.5rem;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.search-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 0.5rem;
}

.search-text-center {
  text-align: center;
}

.search-text-start {
  text-align: left;
}

.search-text-muted {
  color: #6c757d;
}

.search-mt-2 {
  margin-top: 0.5rem;
}

.search-mb-3 {
  margin-bottom: 1rem;
}

.search-mb-4 {
  margin-bottom: 1.5rem;
}

.search-mt-4 {
  margin-top: 1.5rem;
}

.search-py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.search-small {
  font-size: 0.875rem;
}

/* ----- Заголовок ----- */
.search-heading {
  font-weight: 400;
  font-size: 1.8rem;
  color: #212529;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

/* ----- Поисковая строка (без Bootstrap .input-group) ----- */
.search-input-group {
  display: flex;
  align-items: stretch;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #dee2e6;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out;
}

.search-input-group:focus-within {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.search-input-group .search-form-control {
  flex: 1 1 auto;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: none;
  outline: none;
  min-width: 0;
}

.search-input-group .search-form-control::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.search-input-group .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: #495057;
  background-color: transparent;
  border: none;
  border-left: 1px solid #dee2e6;
  cursor: pointer;
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}

.search-input-group .search-btn:hover {
  background-color: #f1f3f5;
}

.search-input-group .search-btn i {
  font-size: 1.2rem;
}

/* ----- Статистика результатов ----- */
.search-result-stats {
  font-size: 0.9rem;
  color: #6c757d;
}

/* ----- Карточка результата (сниппет) ----- */
.search-result-item {
  border-bottom: 1px solid #e9ecef;
  padding: 1.25rem 0;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-title {
  font-weight: 500;
  font-size: 1.15rem;
  color: #0d6efd;
  text-decoration: none;
  display: inline-block;
}

.search-result-title:hover {
  text-decoration: underline;
  color: #0a58ca;
}

.search-result-snippet {
  color: #212529;
  margin: 0.3rem 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ----- Мета-информация (дата, категория, сообщества) ----- */
.search-result-meta {
  font-size: 0.85rem;
  color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.2rem;
}

.search-category-badge {
  background-color: #e9ecef;
  color: #495057;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.search-community-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
}

.search-community-list i {
  font-size: 0.7rem;
  color: #adb5bd;
  margin-right: 0.1rem;
}

.search-community-tag {
  background-color: #f1f3f5;
  color: #343a40;
  padding: 0.15rem 0.65rem;
  border-radius: 12px;
  font-size: 0.75rem;
  display: inline-block;
}

.search-meta-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ----- Разделитель ----- */
.search-hr {
  border: 0;
  border-top: 1px solid #e9ecef;
  opacity: 0.4;
  margin: 1.8rem 0;
}

/* ----- Сообщение "ничего не найдено" (скрыто) ----- */
.search-empty-state {
  display: none;
  text-align: center;
  padding: 2rem 0;
  color: #6c757d;
}

.search-empty-state i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ----- Нижний колонтитул ----- */
.search-footer-text {
  color: #868e96;
  font-size: 0.875rem;
}

/* ----- Утилиты для ссылок (чтобы не было лишнего подчёркивания) ----- */
a {
  text-decoration: none;
}

/* ----- Адаптивность (мелкие правки) ----- */
@media (max-width: 576px) {
  .search-result-meta {
    gap: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .search-input-group .search-form-control {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }

  .search-input-group .search-btn {
    padding: 0.6rem 1rem;
  }

  .search-heading {
    font-size: 1.5rem;
  }
}





/* header search */
.header-search-container:not(.active) .header__search {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  align-items: center;
}

.header-search-container.active {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #dee2e6;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out;
}

.header-search-container:focus-within {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.header-search-container input {
  flex: 1 1 auto;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: none;
  outline: none;
  min-width: 0;
}

.header-search-container input::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.header-search-container .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #495057;
  background-color: transparent;
  border: none;
  border-left: 1px solid #dee2e6;
  cursor: pointer;
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}

.header-search-container .search-btn:hover {
  background-color: #f1f3f5;
}

.header-search-container .search-btn i {
  font-size: 1rem;
}

body .select2-container {
  font-family: var(--primary-font);
}

body .select2-results__option--selectable {
  font-size: 14px;
}

body .select2-container .select2-search--inline .select2-search__field {
  font-size: 14px;
  line-height: normal;
  font-family: var(--primary-font);
}

body .select2-container--default .select2-selection--multiple {
  border: 1px solid #dadde6;
}

body .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--accent);
}


.wait_moderation-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wait_moderation-wrapper {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0;
}

.wait_moderation-card {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 48px 56px;
  border-top: 4px solid #1a3a5c;
  transition: all 0.2s ease;
  margin-left: auto;
  margin-right: auto;
}

.wait_moderation-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.wait_moderation-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eef2f7;
  border: 2px solid #1a3a5c;
  color: #1a3a5c;
  font-size: 38px;
  font-weight: 300;
  user-select: none;
}

.wait_moderation-title {
  font-size: 26px;
  font-weight: 600;
  color: #0b1e2e;
  text-align: center;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.wait_moderation-official-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2a3a;
  text-align: left;
}

.wait_moderation-official-text p {
  margin-bottom: 18px;
}

.wait_moderation-official-text p:last-of-type {
  margin-bottom: 0;
}

.wait_moderation-accent {
  font-weight: 500;
  color: #0b1e2e;
}

.wait_moderation-signature {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e2e6ec;
  font-size: 15px;
  color: #2c3e50;
  text-align: right;
  letter-spacing: 0.2px;
}

.wait_moderation-signature span {
  display: block;
  font-weight: 400;
  color: #4a5b6e;
}

.wait_moderation-signature .wait_moderation-admin {
  font-weight: 500;
  color: #0b1e2e;
  margin-bottom: 4px;
}

.wait_moderation-meta-note {
  margin-top: 24px;
  font-size: 13px;
  color: #6b7a8e;
  text-align: center;
  background: #f8f9fb;
  padding: 12px 16px;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

@media (max-width: 600px) {
  .wait_moderation-card {
    padding: 32px 24px;
  }

  .wait_moderation-title {
    font-size: 22px;
  }

  .wait_moderation-official-text {
    font-size: 15px;
  }

  .wait_moderation-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

@media (max-width: 400px) {
  .wait_moderation-card {
    padding: 24px 16px;
  }

  .wait_moderation-official-text {
    font-size: 14px;
  }

  .wait_moderation-signature {
    text-align: left;
  }
}

body .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
}

body .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
}

body .select2-container .select2-search--inline .select2-search__field {
  margin-top: 6px;
}

header img.logo {
  max-height: 30px;
  position: relative;
  top: -5px;
}
.post__content img {
  max-width: 100% !important;
}
body .community__title_alt {
  margin-top: 0;
  color: #e6ad5c;
  font-size: 0.7rem;  
  margin-bottom: 30px;
}
.post__content ul li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 30px;  
}