.edit-list{
  min-width: 300px;
  max-width:30%;
  display: flex;
  flex-direction: column;
  &-is-small{
    width: 200px;
  }
  &-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 10px;
  }
  &-item {
    border-bottom: 1px solid $gray6;
    padding: 15px 10px;
    background-color: $pw;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    &:first-child {
      border-top: 1px solid $gray6;
    }
    &:hover {
      background-color: $gray8;
    }
    &-arrow {
      position: absolute;
      right: 20px;
      font-size: 26px;
      color: $gray3;
      align-self: center;
      display: flex;
      &-hide {
        display: none;
      }
      &-show {
        display: flex;
        align-self: center;
      }
    }
    &-header {
      margin-bottom: 5px;
    }

    &-is-active {
      background-color: $gray8;
      position:relative;
      z-index:3;
    }

    &-info {
      &-name {
        @extend h3;
        font-weight: normal;
      }
      &-description {
        color: $gray3;
        font-size: 14px;
        padding-top: 6px;
      }
    }
    &-controls {
      margin-left: auto;
    }
  }
}
