/* custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e45415;
}

/* custom scrollbar end */

.breadcrumb-item.active {
  color: #fff;
}

/*step start */

.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
  text-align: center;
  margin-bottom: 30px;
  color: #666;
}

.progressbar li {
  list-style-type: none;
  width: 25%;
  display: inline-block;

  position: relative;
  text-align: center;
  font-size: 13px;

}

.progressbar li::before {
  width: 35px;
  height: 35px;
  content: counter(step);
  counter-increment: step;
  line-height: 36px;

  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #ccc;
  position: relative;
  z-index: 1;
  color: #999;
  font-size: 18px;
  font-weight: bold;
}

.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #ccc;
  top: 16px;
  left: -50%;

}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color: #007ea4;
  font-weight: bold
}

.progressbar li.active:before {
  background: #007ea4;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.progressbar li.active+li:after {
  background-color: #007ea4;
}

.progressbar li i {
  font-size: 24px;
  position: absolute;
  margin-top: -10px;
  margin-left: -28px;
}

@media (max-width: 767px) {
  .progressbar li {
    width: 32%
  }

  header .logo img {
    width: 9.75rem;
    margin-right: 0.75rem;
  }
}

/*step end*/

.uploaded-image {
  width: 100px;
  margin: 5px;
  height: 100px;
  object-fit: contain;
}