@import url("https://use.typekit.net/ybg1jwe.css");

:root {
    --accent: hsla(5, 67%, 53%, 1.0);
    --white: hsla(0, 0%, 100%, 1.0);
    --red: hsla(5, 67%, 53%, 1.0);
    --nav-height: 4rem;
}

:root .light {
    --background: hsla(48, 0%, 100%, 1.0);
    --card-background: hsla(48, 0%, 100%, 1.0);
    --dgrey: hsla(0, 0%, 20%, 1.0);
    --animationbg: hsla(0, 0%, 95%, 1.0);
    --systembg: hsla(0, 0%, 97%, 1);
    --text: hsla(20, 4%, 20%, 1.0);
    --button-text: hsla(20, 4%, 20%, 1.0);
    --softgrey: hsla(0, 2%, 97%, 1.0);
    --input: hsla(330, 2%, 92%, 1.0);
    --l-rem-grid: hsla(0, 0%, 90%, 1.0);
    --d-rem-grid: hsla(0, 0%, 75%, 1.0);
    --saturationHover: 67%;
    --brightnessHover: calc(var(--brightness) / 1.2);
}

:root .dark {
    --background: hsla(20, 4%, 14%, 1.0);
    --card-background: hsla(20, 4%, 20%, 1.0);
    --dgrey: hsla(20, 4%, 14%, 1.0);
    --animationbg: hsla(20, 4%, 24%, 1.0);
    --systembg: hsla(20, 2%, 18%, 1);
    --text: hsla(20, 4%, 80%, 1.0);
    --button-text: hsla(20, 4%, 80%, 1.0);
    --softgrey: hsla(0, 2%, 18%, 1.0);
    --input: hsla(330, 4%, 25.5%, 1.0);
    --l-rem-grid: hsla(0, 0%, 18%, 1.0);
    --d-rem-grid: hsla(0, 0%, 15%, 1.0);
    --saturationHover: 67%;
    --brightnessHover: calc(var(--brightness)/1.5);
}

:root .red {
    --accent: hsla(5, 67%, var(--brightness), 1.0);
    --hoverstate: hsla(5, var(--saturationHover), var(--brightnessHover), 1.0);
}

:root .blue {
    --accent: hsla(207, 67%, var(--brightness), 1.0);
    --hoverstate: hsla(207, var(--saturationHover), var(--brightnessHover), 1.0);
}

:root .turquoise {
    --accent: hsla(175, 67%, calc(var(--brightness) / 1.3), 1.0);
    --hoverstate: hsla(170, var(--saturationHover), var(--brightnessHover), 1.0);
}

:root .yellow {
    --accent: hsla(50, 67%, var(--brightness), 1.0);
    --hoverstate: hsla(50, var(--saturationHover), var(--brightnessHover), 1.0);
}

:root .orange {
    --accent: hsla(32, 67%, var(--brightness), 1.0);
    --hoverstate: hsla(32, var(--saturationHover), var(--brightnessHover), 1.0);
}

:root .green {
    --accent: hsla(112, 67%, var(--brightness), 1.0);
    --hoverstate: hsla(112, var(--saturationHover), var(--brightnessHover), 1.0);
}

*:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

* {
    -webkit-touch-callout: none;
    /* -webkit-user-select: none; */
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /* user-select: none; */
    -webkit-tap-highlight-color: transparent;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    width: 100%;
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* :::::: text :::::: */

h4,
h6,
h6 {
    margin: 0 auto;
    line-height: 1;
}

h1,
h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4,
h6 {
    margin-bottom: .5rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 900;
}

h5 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

h6 {
    font-size: .9rem;
}

p {
    margin: 0 0 1rem 0;
}

.documentation-group a {
    padding: 0 .2rem;
}

.documentation-group ul {
    margin: 0;
    border-left: 2px solid var(--accent);
}

.documentation-group li {
    font-size: 1rem;
    font-weight: 400;
    padding-left: 1rem;
}

.intro {
    margin-top: 1rem;
}

/* :::::: Global :::::: */
body,
.flex,
.grid .grid-item,
#container,
.settings-container li {
    display: flex;
}

body,
.flex,
.grid .grid-item {
    justify-content: center;
    align-items: center;
}

.title-container,
.add-notes-toolbar,
#container,
li {
    justify-content: space-between;
}

h3,
strong {
    font-weight: 900;

}

.settings-title {
    font-weight: 600;
}

a,
a:hover {
    text-decoration: none;
}

a::after {
    content: '';
    bottom: 0;
    width: 100%;
    left: 0;
    height: 2px;
    transition: height .3s ease;
    z-index: -1;
}

a:hover::after {
    height: 100%;
}

ul {
    margin-bottom: 3rem;
    padding: 0;
}

li {
    list-style: none;
    font-size: 1.2rem;
    align-items: center;
    margin-bottom: 1rem;
}

#update-log h3,
#update-log ul,
#update-log li {
    margin: 0;
}

#update-log ul {
    margin: 0 0 4rem 0;
    border-bottom: 1px solid var(--input);
}

#update-log li {
    padding: 1rem;
}

.nav-item,
.button,
.grid-item,
.settings-toggle,
.settings-container li .toggle,
.fas,
.notes-edit .edit,
.notes-edit .delete,
.dpi-input,
.title-container,
.documentation-icon {
    cursor: pointer;
}

#container,
.settings-container li,
#tabs-container,
.dpi-input-container,
#calculator-app,
#calculator-app-container,
.notes-container,
.notes-title,
.add-notes-group,
.nav-list,
.nav-item,
#update-log li,
a {
    position: relative;
}

.settings-container .settings-title::after,
#loading,
.selections,
#nav-container,
.app-nav,
.grid,
.settings,
.app,
.app-container,
#add-notes-container,
#update-log li::after,
.nav-slide,
.settings-close,
.settings-underline,
.tab,
#connection,
.documentation-group,
a::after,
.documentation-icon-container,
.offline .connecting::before {
    position: absolute;
}

/* :::::: Transition :::::: */
.button,
.nav-item,
.grid .button,
.grid .grid-item,
.settings-toggle,
.select-item,
a,
.title-container,
.documentation-icon,
.documentation {
    transition: background .3s ease, color .3s ease;
}

#tabs-container,
#calculator-app,
#calculator-app-container,
#add-notes-container,
.tab,
.settings,
.settings-toggle i,
.settings-icon,
.accordeon-toggle,
.documentation-group,
.documentation-icon-container,
#connection {
    transition: transform .3s ease;
}

/* :::::: Color :::::: */
body,
.grid .input,
.settings-toggle,
.settings-input,
.settings-input:focus,
#calculations,
.notes-input {
    color: var(--text);
}

.button,
.nav-item,
.grid .button,
.grid .clear,
.grid .equals {
    color: var(--white);
}

.dark h6,
.dark .settings-title,
.dark h3,
.dark .grid .backspace:hover,
.dark strong,
.dark a,
.dark.offline a:hover {
    color: var(--accent);
}

.light h6,
.light .settings-title,
.light h3,
.light .grid .backspace:hover,
.light strong,
.light a,
.light.offline a:hover {
    color: var(--hoverstate);
}

.dark a:hover,
.light a:hover {
    color: var(--card-background);
}

body {
    background: var(--background);
}

.toggled,
#update-log li::after {
    background: var(--text);
}

#container,
.select-item,
.documentation-group,
.title-container {
    background: var(--card-background);
}

.grid .input,
.grid .number:hover,
.grid .comma:hover,
.notes-container,
.notes-input,
.documentation-icon:hover,
.documentation.editing,
.editing,
.offline a::after,
.username .image-wrap,
.settings-container .settings-title::after {
    background: var(--input);
}

.settings,
.settings-input,
.settings-input:focus {
    background: var(--systembg);
}

.button,
.nav-list,
.grid .button,
.grid .equals,
.add-notes-toolbar {
    background: var(--dgrey);
}

#add-notes-container,
.title-container:hover {
    background: var(--softgrey);
}

.button:hover,
.app-nav .nav-item:hover,
.grid .clear:hover,
.grid .button:hover,
.grid .equals:hover,
.offline .connecting::before {
    background: var(--hoverstate);
}

.grid .active,
.grid .active:hover,
.app-nav .active,
.grid .clear,
.select-item:hover,
.nav-slide,
.settings-underline,
a::after,
.login {
    background: var(--accent);
}

.delete-delete {
    background: var(--red);
}

.delete-delete:hover {
    background: var(--dred);
}

/* :::::: Nested Sizes :::::: */
#loading,
svg,
#container,
#calculator-app,
#calculator-app-container,
.app,
.nav-item,
.nav-list,
#tabs-container,
.settings-icon,
.settings-close,
.documentation-group {
    height: 100%;
    width: 100%;
}

.nav-slide,
.fly-out {
    height: 100%;
}

.settings-container .settings-title::after,
#calculations .outcome,
.tab,
.delete-container,
.delete-content,
.add-notes-toolbar,
.add-notes-group {
    width: 100%;
}

/* :::::: Loading :::::: */
#loading svg {
    max-height: 200px;
    max-width: 200px;
}

#loading {
    top: 0;
    left: 0;
    z-index: 15000;
    background: var(--animationbg);
    animation: svg-bg .7s 2s ease 1 forwards;
    animation-play-state: paused;
}

.letter-i,
.dot,
.gear {
    transform-box: fill-box;
    transform-origin: 50% 50%;
    animation-play-state: paused;
}

.letter-i {
    animation: i .5s .5s ease 1 forwards;
    transform: translate(0, 10px);
}

.gear {
    animation: gear 1s 1s ease 1 forwards;
}

.dot {
    transform: scale(.9);
    animation: dot .1s .9s ease 1 forwards;
}

@keyframes svg-bg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, -100%);
    }
}

@keyframes gear {
    0% {
        transform: rotate(0);
    }

    30% {
        transform: rotate(-24deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

@keyframes i {
    0% {
        transform: translate(0, 10px);
    }

    50% {
        transform: translate(0, 14px);
    }

    95% {
        transform: translate(0, -12px);
    }

    100% {
        transform: translate(0, -12px);
    }
}

@keyframes dot {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* :::::: Connection :::::: */
#connection {
    width: 2rem;
    height: 2rem;
    top: var(--nav-height);
    right: 0;
    transform: translate(100%, 0);
    z-index: 3000;
    transition: bottom .3s ease;
}

.offline #connection {
    transform: translate(0, 0);
}

.connection-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: wifi 4s ease infinite paused;
}

.offline .connection-animation {
    animation-play-state: running;
}

.connection-animation:nth-child(1) {
    animation-delay: -3s;
}

.connection-animation:nth-child(2) {
    animation-delay: -2s;
}

.connection-animation:nth-child(3) {
    animation-delay: -1s;
}

.connection-animation:nth-child(4) {
    animation-delay: -4s;
}

@keyframes wifi {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.offline .connecting::before {
    content: '';
    bottom: 0;
    width: 4px;
    left: 0;
    height: 2px;
    z-index: 2;
    animation: connecting 2s ease infinite alternate paused;
}

@keyframes connecting {
    0% {
        left: 0;
    }

    100% {
        left: calc(100% - 4px);
    }
}

/* :::::: Container :::::: */
#container {
    border-radius: 0;
    overflow: hidden;
    flex-direction: column;
}

/* nav */
.nav-list {
    overflow: hidden;
}

.nav-item i {
    z-index: 2800;
}

.nav-slide {
    z-index: 2600;
    top: 0;
    left: 0;
    border-radius: 1rem;
    transition: .3s ease;
    pointer-events: none;
}

.nav-settings:hover .settings-underline {
    width: 50%;
}

/* apps */
.app,
#add-notes-container {
    top: 0;
    left: 0;
}

#add-notes-container {
    top: var(--nav-height);
    right: 0;
    border-radius: 0;
    z-index: 3000;
}

/* :::::: Tabs :::::: */
#nav-container {
    height: 2rem;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 2500;
}

.app-nav {
    height: 2rem;
    top: var(--nav-height);
    left: 2rem;
    right: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 2500;
}

.app-nav i {
    margin-right: 1rem;
}

.app-container {
    overflow-x: hidden;
    top: var(--nav-height);
    left: 0;
    right: 0;
    padding: 0 1rem;
    bottom: 0;
}

.tab {
    bottom: 0;
    left: 0;
}

/* :::::: Grid :::::: */
.grid {
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 1rem;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 3rem 3rem 3rem 3rem 3rem;
    grid-row-gap: 1.5rem;
}

#rem-grid {
    top: 3rem;
    width: 100%;
}

#rem-grid .grid {
    top: 0;
    height: 100%;
    width: calc(100% - 2rem);
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-row-gap: 1.5rem;
    grid-auto-flow: row;
    overflow: scroll;
}

#rem-grid .grid h3 {
    text-align: right;
    padding-right: .5rem;
}

#rem-grid .grid-item {
    width: auto;
    height: 1.5rem;
    display: flex;
    justify-content: flex-end;
    padding: .5rem;
    align-items: center;
    border-radius: 0;
    border-bottom: 1px solid var(--input);
}

#rem-grid .px-group .grid-item {
    border-right: 1px solid var(--text);
}

.grid .grid-item {
    height: 3rem;
    width: 3rem;
    font-size: 1.2rem;
    border-radius: 1.5rem;
    align-self: start;
    justify-self: center;
    line-height: 0;
}

.reset {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
}

#keyboard .input {
    height: 3rem;
    width: calc(100% - 5.5rem);
    margin-right: 1rem;
    border-radius: 1.5rem;
    grid-column: 2 / span 2;
    grid-row: 1 / 1;
    justify-self: end;
    justify-content: flex-end;
    padding: 0 1.5rem;
    border: 0 solid transparent;
    font-size: 1.5rem;
}

/* :::::: Settings :::::: */
.settings {
    padding: 0 1rem;
    transform: translateX(-100%);
    top: 0;
    padding-top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(18px);
    z-index: 1600;
}

.login.button {
    padding: .5rem 1rem;
    border-radius: 1rem;
    line-height:1;
}

.username .image-wrap {
    height: 2rem;
    width: 2rem;
    overflow: hidden;
    border-radius: 1rem;
    margin-right: 1rem;
}

.username .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.username .image-wrap svg {
    transform: scale(.8);
}

.fly-out {
    overflow-y: scroll;
}

.settings-toggle i {
    transform-origin: 50% 50%;
}

.settings-close {
    top: 100%;
    left: 0;
}

.settings-icon {
    transform: translate(0, 0) rotate(168deg);
}

.active .settings-icon {
    transform: translate(0, -100%) rotate(0);
}

.settings-underline {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 1rem;
    height: 4px;
    width: 0;
    transition: width .3s ease;
}

.active .settings-underline {
    width: 50%;
}

.settings-group {
    margin-bottom: 3rem;
}

.settings-input,
.settings-input:focus {
    height: 0;
    width: 3rem;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 1rem;
    border: 2px solid var(--text);
    transition: background .3s ease, border .3s ease;
}

.settings-input:focus {
    border: 2px solid var(--accent);
}

.settings-container .settings-title::after {
    content: '';
    height: 1px;
    bottom: -1px;
    left: 0;
}

.settings-container li .toggle {
    justify-self: flex-end;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--text);
}

.dpi-input .selected-option {
    line-height: 0;
}

.dpi-input-container .selections {
    height: calc(534% - 2px);
    overflow: hidden;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    z-index: 1900;
    border-radius: 1rem;
    border: 2px solid var(--text);
    transition: height .3s ease, border .3s ease;
}

.dpi-input-container .select-item {
    padding: 0.5rem 0 .5rem 1rem;
    margin: 0;
    border-bottom: 2px solid var(--text);
    z-index: 2500;
}

.fa-google {
    margin-right: 1rem;
}

/* :::::: Brightness :::::: */
.icon-container .fas {
    margin: 0 0 0 2rem;
}

/* :::::: Update Log :::::: */
#update-log li::after {
    content: '';
    height: 4px;
    width: 4px;
    border-radius: 2px;
    left: 0;
    top: 2rem;
    transform: translate(0, -50%);
}

/* :::::: Calculations :::::: */
#calculations {
    transform: translateX(100%);
}

#calculations .button {
    grid-column-start: 1;
}

#calculations .outcome {
    grid-column: 2 / span 2;
    justify-content: flex-start;
}

/* :::::: Notes :::::: */
#notes-app-container {
    padding: 1rem 1rem;
    margin-top: 3rem;
    overflow: scroll;
}

.notes-container {
    border-radius: 1rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--accent);
    overflow: hidden;
    transition: none;
}

.notes-title,
.notes-content,
.notes-date,
.notes-edit,
.delete-container,
.add-notes-group {
    padding: 1rem;
}

.notes-title {
    font-size: 1.2rem;
    font-weight: 800;
}

.notes-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 1rem;
    height: 2px;
    background: var(--accent);
    border-radius: 1rem;
}

.notes-date {
    padding: .5rem 1rem 0;
    font-size: .9rem;
    font-weight: 400;
}

.notes-content {
    padding: 1rem 1rem 0;
}

.notes-edit {
    justify-content: flex-end;
    z-index: 1800;
}

.notes-edit .edit,
.notes-edit .delete {
    padding: 0 1rem;
}

.delete-container {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 350px;
    transform: translate(-50%, -50%);
    flex-wrap: wrap;
    background: var(--systembg);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    z-index: 2000;
}

.light .delete-container {
    box-shadow: 0 0 15px 2px hsla(0, 0%, 87%, 1.0);
}

.delete-container .button {
    padding: .5rem 1rem;
    border-radius: 1rem;
    margin: 0 1rem;
    line-height:1;
}

.delete-content {
    text-align: center;
    margin-bottom: 1rem;
}

.delete-delete .fas {
    margin-right: .5rem;
}

#add-notes-container {
    top: auto;
    bottom: 0;
    transform: translate(0, 100%);
}

.add-notes-toolbar {
    height: 4rem;
}

.add-notes-toolbar .button {
    height: 4rem;
    width: 4rem;
    line-height: 0;
}

.add-notes-group {
    width: calc(100%-2rem);
}

.add-notes-group .notes-input {
    min-width: calc(100% - 3rem);
    height: 2rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    border: 0 solid transparent;
    padding: .5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: proxima-nova, sans-serif;
}

.add-notes-group .notes-title-input {
    font-weight: 900;
}

.add-notes-group .notes-body-input {
    height: 10rem;
}

/* :::::: Documentation :::::: */
.documentation-edit-body-title,
.documentation-edit-title-title,
.documentation-edit-icon-title {
    margin: 3rem 1rem 0;
    font-size: 2rem;
    font-weight: 600;
}

.documentation svg {
    margin: 3rem 0 3rem;
}

.title-container {
    position: sticky;
    margin-bottom: 1rem;
    top: 0;
    padding: .5rem 1rem;
    z-index: 560;
    border-bottom: 1px solid var(--input);
}

.title-container h3 {
    margin: 0;
}

.documentation-icon-container {
    width: calc(100% - 2rem);
    top: 7rem;
    bottom: 0;
    overflow-y: scroll;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 10rem;
    gap: 1rem;
    place-items: center;
}

.documentation-icon-no-access,
.documentation-icon {
    font-weight: 600;
    width: 100%;
    height: 100%;
    flex-direction: column;
    text-align: center;
    background: hsl(0deg 0% 0% / 3%);
}

.documentation-icon-no-access {
    grid-area: 1 / 1 / 1 / last-line;
}

.documentation-icon i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.documentation,
.subject,
.edit-icon {
    padding: 1rem;
    border-radius: 1rem;
}

.documentation {
    padding-bottom: 7rem;
}

.documentation-group {
    top: 0;
    left: 0;
    transform: translate(100%, 0);
    overflow: scroll;
}

.documentation-section {
    margin: 0 0 3rem 0;
}

#edit-article {
    position: sticky;
    top: calc(100% - 6rem);
    z-index: 3000;
    margin-left: calc(100% - 4rem);
    height: 3rem;
    width: 3rem;
    border-radius: 2rem;
    cursor: pointer;
    background: var(--accent);
}

/* :::::: States :::::: */
.documentation-group.open {
    transform: translate(0, 0);
}

.documentation-icon-container.open {
    transform: translate(-25%, 0);
}

#add-notes-container.add-notes-container-open {
    transform: translate(0, 0);
}

#add-notes-container.minimized {
    transform: translate(0, calc(100% - 4rem));
}

.visible {
    opacity: 1;
    pointer-events: auto;
}

.dpi-input-container .select-hide {
    height: 0;
    pointer-events: none;
    border: 2px solid transparent;
}

.settings-container li .toggled {
    border: 2px solid transparent;
}

.open {
    transform: translateX(0);
}

/* :::::: Mediaquerries :::::: */
@media (min-width: 556px) {
    #nav-container {
        top: 2rem;
        height: 2rem;
    }

    .fly-out {
        max-width: 500px;
        margin: 0 auto;
    }

    .app-nav {
        top: calc(var(--nav-height)/2);
        transform: translateY(-50%);
    }

    .app-nav .nav-list {
        max-width: 300px;
    }

    .settings {
        top: 0;
        padding: var(--nav-height) 1rem 0;
    }

    .nav-slide {
        border-radius: 1rem;
    }

    .nav-list {
        max-width: 500px;
        border-radius: 1rem;
    }

    .app {
        top: var(--nav-height);
        display: flex;
        justify-content: center;
        bottom: 0;
    }

    .documentation-icon-container {
        gap: 2rem;
    }

    .app-container,
    #add-notes-container {
        max-width: 500px;
        bottom: var(--nav-height);
        width: 500px;
        left: 50%;
        transform: translatex(-50%);
    }

    #add-notes-container {
        top: auto;
    }

    #calculator-app-container {
        justify-content: flex-end;
        flex-direction: column;
    }

    #notes-app-container {
        padding: 0 1rem;
    }

    .notes-title {
        font-size: 1.5rem;
    }

    #add-notes-container {
        transform: translate(-50%, 100%);
    }

    #add-notes-container.add-notes-container-open {
        transform: translate(-50%, 0);
    }

    #add-notes-container.minimized {
        transform: translate(-50%, calc(100% - 4rem));
    }
}