.accordion__title {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}

.accordion__item {
  margin-top: -1px;
  border-bottom: 1px solid var(--lightgray);
  transition: border-color var(--short);
}

.accordion__item:first-child {
  border-top: 1px solid var(--lightgray);
}

.accordion__item:not(:first-child) {
  border-top: 1px solid transparent;
}

.accordion__item:focus-within {
  border-color: var(--orange);
}



.accordion__btn {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 30px;
  padding-right: 90px;
  padding-bottom: 30px;
  min-height: 110px;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  text-align: left;
  outline: none;
  transition: color var(--short);
  color: var(--dark);
}

.accordion__btn:focus {
  color: var(--orange);
  cursor: pointer;
}

.accordion__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='25' cy='25' rx='25' ry='25' fill='%23ECECEC'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.0571 24.0571L25.0571 9L25.9429 9L25.9429 24.0571L33.8835 24.0571L41 24.0571L41 24.9429L25.9429 24.9429L25.9429 40L25.0571 40L25.0571 24.9429L10 24.9429L10 24.0571L25.0571 24.0571Z' fill='%23666666'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  transition: background-image var(--short), transform .3s;
  transform: translateY(-50%);
}

.accordion__btn:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='25' cy='25' rx='25' ry='25' fill='%23FF9900'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.0571 24.0571L25.0571 9L25.9429 9L25.9429 24.0571L33.8835 24.0571L41 24.0571L41 24.9429L25.9429 24.9429L25.9429 40L25.0571 40L25.0571 24.9429L10 24.9429L10 24.0571L25.0571 24.0571Z' fill='white'/%3E%3C/svg%3E%0A");
}

.accordion__content {
  overflow: hidden;
}

.accordion__content-wrap {
  padding-bottom: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
  transition-delay: .3s;
}

.is-active .accordion__content-wrap {
  opacity: 1;
  visibility: visible;
}

.is-active .accordion__btn::after {
  transform: translateY(-50%) rotate(45deg);
}

@media (any-hover: hover) {
  .accordion__item:hover {
    border-color: var(--orange);
  }

  .accordion__btn:hover {
    color: var(--orange);
    cursor: pointer;
  }

  .accordion__btn:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 50 50' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='25' cy='25' rx='25' ry='25' fill='%23FF9900'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.0571 24.0571L25.0571 9L25.9429 9L25.9429 24.0571L33.8835 24.0571L41 24.0571L41 24.9429L25.9429 24.9429L25.9429 40L25.0571 40L25.0571 24.9429L10 24.9429L10 24.0571L25.0571 24.0571Z' fill='white'/%3E%3C/svg%3E%0A");
  }
}


@media (max-width: 1280px) {
  .accordion__title {
    font-size: 20px;
  }

  .accordion__btn {
    padding-right: 150px;
  }
}


@media (max-width: 962px) {
  .accordion__btn {
    padding-right: 91px;
  }
}

@media (max-width: 576px) {
  .accordion__title {
    font-size: 14px;
    line-height: 24px;

  }

  .accordion__btn {
    min-height: auto;
    padding-right: 47px;
    font-weight: 500;
  }

  .accordion__btn::after {
    width: 30px;
    height: 30px;
  }
}