/**
 * COURSES
 */
.course__videos {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.course__videos-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 10px;
}
.course__videos-item:nth-child(odd) {
  background: #f9f9f9;
}
.course__videos-item__drag {
  min-width: 15px;
  width: 15px;
  max-width: 15px;
  cursor: move;
  text-align: center;
}
.course__videos-item__poster {
  min-width: 80px;
  width: 80px;
  max-width: 80px;
  height: 45px;
}
.course__videos-item__poster-wrapper {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.course__videos-item__poster-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.course__videos-item__name {
  flex-grow: 1;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.3;
}
.course__videos-item__buttons {
  min-width: 70px;
  width: 70px;
  max-width: 70px;
  padding: 0 5px;
}
.course__videos-item__buttons button {
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
}

/*# sourceMappingURL=courses.css.map */
