:root {
  --black: #0F0F0F;
  --light-gray-1: #BEBEBE;
  --mufi-main: #2C2C2C;
}

html, body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

body {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Backgrounds */
.bg-black { background-color: #000000; }
.bg-black-alpha { background-color: rgba(0, 0, 0, 0.5) }
.bg-main { background-color: #fbfbfb; }
.bg-mufi-main { background-color: #2c2c2c; }
.bg-mufi-gray { background-color: #a5a5a5; }
.bg-lightgray1 { background-color: #BEBEBE; }
.bg-midgray { background-color: #7A7A7A; }
.bg-kakao { background-color: #fee500; }
.bg-white { background-color: #ffffff; }
.bg-mufi-qr-bg { background-color: rgba(15, 15, 15, 0.8); }
.bg-instagram { background: linear-gradient(90deg, #ECCD60 0%, #FAA85C 20.92%, #F68458 40.97%, #F56C7F 57.2%, #FF3879 73.65%, #FF37D2 100%); }

/* Margin */
.m-0 { margin: 0; }
.m-2 { margin: 8px; }
.m-4 { margin: 16px; }

.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.mr-6 { margin-right: 24px; }
.mr-8 { margin-right: 32px; }

.ml-auto { margin-left: auto; }
.ml-1 { margin-left: 4px; }
.ml-2 { margin-left: 8px; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-1 { margin-left: 4px; margin-right: 4px; }
.mx-2 { margin-left: 8px; margin-right: 8px; }
.mx-4 { margin-left: 16px; margin-right: 16px; }

.my-2 { margin-top: 8px; margin-bottom: 8px; }
.my-4 { margin-top: 16px; margin-bottom: 16px; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-20 { margin-top: 80px; }

.mb-4 { margin-bottom: 16px; }
.mb-7 { margin-bottom: 28px; }
.mb-10 { margin-bottom: 40px; }
.mb-16 { margin-bottom: 64px; }
.mb-20 { margin-bottom: 80px; }
.mb-24 { margin-bottom: 96px; }
.mb-26 { margin-bottom: 104px; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 4px; }
.p-2 { padding: 8px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }

.pt-3 { padding-top: 12px; }
.pt-4 { padding-top: 16px; }
.pt-6 { padding-top: 24px; }

.pb-8 { padding-bottom: 32px; }
.pb-10 { padding-bottom: 40px; }

.pr-4 { padding-right: 16px; }
.pr-6 { padding-right: 24px; }

.px-2 { padding-left: 8px; padding-right: 8px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }

/* Width */
.w-screen { width: 100vw; }
.w-full { width: 100%; }

.w-9 { width: 36px; }
.w-18 { width: 72px; }
.w-25 { width: 100px; }
.w-36 { width: 144px; }
.w-40 { width: 160px; }
.w-60 { width: 240px; }
.w-70 { width: 280px; }

.w-50p { width: 50%; }
.w-90p { width: 90%; }

.min-w-35 { min-width: 140px; }
.min-w-screen { min-width: 100vw; }
.min-w-80p { min-width: 80%; }

.max-w-50p { max-width: 50%; }

.w-screen-full { width: 100vw; }

/* Height */
.h-screen { height: 100vh; }
.h-screen-70 { height: 70vh; }
.h-full { height: 100%; }

.h-6 { height: 24px; }
.h-8 { height: 32px; }
.h-9 { height: 36px; }
.h-16 { height: 64px; }
.h-18 { height: 72px; }
.h-20 { height: 80px; }
.h-24 { height: 96px; }
.h-25 { height: 100px; }
.h-36 { height: 144px; }
.h-40 { height: 160px; }
.h-70 { height: 280px; }

.min-h-screen { min-height: 100vh; }
.min-h-screen-80 { min-height: 80vh; }

.max-h-full { max-height: 100%; }

.leading-none { line-height: 1; }
.leading-4 { line-height: 16px; }
.leading-9 { line-height: 36px; }
.leading-16 { line-height: 64px; }
.leading-20 { line-height: 80px; }

/* Border */
.border { border-width: 1px; }
.border-4 { border-width: 4px; }

.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }


.border-black { border-color: var(--black, #0F0F0F); }
.border-white { border-color: #ffffff; }
.border-slate-400 { border-color: rgb(148 163 184); }
.border-lightgray1 { border-color: var(--light-gray-1, #BEBEBE); }
.border-mufi-black { border-color: #1F1F1F; }
.border-mufi-lightgray { border-color: #eaeaea; }

.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 10px; }
.rounded-xxl { border-radius: 12px; }
.rounded-50p { border-radius: 50%; }
.rounded-5 { border-radius: 20px; }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }

.basis-1 { flex-basis: 4px; }

.flex-grow { flex-grow: 1; }
.grow-1 { flex-grow: 1; }
.grow-2 { flex-grow: 2; }

.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-center { align-items: center; }

.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.place-items-center { place-items: center; }

.justify-center { justify-content: center; }
.justify-space-between { justify-content: space-between; }

/* Positions */
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }

.z-1 { z-index: 1; }
.z--4 { z-index: -4; }

.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 16px; }
.bottom-8 { bottom: 32px; }

.left-0 { left: 0; }
.left-4 { left: 16px; }
.left-6 { left: 24px; }
.left-50p { left: 50%; }

.right-0 { right: 0; }
.right-4 { right: 16px; }
.right-6 { right: 24px; }

.top-0 { top: 0; }
.top-50p { top: 50%; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }

/* Align */
.align-middle { vertical-align: middle; }

/* Text */
.text-xxs { font-size: 10px; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.whitespace-nowrap { white-space: nowrap; }

.break-keep { word-break: keep-all; }

/* Font */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* box */
.box-border { box-sizing: border-box; }

/* Color */
.text-neutral-500 { color: #9CA3B8; }
.text-black { color: var(--black, #0F0F0F) }
.text-white { color: #ffffff; }
.text-red { color: #F00; }
.text-lightgray1 { color: var(--light-gray-1, #BEBEBE); }
.text-midgray { color: #7A7A7A; }
.text-mufi-gray { color: #a5a5a5; }
.text-mufi-black { color: #1F1F1F; }
.text-mufi-main { color: var(--mufi-main, #2c2c2c); }

/* Text Style */
.text-underline { text-decoration: underline; }

/* Shadow */
.drop-shadow-footer { filter: drop-shadow(rgba(0, 0, 0, 0.07) 0px -4px 3px) }
.drop-shadow-md { filter: drop-shadow(rgba(0, 0, 0, 0.07) 0px 4px 3px) drop-shadow(rgba(0, 0, 0, 0.06) 0px 2px 2px); }
.drop-shadow-mufi-light { box-shadow: 0px 0px 24px 0px #1F1F1F14; }

/* overflow */
.overflow-auto { overflow: auto; }
.overflow-y-hidden { overflow-y: hidden; }

/* List */
.list-none { list-style-type: none; }

/* etc */
.invisible { visibility: hidden; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

.opacity-50 { opacity: 0.5; }

.translate-xy--50p { transform: translateX(-50%) translateY(-50%); }
