.prm-accordion {
  cursor: pointer;
}

.prm-accordion__header {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  height: 90px;
  color: #333333;
}

.prm-accordion__header::after {
  content: "";
  pointer-events: none;
  flex: 0 0 auto;
  display: block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.35s ease;
  position: absolute;
  right: 0;
  background-image: url(../assets/images/icons/cross.svg);
}

.prm-accordion.prm-open .prm-accordion__header:after {
  transform: rotate(-45deg);
  background-image: url(../assets/images/icons/cross.svg);
  opacity: 1;
}

.prm-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.prm-accordion.prm-open .prm-accordion__content {
  max-height: 200vh;
}

.prm-accordion__body {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.prm-accordion__item h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 40px;
  color: #333;
}

.prm-accordion__table table {
  width: 100%;
  border-radius: 26px;
  background: #f7f7f7;
}

.prm-accordion__table table tr {
  border-bottom: 1px solid #ededed;
}

.prm-accordion__table table tr:last-child {
  border: none;
}

.prm-accordion__table table tr td {
  width: 50%;
  font-weight: 400;
  font-size: 22px;
  line-height: 182%;
  text-align: right;
  color: #333;
  padding: 20px 60px;
}

.prm-accordion__table table tr td:first-child {
  font-weight: 700;
  text-align: left;
}

@media (max-width: 760px) {
  .prm-accordion__header {
    font-size: 20px;
    line-height: 150%;
    padding-right: 38px;
  }
  .prm-accordion__body {
    padding: 20px 0;
    gap: 20px;
  }
  .prm-accordion__item h2 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .prm-accordion__table table tr td {
    font-size: 16px;
    line-height: 130%;
    padding: 10px 20px;
  }
}