:root {
    /* Light Mode Colors */
    --light-bg-primary: #F8F9FA;
    --light-bg-bg-primary: #fff;
    --light-bg-text-primary: #fff;
    --light-text-primary: #212529;
    --light-text-red: #DC3545;
    --light-text-green: #198754;
    --light-text-grey: #6C757D;
    --light-text-yellow: #ffeb3b;
    --light-purple: #7c2be7;
    --light-purple-second: #7c2be7;
    --bg-support-shadow: #00000026;
    --bg-support-shadow2: transparent;

    --light-bg-header: #00c3cc;
    --light-bg-header-grad: radial-gradient(circle,  rgba(124,43,231,1) 70%, rgba(0,195,204,1) 30%);
    --light-bg-grad-line: linear-gradient(90deg, rgba(0,195,204,1) 0%, rgba(124,43,231,1) 100%);

    --light-item-bg: #fff;
    --light-item-border: #bacef7;
    --light-item-bg-active: #C6E7FF;

    --dark-bg-primary: #121212;
    --dark-bg-text-primary: #000;
    --dark-text-primary: #F8F9FA;
    --dark-text-white: #F8F9FA;
    --dark-text-red: #FF5252;
    --dark-text-green: #157347 ;
    --dark-text-grey: #7a8188;
    --dark-text-yellow: #FFD54F;
    --dark-purple: #C7B9DF;
    --dark-purple-second: #a564fa;
    --dark-bg-support-shadow: #ffffff31;
    --dark-bg-support-shadow2: #ffffff09;

    --dark-bg-header: #00ACC1;
    --dark-bg-header-grad: radial-gradient(circle, rgb(45 0 124) 70%, rgb(5 91 102) 30%);
    --dark-bg-grad-line: linear-gradient(90deg, rgb(5 91 102) 0%, rgb(45 0 124) 100%);

    --dark-item-bg: #263238;
    --dark-item-border: #37474F;
    --dark-item-bg-active: #1A237E;
    
    /* Default theme (light) */
    --bg-primary: var(--light-bg-primary);
    --bg-white: var(--light-bg-bg-primary);
    --text-white: var(--light-bg-text-primary);
    --text-black: var(--light-text-primary);
    --fix-black: #000;
    --fix-white: #fff;
    --revert-text: #000;
    --unrevert-text: #fff;
    --pop-support: #fff;
    --form-reader: #fff;
    --nav-bg-desktop: #f0f2f5;
    --active-btn-nav: #d9dbde;
    --list-bg: #fff;
    --card-bg: #fefefe;
    --border-card: #cbcbcb;
    --bg-drop: #00000045;
    --divider: #e1e1e1;
    --cancel-dialog: #3b8bc6;
    --text-red: var(--light-text-red);
    --text-green: var(--light-text-green);
    --text-grey: var(--light-text-grey);
    --text-yellow: var(--light-text-yellow);
    --icon-first: var(--light-purple);
    --icon-first-2: var(--light-purple-second);
    --icon-second: var(--light-bg-header);
    --radial-grad: var(--light-bg-header-grad);
    --gradient-line: var(--light-bg-grad-line);
    --item-bg: var(--light-item-bg);
    --item-border: var(--light-item-border);
    --bg-active: var(--light-item-bg-active);
    --support-shadow: var(--bg-support-shadow);
    --support-shadow2: var(--bg-support-shadow2);
}
.helia-dark {
    --bg-primary: var(--dark-bg-primary);
    --text-white: var(--dark-text-white);
    --text-black: var(--dark-text-primary);
    --fix-black: #000;
    --fix-white: #fff;
    --revert-text: #fff;
    --unrevert-text: #000;
    --pop-support: #000;
    --form-reader: #d5d5d5;
    --active-btn-nav: #3f3f3f;
    --nav-bg-desktop: #19191a;
    --list-bg: #303030;
    --card-bg: #141414;
    --border-card: #444343;
    --bg-drop: #b9b9b945;
    --divider: #e1e1e1;
    --cancel-dialog: #5daae2;
    --text-red: var(--dark-text-red);
    --text-green: var(--dark-text-green);
    --text-grey: var(--dark-text-grey);
    --text-yellow: var(--dark-text-yellow);
    --icon-first: var(--dark-purple);
    --icon-first-2: var(--dark-purple-second);
    --icon-second: var(--dark-bg-header);
    --radial-grad: var(--dark-bg-header-grad);
    --gradient-line: var(--dark-bg-grad-line);
    --item-bg: var(--dark-item-bg);
    --item-border: var(--dark-item-border);
    --bg-active: var(--dark-item-bg-active);
    --support-shadow: var(--dark-bg-support-shadow);
    --support-shadow2: var(--dark-bg-support-shadow2);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin-block-start: 0em;
    margin-block-end: 0em;
    user-select: none;
}
noscript {
    position: fixed;
    left: 50%;
    bottom: 10vh;
    transform: translate(-50%);
    background: #f00;
    color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 20px 0px #ff000082;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid #f00;
    z-index: 99;
    max-width: 90%;
    width: max-content;
    text-align: center;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
::-webkit-scrollbar {
    width: 5px;
    display: inline;
}
::-webkit-scrollbar-track {
    background-color: #9c89fc2b;
    border-radius: 1rem;
}
::-webkit-scrollbar-thumb {
    background-color: var(--icon-first);
    border-radius: 1rem;
}
img {
    user-select: none;
}
a {
    cursor: pointer;
    outline: none;
    color: #000;
    text-decoration: none;
}
a:active, button:active {
    opacity: 0.7;
}
button {
    cursor: pointer;
    outline: none;
    padding: 0px;
    font-family: inherit;
    border: 0px;
    -webkit-appearance: button;
}
    
html, body {
    height: 100%;
    font-family: "Inter", sans-serif;
    -webkit-text-size-adjust: 100%;
}
    
body {
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-stretch: normal;
    font-kerning: auto;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    margin: 0;
    background: var(--bg-primary);
    color: var(--text-black);
    -webkit-font-smoothing: antialiased;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    transition: 0.4s all ease;
}
notes-nanang {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}
header {
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0.5rem 0.5rem;
    padding: 0.75rem 0.5rem 0.25rem;
    z-index: 9;
    background: var(--icon-second);
    background: var(--radial-grad);
    color: var(--text-white);
    background-position: bottom left;
    background-size: 120% 400%;
    background-repeat: no-repeat;
}
.sticky {
    position: sticky;
}
header .wrapper-helia {
    grid-column: span 2 / span 2;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
header .app-judul {
    gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    justify-items: center;
    transition: 0.4s all ease;
}
.scrolled header {
    box-shadow: 0px 6px 10px 0px var(--support-shadow);
}
.scrolled header .app-judul {
    display: grid;
    justify-items: start;
    align-items: center;
    grid-template-columns: repeat(2, 0fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 0.75rem;
}
header .app-judul img {
    pointer-events: none;
    width: 2.5rem;
    height: auto;
    max-width: 2.5rem;
    transition: 0.4s all ease;
}
.scrolled header .app-judul img {
    width: 2rem;
    height: 2rem;
}
header .app-judul h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-white);
    transition: 0.4s all ease;
}
.scrolled header .app-judul h1 {
    font-size: 1.5rem;
    font-weight: 600;
}
header .navigator {
    grid-column-start: 3;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1rem;
    position: relative;
    z-index: 11;
}
.navigator .wrapper-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.navigator .helia-func, .search-box button {
    background-color: transparent;
    color: var(--text-white);
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 100%;
    transition: 0.4s all ease;
    position: relative;
    z-index: 11;
}
.navigator .helia-func.active {
    background-color: var(--icon-second);
}
.navigator .wrapper-view .pop-view {
    display: none;
    position: absolute;
    top: 3rem;
    min-width: 12.5rem;
    max-width: 15rem;
    right: 0;
    background-color: var(--bg-primary);
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 18px 0px var(--support-shadow);
    z-index: 3;
}
.navigator .wrapper-view .pop-view.visible {
    display: flex;
    -webkit-animation: fadeIn 0.4s;
    animation: fadeIn 0.4s;
}
.navigator .wrapper-view .list-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}
.navigator .wrapper-view .list-view button {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    padding: 0.5rem 0.25px;
    font-size: 1rem;
    color: var(--revert-text);
}
.navigator .wrapper-view .list-view button.active {
    color: var(--icon-first-2);
    font-weight: 600;
}
.search-note {
    grid-column: span 3 / span 3;
    grid-row-start: 2;
}
.page-search .search-note {
    position: fixed;
    width: 100%;
    grid-column: unset;
    grid-row-start: unset;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0px;
    z-index: 10;
    background-color: var(--bg-primary);
    color: var(--text-black);
}
.search-note {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.search-note .search-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem;
}
.page-search .search-note .search-box {
    background-color: transparent;
    background: var(--gradient-line);
}
.search-box .search-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.search-box button {
    display: none;
}
.page-search .search-box button {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
}
.search-note .wrapper-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--text-white);
    padding: 0.5rem;
    border-radius: 0.5rem;
    width: 100%;
    outline: 1px solid var(--support-shadow);
}
.search-note .wrapper-search:focus-within {
    outline: 1px solid var(--icon-second);
}
.search-note .wrapper-search span {
    color: var(--fix-black);
    font-size: 1.35rem;
}
.search-note .wrapper-search input {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--fix-black);
    line-height: 1.5rem;
}
.search-note .result-search {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0.5rem;
}
.page-search .search-note .result-search {
    display: flex;
}
.search-note .search-box h2 {
    font-size: 1rem;
    font-weight: 500;
    display: none;
    gap: 0.25rem;
    color: var(--text-white);
}
.page-search .search-note .search-box h2 {
    display: flex;
}
.result-search .list-search {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.result-search .list-search .null {
    width: 100%;
    text-align: center;
    min-height: 7.5rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}
.result-search .list-search .null p span {
    background-color: var(--icon-second);
    color: var(--revert-text);
    padding: 0px 0.25rem;
    border-radius: 0.25rem;
}
.result-search .list-search .items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
    background-color: var(--item-bg);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--support-shadow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.result-search .list-search .items h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
}
.result-search .list-search .items .body {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.25;
    font-size: 1rem;
}
.result-search .list-search .items .time {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}
.result-search .list-search .items .label {
    position: absolute;
    bottom: 0.25rem;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--text-yellow);
    padding-right: 1rem;
    border-radius: 0px;
    min-height: 1.5rem;
    color: var(--fix-black);
}
.result-search .list-search .items .label .clips {
    position: relative;
    height: 1.5rem;
}
.result-search .list-search .items .label span {
    font-size: 1.25rem;
    padding: 3px 0px;
}
.items .time span {
    font-size: 1.25rem;
    color: var(--icon-first);
}
h2.info {
    width: 100%;
    text-align: left;
    padding: 0.25rem 0.5rem;
    font-weight: 400;
    font-size: 1rem;
    grid-column: span 2 / span 2;
}
.list {
    padding: 0.5rem;
    padding-bottom: 3.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.list .null {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    min-height: 15rem;
    align-content: center;
    justify-content: center;
    padding: 1rem;
}
.list .null strong {
    font-size: 1rem;
    font-weight: 600;
}
.null .create-first {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    color: var(--text-black);
    border-radius: 100%;
    transition: 0.4s all ease;
    font-size: 1rem;
    gap: 0.5rem;
}
.null .create-first span {
    width: 2rem;
    height: 2rem;
    min-width: 3rem;
    min-height: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 2px solid var(--icon-first-2);
    color: var(--icon-first-2);
}
.list.kartu .static {
    display: flex;
    flex-direction: column-reverse;
    box-shadow: 0px 0px 10px 0px var(--support-shadow);
    z-index: 2;
    position: relative;
}
.list.kisi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 1rem 2%;
    align-items: stretch;
}
.list.kartu .static h3 {
    order: 1;
    margin-top: 1rem;
}
.list.kartu .static .time {
    order: 2;
}
.list.kartu .static .label {
    top: 0;
    bottom: unset;
    right: 0.25rem;
    flex-direction: column;
    align-items: center;
    padding: 0.25rem 0rem;
    gap: 0;
}
div[data-note] {
    position: relative;
    width: 100%;
}
.list.kisi div[data-note] {
    grid-auto-rows: 1fr;
    display: grid;
    max-height: 30vh;
}
.static {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
    background-color: var(--item-bg);
    border: 1px solid var(--item-border);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0px 0px 5px 0px var(--support-shadow);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.static:active, .result-search .list-search .items:active, div[data-note].active .static, .result-search .list-search .items.active {
    background-color: var(--bg-active);
}
.static:hover, .result-search .list-search .items:hover {
    filter: drop-shadow(0px 0px 5px var(--icon-first));
    transition: 0.3s filter ease;
}
.list.kisi .static {
    border-radius: 1rem;
}
.list.kisi .status-arsip .static {
    padding-bottom: 2.5rem;
}
.static h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}
.list.kisi .static h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 87.5%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.25;
    white-space: unset;
}
.static p {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.25;
    font-size: 0.875rem;
}
.static .label {
    position: absolute;
    bottom: 0.25rem;
    right: 0;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--text-yellow);
    color: var(--fix-black);
    padding-right: 1rem;
    border-radius: 0px;
    min-height: 1.5rem;
}
.status-arsip .static .label {
    display: flex;
}
.static .label span {
    font-size: 1.25rem;
    padding: 3px 0px;
}
.static .label .clips {
    position: relative;
    height: 1.5rem;
}
.list.kartu .static .label .clips {
    height: 0;
    width: 100%;
    order: 1;
}
.clips::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 15px solid var(--text-yellow);
    border-bottom: 20px solid transparent;
    position: absolute;
    right: -1px;
    top: -1px;
}
.clips::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 15px solid var(--text-yellow);
    border-bottom: 0px solid transparent;
    position: absolute;
    right: -1px;
    bottom: -1px;
}
.list.kartu .static .label .clips::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 25px solid var(--text-yellow);
    border-bottom: 20px solid transparent;
    position: absolute;
    right: 0;
    top: -1px;
}
.list.kartu .static .label .clips::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-left: 25px solid var(--text-yellow);
    border-bottom: 20px solid transparent;
    border-right: none;
    position: absolute;
    left: 0;
    top: -1px;
}
.list.kartu .static .label span {
    padding: 0px 0.5rem;
}
.list.kartu .static .label p {
    display: none;
}
.static .time {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
}
.static .time span {
    font-size: 1.25rem;
    color: var(--icon-first);
}
.act-func {
    position: absolute;
    right: 0;
    top: 0.5rem;
}
.list.kartu .act-func {
    position: relative;
    width: 100%;
    top: -0.75rem;
    background-color: var(--card-bg);
    padding: 0.5rem;
    z-index: 0;
    padding-top: 1.25rem;
    border-radius: 0px 0px 0.75rem 0.75rem;
    border: 1px solid var(--border-card);
}
.act-func .func-note {
    position: relative;
}
.act-func .func-note .btn-action {
    background-color: transparent;
    color: var(--icon-first);
    width: 2rem;
    height: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.list.kartu .act-func .func-note .btn-action {
    display: none;
}
.act-func .func-note .func-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0rem;
    background-color: var(--bg-primary);
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 10px 0px var(--text-grey);
    border: 1px solid var(--icon-second);
    z-index: 2;
    padding: 0.25rem;
    min-width: 11.5rem;
    max-width: 11.5rem;
    right: 0.5rem;
    gap: 0.25rem;
}
.list.kartu .act-func .func-note .func-list {
    display: flex;
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    background-color: transparent;
    box-shadow: unset;
    border: unset;
    padding: unset;
    flex-direction: row;
    width: 100%;
    max-width: unset;
}
.act-func .func-note .func-list.visible {
    display: flex;
}
.act-func .func-note .func-list button {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    color: var(--text-white);
}
.act-func .func-note .func-list button span {
    font-size: 1.25rem;
}
.list.kartu .act-func .func-note .func-list button {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    justify-content: center;
    border-radius: 0.5rem;
    max-width: 50%;
}
.func-list button.archive {
    background-color: var(--text-grey);
    color: var(--text-black);
}
.func-list button.un-archive {
    background-color: var(--text-green);
    color: var(--text-white);
}
.list.kartu .func-list button.un-archive {
    flex-direction: column !important;
    gap: 0px !important;
    padding: 0.35rem 0.75rem !important;
}
.func-list button.delete {
    background-color: var(--text-red);
    color: var(--text-white);
}
aside.navigation {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    background-color: var(--bg-primary);
    box-shadow: 0px 0px 13px 0px var(--support-shadow);
    z-index: 8;
}
aside.navigation button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    background-color: transparent;
    padding: 0.5rem 0.35rem;
    color: var(--text-black);
}
aside.navigation button.active {
    color: var(--icon-first-2);
    font-weight: 600;
    background-color: var(--support-shadow2);
}
nav {
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    z-index: 8;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
nav .gotop {
    background-color: var(--icon-second);
    color: var(--text-white);
    box-shadow: 0px 0px 13px 0px var(--support-shadow);
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    border-radius: 100%;
    transition: 0.4s all ease;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
nav.scroll .gotop {
    display: flex;
    animation: fadeIn 0.4s;
}
nav .create {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    background-color: var(--icon-first);
    color: var(--unrevert-text);
    border-radius: 5rem;
    padding: 0.75rem;
    box-shadow: 0px 0px 13px 0px var(--support-shadow);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    min-height: 3rem;
    min-width: 3rem;
    position: relative;
}
nav.ready .create {
    gap: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
nav .create .text {
    width: fit-content;
    display: flex;
    visibility: visible;
    transition: 1s all ease;
}
nav .create .text p {
    opacity: 1;
}
nav.ready .create .text {
    display: none;
}
.note-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: var(--bg-primary);
    color: var(--text-black);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}
.show-noted .note-wrapper {
    display: flex;
}
.note-wrapper .noted {
    position: relative;
    width: 100%;
}
.note-wrapper .noted .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0px;
    gap: 1rem;
    justify-content: space-between;
    color: var(--text-white);
    background: var(--gradient-line);
    z-index: 10;
}
.noted .top .kiri {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    width: 72.5%;
}
.noted .top .kiri button {
    background-color: transparent;
    color: var(--text-white);
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 100%;
    transition: 0.4s all ease;
}
.noted .top .kiri h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    font-size: 1.1rem;
    font-weight: 600;
}
.noted .top .kanan {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}
.noted .top .kanan .option {
    background-color: transparent;
    color: var(--text-white);
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 100%;
    transition: 0.4s all ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}
.noted .top .kanan .option p {
    display: none;
}
.noted .top .kanan .func-noted {
    position: relative;
}
.noted .top .kanan .func-noted button  {
    background-color: transparent;
    color: var(--text-white);
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 100%;
    transition: 0.4s all ease;
}
.noted .top .kanan .func-noted .func-noted-list {
    position: absolute;
    top: 0;
    min-width: 15rem;
    max-width: 15rem;
    right: 0.5rem;
    background-color: var(--pop-support);
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 18px 0px var(--support-shadow);
    gap: 0.5rem;
    display: none;
    flex-direction: column;
    z-index: 2;
}
.noted .top .kanan .func-noted.showing .func-noted-list {
display: flex;
}
.noted .top .kanan .func-noted .func-noted-list button {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    padding: 0.5rem 0.25rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}
.noted .top .kanan .func-noted .func-noted-list button.delete {
    background-color: var(--text-red);
    color: var(--text-white);
}
.noted .top .kanan .func-noted .func-noted-list button.arsip {
    background-color: var(--text-grey);
    color: var(--text-white);
}
.noted .top .kanan .func-noted .func-noted-list button.un-arsip {
    background-color: var(--text-green);
    color: var(--text-white);
}
.note-wrapper .body-noted {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    white-space: pre-wrap;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}
.note-wrapper .body-null {
    padding: 1rem;
    min-height: 70vh;
    position: relative;
    left: 50%;
    top: 50%;
    right: 50%;
    bottom: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
    font-size: 1.1rem;
}
.note-wrapper .body-null span {
    font-size: 5rem;
    background: var(--gradient-line);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
note-form.create {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: var(--bg-primary);
    color: var(--text-black);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
}
.created-page note-form.create {
    display: flex;
}
note-form.create .top {
    display: flex;
    color: var(--text-white);
    background: var(--icon-first);
    background: var(--gradient-line);
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0rem 0.5rem;
    gap: 1rem;
    justify-content: space-between;
    position: sticky;
}
note-form.create .top .nav-create {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0px;
    gap: 0.5rem;
    justify-content: flex-start;
}
note-form.create .top .nav-create button {
    background-color: transparent;
    color: var(--text-white);
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 100%;
    transition: 0.4s all ease;
}
note-form.create .top .nav-create h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    font-size: 1.25rem;
    font-weight: 600;
}
.main-create {
    padding: 0.5rem 0.75rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
}
.main-create form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.main-create form .judul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
.main-create form .judul label {
    font-weight: 500;
    font-size: 1rem;
}
.main-create form .judul input {
    font-size: 1rem;
    border: none;
    width: 100%;
    padding: 0.75rem 0.5rem;
    background-color: var(--form-reader);
    color: var(--fix-black);
    line-height: 1.25;
    border-radius: 0.5rem;
    outline: 1px solid var(--icon-second);
}
.main-create form .judul input:focus,.main-create form .body-create textarea:focus {
    outline: 1px solid var(--icon-first);
    box-shadow: 0px 0px 18px 0px var(--support-shadow);
}
.errorinp {
    outline: 1px solid var(--text-red) !important;
}
.main-create form .body-create {
    width: 100%;
}
.main-create form .body-create textarea {
    min-height: 67.5vh;
    font-size: 1rem;
    border: none;
    width: 100%;
    max-width: 100%;
    min-width: 50%;
    padding: 0.5rem;
    background-color: var(--form-reader);
    color: var(--fix-black);
    line-height: 1.25;
    border-radius: 0.5rem;
    font-family: inherit;
    outline: 1px solid var(--icon-second);
}
.main-create form .judul .error, .main-create form .body-create .error, .main-create form .judul .error.hide, .main-create form .body-create .error.hide {
display: none;
}
.main-create form .judul .error.show, .main-create form .body-create .error.show {
    display: flex;
    color: var(--text-red);
    font-size: 1rem;
}
.save-note {
    display: flex;
    width: 100%;
    gap: 1rem;
    position: sticky;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0.5rem;
    background-color: var(--pop-support);
    border-radius: 0.5rem;
    box-shadow: 0px 0px 18px 0px var(--support-shadow);
}
.save-note button {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    background-color: var(--fix-white);
    border: 1px solid var(--fix-black);
    color: var(--fix-black);
}
.save-note button#cancelSave {
    box-shadow: inset 0px 0px 10px 0px #0000006e;
    font-weight: 600;
}
.save-note button#saveNote {
    background-color: var(--text-green);
    color: var(--text-white);
    border: 1px solid var(--text-green);
}
.save-note button:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: none;
}
confirm-dialog.fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    padding: 0px;
    display: none;
    z-index: 99;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    border: none;
}
confirm-dialog.fixed.show {
    display: flex;
    animation: fadeIn 0.3s;
}
confirm-dialog.fixed .bg-drop {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-drop);
}
.dialog-wrapper {
    position: relative;
    background-color: var(--bg-primary);
    border-radius: 1rem;
    min-width: 30vw;
    padding: 0px;
    overflow: hidden;
    max-width: 30vw;
    width: 100%;
}
.dialog-wrapper .summary-dialog {
    text-align: center;
    font-size: 1rem;
    padding: 2rem;
    color: var(--revert-text);
}
.dialog-wrapper .btn-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid var(--divider);
    gap: 1px;
    background-color: var(--divider);
}
.dialog-wrapper .btn-wrapper button {
    flex: 1;
    background-color: var(--bg-primary);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}
.dialog-wrapper .btn-wrapper button.cancel {
    color: var(--cancel-dialog);
}
.dialog-wrapper .btn-wrapper button.confirm {
    color: var(--text-red);
}
.toast {
    position: fixed;
    z-index: 99;
    right: 1rem;
    top: 1rem;
    padding: 1rem;
    background: var(--icon-first);
    color: var(--unrevert-text);
    border: 1px solid var(--icon-first2);
    border-radius: 0.5rem;
    text-align: left;
    box-shadow: 0px 0px 0px 0px var(--support-shadow);
    max-width: 30vw;
    font-size: 1rem;
    display: none;
}
.toast.show {
    display: block;
    animation: fadeIn 0.3s;
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@-webkit-keyframes hide {
    from { display: block;
    opacity: 1; }
      to { display: none;
    opacity: 0; }
}

@media only screen and (min-width: 1024px) {
    body {
        max-height: 100vh;
    }
    notes-nanang {
        display: grid;
        grid-template-rows: repeat(5, 1fr);
        max-height: 100%;
        height: 100vh;
        overflow: hidden;
        align-items: start;
    }
    header {
        grid-column: span 2 / span 2;
        order: 2;
        position: relative;
        height: 100%;
    }
    header .app-judul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }
    header .app-judul img {
        width: 2rem;
        max-width: 2rem;
    }
    header .app-judul h1 {
        font-weight: 600;
        font-size: 1.25rem;
    }
    .list {
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 4;
        grid-column-start: 2;
        grid-row-start: 2;
        order: 2;
        height: 100%;
        padding-bottom: 0px;
        position: relative;
        background-color: var(--list-bg);
        overflow-y: scroll;
        overflow-x: hidden;
        min-width: 30vw;
    }
    .note-wrapper {
        grid-column: span 4 / span 4;
        grid-row: span 5 / span 5;
        grid-column-start: 4;
        grid-row-start: 1;
        display: flex;
        position: relative;
        overflow: hidden;
        min-width: 65vw;
    }
    .note-wrapper .noted {
        overflow-y: scroll;
        overflow-x: hidden;
        height: 100%;
    }
    .note-wrapper .noted .top {
        position: sticky;
        top: 0;
        right: 0;
        left: 0;
        min-height: 3.5rem;
    }
    .noted .top .kiri {
        padding-left: 1rem;
    }
    .noted .top .kiri button {
        display: none;
    }
    .static {
        border-left: 3px solid var(--icon-second);
    }
    .static:hover {
        border-left: 3px solid var(--icon-first-2);
        transition: 0.3s filter ease;
    }
    aside.navigation {
        position: relative;
        grid-row: span 5 / span 1;
        order: 1;
        inset: unset;
        display: flex;
        flex-direction: column;
        box-shadow: none;
        background-color: var(--nav-bg-desktop);
        height: 100%;
        gap: 2rem;
        padding: 2rem 0.5rem;
        width: fit-content;
        padding-top: 7rem;
    }
    aside.navigation button {
        flex: unset;
    }
    aside.navigation button.active {
        width: 3rem;
        height: 3rem;
        background-color: var(--active-btn-nav);
        border-radius: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    aside.navigation button span {
        font-size: 1.5rem;
    }
    aside.navigation button p {
        display: none;
    }
    note-form.create {
        grid-column: span 4 / span 4;
        grid-row: span 5 / span 5;
        grid-column-start: 4;
        grid-row-start: 1;
        position: relative;
        overflow: hidden;
    }
    note-form.create .top .nav-create button {
        display: none;
    }
    .page-search .search-note {
        position: absolute;
        top: 3rem;
        background-color: transparent;
        gap: 0px;
    }
    .page-search .search-note .search-box {
        background: transparent;
        gap: 0.5rem;
    }
    .search-note .result-search {
        position: relative;
        min-height: 80vh;
        max-height: 80vh;
        height: 80vh;
        background-color: var(--list-bg);
        overflow-y: scroll;
        padding: 0.5rem;
        gap: 0px;
    }
    .page-search h2.info {
        display: none;
    }
    note-form.create .top {
        padding: 0.5rem;
    }
    note-form.create .top h2 {
        font-size: 1.15rem !important;
    }
    nav {
        position: fixed;
        left: 0.75rem;
        right: unset;
        z-index: 9;
        top: 2rem;
        bottom: unset;
    }
    nav .create {
        min-width: 2.5rem;
        min-height: 2.5rem;
        height: 2.5rem;
        width: 2.5rem;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    nav .create .text {
        display: none;
    }
    .main-create {
        height: 100vh;
    }
    .main-create form, .main-create form .body-create, .main-create form .body-create textarea {
        height: 100%;
    }
}

@media only screen and (max-width: 1023px) {
    .search-note .result-search {
        min-height: 100vh;
    }
    .dialog-wrapper {
        min-width: 40vw;
        max-width: 40vw;
    }
    .toast {
        background-color: var(--icon-second);
    }
    header .navigator {
        z-index: 8;
    }
}

@media only screen and (max-width: 720px) {
    ::-webkit-scrollbar {
        display: none;
        width: 0px;
    }
    ::-webkit-scrollbar {
        display: none;
        width: 0px;
    }
    confirm-dialog.fixed.show {
        align-items: flex-end;
    }
    .dialog-wrapper {
        max-width: 95vw;
        bottom: 1rem;
        background-color: transparent;
    }
    .dialog-wrapper .summary-dialog {
        background-color: var(--bg-primary);
    }
    .dialog-wrapper .btn-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 1.5rem;
        background-color: transparent;
    }
    .dialog-wrapper .btn-wrapper button.cancel {
        border-radius: 1rem;
    }
    .dialog-wrapper .btn-wrapper button.confirm {
        border-radius: 0px 0px 1rem 1rem;
    }
    .toast {
        max-width: 90vw;
        background-color: var(--icon-first);
        color: var(--unrevert-text);
        top: 30vh;
        right: 50%;
        transform: translate(50%);
        padding: 0.5rem;
        text-align: center;
        border: 1px solid var(--icon-second);
        min-width: 90vw;
    }
}
@media only screen and (max-width: 400px) {
    header {
        gap: 0.25rem;
    }
    header .app-judul img {
        width: 2.25rem;
    }
    header .app-judul h1 {
        font-size: 1.75rem;
    }
    .search-note .wrapper-search {
        padding: 0.25rem 0.5rem;
    }
    .search-note .wrapper-search input {
        font-size: 0.875rem;
    }
    h2.info {
        padding: 0.25rem;
    }
    nav .create {
        padding: 0.5rem;
    }
    nav .create span, nav .gotop span {
        font-size: 1.25rem;
    }
    nav .create .text {
        font-size: 0.875rem;
        padding-right: 0.25rem;
    }
    .static h3 {
        font-size: 1rem;
    }
    .static p {
        font-size: 0.875rem;
    }
    .static .time span {
        font-size: 1rem;
    }
    .static p {
        font-size: 0.85rem;
    }
    .act-func .func-note .btn-action {
        width: 1.75rem;
        height: 1.75rem;
    }
    .act-func .func-note .btn-action span {
        font-size: 1.25rem;
    }
    aside.navigation button p {
        font-size: 0.75rem;
    }
    note-form.create .top .nav-create button {
        width: 2rem;
        height: 2rem;
        max-width: 2rem;
        min-width: 2rem;
    }
    note-form.create .top .nav-create h2 {
        font-size: 1.05rem;
    }
    .save-note button {
        font-size: 0.875rem;
    }
    .save-note button span {
        font-size: 1.25rem;
    }
    .result-search .list-search .items h3 {
        font-size: 1rem;
    }
    .result-search .list-search .items .body, .result-search .list-search .items .label {
        font-size: 0.875rem;
    }
    .result-search .list-search .items .label span, .static .label span {
        padding: 0px;
    }
    .note-wrapper .noted .top {
        padding: 0.35rem;
    }
    .noted .top .kiri button, .noted .top .kanan .option {
        width: 2rem;
        height: 2rem;
        max-width: 2rem;
        min-width: 2rem;
    }
    .noted .top .kiri h2 {
        font-size: 1.05rem;
    }
    .noted .top .kanan {
        gap: 0.25rem;
    }
    .note-wrapper .body-noted {
        padding: 0.5rem;
        line-height: 1.25;
    }
    .note-wrapper .body-null span {
        font-size: 4rem;
    }
    .note-wrapper .body-null p {
        font-size: 1rem;
    }
    .scrolled header .app-judul h1 {
        font-size: 1rem;
    }
    .scrolled header .app-judul img {
        width: 1.75rem;
        min-width: 1.75rem;
        max-width: 1.75rem;
    }
    .search-note .search-box {
        padding: 0px;
    }
    .navigator .wrapper-view .pop-view {
        min-width: 11rem;
        top: 2rem;
    }
    .navigator .wrapper-view .list-view button {
        font-size: 0.875rem;
    }
    .navigator .wrapper-view .list-view button span {
        font-size: 1.25rem;
    }
    .act-func .func-note .func-list {
        padding: 0.25rem;
        max-width: 12rem;
        min-width: 12rem;
    }
    .act-func .func-note .func-list button {
        font-size: 0.875rem;
        padding: 0.5rem;
        gap: 0.25rem;
    }
    .act-func .func-note .func-list button span {
        font-size: 1.25rem;
    }
    .noted .top .kanan .func-noted .func-noted-list {
        max-width: 12rem;
        min-width: 12rem;
    }
    .noted .top .kanan .func-noted .func-noted-list button {
        gap: 0.25rem;
        font-size: 0.875rem;
    }
    .noted .top .kanan .func-noted .func-noted-list button span {
        font-size: 1.25rem;
    }
    .act-func .func-note .func-list {
        max-width: 10rem;
    min-width: 10rem;
    }
    .act-func .func-note .func-list button {
        gap: 0.25rem;
        font-size: 0.75rem;
        padding: 0.35rem;
    }
    .list.kartu .act-func .func-note .func-list button {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem !important;
    }
    .page-search .search-note .search-box {
        padding: 0.5rem;
    }
    .clips::before {
        top: 0px;
    }
    .clips::after {
        bottom: 0px;
    }
}