.vue-form-wizard {
  font-family: inherit;
  border-radius: 5px;
  overflow: hidden !important;
  background-color: rgb(70, 74, 94) !important;
  color: white;
  display: grid;
  grid-template-rows: min-content max-content 10fr min-content;
  height: 100%;
}
.vue-form-wizard .wizard-icon{
  display: none !important;
}
.vue-form-wizard .wizard-card-footer{
  grid-row: 4;
  justify-self: end;
  display: flex;
  justify-content: end;
  height: 60px;
}
.vue-form-wizard .wizard-title {
  color: white !important;
  font-weight: 600 !important;
  position: relative;
  z-index: 12;
}

.vue-form-wizard .wizard-header {
  padding: 10px !important;
}

.vue-form-wizard .wizard-header .category {
  display: none;
}

.vue-form-wizard .wizard-header:after {
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  border-radius: 0;
  background-color: rgb(40, 42, 57);
  height: 130px;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.vue-form-wizard .wizard-navigation {
  z-index: 3;
  position: relative;
}

.vue-form-wizard button {
  background-color: transparent;
  color: white;
  outline: none;
  cursor: pointer;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  padding: 2px 10px;
  text-transform: uppercase;
  height: fit-content;
  transition: background-color 0.1s ease-in-out;
}

.vue-form-wizard button:hover {
  background-color: rgb(8, 133, 225);
}

.vue-form-wizard input {
  border-radius: 5px;
  /* border: none; */
}
