.modal-plan {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-plan .modal-content {
  background-color: white;
  padding: 16px;
  border-radius: 24px;
  width: 448px;
  height: fit-content;
  position: relative;
  overflow: hidden;
  height: 656px;
}

.modal-plan .modal-content .close-container {
  display: flex;
  justify-content: flex-end;
}

.modal-plan .modal-content .container-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  height: 100%;
  padding: 16px;
}

.modal-plan .modal-content .container-3 {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.modal-plan .modal-content .container-4 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.modal-plan .modal-content h3 {
  margin-bottom: 16px;
}
.modal-plan .modal-content p {
  font-size: 16px;
  line-height: 150%;
  color: var(--color-text-2);
}
.modal-plan .modal-content .container-4 p {
  text-align: center;
}
.modal-plan .step-info {
  padding: 4px 8px;
  background-color: var(--color-bg-7);
  border-radius: 50px;
  width: fit-content;
  color: var(--color-text-4);
  font-weight: 500;
  flex: none;
}

.modal-plan .step-info span {
  color: var(--color-text-1);
}

.modal-plan .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.progress-container {
  width: 100%;
  height: 4px;
  background-color: var(--color-bg-7);
  border-radius: 30px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--blue);
  transition: width 0.5s ease-in-out;
  border-radius: 50px;
}

.modal-plan .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  padding: 64px 16px;
  gap: 32px;
}

.modal-plan .modal-content .container-6 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-plan .modal-content .container-6 h5 {
  margin-bottom: 8px;
}

.modal-plan .modal-content .container-7 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
}

.modal-plan .modal-footer {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-top: 1px solid var(--color-border-2);
  background: white;
  flex-wrap: wrap;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
@media (max-width: 350px) {
  .modal-plan .modal-footer {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .modal-plan .modal-content {
    width: 350px;
    height: fit-content;
  }
  .modal-plan .modal-content .modal-body {
    margin-bottom: 32px;
    padding: 64px 0 48px;
  }
}
.modal-plan .tag-border {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
}

.modal-plan .modal-footer .icon-right {
  margin-left: 16px;
}

.modal-plan .modal-footer .icon-left {
  margin-right: 16px;
}

#modal-plan-2 {
  display: none;
}
