
.ipo-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
}

.ipo-flex-auto {
    width: auto;

    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.ipo-flex-extend {
    max-width: 100%;

    -webkit-box-flex: 1;
    -webkit-flex: 1 1;
        -ms-flex: 1 1;
            flex: 1 1;
}

.word-break {
  word-break: break-word;
}

.max-lines-2 {
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  white-space: break-spaces;

  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.max-lines-3 {
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
  white-space: break-spaces;

  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.max-lines-4 {
  overflow: hidden;
  word-break: break-word;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  text-overflow: ellipsis;
  white-space: break-spaces;

  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.mouse-pointer {
  cursor: pointer;
}

.youtube-embed {
  aspect-ratio: 16 / 9;
}

.fa-wrap {
  height: calc(100% - 92px);
}