.container-services {
  background-color: var(--accent-color);
}
.service-box {
  background-color: var(--bg-color);
  background-size: cover;
  margin-bottom: 3rem;
}
.service-title {
  background-image: linear-gradient(to right, #88cdf6, #8dcfef 30%, #8dcfef, #88cdf6, #8dcfef 70%, #88cdf6);
}
.service-item {
  margin-top: 8px;
  border-bottom: 1px dashed #535353;
}
.service-item-title {
  color: #000000;
  font-size: 16px;
}
.service-table {
  padding: 10px 3px;
  overflow-x: hidden;
}
.service-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.service-name {
  margin-bottom: 0px;
  font-weight: bolder;
  flex: none;
}
.service-line {
  flex: 1 1 auto;
  border-bottom: none;
  height: 1rem;
  margin-left: 0rem;
  position: relative;
}
.service-price {
  padding-left: 0.5rem;
  width: 7rem;
  white-space: nowrap;
  text-align: right;
  font-weight: bold;
}
.service-description {
  margin-bottom: 0.5rem;
}
@media (max-width: 575.98px) {
  .service-name {
    flex: 1 1 40%;
  }
  .service-price {
    width: 6rem;
  }
}
