#accessoire__edit{
  .accessoire__content{
    display: flex;
    align-items: center;
    justify-content: space-between;

    &__text{
      flex: 1;
    }


    &__image{
      width: 236px;
      height: 236px;
      margin-left: 20px;
      position: relative;

      .close{
        position: absolute;
        background-color: $red;
        top: 5px;
        right: 5px;
        height: 30px;
        width: 30px;
        border-radius: 30px;
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        color: $grey-lighter;
        cursor: pointer;
      }

      img{
        display: block;
        width: 100%;
      }
    }
  }
}