.information__message {
  padding: 24px;
  background-color: #EEF9FA;
  border-radius: 24px;
  margin-top: 12px;
  margin-bottom: 38px;
  font-size: 14px;
  line-height: 140%;
}

.information__message a {
  color: var(--main-accent2);
  text-decoration: underline;
}

.information__message strong {
  font-weight: 600;
}

.c_service_btn_top {
  margin: 68px auto 12px;
}
.c_service_btn_bot {
  margin: 12px auto;
}
.prices__header {
  /* margin-top: 68px; */
}

.prices__list__wrap,
.prices__section {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out;
  overflow: hidden;
}

.prices__list__inner__wrap,
.prices__section__inner {
  min-height: 0;
}

.service__name {
  background-color: var(--main-accent4);
  padding: 8px 8px 8px 15px;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 4px;
}

.down__arrow__wrap {
  width: 34px;
  height: 34px;
  padding: 9px;
  display: flex;
  justify-content: center;
}

.down__arrow {
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  rotate: 135deg;
  transition: rotate 0.5s ease-in-out;
}

.service__name.active .down__arrow {
  rotate: 315deg;
}

.service__name.active + .prices__list__wrap,
.service__name.active + .prices__section {
  grid-template-rows: 1fr;
}

.price__row {
  display: grid;
  grid-template-columns: minmax(180px, 310px) repeat(2, 1fr);
  padding: 8px;
  align-items: center;
  gap: 5px;
}

.price__row .heading__cell {
  font-weight: 700;
}

.price__row:nth-child(even),
.price__table__warning {
  background-color: rgba(82, 189, 196, 0.24);
}

.price__table__warning {
  font-weight: 800;
  color: #ff0000;
  font-size: 14px;
  line-height: 140%;
  padding: 8px;
}

.additional_info {
  margin-top: 12px;
  color: var(--main-text);
  font-size: 14px;
  line-height: 140%;
}

@media(max-width:822px){
  .price__basic__price,.price__discount__price{
    text-align: center; 
  }
}
@media(max-width:525px){
  .price__row{
    grid-template-columns: 180px 1fr 1fr;
  }
  .price__display__name:has(.spanned){
    grid-column: 1/-1;
  }
}