.customizer{
  width: 25%;
  display: block;

  .header{
    @extend .din-extraBlack;
    text-transform: uppercase;
    font-size: 1.125rem;
    border-bottom: 2px solid black;
    height: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 15px;
  }

  .introduction{
    @extend .absara-regular;
    font-size: 1rem;
    text-align: right;
    margin-bottom: 30px;
  }

  .section_customizer{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 30px;
    
    .titre{
      @extend .din-light;
      text-transform: uppercase;
      font-size: 1.125rem;
      text-align: right;
      border-bottom: 1px solid black;
    }

    .pastilles{
      display: flex;
      margin-top: 20px;


      .pastille{
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;

        &:not(:last-child){
          margin-right: 40px;
        }


        .img{
          height: 20px;
          width: 20px;
          border-radius: 10px;
        }

        .name{
          @extend .din-regular;
          font-size: 0.875rem;
          margin-top: 10px;
          text-transform: uppercase;
          border-bottom: 1px solid transparent;
          padding: 0 3px;

          &.selected{
            color: $white;
            background-color: $black;
          }
        }

        &:hover{
          .name{
            color: $white;
            background-color: $black;
          }
        }

        &.gold .img{background-color: #f0c151;}
        &.silver .img{background-color: #aca9a7;}
        &.copper .img{background-color: #c56464;}
      }
    }
  }
}