
/* main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding-bottom: 40px;
    background-color: #F5F6F8;
  }

  main .main-header{
    width: 90%;
    display: flex;
    padding: 25px;
    background-color: #F3EFFA;
    margin-top: 70px;
    box-shadow: 0px 0px 20px 0px #D0D1D780;
    border-radius: 20px;
  } */
  .main-content{
    width: 65%;
    display: flex;
    flex-direction: column;
  }

  .header-content{
    width: 50%;
    display: flex;
    flex-direction: column;
  }
  .header-content span{
    color: #989898;
    /* font-size: 10px; */
  }

  .header-content h3{
    color: #585858;
    font-size: 32px;
    font-weight: 600;
    max-width: 520px;
  }
  .header-content h3 span{
    color: #2A1284;
  }

  .header-content .paragraphs{
    display: flex;
    flex-direction: column;
  }

  .header-content .paragraphs span{
    color: #565656;
    font-size: 16px;
    line-height: 22px;
    /* font-weight: 600; */
  }
  .header-form{
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 7px;
    box-shadow: 0px 0px 20px 0px #D0D1D780;
   border-radius: 10px;
  }
  .header-form .input-svg svg{
    width: 35px;
    height: 35px;
  }
  .header-form .input-svg{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 8px;
  }
 
  .header-form .input-svg input{
    width: 290px;
    border: none;
    outline: none;
    margin-left: 0px !important;
    box-shadow: unset;
    padding: 0px !important;
  }
.location-svg{
  display: flex;
  align-items: center;
  padding: 8px 8px;
  background-color: #F3EFFA;
  border-radius: 50%;
}
  .location-svg svg{
    width: 14px !important;
    height: 14px !important;
  }
  .header-form button{
    background-color: #2A1284;
    color: #ffffff;
    padding: 5px 25px;
  }


  .header-form button:hover{
    background-color: #2A1284;
    color: #ffffff;
  }

  .main-img{
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .main-img img{
    width: 60%;
  }

  .main-services{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
  }

  .main-services .services-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  
  .main-services .services-heading span.highlight {
    color: var(--primary-color);
  }

  .main-services .services-heading .progress div{
    background-color: var(--primary-color);
  }
  .main-services .services-heading .complete-status {
    font-size: 14px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: #000000;
  }

  .step-cards-container{
    width: 100%;
    display: grid;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 27px;
  }

  .step-cards .status {
    padding: 0px 25px;
    border-radius: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .step-cards .status.done {
    background-color: #34FF5640;
    color: #099502;
  }

  .step-cards .status.due {
    background-color: #E6932C21;
    color: #E6932C;
  }

  .step-cards.done button {
    pointer-events: none; 
    opacity: .4;
  }

  .step-cards.done button:disabled {
    cursor: not-allowed;
  }


.step-cards-container .step-cards{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 15px 13px;
  box-shadow: 0px 0px 20px 0px #D0D1D780;
  border-radius: 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.step-cards .card-svg svg{
  width: 48px;
  height: 48px;
}
.step-cards h5{
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0px !important;
}
.step-cards span{
  /* font-weight: 600; */
  color: #7D7987;
  font-size: 12px;
}

.step-cards > .message {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.step-cards span img {
  width: 35px;
  height: 35px;
  border-radius: 50px;
}
.services-heading span{
  color: #565656;
  font-size: 20px;
  font-weight: 600;
}



.step-cards .actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  height: 100%;
  align-items: flex-end;
}

.step-cards .actions button {
  width: 100%;
  height: 38px;
  border: unset;
  border-radius: 7px; 
  font-size: 14px;
}

.step-cards .actions button[data-value='make_as_done'] {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}



.step-cards .actions button[data-value='make_as_done'] span {
  color: var(--primary-color);
}

.step-cards .actions button[data-value='book'] {
  border: none;
  color: #ffffff;
  background-color: var(--primary-color);
}

.doctorDropdownList {
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  z-index: 1000;
  background: white;
  top: 48px;
  left: -14px;
}

.doctorDropdownList .doctor-object {
  padding: 10px;
  cursor: pointer;
}

.doctorDropdownList .doctor-object:hover {
  background-color: #f8f9fa;
}

.no-results {
  padding: 10px;
  color: #888;
  text-align: center;
}

[lang = "ar"] {
  .header-form button{
    margin-left: unset !important;
    margin-right: 1rem !important;
  }
  .header-form .input-svg{
    margin-left: unset;
    margin-right: 8px !important;
  }
  @media screen and (max-width: 992px) {
    .patient-content .header-form .input-svg input {
        margin-right: 34px !important;
        padding: unset !important;
    }
}




}


/* new design */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  background-color: #FFFFFF;
  margin-top: 65px;
}

main .main-header {
  width: 100%;
  padding: 70px 25px 25px 25px;
}

.main-content {
  width: 100%;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.header-content > h1 {
  font-weight: 700;
  text-align: center;
}

.header-form {
  border-radius: 80px;
  box-shadow: 0px 1px 6px 0px #00000026;
}

#header-form-btn {
  max-width: 268px;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 58px;
  background-color: var(--primary-color);

  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
}

.header-form .input-svg svg {
  width: 27px;
  height: 27px;
}

.services-heading span {
  font-weight: 400;
  color: #565656;
}

.services-heading span:first-of-type {
  font-weight: 700;
}

.searches {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 70px 4.93%;
}

.searches > span.text {
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0%;
  color:var(--input-label-color);
}

.searches .searches-container {
  width: 100%;
  display: grid;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 30px;
}

.searches .searches-container .search-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0px 1px 6px 0px #00000026;
  padding: 44px 34px;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
}
.searches .searches-container .search-item:not(.disabled):hover {
  border: 2px solid var(--primary-color);
  box-shadow: 0px 1px 6px 0px #00000026;
}

.search-item.disabled {
  order: 1;
  opacity: .35;
  cursor: initial !important;
}

.search-item.disabled .coming-soon-category-text {
  display: inline-block !important;
  position: absolute;
  top: 9px;
  right: 15px;
  color: #373737;

  font-weight: 500;
  font-size: 14px;
}

.searches .searches-container .search-item .search-item-text{
  font-weight: 700;
  font-size: 26px;
  line-height: 46.87px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--primary-color);
}

@media screen and (max-width: 992px) {
  .input-svg {
    box-shadow: 0px 1px 6px 0px #00000026;
    border-radius: 50px;
    padding: 8px 15px;
  }
  .patient-content .header-form .input-svg input {
    margin-left: 34px !important;
    padding: unset !important;
  }
}

@media screen and (max-width: 530px) {
  .header-form .input-svg {
    margin-left: unset;
  } 
  .header-content {
    width: 75% !important;
  }
}