.main-cpfl-webform-service .menu-lateral {
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  font-size: 14px;
}

/**
 * Header
 */
.main-cpfl-webform-service .menu-lateral .boto-menu-lateral {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: transparent;
  height: 57px;
  padding: 16px;
  border-bottom: 1px solid #DFE0E1;
}

@media (max-width: 1023px) {
  .main-cpfl-webform-service .menu-lateral .boto-menu-lateral {
    border-bottom: 0;
  }
}

.main-cpfl-webform-service .menu-lateral .boto-menu-lateral .mobile-icon {
  display: none;
}

@media (max-width: 1023px) {
  .main-cpfl-webform-service .menu-lateral .boto-menu-lateral .mobile-icon::before {
    display: block;
    content: url(../assets/icons/seta-baixo.svg);
  }
}

@media (max-width: 1023px) {
  .main-cpfl-webform-service .menu-lateral .boto-menu-lateral .mobile-icon.show::before {
    display: block;
    content: url(../assets/icons/seta-cima.svg);
  }
}


.main-cpfl-webform-service .menu-lateral .conteudo {
  align-items: center;
  background-color: transparent;
  display: inline-flex;
  /* flex: 0 0 auto; */
  gap: 8px;
  position: relative;
}

.main-cpfl-webform-service .menu-lateral .conteudo span {
  font-weight: 700;
  line-height: 20px;
}

/**
 * List
 */
.main-cpfl-webform-service .menu-lateral .webform-progress {
  display: flex;
  flex-direction: column;
  background: #f3f3f3;
  gap: 32px;
}

.main-cpfl-webform-service .menu-lateral .webform-progress ul {
  background: #ffffff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .main-cpfl-webform-service .menu-lateral .webform-progress ul {
    border-top: 1px solid #DFE0E1;
  }
}

@media (max-width: 1023px) {
  .main-cpfl-webform-service .menu-lateral .webform-progress ul {
    position: absolute;
    visibility: hidden;
    z-index: 1;
    width: -webkit-fill-available;
  }

  .main-cpfl-webform-service .menu-lateral .webform-progress ul.show {
    visibility: visible;
  }

  .main-cpfl-webform-service .menu-lateral .webform-progress ul li {
    position: relative;
  }
}

.main-cpfl-webform-service .menu-lateral .webform-progress ul li {
  list-style-type: decimal;
  list-style-position: inside;
  padding: 8px 16px;
  margin: 4px 8px;
}

.main-cpfl-webform-service .menu-lateral .webform-progress ul li.is-active {
  background-color: #AAD6ED;
  font-weight: 700;
  border-radius: 8px;
}

.main-cpfl-webform-service .menu-lateral .webform-progress ul li.is-not-complete {
  color: #DFE0E1;
}