.container {
  border: 1px dashed rgba(145, 158, 171, 0.24);
  border-radius: 15px;
  background: #2e3843;
  width: 100%;
  cursor: pointer;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container:hover {
  background: #2e3843;
}

.empty {
  display: flex;
  align-items: center;
}
.empty.hide {
  opacity: 0;
  pointer-events: none;
  width: 0px;
  height: 0px;
}

.video_container {
  height: 70vh;
  max-height: 750px;
  width: 300px;
}

.image {
  max-width: 100%;
}
.image.hide {
  opacity: 0;
  pointer-events: none;
  width: 0px;
  height: 0px;
}

.info {
  text-align: left;
  margin-left: 20px;
  color: var(--text-color);
}
.head {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.sub_head {
  font-size: 14px;
  line-height: 1.2rem;
  color: var(--text-color-secondary);
  font-weight: 500;
}
.sub_head span {
  text-decoration: underline;
  color: var(--component-color);
  font-weight: 600;
}

.preview_container {
  height: 70vh;
  max-height: 750px;
  width: 100%;
}
