.course-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  padding-right: 50x;
}

.chanel-name a {
  color: #fff;
  padding-right: 100px;
}

.course-subtitle {
  font-size: 15px;
  margin-top: 7px;
  color: #c2c3c4;
  font-weight: 500;
}

.students-amount {
  align-items: center;
  display: flex;
  font-size: 13px;
  margin-top: 8px;
  color: #1DFFF9;
  font-weight: 300;
  gap: 6px;
}


.feedback-container {
  margin: 0 14px 46px 14px;
  margin-bottom: 0;
  background-color: #000;
  padding: 18px 12px;
  border-radius: 16px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.feedback-container::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(to right, #2bff8e 0%, #a95151 100%);
  border-radius: 16px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.feedback-container h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  /* margin-bottom: 30px; */
  line-height: 1.4;
}

.feedback-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  /* margin-top: 30px; */
}

.stat {
  text-align: center;
}

.labels {
  display: flex;
  justify-content: center;
  margin-top: 31px;
  gap: 43px;
}

.labels .label {
  font-size: 9px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-happy .percent {
  font-size: 45px;
  font-weight: 200;
  color: #2BFF8E;
}

.stat-unhappy .percent {
  font-size: 30px;
  font-weight: 200;
  color: rgba(238, 114, 114, 0.71);
}

.divider {
  height: 60px;
  width: 1px;
  background-color: #444;
  margin-left: 20px;
  margin-right: 20px;
}

.feedback-button {
  /* width: 100%; */
  padding: 13px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 45px;
  margin-right: 45px;
  text-align: center;
}

.feedback-button-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid #0F827F;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-left: 45px;
  margin-right: 45px;
  text-align: center;
  background-color: #0F827F;
}

.channel-icon {
  width: fit-content;
  margin: 10px auto;
  color: black;
  background-color: white;
  border-radius: 10px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.33;
}