
/* Disable a href */
.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}

/* 
Normal Bullet List 
.inside {
  list-style-position: inside;
  list-style-type: square;
}

  <ul class="inside">List 1
  <li>List Item 1-1</li>
  <li>List Item 1-2</li>
  <li>List Item 1-3</li>
  <li>List Item 1-4</li>
</ul>
 Normal Bullet List End
*/


/* Used  Small Bullet List Link: https://codepen.io/rnbutler87/pen/BEQKvP; */
.instructions-custom-bullets {
  counter-reset: ck-custom-counter;
  list-style: none;
}
.instructions-custom-bullets li {
  margin-bottom: 1em;
  counter-increment: ck-custom-counter;
  position: relative;
  display:flex;
  align-items:center;
}
.instructions-custom-bullets li::before {
  content: counter(ck-custom-counter) ".";
	font-family: 'Courier';
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
  font-size:10px;
  color:#FFF;
  width:20px;
  height:20px;
  background: #1E386A;
  border-radius:50%;
  text-align: center;
	padding: 3px 0 0 6px;
  margin-right: 15px;
  line-height: 1.5;
	vertical-align: middle;
	min-width:20px;
}
/* Used Bullet List End */


/* 
Used  Big Bullet List Link: https://codepen.io/rnbutler87/pen/BEQKvP

.instructions-custom-bullets {
  counter-reset: ck-custom-counter;
  list-style: none;
}
.instructions-custom-bullets li {
  margin-bottom: 1em;
  counter-increment: ck-custom-counter;
  position: relative;
  display:flex;
  align-items:center;
}
.instructions-custom-bullets li::before {
  content: counter(ck-custom-counter) ".";
	font-family: 'Courier';
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
  font-size: 1.8em;
  width: 50px;
  height: 50px;
  background: #FFF0A7;
  border-radius: 50%;
  text-align: center;
	padding: 6px 0 0 6px;
  margin-right: 15px;
  line-height: 1.5;
	vertical-align: middle;
	min-width: 50px;
}
*/