.step {
  align-items: center;
  display: none;
  margin-bottom: 50px;
}

.step>h1 {
  display: inline-block;
  position: relative;
  top: 80px;
  opacity: 0;
}

.step>div {
  margin-top: 30px;
  max-width: 405px;
  width: 90%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.step>div:nth-child(2) {
  margin-top: 30px;
  max-width: 405px;
  width: 90%;
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}

.step>div>div {
  width: 135px;
  filter: brightness(1.2);
  position: relative;
  font-size: 90px;
  line-height: 1;
  transition: all 0.3s;
}

.step img {
  opacity: 0.5;
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
}

/* .step>div>div>label::before {
  content: url(./../images/simulator-icons/unchecked.svg);
  position: absolute;
  bottom: -15px;
  z-index: 1;
} */

.show-step {
  display: flex;
  flex-direction: column;
}

.hide-input {
  display: none;
  position: absolute;
}

.hide-input:checked+label>img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}

.hide-input:checked+label::before {
  content: url(./../images/simulator-icons/checked.svg);
  position: absolute;
  bottom: -15px;
  z-index: 1;
}

.hide-input:checked+label+div {
  display: flex;
}

.show-button {
  display: block !important;
}

.button-center {
  flex-direction: column !important;
  align-items: center !important;
}

.button-center button, .button-center a {
  display: none;
}

.button-center button:focus, .button-center button:hover {
  background-color: #D06B29 !important;
}

.button-center button:hover {
  filter: brightness(1.2);
}

.quatity-btns {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  justify-content: center;
  transform: translateY(-5px);
}

.increment-button {
  font-size: 14px;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #737373;
  color: #FDFBEB;
  border-radius: 50%;
  border: none;
  outline: none;
}

.quantity {
  float: left;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  margin: 0 5px;
  position: relative;
  bottom: -15px;
  border: none;
  outline: none;
  cursor: default;
}

/* Barra de progresso */

.bar-container {
  position: relative;
  margin: 0px 39px;
}

.incomplete-bar {
  height: 28px;
  background-color: #cec8bb;
  border-radius: 32px;
  margin: 60px 0;
  position: relative;
  overflow: auto;
  /* position: absolute; */
}

.complete-bar {
  width: 0%;
  height: 28px;
  background-color: #D06B29;
  border-radius: 32px;
  position: absolute;
  top: 0;
  left: 0;
}

.current-step {
  width: 78px;
  height: 78px;
  background-color: #D06B29;
  border-radius: 50%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #FDFBEB;
  -webkit-box-shadow: inset 0 -3px 0 rgb(0 0 0 / 15%);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -3px 0 rgb(0 0 0 / 15%);
  -webkit-transition: all 0.3s ease-out;
  transform: translate3d(-39px, -25px, 0);
}

.custom-file-label {
  text-align: left;
}

.custom-file-label::after {
  content: "Escolher" !important;
}