.ffp-shade {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2010;
  border-radius: 4px;
  font: 13px/16px 'Roboto', sans-serif;
  color: #222;
  overflow: auto;
}

.ffp-shade.ffp-message-win {
  z-index: 2021;
}

.ffp-shade .ffp-load-container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  transform: scale(0.6);
}

.ffp-message {
  padding: 5px 0 5px 15px;
  background: #fff;
  color: #333;
  border: 0px solid #999;
  border: 0px solid rgba(0, 0, 0, 0.3);
  margin: 15px 0;
  line-height: 1.3;
  word-wrap: break-word;
}

.ffp-win {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  background: #fff;
  color: #333;
  border: 0px solid #999;
  border: 0px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  outline: 0;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
}

.ffp-win-close {
  position: absolute;
  top: -30px;
  right: -30px;
  padding: 10px;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-family: verdana;
  transform: rotate(45deg);
}

.ffp-type-success {
  border-left-width: 4px;
  border-left-color: #98c74d;
}

.ffp-type-error {
  border-left-width: 4px;
  border-left-color: #da4f49;
}

.ffp-type-info {
  border-left-width: 4px;
  border-left-color: #00b9ff;
}

.ffp-win-body {
  position: relative;
  max-height: 600px;
  max-width: 600px;
  padding: 20px 25px;
  overflow-y: auto;
  line-height: 1.42;
  color: #333;
}

.ffp-win-body p,
.ffp-message p {
  padding: 0;
  margin: 0;
}

.ffp-win-body ul,
.ffp-message ul {
  margin: 0;
  list-style-type: disc;
  list-style-position: inside;
}

.ffp-win-body p+p {
  margin-top: 10px;
}

.ffp-win-body b+p,
.ffp-win-body b+ul,
.ffp-message b+p,
.ffp-message b+ul {
  margin-top: 6px;
}


.ffp-popup {
  position: absolute;
  overflow: visible;
  transition: all 0.2s ease;
  opacity: 0;
  margin-top: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.ffp-popup,
.ffp-popup * {
  box-sizing: border-box;
}

.ffp-popup.ffp-visible {
  opacity: 1;
  margin-top: 0px;
}

.ffp-popup-close,
.ffp-popup-prev,
.ffp-popup-next {
  position: absolute;
  cursor: pointer;
  color: #fff;
  font-size: 26px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.ffp-popup-close {
  top: -28px;
  right: -30px;
}

.ffp-popup-prev,
.ffp-popup-next {
  font-size: 50px;
  padding: 50px 0;
  margin-top: -75px;
}

.ffp-popup-prev {
  left: -71px;
  top: 50%;
}

.ffp-popup-next {
  right: -71px;
  top: 50%;
}

.ffp-popup-prev.ffp-disabled,
.ffp-popup-next.ffp-disabled {
  opacity: 0.4;
}

.ffp-popup-content-wrap {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
}

.ffp-popup-content-wrap:after {
  content: "";
  display: block;
  clear: both;
}

.ffp-popup-content-main {
  transition: all 0.2s ease;
  margin-right: 330px;
  min-height: 250px;
  min-width: 300px;
  border: 10px solid #fff;
}

.ffp-popup-content-main .ffp-media {
  height: auto;
  width: auto;
  max-width: none;
  min-height: 300px;
  overflow: hidden;
}

.ffp-desktop .ffp-popup-content-main .ffp-media iframe {
  width: 100% !important;
  height: 100% !important;
}

.ffp-popup-content-aside {
  overflow: hidden;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 20px 25px 20px 20px;
  width: 330px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}

.ffp-popup-live-comments-wrap {
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto;
  margin-right: -25px;
  padding-right: 25px;
}

.ffp-popup-live-comments {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 18px;
}

.ffp-popup-live-comment {}

.ffp-popup-live-comment+.ffp-popup-live-comment {
  margin-top: 12px;
}

.ffp-popup-live-comment::after {
  content: "";
  display: block;
  clear: both;
  height: 1px;
  line-height: 1px;
}

.ffp-popup-live-comment-author-pic {
  float: left;
  width: 16px;
}

.ffp-popup-live-comment-author-pic img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.ffp-popup-live-comment-block {
  margin-left: 38px;
  background: rgba(0, 0, 0, 0.06);
  padding: 8px 12px;
  border-radius: 5px;
}

.ffp-popup-live-comment-block-author-name {
  word-wrap: break-word;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.ffp-popup-live-comment-block-text {
  word-wrap: break-word;
  margin-bottom: 2px;
}

.ffp-popup-live-comment-time {
  text-align: right;
  opacity: 0.4;
  font-size: 12px;
  margin-top: 3px;
}


.ffp-popup-author {
  margin-bottom: 25px;
}

.ffp-popup-text {
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  overflow-y: auto;
}

.ffp-popup-text-content {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 18px;
}

.ffp-popup-reactions-wrap {
  color: #888;
}

.ffp-popup-reaction {
  display: inline-block;
  margin-right: 12px;
  padding-top: 6px;
}

.ffp-popup-share-btn-wrap {
  float: right;
}

.ffp-popup-reaction [class^="ffp-icon-"] {
  font-size: 16px;
}

.ffp-popup-content-main.ffp-type-video {
  width: 500px;
}

.ffp-popup-content-main .fb-video {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
}

.ffp-popup-video {
  position: relative;
}

.ffp-popup-video video {
  width: 100%;
  height: 100%;
}

.ffp-popup-video:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  color: #fff;
  content: '\e802';
  font-family: "ffp-font";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 60px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  transition: all 200ms ease-out;
}

.ffp-popup-video.ffp-playing:after {
  transform: translate(-50%, -50%) scale(1.5, 1.5);
  opacity: 0;
}

.ffp-video-youtube {
  width: 100%;
  height: 100%;
}

.ffp-mobile.ffp-popup {
  left: 0;
  top: 0;
  right: 0;
  transform: none;
}

.ffp-mobile .ffp-popup-prev,
.ffp-mobile .ffp-popup-next {
  font-size: 40px;
}

.ffp-mobile .ffp-popup-close {
  top: 10px;
  right: 7px;
  z-index: 99999;
}

.ffp-mobile .ffp-popup-prev {
  left: 0;
  top: 25%;
  z-index: 99999;
}

.ffp-mobile .ffp-popup-next {
  right: 0;
  top: 25%;
  z-index: 99999;
}

.ffp-mobile .ffp-popup-content-main {
  width: 100%;
  margin-right: 0;
  min-height: auto;
}

.ffp-mobile .ffp-popup-content-main .ffp-media {
  width: 100%;
  max-width: 100%;
  min-height: auto;
}

.ffp-mobile .ffp-popup-content-aside {
  width: 100%;
  position: relative;
  display: block;
}

.ffp-mobile .ffp-popup-comments-wrap {
  display: block;
}



.ffp-load-speeding-wheel {
  width: 30px;
  height: 30px;
  opacity: 0.4;
  margin: 0 auto;
  border: 3px solid rgb(0, 0, 0);
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: ffp-load-spin 575ms infinite linear;
  -o-animation: ffp-load-spin 575ms infinite linear;
  -ms-animation: ffp-load-spin 575ms infinite linear;
  -webkit-animation: ffp-load-spin 575ms infinite linear;
  -moz-animation: ffp-load-spin 575ms infinite linear;
}

@keyframes ffp-load-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ffp-feed-wrap {
  min-height: 60px;
  position: relative;
  transition: 0.2s;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  color: #333;
  font-weight: 400;
}

.ffp-feed-loader {
  margin: 0 auto;
  padding: 15px 0;
}

.ffp-feed-header-top {
  position: relative;
}

.ffp-feed-header-cover {
  position: relative;
  padding-top: 25%;
  background-size: cover;
  background-position: 50% 50%;
}

.ffp-feed-header-buttons {
  position: absolute;
  left: 174px;
  right: 14px;
  bottom: 14px;
  text-align: right;
}

a.ffp-feed-header-button,
a.ffp-feed-btn {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: #666;
  background: #fff;
  border-radius: 3px;
  padding: 4px 14px;
  transition: .2s all;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.19);
}

a.ffp-feed-header-button:hover,
a.ffp-feed-header-button:active,
a.ffp-feed-header-button:focus,
a.ffp-feed-btn:hover,
a.ffp-feed-btn:active,
a.ffp-feed-btn:focus {
  color: #2c59a5;
  background: #f9f9f9;
  text-decoration: none;
}

a.ffp-feed-header-button {
  margin-left: 8px;
  padding: 4px 14px 4px 10px;
}

.ffp-feed-header-cover-blank {
  height: 56px;
  background: #3b5998;
}

.ffp-feed-header-info {
  position: relative;
  padding: 12px 20px 12px 20px;
  box-sizing: border-box;
  min-height: 73px;
}

a.ffp-feed-header-picture {
  float: left;
  display: block;
  width: 90px;
  height: 90px;
  background-size: cover;
  background-position: 50% 50%;
  text-decoration: none;
  margin-top: -45px;
  margin-right: 20px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.19);
}

a.ffp-feed-header-picture:hover,
a.ffp-feed-header-picture:active,
a.ffp-feed-header-picture:focus {
  text-decoration: none;
}

a.ffp-feed-header-name {
  text-decoration: none;
  font-size: 23px;
  color: #222;
  font-weight: 600;
}

a.ffp-feed-header-name:hover {
  text-decoration: underline;
  color: #222;
}

.ffp-feed-header-likes {
  color: #7f8588;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
}

.ffp-feed-menu {
  padding: 0 20px;
}

.ffp-feed-menu-items {}

.ffp-feed-menu-item {
  color: #888;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding: 10px 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ffp-feed-menu-item:first-of-type {
  margin-left: -12px;
}

.ffp-feed-menu-item:hover,
.ffp-feed-menu-item.active {
  color: #222;
}

.ffp-feed-menu-item:after {
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
  left: 50%;
  right: 50%;
  bottom: -1px;
  height: 2px;
  background: #888;
  z-index: 1;
  transition: all 0.2s ease;
}

.ffp-feed-menu-item.active:after {
  background: #222;
  left: 12px;
  right: 12px;
  opacity: 1;
}


.ffp-feed-header.ffp-layout-center,
.ffp-layout-mobile .ffp-feed-header {
  text-align: center;
}

.ffp-feed-header.ffp-layout-center .ffp-feed-header-buttons,
.ffp-layout-mobile .ffp-feed-header-buttons {
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  right: auto;
  bottom: auto;
  white-space: nowrap;
  z-index: 2;
}

.ffp-feed-header.ffp-layout-center .ffp-feed-header-picture,
.ffp-layout-mobile .ffp-feed-header-picture {
  border-radius: 50%;
  float: none;
  margin: -60px auto 10px;
  position: relative;
  z-index: 1;
}

.ffp-feed-menu.ffp-layout-center,
.ffp-layout-mobile .ffp-feed-menu {
  text-align: center;
}


.ffp-feed-container {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  border-top: 1px solid #f1f1f1;
  background: rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.ffp-feed-view-container {
  display: none;
  transition: opacity .2s ease;
  opacity: 0;
  visibility: hidden;
}

.ffp-feed-view-container.ffp-active {
  opacity: 1;
  display: block;
  visibility: visible;
}


.ffp-feed-photos-items {
  padding: 20px;
}

.ffp-feed-photos-item {
  background: #fff;
  /*padding:20px 20px 15px;*/
}

.ffp-feed-posts-items {
  padding: 20px;
}

.ffp-feed-posts-item {
  background: #fff;
  padding: 20px 20px 15px;
  border-radius: 3px;
}

.ffp-feed-albums-wrap+.ffp-feed-photos-wrap {
  margin-top: 20px;
}

.ffp-feed-items-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  padding: 0 20px;
}

.ffp-feed-albums-wrap {
  margin-top: 20px;
  padding: 20px 20px 30px;
  background: #fff;
}

.ffp-feed-albums-wrap .ffp-feed-items-title {
  padding: 0;
  margin-bottom: 15px;
}

.ffp-feed-albums-nav-link {
  cursor: pointer;
  text-decoration: underline;
}

.ffp-feed-albums-nav-link:hover {
  text-decoration: none;
}

.ffp-feed-albumphotos-container .ffp-feed-items-title {
  padding-top: 18px;
  font-weight: 400;
  font-size: 15px;
}

.ffp-feed-album-info {
  padding: 20px 0 30px;
  text-align: center;
}

.ffp-feed-album-info .ffp-feed-album-title {
  font-size: 20px;
  margin-bottom: 6px;
}

.ffp-feed-album-info .ffp-feed-album-meta {
  font-size: 13px;
  opacity: 0.6;
}

.ffp-feed-items-expand-btn-wrap {
  float: right;
}

.ffp-feed-items-expand-btn {
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
  color: #888;
  font-size: 14px;
}

.ffp-feed-items-expand-btn:hover {
  text-decoration: none;
}

.ffp-feed-albums-items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
  overflow: hidden;
}

.ffp-feed-albums-item {
  padding: 0;
  width: 25%;
  flex-grow: 1;
  flex-basis: 25%;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.ffp-feed-albums-item-picture {
  width: 134px;
  height: 134px;
  position: relative;
  margin: 0 auto 18px;
  z-index: 1;
}

.ffp-feed-albums-item-picture:before,
.ffp-feed-albums-item-picture:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  bottom: -6px;
  right: -6px;
  z-index: -1;
  background-color: #fff;
}

.ffp-feed-albums-item-picture:after {
  bottom: -10px;
  right: -10px;
  z-index: -2;
}

.ffp-feed-albums-item-picture-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  border: 1px solid #dbdbdb;
  box-sizing: content-box;
  background: #fff;
}

.ffp-feed-albums-item-picture-wrap i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.ffp-feed-albums-item-title {
  font-size: 15px;
  margin-bottom: 4px;
}

.ffp-feed-albums-item-descr {
  font-size: 13px;
  color: #888;
}

.ffp-feed-albums-item:hover .ffp-feed-albums-item-title {
  text-decoration: underline;
}





.ffp-feed-posts-item-head {
  position: relative;
  margin-bottom: 8px;
}

.ffp-feed-author-block {}

.ffp-feed-author-block:after {
  content: "";
  clear: both;
}

.ffp-feed-author-block-picture {
  float: left;
  width: 32px;
  height: 32px;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  overflow: hidden;
}

.ffp-feed-author-block-picture img {
  width: 32px;
  height: 32px;
}

.ffp-feed-author-block-info {
  margin-left: 42px;
}

.ffp-feed-author-block-name {
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.ffp-feed-author-block-info-created {
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}

.ffp-feed-posts-item-fb-link {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 18px;
}

.ffp-feed-posts-item-fb-link a {
  color: #e5e5e5;
  transition: color .2s ease;
}

.ffp-feed-posts-item-fb-link a,
.ffp-feed-posts-item-fb-link a:hover,
.ffp-feed-posts-item-fb-link a:active {
  text-decoration: none;
}

.ffp-feed-posts-item-fb-link a:hover,
.ffp-feed-posts-item-fb-link a:active {
  color: #888;
}

.ffp-feed-posts-item-author {
  padding-right: 25px;
}

.ffp-feed-posts-item-content {}

.ffp-feed-item-message {
  color: #222;
  font-size: 14px;
  line-height: 18px;
}

.ffp-feed-item-message-content {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.ffp-feed-item-message+.ffp-feed-item-picture {
  margin-top: 12px;
}

.ffp-feed-item-picture a {
  display: block;
  position: relative;
  text-decoration: none;
}

.ffp-feed-item-picture {
  border-radius: 2px;
  overflow: hidden;
}

.ffp-feed-item-picture img {
  width: 100%;
}

.ffp-feed-item-picture .ffp-feed-item-video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: opacity .2s ease;
  transform: translate(-50%, -50%);
  pointer-events: none;
  color: #fff;
  font-size: 50px;
  opacity: 0.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.ffp-feed-item-picture .ffp-feed-item-video-length {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 11px;
  background: #000;
  padding: 2px 6px;
  opacity: 0.6;
  color: #fff;
  border-radius: 3px;
}

.ffp-feed-item-picture a:hover {
  text-decoration: none;
}

.ffp-feed-item-picture a:hover .ffp-feed-item-video-play-icon {
  opacity: 1;
}


.ffp-feed-item-link {
  border: 1px solid #f1f1f1;
  padding: 12px;
  border-radius: 3px;
  margin-top: 12px;
}

.ffp-feed-item-link a {
  display: block;
  color: #222;
  text-decoration: none;
}

.ffp-feed-item-link a:hover {
  color: #222;
  text-decoration: none;
}

.ffp-feed-item-link-picture {
  margin: -12px -12px 0;
  position: relative;
}

.ffp-feed-item-link-picture img {
  max-width: 100%;
  display: block;
  border: 4px solid #fff;
  border-radius: 2px;
}

.ffp-feed-item-link-title {
  font-size: 13px;
  font-weight: bold;
}

.ffp-feed-item-link-descr {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ffp-feed-item-link-domain {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 200ms ease;
}

.ffp-feed-item-link a:hover .ffp-feed-item-link-domain {
  opacity: 1;
}

.ffp-feed-item-link-picture+.ffp-feed-item-link-title,
.ffp-feed-item-link-picture+.ffp-feed-item-link-descr,
.ffp-feed-item-link-title+.ffp-feed-item-link-descr {
  margin-top: 5px;
}

.ffp-feed-item-link-picture+.ffp-feed-item-link-domain,
.ffp-feed-item-link-title+.ffp-feed-item-link-domain,
.ffp-feed-item-link-descr+.ffp-feed-item-link-domain {
  margin-top: 10px;
}



.ffp-feed-posts-item-reactions {
  margin-top: 12px;
  color: #888;
  font-size: 12px;
}

.ffp-feed-posts-item-reaction {
  display: inline;
  margin-right: 8px;
  white-space: nowrap;
}

.ffp-feed-posts-item-share-btn-container {
  margin-top: 12px;
}

.ffp-feed-load-more-container {
  padding-top: 5px;
}

.ffp-feed-load-more-btn {
  display: block;
  text-align: center;
  cursor: pointer;
  opacity: 0.6;
  background: #bbb;
  color: #555;
  padding: 8px 20px;
  border-radius: 3px;
  transition: all .2s ease;
}

.ffp-feed-load-more-btn:hover {
  opacity: 1;
}

.ffp-feed-load-more-btn.ffp-disabled {
  opacity: 0.3;
  cursor: default;
}

.ffp-feed-grid {
  position: relative;
}

.ffp-feed-grid-item {
  transition: opacity 200ms ease;
}

.ffp-hidden {
  opacity: 0;
}


.ffp-text-expand {
  max-height: 92px;
  overflow: hidden;
  transition: all 90ms ease;
  position: relative;
}

.ffp-text-expand.ffp-has-more:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 25px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), #fff 100%);
}

.ffp-text-expand.ffp-expanded {
  max-height: none;
}

.ffp-text-expand-btn {
  display: inline-block;
  color: #999;
  font-size: 13px;
  cursor: pointer;
}

.ffp-text-expand-btn:hover {
  text-decoration: underline;
}

.ffp-feed-videos-items {
  padding: 20px;
}

.ffp-feed-videos-item {
  background: #fff;
  /*border:1px solid #e2e2e2;*/
  overflow: hidden;
  border-radius: 3px;
}

.ffp-feed-videos-item .ffp-feed-item-picture {
  border-radius: 0;
}

.ffp-feed-videos-item .ffp-feed-item-title,
.ffp-feed-videos-item .ffp-feed-item-message {
  padding: 15px;
}

.ffp-feed-videos-item .ffp-feed-item-title a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
}

.ffp-feed-videos-item .ffp-feed-item-title a:hover {
  text-decoration: underline;
}

.ffp-feed-videos-item .ffp-feed-item-title+.ffp-feed-item-message {
  border-top: 1px solid #f1f1f1;
}

.ffp-feed-videos-item .ffp-feed-item-title+.ffp-feed-videos-item-reactions,
.ffp-feed-videos-item .ffp-feed-item-message+.ffp-feed-videos-item-reactions {
  border-top: 1px solid #f1f1f1;
}

.ffp-feed-videos-item-reactions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  flex: 0 1 auto;
  box-sizing: border-box;
}

.ffp-feed-videos-item-reaction {
  color: #aaa;
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
  padding: 10px 15px;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.ffp-feed-videos-item-reaction [class^="ffp-icon-"] {
  font-size: 17px;
}

.ffp-feed-videos-item-reaction .ffp-count {
  margin-top: 2px;
}

.ffp-feed-videos-item-reaction.ffp-comments .ffp-count {
  margin-left: 2px;
  margin-top: 3px;
}




.ffp-feed-author-block-name,
.ffp-feed-item-message-content,
.ffp-feed-item-link-title,
.ffp-feed-item-link-descr,
.ffp-feed-item-link-domain,
.ffp-popup-text-content {
  word-wrap: break-word;
}


/*
* Icons
*/

@font-face {
  font-family: 'ffp-font';
  src: url('../font/ffp-font.eot?77776572');
  src: url('../font/ffp-font.eot?77776572#iefix') format('embedded-opentype'),
    url('../font/ffp-font.woff2?77776572') format('woff2'),
    url('../font/ffp-font.woff?77776572') format('woff'),
    url('../font/ffp-font.ttf?77776572') format('truetype'),
    url('../font/ffp-font.svg?77776572#ffp-font') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="ffp-icon-"]:before, [class*=" ffp-icon-"]:before {
  font-family: "ffp-font";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ffp-icon-trash-empty:before {
  content: '\e800';
}

/* 'î €' */
.ffp-icon-cancel:before {
  content: '\e801';
}

/* 'î ' */
.ffp-icon-play-circled2:before {
  content: '\e802';
}

/* 'î ‚' */
.ffp-icon-thumbs-up:before {
  content: '\e803';
}

/* 'î ƒ' */
.ffp-icon-spin2:before {
  content: '\e831';
}

/* 'î ±' */
.ffp-icon-right-open-1:before {
  content: '\f006';
}

/* 'ï€†' */
.ffp-icon-left-open-1:before {
  content: '\f007';
}

/* 'ï€‡' */
.ffp-icon-export:before {
  content: '\f081';
}

/* 'ï‚' */
.ffp-icon-comment-empty:before {
  content: '\f0e5';
}

/* 'ïƒ¥' */
.ffp-icon-facebook-official:before {
  content: '\f230';
}

/* 'ïˆ°' */
.ffp-icon-facebook-squared:before {
  content: '\f308';
}

/* 'ïŒˆ' */

.ffp-icon-spin2:before {
  animation: ffp-spin 2s infinite linear;
}


@keyframes ffp-spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}