/* _reset.scss */
html {
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; }

body {
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  margin: 0; }

/* Typography defaults */
p, ul, ol, figure, blockquote, dl, dd {
  margin: 0; }

/* Lists */
ul,
ol {
  padding-left: 1.25rem; }

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding-left: 0; }

/* Images and media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }

th,
td {
  text-align: left;
  font-weight: normal; }

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  margin: 0; }

textarea {
  resize: vertical; }

fieldset {
  border: none;
  margin: 0;
  padding: 0; }

/* Buttons */
button {
  background: none;
  border: none;
  cursor: pointer; }

/* Anchors */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none; }

/* Smooth scroll on anchor */
:target {
  scroll-margin-top: 4rem; }

/* iOS fix */
@media screen and (max-width: 768px) {
  html {
    -webkit-text-size-adjust: none; } }
/* _root.scss */
/* CSS Custom Properties untuk global design token */
:root {
  /* ===== Brand Colors ===== */
  --color-primary: #E61B23;
  --color-primary-dark: #C3161D;
  --color-primary-light: #F28B8E;
  --color-secondary: #040707;
  --color-secondary-dark: #000000;
  --color-secondary-light: #222426;
  /* ===== Base Colors ===== */
  --color-black: #040707;
  --color-white: #ffffff;
  /* ===== Grayscale ===== */
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #cccccc;
  --color-gray-500: #888888;
  --color-gray-700: #444444;
  --color-gray-900: #111111;
  /* ===== Typography ===== */
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Lora', serif;
  --font-display: 'Abhaya Libre', serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 40px;
  /* ===== Spacing Scale ===== */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  /* ===== Border Radius ===== */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  /* ===== Z-Index Layering ===== */
  --z-header: 100;
  --z-modal: 200;
  --z-dropdown: 300;
  --z-overlay: 999;
  /* ===== Breakpoints (for JS use or utility classes) ===== */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px; }

/* Optional: HTML level style to apply variables */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  color: var(--color-black);
  background-color: var(--color-white); }

/* _typography.scss */
/* Global typography rules for consistency */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.75;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-black); }

h1 {
  font-size: var(--font-size-3xl); }

h2 {
  font-size: var(--font-size-2xl); }

h3 {
  font-size: var(--font-size-xl); }

h4 {
  font-size: var(--font-size-lg); }

h5 {
  font-size: var(--font-size-md); }

h6 {
  font-size: var(--font-size-sm); }

/* Paragraph */
p {
  margin-bottom: var(--space-md);
  font-family: var(--font-serif);
  font-size: var(--font-size-base); }

/* Abhaya Libre for article summary (optional override) */
.article-summary {
  font-family: var(--font-display);
  font-size: var(--font-size-md);
  line-height: 1.8;
  color: var(--color-gray-700); }

/* Lists */
ul,
ol {
  padding-left: 1.25rem;
  margin-bottom: var(--space-md);
  line-height: 1.6; }

li {
  margin-bottom: var(--space-xs); }

/* Blockquote */
blockquote {
  font-style: italic;
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  color: var(--color-gray-700); }

/* Code blocks */
code {
  font-family: monospace;
  background-color: var(--color-gray-100);
  padding: 0.25em 0.5em;
  border-radius: var(--radius-sm);
  font-size: 90%; }

/* Small text */
small {
  font-size: 80%;
  color: var(--color-gray-500); }

/* plus-jakarta-sans-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-200.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-200.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-300.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-300.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-500.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-500.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-600.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-600.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-700.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* plus-jakarta-sans-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  src: url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-800.woff2") format("woff2"), url("../../fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-800.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* poppins-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url("../../fonts/poppins/poppins-v24-latin-200.woff2") format("woff2"), url("../../fonts/poppins/poppins-v24-latin-200.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* poppins-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/poppins/poppins-v24-latin-300.woff2") format("woff2"), url("../../fonts/poppins/poppins-v24-latin-300.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* poppins-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/poppins/poppins-v24-latin-regular.woff2") format("woff2"), url("../../fonts/poppins/poppins-v24-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* poppins-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/poppins/poppins-v24-latin-500.woff2") format("woff2"), url("../../fonts/poppins/poppins-v24-latin-500.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* poppins-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/poppins/poppins-v24-latin-600.woff2") format("woff2"), url("../../fonts/poppins/poppins-v24-latin-600.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* poppins-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/poppins/poppins-v24-latin-700.woff2") format("woff2"), url("../../fonts/poppins/poppins-v24-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* abhaya-libre-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Abhaya Libre';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-regular.woff2") format("woff2"), url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* abhaya-libre-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Abhaya Libre';
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-500.woff2") format("woff2"), url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-500.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* abhaya-libre-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Abhaya Libre';
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-600.woff2") format("woff2"), url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-600.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* abhaya-libre-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Abhaya Libre';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-700.woff2") format("woff2"), url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* abhaya-libre-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Abhaya Libre';
  font-style: normal;
  font-weight: 800;
  src: url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-800.woff2") format("woff2"), url("../../fonts/abhaya-libre/abhaya-libre-v18-latin-800.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lora-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/lora/lora-v37-latin-regular.woff2") format("woff2"), url("../../fonts/lora/lora-v37-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lora-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/lora/lora-v37-latin-500.woff2") format("woff2"), url("../../fonts/lora/lora-v37-latin-500.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lora-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/lora/lora-v37-latin-600.woff2") format("woff2"), url("../../fonts/lora/lora-v37-latin-600.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lora-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/lora/lora-v37-latin-700.woff2") format("woff2"), url("../../fonts/lora/lora-v37-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lato-100 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: url("../../fonts/lato/lato-v25-latin-100.woff2") format("woff2"), url("../../fonts/lato/lato-v25-latin-100.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lato-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/lato/lato-v25-latin-300.woff2") format("woff2"), url("../../fonts/lato/lato-v25-latin-300.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lato-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/lato/lato-v25-latin-regular.woff2") format("woff2"), url("../../fonts/lato/lato-v25-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lato-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/lato/lato-v25-latin-700.woff2") format("woff2"), url("../../fonts/lato/lato-v25-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* lato-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/lato/lato-v25-latin-900.woff2") format("woff2"), url("../../fonts/lato/lato-v25-latin-900.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* pt-sans-narrow-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'PT Sans Narrow';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/pt-sans-narrow/pt-sans-narrow-v19-latin-regular.woff2") format("woff2"), url("../../fonts/pt-sans-narrow/pt-sans-narrow-v19-latin-regular.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* pt-sans-narrow-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'PT Sans Narrow';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/pt-sans-narrow/pt-sans-narrow-v19-latin-700.woff2") format("woff2"), url("../../fonts/pt-sans-narrow/pt-sans-narrow-v19-latin-700.ttf") format("truetype");
  /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ }
/* _colors.scss */
/* SCSS map dan variabel untuk sistem warna */
/* _fonts.scss */
/* Default mapping */
/* _breakpoints.scss */
/* _spacing.scss */
@use '../variables/breakpoints' as *;
@use '../variables/spacing' as *;
@use './media' as *;
/* Container default */
/* Grid system (simple flex grid) */
@use '../variables/fonts' as *;
/* Flex center */
/* Truncate single line */
/* Truncate multiline */
/* Smooth font */
/* Transition */
/* Aspect ratio */
:root {
  --color-background: #F6F6F6;
  --color-text: #000000;
  --color-light: #DF9538;
  --color-border: #000000; }

[data-theme="dark"] {
  --color-background: #1C1D21;
  --color-text: #FFFFFF;
  --color-light: #DF9538;
  --color-border: #FFFFFF;
  transition: background-color 0.5s ease, color 0.5s ease; }

.bas-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  background: #111;
  cursor: ew-resize;
  margin: 0 auto; }

.bas-panel {
  position: absolute;
  inset: 0; }
  .bas-panel-after {
    clip-path: inset(0 0 0 50%); }

.bas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; }

.bas-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 8; }

.bas-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1); }

.bas-arrow {
  position: relative;
  width: 14px;
  height: 14px; }
  .bas-arrow::before, .bas-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translateY(-50%); }
  .bas-arrow::before {
    left: 0;
    border-right: 6px solid #222; }
  .bas-arrow::after {
    right: 0;
    border-left: 6px solid #222; }

.c-share {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
  transition: all .5s ease; }
  .c-share__wrapper {
    position: fixed;
    top: unset;
    left: 0;
    right: 0;
    bottom: -100%;
    background: #ffffff;
    border-radius: 8px 8px 0 0;
    box-shadow: rgba(0, 0, 0, 0.15) 0px -4px 7px;
    box-sizing: border-box;
    overflow-y: scroll;
    z-index: -1;
    transition: all 1s ease; }
    @media (min-width: 1025px) {
      .c-share__wrapper {
        top: 50%;
        left: 50%;
        max-width: 560px;
        height: fit-content;
        border-radius: 8px;
        transform: translate(-50%, -50%); } }
  .c-share.is-active {
    visibility: visible;
    opacity: 1;
    z-index: 1000000110; }
    .c-share.is-active .c-share__wrapper {
      bottom: -2px; }
  .c-share__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; }
  .c-share__title {
    color: #000000;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: normal; }
  .c-share__close {
    background: transparent;
    border: none;
    padding: 0;
    line-height: 0;
    width: fit-content;
    height: fit-content; }
    .c-share__close i, .c-share__close svg {
      font-size: 25px; }
  .c-share__content {
    padding: 10px 20px; }
  .c-share__item {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E5E5; }
    .c-share__item:first-child {
      padding-top: 0; }
    .c-share__item:last-child {
      border-bottom: unset; }
    .c-share__item-icon {
      width: 35px;
      height: 35px;
      border: 1px solid #E5E5E5;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .c-share__item-icon i {
        font-size: 18px;
        color: #000000; }
    .c-share__item-text span {
      font-family: "Plus Jakarta Sans";
      font-size: 16px;
      color: #000000; }

.c-share-popup {
  position: relative;
  width: fit-content;
  height: fit-content; }
  .c-share-popup__btn {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 900px) {
      .c-share-popup__btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center; } }
    .c-share-popup__btn-icon {
      font-size: 25px;
      color: #000000; }
      @media screen and (max-width: 900px) {
        .c-share-popup__btn-icon {
          margin-right: 0; } }
  .c-share-popup__box {
    display: none;
    position: absolute;
    top: 65px;
    left: -20px;
    padding: 20px;
    min-width: 280px;
    width: fit-content;
    height: fit-content;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    z-index: 999; }
    .c-share-popup__box::after {
      content: '';
      height: 15px;
      width: 15px;
      position: absolute;
      background-color: #ffffff;
      top: -8px;
      left: 35px;
      border-top: rgba(0, 0, 0, 0.1) solid 1px;
      border-left: rgba(0, 0, 0, 0.1) solid 1px;
      transform: rotate(45deg); }
    .c-share-popup__box--right {
      left: auto;
      right: -20px; }
      .c-share-popup__box--right::after {
        left: auto;
        right: 35px; }
    .c-share-popup__box-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 20px; }
      .c-share-popup__box-head-number {
        color: #6B6B6A;
        font-family: "Plus Jakarta Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: normal; }
        .c-share-popup__box-head-number .current {
          color: #000;
          font-size: 16px; }
    .c-share-popup__box-text {
      color: #000000;
      font-family: "Plus Jakarta Sans";
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px;
      /* 150% */
      margin-bottom: 20px; }
    .c-share-popup__box-auth {
      display: flex;
      align-items: center;
      gap: 20px; }
      .c-share-popup__box-auth button {
        position: relative;
        padding: 0;
        margin: 0;
        width: fit-content;
        height: fit-content;
        border: none;
        background: transparent;
        font-family: "Plus Jakarta Sans";
        color: #000000;
        font-weight: 600;
        text-decoration: underline; }
        .c-share-popup__box-auth button:nth-child(2)::before {
          content: "";
          position: absolute;
          left: -10px;
          top: 50%;
          transform: translateY(-50%);
          width: 1px;
          height: 16px;
          background: #000000; }
  .c-share-popup__title {
    color: #000000;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0; }
  .c-share-popup__link {
    width: 100%;
    height: auto;
    background: transparent;
    border: 1px solid #6B6B6A;
    border-radius: 50px;
    padding: 4px 15px 4px 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 6px; }
  .c-share-popup__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px; }
    .c-share-popup__content.flex {
      display: flex;
      align-items: center;
      justify-content: center; }
    .c-share-popup__content--link {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2px 2px 2px 10px;
      border-radius: 50px;
      border: 1px solid #CECECE;
      background: #F2F2F2;
      user-select: none;
      /* Prevent text selection */
      -webkit-user-select: none;
      /* Safari */
      -moz-user-select: none;
      /* Firefox */
      -ms-user-select: none;
      /* Internet Explorer/Edge */ }
      .c-share-popup__content--link span {
        display: block;
        width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        user-select: none;
        /* Prevent text selection */
        -webkit-user-select: none;
        /* Safari */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* Internet Explorer/Edge */
        color: #000000;
        font-family: "Plus Jakarta Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; }
      .c-share-popup__content--link button {
        cursor: pointer;
        width: fit-content;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 10px;
        margin-left: 5px;
        color: #ffffff;
        white-space: nowrap;
        border: 1px solid #CECECE;
        border-radius: 50px;
        background-color: #2E3442; }
        .c-share-popup__content--link button i {
          font-size: 18px;
          color: #ffffff; }
  .c-share-popup__item {
    display: flex;
    align-items: center;
    justify-content: center; }
    .c-share-popup__item-icon {
      width: 25px;
      height: 25px;
      border: none;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .c-share-popup__item-icon i, .c-share-popup__item-icon svg {
        font-size: 16px;
        color: #000000; }
    .c-share-popup__item-text {
      background: transparent;
      color: #000000;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center; }
      .c-share-popup__item-text.is-active {
        color: #ffffff;
        background-color: #6B6B6A; }
  .c-share-popup.is-active .c-share-popup__box {
    display: block; }

/*# sourceMappingURL=app.css.map */
