/* ==== Box ======  */
.d-block {
  display: block;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.align-center {
  display: flex;
  align-items: center;
}
.flex {
  flex-grow: 1;
}
.between-flex {
  display: flex;
  justify-content: space-between;
}
.center-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.d-grid {
  display: grid;
}
.gap-20 {
  gap: 20px;
}

@media (max-width: 768px) {
  .block-mobile {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
}

/* ===== Margin and padding ================= */
.p-10 {
  padding: 10px;
}
.p-15 {
  padding: 15px;
}
.p-20 {
  padding: 20px;
}
.p-tb-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.pl-15 {
  padding-left: 15px;
}
.pt-15 {
  padding-top: 15px;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-20{
padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.m-0 {
  margin: 0;
}
.m-20 {
  margin: 20px;
}
.mt-0 {
  margin-top: 0;
}
.mt-5 {
  margin-top: 5;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.m-15 {
  margin-bottom: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15{
  margin-bottom: 15px;
}
.mr-10{
  margin-right: 10px;
}
.mr-15 {
  margin-right: 15px;
}
/* ========= Color ========================= */
.bg-white {
  background-color: white;
}
.bg-blue {
  background: var(--blue-color);
}
.bg-orange {
  background: var(--orange-color);
}
.bg-green {
  background: var(--green-color);
}
.bg-red {
  background: var(--red-color);
}
.bg-eee {
  background-color: #eee;
}
.c-black {
  color: black;
}
.c-blue {
  color: var(--blue-color);
}
.c-grey {
  color: var(--grey-color);
}
.c-white {
  color: white;
}
.c-orange {
  color: var(--orange-color);
}
.c-green {
  color: var(--green-color);
}
.c-red {
  color: var(--red-color);
}
/* ======== Position ================= */
.p-relative {
  position: relative;
}
.p-absolute{
  position: absolute;
}

/* ========= Font =========================  */
.text-c {
  text-align: center;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fw-bold {
  font-weight: bold;
}
.fs-15 {
  font-size: 15px;
}
@media (max-width: 768px) {
  .text-c-mobile {
    text-align: center;
  }
  .block-mobile {
    display: block;
  }
}
/* ========= Border ==================== */
.rad-6 {
  border-radius: 6px;
}
.rad-10 {
  border-radius: 10px;
}
.rad-half {
  border-radius: 50%;
}

.b-none {
  border: none;
}
.border-bottom {
  border-bottom: 1px solid #ccc;
}
.border-ccc {
  border: 1px solid #ccc;
}
.border-eee {
  border: 1px solid #eee;
}

/* ========= Width and height =========================  */

.w-100 {
  width: 100%;
}
.w-fitContent {
  width: fit-content;
}
.h-full {
  height: 100%;
}
/* =========== btn sheap ========== */
.btn-shape {
  padding: 4px 10px;
  border-radius: 6px;
}
