﻿/* === Jednoduché odrážky === */


.pk-bullets-dot{
  --pk:#009901;
  --lh:1.65;
  --dot:8px;
  --dot-offset:0px;


  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}


.pk-bullets-dot__item{
  list-style:none !important;
  display:flex !important;
  align-items:flex-start;
  gap:10px;
  margin:10px 0;
}


.pk-bullets-dot__icon{
  width:var(--dot);
  height:var(--dot);
  border-radius:50%;
  background:var(--pk);
  flex:0 0 var(--dot);
  margin-top:calc((1em * var(--lh) - var(--dot)) / 2 + var(--dot-offset));
}


.pk-bullets-dot__text{
  line-height:var(--lh);
}