.servicesSearchWrap {
  display: flex;
  margin: 30px auto;
  background-color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--border-radius-small);
  transition: all 0.5s;
  border: 1px solid #D6D6D6;
}
.servicesSearchWrap input[type="text"] {
  height: 30px;
  width: 100%;
}
#priceListItems .accordion-item {
  padding: 0;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}
#priceListItems .sectionName {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  color: #3E3E3E;
  font-family: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: transparent;
  border: none;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}
#priceListItems .sectionName .ui-accordion-header-icon {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}
#priceListItems .sectionName.ui-state-active {
  color: #28868A;
}
#priceListItems .sectionItems {
  padding: 0;
  border: none;
}
#priceListItems .sectionItems .sectionItemTitle {
  color: #28868A;
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 20px;
  display: block;
}
#priceListItems .sectionItems .servicesList {
  display: flex;
  flex-direction: column;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  margin-top: 20px;
}
#priceListItems .sectionItems .servicesList .serviceElement {
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  border-top: 1px solid #D6D6D6;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
}
#priceListItems .sectionItems .servicesList .serviceElement:nth-child(1) {
  border-top: none;
}
#priceListItems .sectionItems .servicesList .serviceElement .serviceElementName {
  width: calc(100% - 201px);
  display: flex;
  align-items: center;
}
#priceListItems .sectionItems .servicesList .serviceElement .serviceElementName .highlight {
  font-weight: 600;
  color: #28868A;
}
#priceListItems .sectionItems .servicesList .serviceElement .serviceElementPrice {
  width: 200px;
  border-left: 1px solid #D6D6D6;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #28868A;
  font-weight: 700;
}

@media (max-width: 480px) {
  #priceListItems .sectionItems .servicesList .serviceElement {
    flex-direction: column;
    padding: 20px;
  }
  #priceListItems .sectionItems .servicesList .serviceElement .serviceElementName {
    width: 100%;
  }
  #priceListItems .sectionItems .servicesList .serviceElement .serviceElementPrice {
    width: 100%;
    border-left: none;
    padding-bottom: 0px;
    text-align: left;
    justify-content: flex-start;
  }
}