#main_container {
  padding-top: 118px;
}

#box_self_progress {
  padding: 32px;
  border: 1px var(--color-greyLight) solid;
  border-radius: 12px;
  margin-bottom: 24px;
}

#box_self_progress .community_name {
  margin-bottom: 24px;
}

#box_self_progress p {
  font-size: 14px;
  color: var(--color-greyMedium);
  margin-bottom: 24px;
}

#box_self_progress .box_left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.self_progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.self_progress img.icon_status {
  height: 20px;
}

.self_progress h6 {
  font-size: 16px;
}

.self_progress button {
  border: 0px;
  background-color: transparent;
  padding: 0px;
}

.self_progress button img {
  height: 24px;
}

.self_progress a.cta_btn {
  line-height: 100%;
  display: block;
  padding: 6px 12px;
  background-color: var(--color-black);
  color: var(--color-white);
  cursor: pointer;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
}

.self_progress a.info {
  font-size: 14px;
  color: var(--color-greyMedium);
  text-decoration: none;
}

#box_community_progress {
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#box_community_progress h6 {
  color: var(--color-black);
  font-size: 18px;
  margin-bottom: 12px;
}

#box_community_progress p {
  color: var(--color-greyMedium);
  font-size: 14px;
  margin-bottom: 24px;
}

#box_community_progress .progress-container {
  position: relative;
  width: 100%;
  height: 280px;
}

#box_community_progress .progress-line {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-greyLight);
  border-radius: 50px;
}

#box_community_progress .progress-fill {
  height: 100%;
  width: 0;
  background-color: var(--color-green);
  border-radius: 50px;
}

#box_community_progress .step {
  position: absolute;
  top: 0;
  transform: translateX(-120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#box_community_progress .circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px var(--color-white) solid;
  font-size: 14px;
}

#box_community_progress .step.active .circle {
  background-color: var(--color-green);
  color: #fff;
}

#box_community_progress .card {
  width: 240px;
  border: 0px;
  margin-top: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#box_community_progress .card.locked {
  opacity: 0.5;
}

#box_community_progress .card h6 {
  font-size: 16px;
}

#box_community_progress .card p {
  color: var(--color-greyMedium);
  font-size: 12px;
}

#box_community_progress .card a {
  display: block;
  width: 100%;
  line-height: 40px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
}

#box_community_progress .card a:hover {
  background-color: var(--color-primaryDark);
}

#box_community_progress .card a.disabled {
  background-color: var(--color-greyLightMedium);
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1300px) {
  #box_community_progress .progress-container {
    width: 880px;
  }
}

@media (max-width: 768px) {
  #box_self_progress {
    padding: 24px;
    margin-bottom: 64px;
  }

  .self_progress {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 12px;
  }

  #box_community_progress {
    padding: 0px;
  }
}
