.accordion {
  &__wrapper {
    background: #ffffff;
    border-radius: 2px;
    margin-bottom: 8px;
    &.active {
      .accordion {
        &_content {
          max-height: 570px;
          opacity: 1;
        }

        &_arrow {
          &.default {
            transform: rotate(180deg);
            path {
              stroke: rgba(0, 0, 0, 0.65);
            }
          }

          &.pen {
            svg {
              fill: #3c3c3c;
            }
          }
        }

        &_item {
          border-radius: 6px;
          border: 1px solid #004225 !important;
        }

        &_title {
          color: #004225;
        }
      }
    }
  }

  &_info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
  }

  &_item {
    position: relative;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 73px;
    cursor: pointer;
    border: 1px solid transparent !important;
    box-shadow: 0px 1px 0px #f1f1f1;
    padding: 11px 24px;
    background: transparent;

    &:hover {
      border: 1px solid #004225 !important;
      border-radius: 6px;

      .accordion_title {
        color: #004225;
      }
    }
  }

  &_title {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 26px;
    color: #434343;
    min-width: 140px;
    text-align: left;
  }

  &_subtitle {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #434343;
    margin-right: 15px;
    padding-left: 10px;

    padding-left: 0;
    text-align: left;

    &.visible {
      padding-top: 4px;
    }
  }

  &_content {
    transition-duration: 300ms;
    transition-property: max-height;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0px;
    margin-right: -4px;
    padding-top: 5px;
    overflow-y: scroll;
    overflow-x: hidden;
    opacity: 0;
  }

  &_hint {
    display: flex;
    align-items: center;
    padding: 17px 0px 15px 0;

    svg {
      margin-right: 5px;

      circle {
        transition: all 0.2s;
      }
    }

    span {
      transition: all 0.2s;
      font-family: 'Roboto';
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: 130%;
      color: #33ccff;
      padding-bottom: 0px;
      border-bottom: 1.5px dashed #33ccff;
    }

    &:hover {
      svg {
        circle {
          fill: #2ebae9;
        }
      }

      span {
        color: #2ebae9;
        border-bottom: 1.5px dashed #2ebae9;
      }
    }
  }
}

.default {
  transition: all 0.2s;
  path {
    stroke: rgba(0, 0, 0, 0.65);
  }
}
.pen {
  transition: all 0.2s;
}

@media (max-width: 1024px) {
  .accordion {
    &_content {
      * {
        display: none;
      }
    }
    &__wrapper {
      &.active {
        .accordion {
          &_content {
            * {
              display: flex;
            }
          }
        }
      }
    }

    &_item {
      border: unset;
      padding: 5px;
      min-height: 61px;
    }

    &_subtitle {
      font-size: 13px;
    }
    &_title {
      min-width: 120px;
      font-size: 16px;
    }
  }
}
