.programs-side {
  background: var(--main-bg-color);
  padding: var(--grid-gutter);
  flex: 1;
}
.programs-side .programs-list {
  display: flex;
  list-style: none;
  padding-inline-start: 20px;
  flex-direction: column;
}
.programs-side .programs-list .program-li {
  position: relative;
}
.programs-side .programs-list .program-li .program-title {
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.4s linear;
}
.programs-side .programs-list .program-li .program-title:before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--main-color);
  position: absolute;
  right: -15px;
  border-radius: 50%;
  content: "";
  margin-top: 3px;
  transition: all 0.3s linear;
}
.programs-side .programs-list .program-li .program-title.active:before {
  background: var(--main-color);
}
.programs-side .programs-list .program-li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.08);
}
.programs-side .programs-list .program-li .sub-program-list {
  margin-top: 10px;
  padding-inline-start: 20px;
}
.programs-side .programs-list .program-li .sub-program-list .sub-program-li:not(:last-child) {
  margin-bottom: 10px;
}
.programs-side .programs-list .program-li .sub-program-list .sub-program-li .sub-program-item {
  font-size: 15px;
  line-height: 25px;
  color: var(--desc-color);
  cursor: pointer;
  transition: all 0.4s linear;
  display: block;
}
.programs-side .programs-list .program-li .sub-program-list .sub-program-li .sub-program-item:hover {
  color: var(--main-color);
}
.programs-side .programs-list .program-li .sub-program-list .sub-program-li.active .sub-program-item {
  color: var(--main-color);
}

.goals-side {
  flex: 1;
}
.goals-side .project-goals .project-goal {
  border: 1px solid var(--main-bg-color);
  flex: 1;
}
.goals-side .project-goals .project-goal:not(:last-child) {
  margin-bottom: 20px;
}
.goals-side .project-goals .project-goal .goal-title {
  padding: 10px var(--grid-gutter);
  border-radius: var(--border-radius);
  transition: all 0.3s linear;
}
.goals-side .project-goals .project-goal .goal-title.js-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.goals-side .project-goals .project-goal .goal-title.js-toggle-btn:after {
  display: none;
}
.goals-side .project-goals .project-goal .goal-title.js-toggle-btn .toggle-arrow {
  border-radius: 5px;
  width: 30px;
  height: 30px;
  background: var(--main-bg-color);
  color: var(--desc-color);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goals-side .project-goals .project-goal .goal-title.js-toggle-btn .toggle-arrow i {
  transition: transform 0.5s linear;
  transform: rotate(0deg);
}
.goals-side .project-goals .project-goal .goal-title.js-toggle-btn.active {
  background: var(--main-bg-color);
}
.goals-side .project-goals .project-goal .goal-title.js-toggle-btn.active .toggle-arrow {
  background: white;
}
.goals-side .project-goals .project-goal .goal-title.js-toggle-btn.active .toggle-arrow i {
  transform: rotate(90deg);
  transition: transform 0.5s linear;
  color: var(--main-color);
}
.goals-side .project-goals .project-goal .goal-body {
  padding: var(--grid-gutter);
}
.goals-side .project-goals .project-goal .goal-body .goal-status {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--font-medium);
}
.goals-side .project-goals .project-goal .goal-body .goal-status.completed {
  color: #1c8b1c;
}
.goals-side .project-goals .project-goal .goal-body .goal-status.not-completed {
  color: #d70808;
}

.list15-items {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.list15-items .is-full {
  flex: 1;
}
.list15-items .list15-item {
  border: 2px dashed var(--main-border-color);
  padding: 20px;
  justify-content: center;
  align-items: center;
}
.list15-items .list15-item .list15-body {
  margin-top: 15px;
}

.all-progress {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  flex: 1;
  width: 100%;
}
.all-progress .all-progress--items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.all-progress .all-progress--items .single-progress {
  width: 50%;
}
.all-progress .single-progress {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.all-progress .single-progress .progress {
  max-width: 180px !important;
  width: 140px !important;
}
.all-progress .single-progress .progress-label {
  color: var(--desc-color);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  font-family: var(--font-medium);
}

.goal-top {
  position: relative;
  padding-bottom: 30px;
}
.goal-top:after {
  width: 100%;
  height: 1px;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
  z-index: 1;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
}

.goal-progress + .goal-progress {
  margin-top: 20px;
}

.goal-progress--body {
  position: relative;
}

.progress-slider {
  position: relative;
  height: 15px;
  border-radius: 30px;
  border: 1px solid #d3d3d3;
  overflow: hidden;
  margin: 10px 0;
}

.progress-slider.sm .progress-slide-value,
.progress-slider.sm {
  height: 10px;
}

.progress-slide-value {
  height: 15px;
  width: 100%;
  background: linear-gradient(to left, red, orange, #99d34c, #00b500);
}

.progress-slide-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
}

.details-btn--wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.details--btn {
  background-color: var(--main-color);
  border-radius: var(--border-radius-large);
  color: white;
  font-size: 16px;
  font-family: var(--font-medium);
  padding: 5px 30px;
}

@media (max-width: 575.98px) {
  .list15-items .list15-item {
    padding: var(--grid-gutter);
  }
  .all-progress .single-progress .progress {
    width: 125px !important;
  }
  .all-progress .single-progress .progress-label {
    font-size: 13px;
  }
}
