[v-cloak] {
  display: none;
}

#payment-app {
  font-family: "Montserrat", sans-serif;
}

.row {
  justify-content: center;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.btn-outline {
  border: 2px solid #3686cb;
  color: #3686cb;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-outline:hover {
  background-color: #3686cb;
  color: white;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}

.step-progress-container {
  width: 60%;
  height: 3.5rem;
  display: flex;
  justify-content: space-between;
  margin: 2rem auto;
}

.step-progress-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-progress-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 1rem;
  left: -50%;
}

.step-progress-item.active::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #3686cb;
  border-image-slice: 2;
  border-width: 2px;
  border-image-source: linear-gradient(to right, #4bb543, #3686cb);
  width: 100%;
  top: 1rem;
  left: -50%;
  transition: all 0.3s ease-in-out;
}

.step-progress-item.completed::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #4bb543;
  width: 100%;
  top: 1rem;
  left: -50%;
  transition: all 0.3s ease-in-out;
}

.step-progress-item:first-child::before {
  content: none;
}

.step-progress-item-number {
  width: 2rem;
  height: 2rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 0.9rem;
  color: #fff;
  background-color: #9d9d9d;
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  margin: 0px auto 7px;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}

.step-progress-item.completed .step-progress-item-number {
  background-color: #15bb0a;
}

.step-progress-item.active .step-progress-item-number {
  background-color: #3686cb;
}

.step-progress-item-title {
  text-align: center;
  font-size: 0.8rem;
}

.main {
  width: 100%;
  /* margin-top: 6rem; */
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100vh - 11rem);
}

.product-container {
  width: 50%;
  margin: 3rem auto;
  display: flex;
  justify-content: center;
}

.product-item {
  height: 5rem;
  width: 6rem;
  padding: 1rem;
  background-color: #3686cb;
  color: #fff;
  margin: 1rem;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.product-item-title {
  text-transform: capitalize;
}

.plan-container {
  width: 70%;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.plan-item {
  height: 5rem;
  width: 14rem;
  padding: 1rem;
  background-color: #3686cb;
  color: #fff;
  margin: 1rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.plan-item.selected {
  background-color: #15bb0a;
}

.plan-item-title {
  font-size: 1.4rem;
  font-weight: bold;
}

.next-btn {
  width: max-content;
  background-color: #15bb0a !important;
  border: none !important;
}

.next-btn:hover {
  background-color: #0b8702 !important;
}

.next-btn:focus,
.next-btn:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: #0b8702 !important;
}

.next-btn:disabled {
  cursor: default;
}

.next-btn:disabled:hover {
  background-color: #15bb0a !important;
}

.next-btn-icon {
  margin-left: 0.5rem;
}

.credit-card-container {
  width: 95%;
  display: flex;
  margin: 2rem auto;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  border-radius: 5px;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 20%), 0px 3px 5px 0px rgb(0 0 0 / 20%);
}

.cardnumber {
  width: 80%;
}

.second-line {
  margin-top: 1rem;
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.expiry {
  width: 25%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.small-label {
  font-size: 10px !important;
  left: 5px !important;
}

.no-border-input {
  border: none !important;
  border-bottom: 1px solid #ced4da !important;
  border-radius: 0 !important;
  padding: 0 0.25rem !important;
  height: calc(1.2em + 0.75rem + 2px) !important;
}

form {
  width: 100%;
}

.confirm-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
}

.confirm-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.button-container {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 5rem;
}
