.step-num-div {
  background-color: red;
}

.container-div {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.deatils-list {
  list-style-type: none;
  padding: 0 !important;
  margin-top: 1.5rem !important;
}

.fa-arrow-right {
  margin-left: 0.3rem;
}

.fa-arrow-right {
  margin-right: 0.3rem;
}

/* Media Queriies */
@media screen and (min-width: 575px) {
  .deatils-list {
    margin: 0 !important;
    text-align: end;
  }
}

@media screen and (min-width: 960px) {
  .container {
    max-width: 820px;
  }
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

.image-container {
  max-height: 250px;
  max-width: 250px;
  overflow: hidden; /* Ensure the image doesn't overflow the container */
}

.logo_image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Maintain aspect ratio and fit image within container */
}

.red, .error-msg {
  color: red;
}

label:not(small) {
  font-weight: 500;
}

.submit_btn {
  background-color: black !important;
  color: white !important;
  border-color: black !important;
  width: 30%;
}
.submit_btn:hover {
  background-color: transparent !important;
  color: black !important;
  border-color: black !important;
}
.submit_btn:active {
  background-color: transparent !important;
  color: black !important;
  border-color: black !important;
}

.submit_btn:disabled {
  background-color: darkgrey !important;
  border-color: darkgrey !important;
}
#nextButton {
  width: 24%;
}
#prevButton {
  width: 20%;
}

.childItem {
  display: none;
}



/*Stepper CSS*/
#timeline .steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
.step-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background-color: gray;
  color: white;
  transition: .4s;
}
.step-button[aria-expanded="true"] {
  width: 50px;
  height: 50px;
  background-color: blue;
  color: #fff;
}
.done {
  background-color: black;
  color: #fff;
  width: 50px;
  height: 50px;

}
.step-item {
  z-index: 10;
  text-align: center;
}
#progress {
  -webkit-appearance:none;
  position: absolute;
  width: 95%;
  z-index: 5;
  height: 1px;
  margin-left: 18px;
  margin-bottom: 18px;
}
/* to customize progress bar */
#progress::-webkit-progress-value {
  background-color: blue;
  transition: .5s ease;
}
#progress::-webkit-progress-bar {
  background-color: gray;
}

.checkoutLabel {
  font-weight: 500;
}


.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
}

.scroll-to-bottom {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: block;
}

/**
 * Overlay Spinner / Loader
 */
.overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #544c4c2e;
  z-index: 1;
  opacity: 0.7;
}

.overlay .overlay__inner {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.overlay .overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overlay .spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 4px;
  border-color: rgba(255, 255, 255, 0.05);
  border-top-color: #000000c7;
  animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/**
 * Overlay Spinner / Loader ENDS
 */