.syllabus_v2_tabs .container_v2 .syllabus_v2_title {
  text-align: center;
}

.syllabus_v2_tabs .container_v2 .syllabus_v2_title h2 {
  text-align: left;
}

.syllabus_v2_tabs .container_v2 .syllabus_v2_title p {
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: start;
}

.syllabus_v2_tabs .filter-wrapper.selector {
  display: none;
}

@media (max-width: 1023px) {
  .syllabus_v2_tabs .filter-wrapper.buttons {
    display: flex;
  }
}

.syllabus_v2_tabs .filter-wrapper.buttons {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding-inline: 20px;
  margin: 24px -20px 32px;
  justify-content: flex-start;

  background: #FFFFFF;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.syllabus_v2_tabs .filter-wrapper.buttons::-webkit-scrollbar {
  display: none;
}

.syllabus_v2_tabs .filter-wrapper.buttons a {
  flex: 0 0 auto;
  background: #F2F3F6;
  border: unset;
  border-radius: 50px;
  padding: 8px 16px;
  color: var(--color-primary-hover);
  font-family: var(--font-outfit);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.syllabus_v2_tabs .filter-wrapper.buttons a.selected,
.syllabus_v2_tabs .filter-wrapper.buttons a:hover {
  background: var(--color-primary-mid);
  color: #FFFFFF;
}

@media (min-width: 1024px) {
  .syllabus_v2_tabs .filter-wrapper.buttons {
    position: static;
    flex-wrap: wrap;
    overflow-x: visible;
    margin: 32px 0 40px;
    padding: 0;
  }

  .syllabus_v2_tabs .filter-wrapper.buttons a {
    flex: 0 1 auto;
  }
}

.syllabus_v2_tabs .syllabus_v2_container {
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
}

.syllabus_v2_tabs .syllabus_v2_container.active {
  display: flex;
}

.syllabus_v2_tabs .container_v2 .faq_item {
  width: 100%;
}

.syllabus_v2_tabs .container_v2 .faq_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-primary-mid);
  border-radius: 12px;
  padding: 12px 16px;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  min-height: 50px;
}

.syllabus_v2_tabs .container_v2 .faq_header img[data="notshow"] {
  display: none;
}

.syllabus_v2_tabs .container_v2 .faq_header.active img[data="show"] {
  display: none;
}

.syllabus_v2_tabs .container_v2 .faq_header.active img[data="notshow"] {
  display: block;
}

.syllabus_v2_tabs .container_v2 .faq_header img {
  width: 16px;
  height: auto;
}

.syllabus_v2_tabs .container_v2 .faq_header h3 {
  font-family: var(--font-outfit);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  padding-right: 18px;
}

.syllabus_v2_tabs .container_v2 .dropdown_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.syllabus_v2_tabs .container_v2 .dropdown_body p {
  font-family: var(--font-outfit);
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  padding: 1.6rem 1.2rem 1.2rem 1.2rem;
}

.syllabus_v2_tabs .container_v2 .dropdown_body p a {
  color: #45b8ac;
  font-weight: 500;
}

.syllabus_v2_container_table {
  padding-top: 8px;
  padding-bottom: 16px;
  width: 100%;
}

.syllabus_v2_container_table table {
  width: 100%;
  border-collapse: collapse;
  display: table;
  overflow-x: visible;
  white-space: normal;
}

.syllabus_v2_container_table thead th {
  text-align: left;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 12px;
  border: unset;
  background: unset;
}

.syllabus_v2_container_table thead th:nth-child(2),
.syllabus_v2_container_table thead th:nth-child(3) {
  text-align: center;
  width: 80px;
}

.syllabus_v2_container_table tbody tr:hover td {
  background: initial;
}

.syllabus_v2_container_table tbody tr:nth-child(odd) {
  background-color: #F2F3F6;
}

.syllabus_v2_container_table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.syllabus_v2_container_table tbody td {
  padding: 8px 12px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;

  border: unset;
  text-align: start;
}

.syllabus_v2_container_table tbody td:nth-child(2),
.syllabus_v2_container_table tbody td:nth-child(3) {
  text-align: center;
}

@media (min-width: 768px) {
  .syllabus_v2_tabs .container_v2 .syllabus_v2_title h2 {
    text-align: start;
  }

  .syllabus_v2_tabs .container_v2 .faq_item {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .syllabus_v2_tabs .container_v2 .syllabus_v2_tabs {
    margin-block: 48px;
  }

  .syllabus_v2_tabs .container_v2 .dropdown_body p {
    padding: 1.6rem 1.2rem 1.2rem 1.2rem;
  }

  .syllabus_v2_container_table {
    padding: 16px;
  }
}