.general_form_container .input_container {
  max-width: 620px;
}

.general_form_container {
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}

#ytSummarizer .input_wrapper {
  background-color: #fff;
  height: 57px !important;
}

#ytSummarizer .input_wrapper.focused .placeholder {
  top: 12px !important;
  padding: 0;
}
#ytSummarizer .input_error {
  display: none !important;
}
#ytSummarizer .input_error.show {
  display: flex !important;
}
#ytSummarizer .form_inner_container {
  border: 1px dashed #c8c7d0;
  border-radius: 16px;
}
#ytSummarizer .input_wrapper,
select {
  height: 55px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  padding-right: 5px !important;
}

#ytSummarizer .input_wrapper .btn {
  max-width: 180px;
  height: 45px;
}

#ytSummarizer .input_wrapper .btn a {
  line-height: 43px;
  width: 100%;
  min-width: unset;
}

#ytSummarizer .input_wrapper input {
  font-size: 16px;
}

#ytSummarizer label {
  color: #7f8891 !important;
}

.cover_holder {
  width: 480px;
  flex: 0 0 480px;
  height: 270px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  background-size: cover;
}

.model_content_outer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}
.model_content_outer .model_content_inner:nth-child(2) {
  margin: 0 20px;
}
.model_content_inner {
  flex: 1 1 0px;
  border-radius: 20px;
}

#summary_holder {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: none;
  padding: 24px;
  max-width: 996px;
  height: 480px;
  margin: 0 auto 136px auto;
  position: relative;
}

.summary_banner {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  bottom: -108px;
  width: 100%;
  left: 0;
}
.summary_banner .btn {
  max-width: 220px !important;
  flex: 0 0 220px;
}
.subtitle_list {
  display: flex;
  gap: 16px;
}
.subtitle_list > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

#summary_holder .summary_inner {
  height: 100%;
  overflow-y: scroll;
  padding: 16px;
  padding-bottom: 48px;
}

#summary_holder .summary_inner::-webkit-scrollbar {
  width: 4px;
  background-color: #dfdcfe;
}
#summary_holder .summary_inner::-webkit-scrollbar-thumb {
  background-color: #a59afc;
  border-radius: 10px;
}
.video_info {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.btns_holder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.btns_holder .btn a {
  min-width: unset;
}
.faqs_wrapper {
  max-width: 794px;
  width: 100%;
  margin: 0 auto;
}

.faq_item {
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.faq_item.active .faq_question:after {
  transform: rotate(45deg);
}
.faq_item .faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq_item .faq_answer {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease;
  position: absolute;
}
.faq_question:after {
  content: url('../imgs/icon_plus.svg');
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
}
.faq_item .faq_answer.show {
  max-height: 5000px;
  visibility: visible;
  opacity: 1;
  max-height: 5000;
  position: static;
}

.more_tools_holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.more_tools_holder .tool_inner {
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #d3d2d9;
  overflow: hidden;
}
.more_tools_holder .tool_inner .img_wrapper {
  height: 184px;
  background-size: cover;
  background-position: center;
}
.more_tools_holder .tool_inner .content_wrapper {
  padding: 16px 32px 32px;
}
.more_tools_holder .tool_inner .content_wrapper .btn {
  max-width: unset;
  width: 100%;
  display: block;
}
.more_tools_holder .tool_inner .content_wrapper .btn a {
  width: 100%;
  display: block;
}
/* box-shadow: -18.301px 18.301px 45.752px 0px rgba(20, 11, 110, 0.10);*/

@media screen and (max-width: 1024px) {
  #summary_holder {
    padding: 16px;
  }
  .general_form_container {
    padding: 16px;
  }
  .model_content_outer {
    flex-direction: column;
    gap: 20px;
  }
  .model_content_inner {
    flex: 0 0 100%;
    width: 100%;
    margin: 0 !important;
  }
  #summary_holder .summary_inner {
    padding: 8px;
  }
  #ytSummarizer .input_wrapper {
    height: 45px;
  }
  #ytSummarizer .input_wrapper input::placeholder {
    font-size: 14px;
  }
  .cover_holder {
    max-width: 220px;
    height: 150px;
    flex: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .btns_holder {
    flex-direction: column;
  }
  .summary_banner {
    flex-direction: column;
  }
  .summary ul {
    padding-left: 10px;
  }
  .subtitle_list {
    display: none;
  }

  .summary_banner .btn {
    flex: auto;
  }
  .video_info {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  #ytSummarizer .input_wrapper {
    height: 45px !important;
  }
  .mobile_btn_wrapper {
    display: block !important;
  }
}
