.button {
  text-transform: uppercase;
  font-weight: 800;
  line-height: 19px;
  letter-spacing: 1.6px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: "Open Sans";
}
.button .icon {
  font-size: 16px;
  color: #FFFFFF;
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button.small {
  padding: 8px 16px;
}
.button.medium {
  padding: 12px 16px;
}
.button.large {
  padding: 24px;
}
.button.cta {
  background: #ED1C24;
  border: 1px solid #ED1C24;
}
.button.cta:hover {
  background: #FEECED;
  color: #ED1C24;
}
.button.primary {
  background: #0C1A81;
  border: 1px solid #0C1A81;
}
.button.primary:hover {
  background: #EFF0FD;
  color: #0C1A81;
}
.button.primary:hover .icon {
  color: #0C1A81;
}
.button.primary:disabled {
  background: #CCCFDA;
  color: #616582;
  border: 1px solid #CCCFDA;
  cursor: not-allowed;
}
.button.secondary {
  background: #FEECED;
  border: 1px solid #FEECED;
}
.button.secondary:hover {
  background: #ED1C24;
  color: #FFFFFF;
  border: 1px solid #ED1C24;
}
.button.disabled {
  background: #CCCFDA;
  color: #616582;
  border: 1px solid #CCCFDA;
  cursor: not-allowed;
}

.wysiwyg {
  font-family: Open Sans;
}
.wysiwyg h1 {
  font-size: 36px;
  /* Heading 1 */
  margin: 16px 0;
  font-weight: 900;
}
.wysiwyg h2 {
  font-size: 28px;
  /* Heading 2 */
  margin: 14px 0;
  font-weight: 900;
}
.wysiwyg h3 {
  font-size: 24px;
  /* Heading 3 */
  margin: 12px 0;
  font-weight: 900;
}
.wysiwyg h4 {
  font-size: 18px;
  /* Heading 4 */
  margin: 10px 0;
  font-weight: 900;
}
.wysiwyg h5 {
  font-size: 16px;
  /* Heading 5 */
  margin: 8px 0;
  font-weight: 900;
}
.wysiwyg h6 {
  font-size: 14px;
  /* Heading 6 */
  margin: 6px 0;
  font-weight: 900;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg p {
  margin: 10px 0;
}
.wysiwyg strong {
  font-weight: 700 !important;
}
.wysiwyg ol {
  list-style: decimal;
}
.wysiwyg ul {
  list-style: disc;
}
.wysiwyg a {
  color: #0C1A81;
}

.body {
  display: flex;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.body .d-none {
  display: none;
}
.body .divider {
  background: #a9a9a9;
  border: none;
  height: 1px;
  margin: 40px 0;
}
.body .content {
  flex: 1;
  padding: 20px;
}

li {
  margin: 0;
}

.main {
  flex: 1;
}
.main .filter-section {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1152px) {
  .main .filter-section {
    display: none;
  }
}
.main .filter-section .sort {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
  gap: 8px;
}
.main .filter-section .sort .label {
  color: #000000;
}
.main .filter-section .sort .select {
  height: 50px;
  border: none;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
.main .filter-section .filter .filter-btn {
  width: 100%;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 19px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.main .incomplete-courses {
  padding: 80px 60px 40px;
  position: relative;
}
.main .incomplete-courses .description {
  color: #0C1A81;
  font-family: Open Sans;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
@media (max-width: 768px) {
  .main .incomplete-courses .description {
    color: var(--primary-700, #0c1a81);
    /* Mobile Headings */
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 120% */
  }
}
.main .incomplete-courses .content {
  box-sizing: border-box;
  justify-content: flex-start;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}
.main .incomplete-courses .content .card {
  flex: 1;
  max-width: 280px;
  min-width: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  display: flex;
  border: 0.5px solid #CCCFDA;
  background: #FFFFFF;
}
.main .incomplete-courses .content .card .logo {
  width: 100%;
}
.main .incomplete-courses .content .card .course-card-pattern {
  height: 200px;
  background: url("../../../images/CourseCardPatternDark.svg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.main .incomplete-courses .content .card .course-card-pattern img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #fff;
}
.main .incomplete-courses .content .card .card-content {
  padding: 20px;
  width: 100%;
}
.main .incomplete-courses .content .card .card-content .card-title {
  color: #0C1A81;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  height: 71px;
  overflow: hidden;
}
.main .incomplete-courses .content .card .card-content .card-title p {
  text-overflow: ellipsis;
  height: 71px;
  margin: 0;
}
.main .incomplete-courses .content .card .card-content .lessons-count {
  color: #000000;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin: 20px 0;
}
.main .incomplete-courses .content .card .card-content .progress-bar {
  background-color: #E2E4EB;
  height: 10px;
  border-radius: 5px;
}
.main .incomplete-courses .content .card .card-content .progress-bar div {
  border-radius: 5px;
  height: 100%;
  background-image: linear-gradient(to right, #ec1e27, #d6004d, #ad006b, #73007e, #0c1a81);
}
.main .incomplete-courses .content .card .card-content .card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 4px;
}
.main .incomplete-courses .content .card .card-content .card-footer p {
  color: #000000;
  text-align: center;
  margin: 0;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.main .incomplete-courses .content .card .provider {
  color: #ED1C24;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  height: 18px;
  overflow: hidden;
}

.your-certificates {
  padding: 80px 60px;
  background: #F7F9FD;
}
.your-certificates .your-certificates-title {
  margin: 0;
  color: #0C1A81;
  font-family: Open Sans;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
.your-certificates .content {
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 32px;
}
.your-certificates .content .card {
  flex: 1;
  max-width: 280px;
  min-width: 280px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  border: 0.5px solid #CCCFDA;
  background: #FFFFFF;
  margin-top: 40px;
}
.your-certificates .content .card .course-card-pattern {
  height: 200px;
  background: url("../../../images/CourseCardPatternDark.svg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.your-certificates .content .card .course-card-pattern img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #fff;
}
.your-certificates .content .card .card-content {
  padding: 20px;
  width: 100%;
}
.your-certificates .content .card .card-content .card-title {
  color: #0C1A81;
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  height: 71px;
  overflow: hidden;
}
.your-certificates .content .card .card-content .card-title p {
  text-overflow: ellipsis;
  height: 71px;
  margin: 0;
}
.your-certificates .content .card .card-content .lessons-count {
  color: #000000;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  margin: 20px 0;
}
.your-certificates .content .card .card-content .completed-progress-bar {
  height: 10px;
  border-radius: 5px;
  background: #0c1a81;
}
.your-certificates .content .card .card-content .card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 4px;
}
.your-certificates .content .card .card-content .card-footer p {
  color: #000000;
  text-align: center;
  margin: 0;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.your-certificates .content .card .card-content .card-footer .icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.your-certificates .content .card .provider {
  color: #ED1C24;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  height: 18px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .main .incomplete-courses a {
    flex: 1;
  }
  .main .incomplete-courses .content .card {
    min-width: calc(50% - 30px);
    width: 100%;
    max-width: 100%;
  }
  .your-certificates .content .card {
    min-width: calc(50% - 30px);
  }
}
.mobile-filters {
  padding: 0;
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  left: 0;
  background: #fff;
  overflow: hidden;
  z-index: 9;
  transition: all 0.35s ease-in-out;
}

.open-filter {
  width: 100%;
}

.actions,
.close-filters {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}
.actions .clear-filters,
.close-filters .clear-filters {
  color: var(--secondary-600, #b6131e);
  font-family: Open Sans;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  background: transparent;
  line-height: 28px;
  /* 155.556% */
  margin-top: 40px;
  text-transform: none;
  outline: none;
}
.actions .filter-by,
.close-filters .filter-by {
  color: var(--shades-black, #000);
  /* Heading/H4 / Bold */
  font-family: Open Sans;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  /* 121.429% */
  letter-spacing: -0.56px;
}

@media (min-width: 768px) {
  .mobile-filters {
    display: none;
    padding: 60px 0 20px;
  }
}

/*# sourceMappingURL=my_courses.css.map */
