.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #08124b;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #08124b;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
  box-shadow: 0 0px 10px rgba(143, 180, 255, 0.4);
}

.stepper-item .step-counter {
  box-shadow: 0 0px 10px rgba(143, 180, 255, 0.4);
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #08124b;
  color: #fff;
  margin-bottom: 6px;
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2),
    0 1px 1px rgba(255, 255, 255, 0.2);
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  font-family: "Prompt", sans-serif !important;
  border: 2px solid rgba(0, 0, 0, 0.3);
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.active .step-counter {
  background-color: #01167b;
  box-shadow: 0 0px 12px rgba(143, 180, 255, 0.4),
    /* เงาด้านใน โทนฟ้า */ 0 1px 1px rgba(143, 180, 255, 0.2); /* เงาด้านนอกอ่อน ๆ */
}

.stepper-item.completed .step-counter {
  background: #fe0006;
  /* background: linear-gradient(
    180deg,
    rgba(254, 0, 6, 1) 0%,
    rgba(122, 7, 11, 1) 100%
  ); */
  box-shadow: inset 0 -5px 45px rgba(143, 180, 255, 0.4),
    /* เงาด้านใน โทนฟ้า */ 0 1px 1px rgba(143, 180, 255, 0.2); /* เงาด้านนอกอ่อน ๆ */
  border: 2px solid #d6c6a9;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #d6c6a9;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}

.stepper-item:last-child::after {
  content: none;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step label {
  color: white;
}

.bank-info {
  width: 100%;
  cursor: pointer;
}

.bank-info .image {
  width: 60px;
  /* border: 2px solid #fff; */
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
  /* background: #fff; */
}

.bank-info .image img {
  filter: drop-shadow(0 0 0px white) invert(0%);
  transition: all 0.3s;
}

.bank-info:hover .image img {
  filter: drop-shadow(0 0 4px white) invert(0%);
}

.bank-info.selected .image {
  border-color: #3be41f;
}

.bank-info .image img {
  width: 100%;
}

.bank-info .name {
  text-align: center;
  color: white;
  margin-top: 5px;
  flex-wrap: wrap;
  line-height: 1;
}

.bank-list {
  width: 500px;
  height: 500px;
  overflow-y: auto;
  max-width: 100%;
}

.register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 500px) {
  .bank-list {
    width: 350px;
  }
}

@media only screen and (max-width: 350px) {
  .bank-list {
    width: 100%;
  }
}

.mobile-sidebar.show .sidebar {
  left: 0;
}

.bank-list::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

.bank-list::-webkit-scrollbar,
.bank-list::-webkit-scrollbar-thumb,
.bank-list::-webkit-scrollbar-track {
  background-color: transparent;
}

.bank-list::-webkit-scrollbar {
  background-color: rgba(13, 19, 28, 0.8);
  border-radius: 2px;
}

.bank-list::-webkit-scrollbar-thumb {
  background-color: #1074e5;
  border-radius: 2px;
}

.bank-list::-webkit-scrollbar-thumb:hover {
  background-color: #202735;
}

.two-lines {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
