.rb-styled-list-area {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  min-width: 50%;
}
@media (max-width: 1199px) {
  .rb-styled-list-area {
    flex-basis: 100%;
    min-width: 100%;
  }
}
.rb-styled-list-area .rbtla-title {
  margin-top: 0;
  margin-bottom: 0;
}
.rb-styled-list-area ul,
.rb-styled-list-area ol {
  padding: 0;
  list-style: none;
}
.rb-styled-list-area ol {
  counter-reset: styled-list-counter;
}
.rb-styled-list-area .numbered-list-entry {
  list-style: none;
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 14px;
  break-inside: avoid;
}
.rb-styled-list-area .numbered-list-entry::before {
  color: #E10A0A;
  display: block;
  border: 2px solid #E10A0A;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
  counter-increment: styled-list-counter;
  content: counter(styled-list-counter);
  text-align: center;
  font-family: 'Gilroy-Bold', 'Arial Rounded MT Bold', 'Helvetica Rounded', Arial, sans-serif;
  line-height: 27px;
}
.rb-styled-list-area .unnumbered-list-entry {
  list-style: none;
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 14px;
  break-inside: avoid;
}
.rb-styled-list-area .unnumbered-list-entry::before {
  content: "";
  color: #E10A0A;
  display: block;
  border: 2px solid #E10A0A;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='15' viewBox='0 0 19 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7L7 12L17 2' stroke='%23E10A0A' stroke-width='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
}


/*# sourceMappingURL=styled-bullet-list-styles.css.map */