Can't save CSS Code in Dawn Theme?

Hi, I would like to have category bubbles and I got a CSS code for the dawn theme. When I enter the code it works and I get category bubbles but I can’t save and I get the message: online store editor session can’t be published.

the code is:

.card {
border: unset !important;
}
.card–card .card__inner .card__media {
border-radius: 50%;
}
.card__information {
text-align: center;
!important;
}
.card__information .card__heading { font-size: 16px; font-weight: 400; }
.card__information .icon-wrap {
display: none;
}

Whats the problem here?

Hi @store095 ,

Your css is wrong here

You can try this, I just modified to right syntax:

.card {
  border: unset !important;
}
.card--card .card__inner .card__media {
  border-radius: 50%;
}
.card__information {
  text-align: center !important;
}
.card__information .card__heading {
  font-size: 16px;
  font-weight: 400;
}
.card__information .icon-wrap {
  display: none;
}

It’s working. Thank you so much!