.page-wrapper {
  position: relative;
  display: flex;

  margin-top: 50px;
}

.page-wrapper > .container {
  flex-direction: row;
}

.page-wrapper > .container > * {
  position: relative;
  display: flex;
  flex: 1;

  flex-direction: column;
  flex-wrap: wrap;
}



.feedcontainer {
  position: relative;
  display: flex;

  flex-direction: column;
  flex-wrap: wrap;

  margin-bottom: 60px;

  color: #3e3e3e;
}

.feedcontainer .feed-create-post {
  position: relative;
  display: flex;

  flex-direction: column;
  flex-wrap: wrap;

  margin-top: 15px;

  padding: 20px;

  border: 1px solid #dadada;

  border-radius: 6px;

  background: #FFFFFF;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.13);
}

.feedcontainer .feed-create-post > .feed-create-post-context {
  display: flex;
}

.feedcontainer .feed-create-post > .feed-create-post-context > img {
  position: absolute;
  z-index: 1;

  width: 50px;
  height: 50px;

  border-radius: 500px;

  object-fit: cover;
  object-position: center center;
}

.feedcontainer .feed-create-post > .feed-create-post-context > textarea {
  position: relative;
  display: flex;

  width: 100%;
  height: 90px;
  min-height: 100%;

  padding-top: calc(50px / 4);
  padding-right: calc(50px + 10px);

  border: 0;

  resize: vertical;
}

.feed-create-post .feed-create-post-footer {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  align-items: center;
  justify-content: space-between;

  margin-top: 20px;
  margin-right: -20px;
  margin-left: -20px;

  padding: 0 20px;
  padding-top: 15px;

  border-top: 1px solid #ebebeb;
}

.feed-create-post .feed-create-post-footer > * {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;
}

.feed-create-post .feed-create-post-footer a.feed-create-post-footer-attachitem {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center;

  margin: 0 15px;

  text-decoration: none;

  color: inherit;
}
.feed-create-post .feed-create-post-footer a.feed-create-post-footer-attachitem:first-child {
  margin-right: 0;
}

.feed-create-post .feed-create-post-footer a.feed-create-post-footer-attachitem > i {
  margin-left: 5px;
}

.feed-create-post .feed-create-post-footer .feed-create-post-footer-button {
  position: relative;
  display: flex;
  cursor: pointer;

  padding: 3px 20px;

  border: 0;
  border-radius: 4px;

  text-decoration: inherit;

  color: white;

  background: #2baff9;
}


.feedposts-list {
  position: relative;
  display: flex;

  flex-direction: column;
  flex-wrap: wrap;

  color: #3e3e3e;
}

.feedposts-list .feedposts-item {
  position: relative;
  display: flex;

  flex-direction: column;
  flex-wrap: wrap;

  margin-top: 15px;

  padding: 20px;
  padding-bottom: 10px;

  border: 1px solid #dadada;

  border-radius: 6px;

  background: #FFFFFF;
  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.13);
}

.feedposts-list .feedposts-item .feedposts-item-header {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  align-items: flex-start;
  justify-content: space-between;
}

.feedposts-list .feedposts-item .feedposts-item-userinfo {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  align-items: flex-start;
  justify-content: flex-start;
}

.feedposts-list .feedposts-item .feedposts-item-userinfo a {
  color: inherit;
  text-decoration: inherit;
}

.feedposts-list .feedposts-item .feedposts-item-userinfo img {
  position: relative;

  width: 50px;
  height: 50px;

  border-radius: 500px;

  object-fit: cover;
  object-position: center center;
}

.feedposts-list .feedposts-item .feedposts-item-userinfo > .feedposts-item-userinfo-context {
  margin-right: 10px;
  font-size: 13px;
}
.feedposts-list .feedposts-item .feedposts-item-userinfo > .feedposts-item-userinfo-context h2 {
  font-size: 17px;
  color: #3e3e3e;
}
.feedposts-list .feedposts-item .feedposts-item-userinfo > .feedposts-item-userinfo-context p {
  color: #999999;
}

.feedposts-list .feedposts-item .feedposts-item-header-dropdown {
  position: relative;
  display: flex;
}
.feedposts-list .feedposts-item .feedposts-item-dropdown-button {
  color: #999999;
}
.feedposts-list .feedposts-item .feedposts-item-header-dropdown-menu {
  position: absolute;
  display: none;
  z-index: 10;

  flex-direction: column;
  flex-wrap: wrap;

  align-items: center;
  justify-content: center;

  top: 20px;
  left: -10px;

  padding: 10px 0;

  border: 1px solid #dadada;
  border-radius: 6px;

  background: #FFFFFF;

  box-shadow: 0 0px 16px rgba(0, 0, 0, 0.13);

  transition: 0.3s all ease-out;
}
.feedposts-list .feedposts-item .feedposts-item-header-dropdown-menu.active {
  display: flex;
}
.feedposts-list .feedposts-item .feedposts-item-header-dropdown-menu > a {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center;

  width: 100%;

  padding: 4px 20px;

  white-space: nowrap;

  text-decoration: inherit;

  color: inherit;

  transition: 0.3s all ease-in-out;
}
.feedposts-list .feedposts-item .feedposts-item-header-dropdown-menu > a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.feedposts-list .feedposts-item .feedposts-item-body {
  position: relative;
  display: flex;

  flex-direction: column;

  align-items: flex-start;
  justify-content: flex-start;

  margin-top: 10px;

  font-weight: 500;

  color: #3e3e3e;
}

.feedposts-list .feedposts-item .feedposts-item-body p {
  margin: 5px 0;
}
.feedposts-list .feedposts-item .feedposts-item-body img {
  position: relative;
  display: flex;

  margin: 10px 0;
  margin-right: -20px;
  margin-left: -20px;

  width: calc(100% + (20px * 2));
  height: auto;
  max-height: 700px;

  object-fit: cover;
  object-position: center center;
}
.feedposts-list .feedposts-item .feedposts-item-body iframe {
  position: relative;
  display: flex;

  margin: 10px 0;
  margin-right: -20px;
  margin-left: -20px;

  width: calc(100% + (20px * 2));
  height: auto;
  min-height: 300px;
  max-height: 700px;

  object-fit: cover;
  object-position: center center;
}

.feedposts-list .feedposts-item .feedposts-item-reactions {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  justify-content: space-between;

  padding: 10px 0;

  font-size: 12px;
}
.feedposts-list .feedposts-item .feedposts-item-reactions i {
  color: #fdc85e;
}

.feedposts-list .feedposts-item .feedposts-item-reactions a {
  color: inherit;
  text-decoration: inherit;
}


.feedposts-list .feedposts-item .feedposts-item-comments {
  position: relative;
  display: flex;

  flex-direction: column;

  align-items: flex-start;
  justify-content: flex-start;

  margin-top: 5px;

  padding-top: 5px;

  border-top: 1px solid #ebebeb;

  font-size: 14px;
  font-weight: 600;

  /* color: #999999; */
}

.feedposts-list .feedposts-item .feedposts-item-comments .feedposts-item-comments-item {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 10px 20px;

  background: rgba(0, 0, 0, 0.05);
}

.feedposts-list .feedposts-item .feedposts-item-comments .feedposts-item-userinfo img {
  width: 35px;
  height: 35px;
}
.feedposts-list .feedposts-item .feedposts-item-comments .feedposts-item-userinfo > .feedposts-item-userinfo-context h2 {
  font-size: 14px;
}
.feedposts-list .feedposts-item .feedposts-item-comments .feedposts-item-userinfo > .feedposts-item-userinfo-context p {
  font-size: 10px;
}
.feedposts-list .feedposts-item .feedposts-item-comments .feedposts-item-header-dropdown-menu {
  padding: 5px 0;
}
.feedposts-list .feedposts-item .feedposts-item-comments .feedposts-item-header-dropdown-menu > a {
  font-size: 12px;
}


.feedposts-list .feedposts-item .feedposts-item-footer {
  position: relative;
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;

  align-items: center;
  justify-content: space-between;

  margin-top: 5px;

  padding-top: 5px;

  border-top: 1px solid #ebebeb;

  font-size: 14px;
  font-weight: 600;

  color: #999999;
}

.feedposts-list .feedposts-item .feedposts-item-footer a {
  position: relative;
  display: flex;

  flex-direction: row;

  align-items: center;

  text-decoration: inherit;

  color: inherit;

  opacity: 0.4;

  transition: 0.15s opacity ease-in-out;
}
.feedposts-list .feedposts-item .feedposts-item-footer a:hover {
  opacity: 1;
}
.feedposts-list .feedposts-item .feedposts-item-footer a.active {
  color: #fdc85e;
  opacity: 1;
}

.feedposts-list .feedposts-item .feedposts-item-footer a > i {
  margin-left: 5px;
}
