@charset "UTF-8";
.arrow-steps[data-v-78d80c58] {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step[data-v-78d80c58] {
  font-size: 14px;
  text-align: center;
  color: #666;
  cursor: pointer;
  margin: 0 3px;
  padding: 10px 10px 10px 30px;
  min-width: 180px;
  position: relative;
  background-color: #d9e3f7;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 0.2s ease;
}
.arrow-steps .step[data-v-78d80c58]:after,
.arrow-steps .step[data-v-78d80c58]:before {
  content: " ";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 17px solid #d9e3f7;
  z-index: 2;
  transition: border-color 0.2s ease;
}
.arrow-steps .step[data-v-78d80c58]:before {
  right: auto;
  left: 0;
  border-left: 17px solid #fff;
  z-index: 0;
}
.arrow-steps .step[data-v-78d80c58]:first-child:before {
  border: none;
}
.arrow-steps .step[data-v-78d80c58]:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.arrow-steps .step[data-v-78d80c58]:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.arrow-steps .step[data-v-78d80c58]:last-child:after {
  border: none;
}
.arrow-steps .step span[data-v-78d80c58] {
  position: relative;
}
.arrow-steps .step span[data-v-78d80c58]:before {
  opacity: 0;
  content: "✔";
  position: absolute;
  top: -2px;
  left: -20px;
}
.arrow-steps .step.done span[data-v-78d80c58]:before {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.5s;
  -moz-transition: opacity 0.3s ease 0.5s;
  -ms-transition: opacity 0.3s ease 0.5s;
  transition: opacity 0.3s ease 0.5s;
}
.arrow-steps .step.current[data-v-78d80c58] {
  color: #fff;
  background-color: var(--ion-color-primary);
}
.arrow-steps .step.current[data-v-78d80c58]:after {
  border-left: 17px solid var(--ion-color-primary);
}