.progressbar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d1d5db;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 4px;
}

.progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: #003B74;
  transform: translateY(-50%);
  width: 0%;
  border-radius: 4px;
  transition: width 0.6s ease;
  z-index: 0;
}

.step {
  width: 40px;
  height: 40px;
  background: #d1d5db;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-weight: 600;
  color: #fff;
  transition: background 0.4s ease, transform 0.3s ease;
}

.step.active {
  background: #003B74;
  transform: scale(1.1);
  box-shadow: 0 0 12px #003B74;
}

/* Form Steps */
.form-step {
  visibility: hidden;
  position: absolute;
  left: -9999px;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.4s ease;
}

.form-step.active {
  visibility: visible;
  position: static;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
button:disabled {
  opacity: 0.6;
  pointer-events: none;
  background-color: #f5f5f5;
  color: #999;
  border-color: #ddd;
}

.direction-rtl .progress {
  right: 0;
  left: auto;
  transform: translateY(-50%);
}
.direction-rtl .progressbar::before {
  right: 0;
  left: auto;
  transform: translateY(-50%);
}

footer .more {
  margin-top: 10px;
}
footer .more .caption {
  font-size: 23px;
  line-height: 30px;
  font-weight: normal;
}
footer .more .options {
  display: flex;
  align-items: center;
  margin-top: 29px;
  flex-wrap: wrap;
  row-gap: 10px;
}
footer .more .options > li {
  margin-right: 7px;
}
footer .more .playstore {
  display: block;
  height: 31px;
  width: 110px;
}
footer .more .playstore:after {
  transform: scale(0.5);
  transform-origin: 0 0;
  background: url(../images/icons.png?v=1) no-repeat 0 0;
  height: 62px;
  width: 220px;
  display: block;
  content: "";
}
footer .more .appstore {
  display: block;
  height: 31px;
  width: 110px;
}
footer .more .appstore::after {
  transform: scale(0.5);
  transform-origin: 0 0;
  background: url(../images/icons.png?v=1) no-repeat -225px 0;
  height: 62px;
  width: 220px;
  display: block;
  content: "";
}

.workingHoursOneLine {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.notificationPop .time {
  font-size: 12px !important;
  font-weight: bold;
}

.read .time {
  font-weight: normal;
}

.notificationPop .title {
  padding-right: 30px;
}

html[lang=ar] .notificationPop .mCSB_container {
  direction: rtl;
}

html[lang=ar] .notificationPop .unread::after {
  right: auto;
  left: 15px;
}

html[lang=ar] .notificationPop ul.data li {
  padding-left: 30px;
  text-align: right;
  padding-right: 0;
}

html[lang=ar] .notificationPop .title {
  padding-left: 30px;
  padding-right: 0;
}

html[lang=ar] .notificationPop .singleRead {
  left: 29px;
  right: auto;
}

.pop_info {
  z-index: 999;
}

.Expert .Requests .top {
  display: none;
}
.Expert .Requests .sectiontitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #060000;
  border-top: 1px solid #ddd;
  padding-top: 35px;
  margin-top: 40px;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.Expert .myvolunteerRequests .Requests .inside {
  padding: 0;
}
.Expert .Requests {
  padding-bottom: 0;
}
.Expert .Quoting {
  padding: 0 0 0 20px;
}

.peopleProfilePop .address .field {
  height: 62px !important;
}

.peopleProfilePop .houseHold .subtitle {
  margin-top: 28px;
}

.peopleProfilePop #ThirdStepForm .inputField {
  margin-top: 15px;
}

.peopleProfilePop #ThirdStepForm .disability > ul > li {
  margin-top: 15px;
}

.peopleProfilePop .currently-reg-ngo ul .subtitle {
  margin-top: 28px;
}

.peopleProfilePop ul li.negtiveMargin {
  margin-top: 0 !important;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  cursor: pointer;
}

input[type=date] + i {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.btn-container .btn-wrapper:nth-child(2) {
  margin-right: 20px;
}

.peopleProfilePop .btn-container {
  flex-wrap: wrap;
  row-gap: 10px;
}/*# sourceMappingURL=updates.css.map */