How can I adjust my CSS to move my badge slightly to the right?

Hi,

I want to have my badge moved a little bit to the right so it is free of the borders from the product picture.

What should i do to my code? (Badge “Sælger hurtigt”

Url: www.cillouettes.dk

.label-hurtigt {
background-color: #FDCDC9;
border: 2px solid var( — color-base-background-1);
margin-top: 0.5em;
padding: 0.1em 0.5em;
z-index: 2;
position: absolute;
font-size: 0.775em;
}

Hi @Cillouettes

Please try this css

.label-hurtigt {
  margin-left: 10px;
  margin-top: 0 !important;
}

It will look like this.