/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v23-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/poppins-v23-latin-700italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* COURSE */
.course-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 25px auto;
  gap: 25px;
}
.course-list .course {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(69, 67, 96, 0.07);
  border-radius: 5px;
  padding: 20px;
  width: 350px;
  display: flex;
  flex-direction: column;
}
.course-list .course .course-image {
  display: block;
  margin-bottom: 20px;
  border-radius: 5px;
  aspect-ratio: 16/9;
  background: #dde3e9 no-repeat center center;
  background-size: cover;
}
.course-list .course .course-progress {
  font-size: 14px;
  line-height: 18px;
  color: #303C4B;
}
.course-list .course .course-title {
  display: block;
  font-size: 19px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}
.course-list .course .course-description {
  margin-bottom: 20px;
}
.course-list .course .course-list-empty {
  margin-bottom: 25px;
  text-align: center;
}
.course-detail {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(69, 67, 96, 0.07);
  border-radius: 5px;
  padding: 20px;
  max-width: 960px;
  width: 100%;
  margin: 25px auto;
}
.course-detail .course-detail-image {
  display: block;
  margin-bottom: 25px;
  border-radius: 5px;
  aspect-ratio: 16/9;
  background: #dde3e9 no-repeat center center;
  background-size: cover;
}
.course-detail .course-detail-progress {
  font-size: 14px;
  line-height: 18px;
  color: #303C4B;
  margin-bottom: 25px;
}
.course-detail .course-detail-title {
  text-align: left;
  margin-bottom: 25px;
}
.course-detail .course-detail-description {
  margin-bottom: 25px;
}
.course-detail .course-detail-modules {
  margin-bottom: 25px;
}
.course-detail .course-detail-module {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid #dde3e9;
}
.course-detail .course-detail-module:last-child {
  border-bottom: 1px solid #dde3e9;
}
.course-detail .course-detail-module-hours {
  font-size: 14px;
  line-height: 18px;
  color: #ff9100;
  font-style: italic;
}
.course-detail .course-detail-module-progress {
  margin-top: 5px;
  font-size: 13px;
  line-height: 18px;
  color: #303C4B;
}
.course-scorm {
  min-height: 100dvh;
}
.course-scorm .course-scorm-toolbar {
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #dde3e9;
  background: #fff;
}
.course-scorm .course-scorm-error {
  width: 100%;
  height: calc(100dvh - 60px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.course-scorm .course-scorm-frame {
  display: block;
  width: 100%;
  height: calc(100dvh - 60px);
  border: none;
}
@media (max-width: 768px) {
  .course-list .course {
    width: 100%;
  }
}
