/* =========================
   DISPLAY
========================= */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.hidden { display: none !important; }

/* =========================
   FLOAT
========================= */
.fl { float: left; }
.fr { float: right; }
.fn { float: none; }

/* =========================
   CLEARFIX
========================= */
.clear { clear: both; }
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* =========================
   TEXT ALIGN
========================= */
.ta-left { text-align: left; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }

/* =========================
   VERTICAL ALIGN
========================= */
.va-top { vertical-align: top; }
.va-middle { vertical-align: middle; }
.va-bottom { vertical-align: bottom; }

/* =========================
   FONT WEIGHT & STYLE
========================= */
.bold { font-weight: bold; }
.normal { font-weight: normal; }
.italic { font-style: italic; }

/* =========================
   FONT SIZE
========================= */
.fs-10 { font-size: 10px; }
.fs-12 { font-size: 12px; }
.fs-14 { font-size: 14px; }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }

/* =========================
   MARGIN
========================= */
.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }

.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }

.ml-5 { margin-left: 5px; }
.ml-10 { margin-left: 10px; }
.mr-5 { margin-right: 5px; }
.mr-10 { margin-right: 10px; }

/* =========================
   PADDING
========================= */
.pt-5 { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pb-5 { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pl-5 { padding-left: 5px; }
.pr-5 { padding-right: 5px; }

/* =========================
   WIDTH
========================= */
.w-100 { width: 100%; }
.w-50 { width: 50%; }
.w-auto { width: auto; }

/* =========================
   COLOR
========================= */
.text-black { color: #000; }
.text-white { color: #fff; }
.text-gray { color: #666; }
.text-red { color: #c00; }
.text-blue { color: #0073aa; }

/* =========================
   BACKGROUND
========================= */
.bg-white { background: #fff; }
.bg-gray { background: #f5f5f5; }
.bg-black { background: #000; }

/* =========================
   BORDER
========================= */
.border { border: 1px solid #ccc; }
.border-top { border-top: 1px solid #ccc; }
.border-bottom { border-bottom: 1px solid #ccc; }

/* =========================
   CURSOR
========================= */
.pointer { cursor: pointer; }

/* =========================
   POSITION
========================= */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
