.media-preview__row {
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.media-preview__col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.media-preview__col--90 {
  display: flex;
  flex-direction: column;
  flex: 0.9;
}
.media-preview__col--10 {
  display: flex;
  flex-direction: column;
  flex: 0.1;
}
.media-preview__col--centralized {
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-preview__icon {
  margin-left: 5px;
  cursor: pointer;
}
.media-preview {
  padding: 15px !important;
}
.media-preview__inner {
  display: flex;
}
.media-preview__message {
  display: none;
  font-size: 12px;
  padding: 0px;
  text-align: justify;
}
.media-preview__message__text {
  font-size: 10px;
  color: #7d0000;
  font-weight: bold;
}
.media-preview__message__text--show {
  cursor: pointer;
}
.media-preview__message--show {
  display: block;
}
.media-preview__src {
  display: block;
}
.media-preview__src--hide {
  display: none;
}
.media-preview__src--youtube {
  height: 100%;
  width: 100%;
}
.windowed .media-preview__src--youtube {
  height: 400px;
}
.post-item__btn {
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
  background-image: url(/static/images/ic_round-delete-sweep.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-flex;
}
.delete-popup {
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  transition: 0.5s;
}
.delete-popup--show {
  display: block;
}
.delete-popup__content {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
}
.delete-popup__inner {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 11px 2px rgba(0, 0, 0, 0.1);
}
.delete-popup__inner__message {
  padding: 20px;
  text-align: left;
}
.delete-popup__inner__buttons {
  display: flex;
}
.delete-popup__inner__button {
  cursor: pointer;
  flex: 1;
  padding: 10px;
  padding-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}
.delete-popup__inner__button:hover {
  font-weight: bold;
}
.delete-popup__inner__button--yes {
  color: #7d0000;
}