.price-scroll-box {
  max-height: 354px;
  overflow-y: auto;
  padding: 10px;
  margin: 15px 0;
  scroll-behavior: smooth;
}
.price-scroll-box::-webkit-scrollbar {
  width: 8px;
}
.price-scroll-box::-webkit-scrollbar-track {
  background: rgba(0, 34, 64, 0.05);
  border-radius: 10px;
}
.price-scroll-box::-webkit-scrollbar-thumb {
  background: #00386533;
  border-radius: 10px;
}
.price-scroll-box::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2d4a63, #162c3e);
}
.price-list {
  padding-left: 0;
  margin: 0;
}
.price-item {
  list-style: none;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 4px 12px rgba(0, 40, 90, 0.12);
  margin-bottom: 12px;
}
.price-item:last-child {
  margin-bottom: 0;
}
.price-list .price-item:nth-child(odd) {
  background-color: rgba(11, 69, 117, .75);
  color: #fff;
}
.price-item::before {
  content:none;
}
.price-item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.25s ease;
}
.price-name {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
}
.price-count b {
  font-size: 16px;
  font-weight: 700;
}
.price-list .price-item:nth-child(odd) b {
  color:#fff;
}
@media (max-width: 768px) {
  .price-item-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-count {
    margin-top: 6px;
  }
}
.call_appointment_wrapper {
  margin: 20px 0;
  text-align: center;
}
