html {
    box-sizing: border-box;
    font-size: 16px;
    background-color: var(--page-bg-color);
    color: #151a20;
    scroll-behavior: smooth
}

*,
:after,
:before {
    box-sizing: inherit
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin: 0;
    padding: 0;
    font-weight: 400
}

ol,
ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

/* CSS Variables & Theming ********************************/
:root {
    --color-mode: "light";
    --theme-color: #00bfa5;
    --page-bg-color: #F2F6F6;
    --page-bg-color-light: #ffffff;
    --text-color: #001710;
    --text-color-light: #ffffff;
    --text-muted: #4a5050;
    --text-muted-x: #888f8f;
    --text-muted-xx: #9da7a7;
    --shadow-large: 0 4px 8px 0px rgba(0,13,18,.06);
    --border-input-light: #dce2e2;
    --border-input-dark: #727777;
    --bg-btn-light: #c0caca;
    --img-filter: invert(0%);
    --scrollbar: #9da7a7;
    --switch-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(157, 167, 167)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-moon'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'%3E%3C/path%3E%3C/svg%3E");
    --info-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' width='24' height='24' viewBox='0 0 24 24' stroke='rgb(157, 167, 167)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
    --grid-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' width='24' height='24' viewBox='0 0 24 24' stroke='rgb(157, 167, 167)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z' /%3E%3C/svg%3E");
    --sidebar-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(74, 80, 80)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 6h16M4 12h16M4 18h7' /%3E%3C/svg%3E");
    --add-note-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(74, 80, 80)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4v16m8-8H4' /%3E%3C/svg%3E");
    --save-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(74, 80, 80)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4' /%3E%3C/svg%3E");
    --print-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(74, 80, 80)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17 17h2a2 2 0 002-2v-4a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h2m2 4h6a2 2 0 002-2v-4a2 2 0 00-2-2H9a2 2 0 00-2 2v4a2 2 0 002 2zm8-12V5a2 2 0 00-2-2H9a2 2 0 00-2 2v4h10z' /%3E%3C/svg%3E");

    }
    @media (prefers-color-scheme: dark) {
    :root {
      --color-mode: "dark";
    }
    :root:not([data-user-color-scheme]) {
        --color-mode: "dark";
        --theme-color: #00bfa5;
        --page-bg-color: #151a20;
        --text-color: #d5e2df;
        --page-bg-color-light: #212931;
        --shadow-large: 0 4px 8px 0px rgba(0, 0, 0, 0.1);
        --border-input-light: #0e1216;
        --border-input-dark: #445258;
        --text-muted: #848f9b;
        --text-muted-x: #6f7575;
        --text-muted-xx: #4a5663;
        --bg-btn-light: #3e4550;
        --img-filter:  invert(75%) brightness(160%);
        --scrollbar: #212931;
        --switch-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(74, 86, 99)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-sun'%3E%3Ccircle cx='12' cy='12' r='5'%3E%3C/circle%3E%3Cline x1='12' y1='1' x2='12' y2='3'%3E%3C/line%3E%3Cline x1='12' y1='21' x2='12' y2='23'%3E%3C/line%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64'%3E%3C/line%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78'%3E%3C/line%3E%3Cline x1='1' y1='12' x2='3' y2='12'%3E%3C/line%3E%3Cline x1='21' y1='12' x2='23' y2='12'%3E%3C/line%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36'%3E%3C/line%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22'%3E%3C/line%3E%3C/svg%3E");
        --info-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' width='24' height='24' viewBox='0 0 24 24' stroke='rgb(74, 86, 99)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
        --grid-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' width='24' height='24' viewBox='0 0 24 24' stroke='rgb(74, 86, 99)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z' /%3E%3C/svg%3E");
        --sidebar-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 6h16M4 12h16M4 18h7' /%3E%3C/svg%3E");
        --add-note-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4v16m8-8H4' /%3E%3C/svg%3E");
        --save-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17 17h2a2 2 0 002-2v-4a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h2m2 4h6a2 2 0 002-2v-4a2 2 0 00-2-2H9a2 2 0 00-2 2v4a2 2 0 002 2zm8-12V5a2 2 0 00-2-2H9a2 2 0 00-2 2v4h10z' /%3E%3C/svg%3E");
        --print-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17 17h2a2 2 0 002-2v-4a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h2m2 4h6a2 2 0 002-2v-4a2 2 0 00-2-2H9a2 2 0 00-2 2v4a2 2 0 002 2zm8-12V5a2 2 0 00-2-2H9a2 2 0 00-2 2v4h10z' /%3E%3C/svg%3E");

    }
    }
    [data-user-color-scheme="dark"] {
      --color-mode: "dark";
      --theme-color: #00bfa5;
      --page-bg-color: #151a20;
      --text-color: #d5e2df;
      --page-bg-color-light: #212931;
      --shadow-large: 0 4px 8px 0px rgba(0, 0, 0, 0.1);
      --border-input-light: #0e1216;
      --border-input-dark: #445258;
      --text-muted: #848f9b;
      --text-muted-x: #6f7575;
      --text-muted-xx: #4a5663;
      --bg-btn-light: #3e4550;
      --img-filter:  invert(75%) brightness(160%);
      --scrollbar: #212931;
      --switch-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgb(74, 86, 99)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-sun'%3E%3Ccircle cx='12' cy='12' r='5'%3E%3C/circle%3E%3Cline x1='12' y1='1' x2='12' y2='3'%3E%3C/line%3E%3Cline x1='12' y1='21' x2='12' y2='23'%3E%3C/line%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64'%3E%3C/line%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78'%3E%3C/line%3E%3Cline x1='1' y1='12' x2='3' y2='12'%3E%3C/line%3E%3Cline x1='21' y1='12' x2='23' y2='12'%3E%3C/line%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36'%3E%3C/line%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22'%3E%3C/line%3E%3C/svg%3E");
      --info-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' width='24' height='24' viewBox='0 0 24 24' stroke='rgb(74, 86, 99)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z' /%3E%3C/svg%3E");
      --grid-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' width='24' height='24' viewBox='0 0 24 24' stroke='rgb(74, 86, 99)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2V6zM14 6a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2V6zM4 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2H6a2 2 0 01-2-2v-2zM14 16a2 2 0 012-2h2a2 2 0 012 2v2a2 2 0 01-2 2h-2a2 2 0 01-2-2v-2z' /%3E%3C/svg%3E");
      --sidebar-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 6h16M4 12h16M4 18h7' /%3E%3C/svg%3E");
      --add-note-icon: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M12 4v16m8-8H4' /%3E%3C/svg%3E");
      --save-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4' /%3E%3C/svg%3E");
      --print-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='h-6 w-6' fill='none' viewBox='0 0 24 24' stroke='rgb(132, 143, 155)' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17 17h2a2 2 0 002-2v-4a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h2m2 4h6a2 2 0 002-2v-4a2 2 0 00-2-2H9a2 2 0 00-2 2v4a2 2 0 002 2zm8-12V5a2 2 0 00-2-2H9a2 2 0 00-2 2v4h10z' /%3E%3C/svg%3E");

    }

body {
    animation: fadeIn 3s ease;
    background-color: var(--page-bg-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: var(--text-color);
    width: 100%;
    z-index: 1;
    text-align: left
}

*{
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar) var(--page-bg-color);
}

*::-webkit-scrollbar {
width: 8px;
}

*::-webkit-scrollbar-track {
background: var(--page-bg-color);
}

*::-webkit-scrollbar-thumb {
background-color: var(--scrollbar);
border-radius: 20px;
border: none;
}

body div {
    transition: all .3s ease
}

button,
input,
textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}

small {
    font-size: 12px;
    color: var(--text-muted)
}


.hidden {
    display: none !important;
}

.shown {
    display: block !important;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

header .header_wrp {
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding: 0 20px;
}

header .logo a{
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-transform: none;
    margin-top: -8px;
}

header .logo a img{
    max-width: 40px;
    border-radius: 50%;
}

header .logo a p{
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 400;
}

header .logo a p span{
    color: var(--text-muted-xx);
}

header .logo a:hover{
    transition: all 0.3s;
}

header .header_wrp .controlls {
    display: flex;
    gap: 15px;
}

header .dashboard a{
    display: flex;
    height: 38px;
    width: 38px;
    background-image: var(--grid-icon);
    background-repeat: no-repeat;
    background-position: top 9px left 9px;
    background-size: 20px;
    margin-top: -9px;
    transition: all 0.3s;
    border-radius: 4px;
}


header .dashboard a:hover{
    background-color: var(--page-bg-color-light);
    transition: all 0.3s;
}

header .info a{
    display: flex;
    height: 38px;
    width: 38px;
    background-image: var(--info-icon);
    background-repeat: no-repeat;
    background-position: top 9px left 9px;
    background-size: 20px;
    margin-top: -9px;
    transition: all 0.3s;
    border-radius: 4px;
}

header .info a:hover{
    background-color: var(--page-bg-color-light);
    transition: all 0.3s;
}

header .setting {
    color: var(--text-muted-xx);
}

header .setting a{
    display: flex;
    height: 38px;
    width: 38px;
    background-image: var(--switch-icon);
    background-repeat: no-repeat;
    background-position: top 9px left 9px;
    background-size: 20px;
    margin-top: -9px;
    transition: all 0.3s;
    border-radius: 4px;
}

header .setting a:hover, .active{
    background-color: var(--page-bg-color-light);
    transition: all 0.3s;
}

@media only screen and (max-width: 660px) {
    header .header_wrp {
        background-color: var(--page-bg-color);
        padding: 18px 15px 6px 15px;
        margin-top: 0px;
        z-index: 1000;
    }

    header .header_wrp .controlls {
        gap: 10px;
    }

    header .setting .setting_list {
        border: 1px solid var(--text-muted-xx);
    }

    header .dashboard {
        margin-top: -1px;
    }

    header .logo a img{
        max-width: 32px;
        margin-top: 2px;
    }

    header .logo a p{
        display: none;
    }
}
.app_wrap {
    max-width: 760px;
    margin: auto;
    margin-top: 170px;
}

.note__nav {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin-bottom: 30px;
}

.note__nav .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 38px;
    width: 38px;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    color: var(--text-muted);
    background-color: var(--page-bg-color-light);
}

.side__open {
    background-image: var(--sidebar-icon);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.notes__add {
    background-image: var(--add-note-icon);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.download__note {
    background-image: var(--save-note-icon);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.print__note {
    background-image: var(--print-note-icon);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.note__nav .btn:hover {
    color: var(--theme-color);
}

.notes__sidebar {
    display: none;
    width: 280px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px 15px;
    background-color: var(--page-bg-color-light);
    overflow-y: auto;
    transform: translateX(-280px);
    transition: all 0.3s;
} 

.show__sidebar {
    display: block;
    transform: translateX(-280px);
}

.slide__in {
    transform: translateX(0px);
    transition: all 0.3s;
}

.notes__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.if_list_empty {
    padding: 12px;
    border-radius: 8px;
    line-height: 1;
}

.if_list_empty p {
    margin-bottom: 7px;
}

.if_list_empty span {
    font-size: 11px;
    color: var(--text-muted);
}

.notes__list-item {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.notes__list-item:hover {
    background-color: var(--page-bg-color);
}

.notes__list-item--selected {
    background-color: var(--page-bg-color);
}

.notes__small-title {
    font-size: 15px;
    font-weight: 600;
}

.notes__small-body {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 5px;
}

.notes__small-updated {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted-xx);
    margin-top: 8px;
}

.app_title {
    max-width: 720px;
    margin: auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    position: absolute;
}

.app_title h1{
    font-size: 27px;
}

.app_title p{
    font-size: 18px;
}

.app_title h1 span{
    color: var(--theme-color);
    font-weight: 600;
}

@media only screen and (max-width: 660px) {
    .app_title {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 25px;
        margin-top: -15px;
    }

    .app_title h1{
        font-size: 24px;
    }

    .app_title p{
        font-size: 15px;
    }
}

.notes__preview {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.notes__preview input {
    font-size: 32px;
    font-weight: 700;
}

.notes__preview input, textarea{
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--text-color);
}

.notes__preview .notes__title{
    overflow: hidden;
    resize: none;
    height: auto;
    font-size: 32px;
    font-weight: 700;
}


.notes__preview .notes__body{
    overflow: hidden;
    resize: none;
    font-size: 18px;
    line-height: 1.5;
    height: auto;
    margin-bottom: 120px;
}

.autosize {
    resize: none;
    overflow: hidden;
}


@media only screen and (max-width:800px) {
    .notes__preview .notes__title{
        font-size: 24px;
        font-weight: 700;
    }

    .notes__preview .notes__body{
        font-size: 16px;
    }
}

@media only screen and (max-width:600px) {
    .notes__preview .notes__title{
        font-size: 20px;
        font-weight: 700;
    }

    .notes__preview .notes__body{
        margin-top: -10px;
    }
}

#hidden-err {
    display: none
}

.error-msg {
    font-size: 12px;
    color: red;
    margin: 10px auto -12px auto;
    display: block !important;
    text-align: left
}

#hidden-suc {
    display: none
}

.suc-msg {
    font-size: 14px;
    font-weight: 600;
    color: #029b86;
    margin: 20px auto -10px auto;
    display: block !important;
    border: 1px solid #00bfa5;
    padding: 10px;
    text-align: center;
    border-radius: 4px
}

.notification {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    background-color: rgb(0, 0, 0, .8);
    box-shadow: 0 0 4px #0e1216;
    padding-top: 12px;
    display: none
}

.notify {
    display: block !important
}

.notification p {
    text-align: center;
    color: #00bfa5
}

footer {
    max-width: 720px;
    margin: 30px auto 45px auto;
    display: flex;
    justify-content: space-between
}

footer p {
    font-size: 12px;
    color: var(--text-muted-xx)
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    color: var(--text-muted-xx);
    text-decoration: underline;
}

@media only screen and (max-width: 1367px) {
    .app_wrap {
        margin-top: 120px;
    }
}

@media only screen and (max-width:768px) {
    .app_wrap {
        max-width: 100%;
        margin: 90px 15px 0 15px;
    }
}

@media print {
    header {
        display: none;
    }
    .app_wrap {
        margin: 45px auto;
    }
    .note__nav {
        display: none;
    }

    @page {
        size: auto;
        margin: 0;
    }
}