.form_container {
  padding: 24px;
  background-color: #fff;
  width: 100%;
  max-width: 804px;
  border-radius: 20px;
  min-height: 204px;
}
#drop_zone.hidden {
  display: none;
}

#drop_zone {
  width: 100%;
  padding: 24px;
  border: 1px dashed #c8c7d0;
  border-radius: 16px;
}

#drop_zone input[type='file'] {
  display: none;
}

#drop_zone:hover {
  background-color: #f4f4f5;
  cursor: pointer;
}

.error_container {
  display: none;
  min-height: 200px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  border: 1px dashed #c8c7d0;
  border-radius: 16px;
}

.error_container.show {
  display: flex;
}

.loading_container,
.transcript_loading_container {
  display: none;
  padding: 24px;
  border: 1px dashed #c8c7d0;
  border-radius: 16px;
}

.transcript_container {
  display: none;
  padding: 24px;
}

.transcript_container #transcript {
  margin-bottom: 24px;
  position: relative;
}

.transcript_container #transcript.short::after {
  height: 0;
}

.transcript_container #transcript::after {
  content: '';
  height: 30%;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 11.72%,
    #fff 70%
  );
}

.loading_container.show,
.transcript_container.show,
.transcript_loading_container.show {
  display: block;
  min-height: 200px;
}

.cancel_btn {
  background-color: #c8c7d0;
  border-radius: 8px;
  text-align: center;
  padding: 6px 12px;
  color: #232040;
  display: table;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}
.cancel_btn .cancel_tooltip {
  text-align: left;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  padding: 16px;
  background-color: #fff;
  border-radius: 6px;
  top: 42px;
  box-shadow: 0px 1px 16px 0px rgba(27, 30, 33, 0.2),
    0px 1px 12px 0px rgba(27, 30, 33, 0.05);
}

.cancel_btn .cancel_tooltip:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fff;
  left: -8px;
  top: 7px;
  left: 24px;
  top: -11px;
  transform: rotate(90deg);
}
.cancel_tooltip .btn_holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 250px;
  margin-top: 16px;
}
.cancel_tooltip .btn_holder #cancel_upload {
  font-size: 12px;
  line-height: 17px;
  text-decoration: underline;
}
.tooltip_title {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tooltip_title.text_center {
  justify-content: center;
}
.custom_btn {
  background-color: #614efa;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  padding: 6px;
  text-align: center;
  font-weight: bold;
}

.cancel_btn .cancel_tooltip.show {
  opacity: 1;
  visibility: visible;
}

.loader_wrapper {
  width: 60px;
  height: 60px;
  position: relative;
}

.progress_ring__circle {
  transition: stroke-dashoffset 0.35s;
  transform-origin: center;
}

.progress_ring {
  transform: rotate(-90deg);
}

.progress_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader {
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid #f3f0ff;
  border-right-color: #614efa;
  animation: l2 1s infinite linear;
}
@keyframes l2 {
  to {
    transform: rotate(1turn);
  }
}

.feature_row {
  display: flex;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}
.more_feature_content {
  border-radius: 20px;
  margin: 0 10px;
}

@media screen and (max-width: 1024px) {
  .feature_row {
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 0 24px 0;
    gap: 24px;
  }
  .more_tools_holder {
    grid-template-columns: repeat(1, 1fr);
    max-width: 650px;
    margin: 0 auto;
  }
}
