/* Styled Number List: Colored Numbers - Start */
.number-list-colored-numbers {
    list-style: none;
  }
  .number-list-colored-numbers li {
    position: relative;
    margin: 5px 0;
  }
  .number-list-colored-numbers li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 20px;
    height: 28px;
    background-image: url("/assets/templates/main/images/icons/icon-one.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .number-list-colored-numbers li:nth-child(2)::before {
    background-image: url("/assets/templates/main/images/icons/icon-two.png");
  }
  .number-list-colored-numbers li:nth-child(3)::before {
    background-image: url("/assets/templates/main/images/icons/icon-three.png");
  }
  .number-list-colored-numbers li:nth-child(4)::before {
    background-image: url("/assets/templates/main/images/icons/icon-four.png");
  }
  /* Styled Number List: Colored Numbers - End */
  
  /* Styled Number List: Boxes - Start */
  .number-list-boxes {
    list-style-position: inside;
    padding: 0;
  }
  .number-list-boxes li {
    padding: 10px;
    margin: 10px 0;
  }
  .number-list-boxes li:nth-child(4n + 1) {
    background-color: #eee;
  }
  .number-list-boxes li:nth-child(4n + 2) {
    background-color: #ddd;
  }
  .number-list-boxes li:nth-child(4n + 3) {
    background-color: #ccc;
  }
  .number-list-boxes li:nth-child(4n + 4) {
    background-color: #bbb;
  }
  /* Styled Number List: Boxes - End */
  
  /* Floated Icon Layout - Start */
  .floated-icon-layout-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /* Floated Icon Layout - End */
  
  /* Staggered Floated Icon Layout - Start */
  .staggered-floated-icon-layout-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /* Staggered Floated Icon Layout - End */
  
  /* Box Highlight - Start */
  .box-highlight {
    padding: 10px;
    background-color: #ccc;
  }
  /* Box Highlight - End */