/*
Theme Name: webbaoloc
Description: This is a child theme for Theme Dulich
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* 1. Tắt marker gốc, giữ indent */
ul.list-style, ol.list-style {
  list-style: none;
  padding-left: 1.5em; /* khoảng trống để đặt icon */
  margin: 0;
}

/* 2. Dùng flex + gap, rất đơn giản */
ul.list-style li,
ol.list-style li {
  display: flex;
  align-items: center;
  gap: 10px;          /* khoảng cách giữa icon và chữ */
}

/* 3. Chèn icon-checkmark */
ul.list-style li::before,
ol.list-style li::before {
  content: "\e00a";          /* Flatsome icon-checkmark */
  font-family: fl-icons !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  line-height: 1;
  /* kích thước, màu sắc */
  font-size: 1em;
  color: #28a745;
  /* không cần position khi dùng flex */
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}