* {
  margin: 0;
  padding: 0;
}

.video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.video-container img {
  transition: all 0.4s ease-in-out;
}

.video-container #play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #fff;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.video-container:hover img {
  transform: scale(1.1);
}

.title {
  font-family: "PoetsenOne", Arial, sans-serif;
  font-size: 25px;
  color: #000000;
  margin-top: 20px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.details p {
  font-size: 18px;
  display: inline;
  margin-right: 10px;
}

.secondary-title {
  color: #929292;
  font-size: 1.12rem;
}

.course_content_title {
  width: 100%;
  border: none;
  background: #fff;
  color: #191919;
  padding: 10px;
  outline: none;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  transition: all 150ms ease-in-out;
}

.course_content_title .icon {
  color: #929292;
}

.course_content_title:hover > div {
  color: #3574e0;
}

.course_content_title .videos-count {
  background-color: #3574e0;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
}

.buy-button {
  background: #ff4d64;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  border: none;
  outline: none;
  width: 100%;
  font-size: 20px;
  transition: background 100ms ease-in-out;
}

.buy-button:hover {
  background: #ee485e;
}

.review-input-container {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 0.1px solid #19191944;
}

.review-input-container button {
  width: 150px;
}

.feedback-avatar {
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

label {
  cursor: pointer;
}

svg {
  width: 2.2rem;
  height: 2.2rem;
}

svg.star {
  padding: 0.15rem;
  width: 2.2rem !important;
  height: 2.2rem !important;
}

/* hide radio buttons */

input[name="stars"] {
  display: inline-block;
  width: 0;
  opacity: 0;
  margin-left: -2px;
}

/* hide source svg */

.star-source {
  width: 0;
  height: 0;
  visibility: hidden;
}

/* set initial color to transparent so fill is empty*/

.star {
  color: transparent;
  transition: color 0.2s ease-in-out;
}

/* set direction to row-reverse so 5th star is at the end and ~ can be used to fill all sibling stars that precede last starred element*/

.star-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
}

.list-stars-container svg {
  font-size: 1.3rem;
}

label:hover ~ label .star,
svg.star:hover,
input[name="stars"]:focus ~ label .star,
input[name="stars"]:checked ~ label .star {
  color: #ff4d64;
}

input[name="stars"]:checked + label .star {
  animation: starred 0.5s;
}

input[name="stars"]:checked + label {
  animation: scaleup 1s;
}

.offer {
  background-color: #ff4d64;
  border-radius: 8px;
  color: #fff;
  margin: 0;
  padding: 2px 5px;
  font-size: 14px !important;
  font-weight: bold;
}

@keyframes scaleup {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

@keyframes starred {
  from {
    color: #ff4d6565;
  }
  to {
    color: #ff4d64;
  }
}

@media (min-width: 768px) {
  .v-flex-md-row {
    flex-direction: row;
  }
  .course-content-min {
    float: right;
  }
}

@media (max-width: 768px) {
  .v-flex-sm-column {
    flex-direction: column;
  }

  .title {
    font-size: 20px;
    text-align: center;
  }

  .review-input-container button {
    width: 100%;
  }

  .course-content-min {
    font-size: 12px;
  }
}
