@charset "UTF-8";
/**
 * _base.scss
 * 
 * 1/ biến màu săc
 * 2/ biến kích thước font chữ
 * 3/ Cấu hình border
 * 4/ Mixin
 * 5/ Responsive
*/
.pri-color {
  color: var(--fs-color-primary);
}
.pri-color * {
  color: var(--fs-color-primary);
}

.sec-color {
  color: var(--fs-color-secondary);
}
.sec-color * {
  color: var(--fs-color-secondary);
}

.justify {
  text-align: justify;
}
.justify * {
  text-align: justify;
}

.hyg_mb-0 {
  margin-bottom: 0 !important;
}
.hyg_mb-0 * {
  margin-bottom: 0 !important;
}

.hyg_mt-0 {
  margin-top: 0 !important;
}
.hyg_mt-0 * {
  margin-top: 0 !important;
}

.hyg_pb-0 {
  padding-bottom: 0 !important;
}
.hyg_pb-0 * {
  padding-bottom: 0 !important;
}