:root {
    --top-bar-height: 3.75rem;
    --top-bar-margin-top: 0px;
    --top-bar-margin-bottom: 0px;
    --top-bar-bottom-from-top: calc(var(--top-bar-height) + var(--top-bar-margin-top) + var(--top-bar-margin-bottom));

    --btm-bar-height: 3rem;
    --btm-bar-border-radius: calc(var(--btm-bar-height) / 2);
    --btm-navi-bottom: env(safe-area-inset-bottom);
    --btm-navi-top-from-bottom: calc(var(--btm-navi-bottom) + var(--btm-bar-height));
    --btm-bar-gap: 0.25rem;
    --btm-bar-second-bottom: calc(var(--btm-navi-top-from-bottom) + var(--btm-bar-gap));
    --btm-bar-second-top-from-bottom: calc(var(--btm-bar-second-bottom) + var(--btm-bar-height));
    
    --overlay-body-padding-x: 1.25rem;
    
    --overlay-footer-item-height: 2.75rem;
    
    --fixed-container-inset: 1.5rem;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100dvh !important;
    overflow: hidden !important;
    font-family: Inter,Helvetica,sans-serif;
    touch-action: manipulation;
}

body {
    caret-color: transparent;
}

body:not(.without-top-gradient)::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--top-bar-bottom-from-top) + 0.5rem);
    background: linear-gradient(to top, rgba(255,255,255,0) 0%, white 100%);
    pointer-events: none;
    z-index: 100;
}

body:has(.bottom-bar-first)::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, white 100%);
    pointer-events: none;
    z-index: 100;
}

body:has(.bottom-bar-first):not(:has(.bottom-bar-second))::after {
    height: calc(var(--btm-navi-top-from-bottom) + 0.5rem);
}

body:has(.bottom-bar-second)::after {
    height: var(--btm-bar-second-top-from-bottom);
}

a {
    text-decoration: none;
}

a {
    color: inherit;
}

a.button.here {
    position: relative;
}

a.button.here::before {
    content: "";
    position: absolute;
    background-color: rgba(200, 200, 200, 0.3);
}

a.btn-side::before {
    inset: -0.25rem;
    border-radius: 1rem !important;
}

#btm-navi-container a.button.here::before {
    inset: 0 -0.375rem;
    border-radius: calc(var(--btm-bar-height) / 2);
}

button, a, .button {
    touch-action: manipulation;
}

input:focus:not([readonly]), textarea:focus:not([readonly]) {
    caret-color: auto;
}

input, textarea {
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    resize: none;
}


#top-bar {
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-bar-height);
    margin-top: var(--top-bar-margin-top);
    margin-bottom: var(--top-bar-margin-bottom);
    display: flex;
    background-color: transparent;
}

main {
    padding-top: var(--top-bar-bottom-from-top);
}

main:has(~ .bottom-bar-first) {
    position: fixed;
    inset: 0;
    overflow-y: visible;
}

main:has(~ .bottom-bar-first):not(:has(~ .bottom-bar-second)) {
    padding-bottom: var(--btm-navi-top-from-bottom);
}

main:has(~ .bottom-bar-second) {
    padding-bottom: var(--btm-bar-second-top-from-bottom);
}

#top-bar-container {
    max-width: none;
    width: 100%;
    padding: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
}

#top-bar-left-container {
    user-select: none;
}

#top-bar-left-container,
#top-bar-right-container {
    position: relative;
    height: 100%;
    padding: 0 0.75rem;
    margin: 0 0.5rem;
}

#top-bar-left-container::before,
#top-bar-right-container:has(*)::before {
    content: "";
    position: absolute;
    inset: 0.125rem 0;
    background-color: rgba(230, 230, 230, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
    z-index: -1;
}

#top-bar-left-container > :not(:first-child) {
    margin-right: 1.125rem;
}

#top-bar-right-container {
    gap: 0.5rem;
}

.bottom-bar {
    position: fixed;
    left: 2rem;
    right: 2rem;
    height: var(--btm-bar-height);
    z-index: 500;
}

.bottom-bar-first {
    bottom: var(--btm-navi-bottom);
}

.bottom-bar-second {
    bottom: var(--btm-bar-second-bottom);
}

#btm-navi {
    background-color: rgba(230, 230, 230, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: var(--btm-bar-border-radius);
}

.bottom-container {
    --bottom-container-padding: 0.5rem;
    width: calc(100% - var(--bottom-container-padding) * 2);
    padding-left: var(--bottom-container-padding);
    padding-right: var(--bottom-container-padding);
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-evenly;
}


/* Overlay Start */
.overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease 0.1s, visibility 0s linear 0.35s;
    
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease 0s, visibility 0s ease 0s;
}

.overlay-content {
    position: absolute;
    background: #F5F5F5;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);

    width: 100%;
    height: 100%;
    transition: transform 0.2s ease;
}

.overlay-content-from-left {
    inset: 0 auto 0 0;
    transform: translateX(-100%);
    padding: 0 1rem;
    
}

.overlay-content-from-bottom {
    inset: auto 0 0 0;
    transform: translateY(100%);
    padding: 1rem 0;
}

.overlay.active > .overlay-content-from-left {
    transform: translateX(0);
}

.overlay.active > .overlay-content-from-bottom {
    transform: translateY(10%);
}

.overlay-header {
    height: 3.75rem;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overlay-header-title {
    font-weight: 700;
    user-select: none;
}

.overlay-header-submit,
.overlay-header-cancel {
    width: max-content;
    overflow: visible;
    white-space: nowrap;
    user-select: none;
}

.overlay-header-submit {
    padding: 0.375rem 1.125rem;
    color: #c0c0c0;
    background: #e1e1e1;
    border-radius: 0.25rem;
}

.overlay-header-cancel {
    padding: 0.375rem 0;
}

.overlay-header-submit.active {
    color: white;
    background: #05c25d;
    cursor: pointer;
}



.overlay-body {
    position: relative;
    width: 100%;
    padding-left: var(--overlay-body-padding-x);
    padding-right: var(--overlay-body-padding-x);
    
    background: white;
    border-radius: 1rem;
}

.overlay-body:has(~ .overlay-footer) {
    padding-bottom: calc(var(--overlay-footer-item-height) + var(--fixed-container-inset) + 0.125rem);
}

.overlay-body > div {
    position: relative;
    min-height: 2.75rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay-body > div.overlay-inputs-container,
.liquid-glass-overlay-body > div.overlay-inputs-container {
    padding: 0 1.75rem
}

.overlay-body > div.overlay-inputs-container > div,
.liquid-glass-overlay-body > div.overlay-inputs-container > div {
    height: 2.75rem;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.overlay-body > div:not(:last-of-type)::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.8);
    z-index: 1;
}

.overlay-footer {
    position: fixed;
    inset: auto 0 0 0;
    height: 0;
    transform: translateY(-10dvh);
    overflow: visible;
    z-index: 50;
}

.overlay-body input,
.liquid-glass-overlay-body input {
    padding: 0;
    
    color: inherit;
    text-align: left;
    direction: ltr;

    border: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    
}

.liquid-glass-overlay-body .overlay-inputs-container input {
    padding: 0 0.75rem;
}

.overlay-scrollable {
    position: absolute;
    inset: 0 0 auto 0;
    height: 90dvh;
    overflow-y: auto;
}

.liquid-glass-overlay {
    --liquid-glass-overlay-content-padding-x: 1rem;
    --liquid-glass-overlay-content-padding-top: 1.25rem;
    --liquid-glass-overlay-content-padding-bottom: 0;
    --liquid-glass-overlay-header-height: 3rem;
    --liquid-glass-overlay-header-margin-bottom: 1.5rem;
    
    background: rgba(0, 0, 0, 0.2);
}

.liquid-glass-overlay-content  {
    position: absolute;
    inset: auto 0.375rem 0;
    height: 65%;
    padding: var(--liquid-glass-overlay-content-padding-top) var(--liquid-glass-overlay-content-padding-x) var(--liquid-glass-overlay-content-padding-bottom);
    
    transform: translateY(100%);
    transition: transform 0.275s ease; 
    transition-delay: 0.025s;
    
    border-radius: 2.125rem 2.125rem 0 0;
    background: rgba(255, 255, 255, 0.7);
    
    backdrop-filter: blur(6px) brightness(115%);
}

.liquid-glass-overlay.active > .liquid-glass-overlay-content {
    transform: translateY(0);
}

.liquid-glass-overlay-header {
    height: var(--liquid-glass-overlay-header-height);
    padding: 0 1.5rem;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--liquid-glass-overlay-header-margin-bottom);
}


.liquid-glass-overlay-body {
    position: absolute;
    inset: 0 var(--liquid-glass-overlay-content-padding-x);
    
    height: auto;
    padding: 0.75rem var(--overlay-body-padding-x) 0.25rem;
    
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;

    background: rgba(0, 0, 0, 0.05);
    border-radius: 2rem 2rem 0 0;
}

.liquid-glass-overlay-body::-webkit-scrollbar {
    display: none;
}

.liquid-glass-overlay-content:has(.liquid-glass-overlay-header) .liquid-glass-overlay-body {
    top: calc(var(--liquid-glass-overlay-content-padding-top) + var(--liquid-glass-overlay-header-height) + var(--liquid-glass-overlay-header-margin-bottom));
}

.liquid-glass-overlay-content:not(:has(.liquid-glass-overlay-header)) .liquid-glass-overlay-body {
    top: var(--liquid-glass-overlay-content-padding-top);
}

/* Overlay End */
.error-container {
    margin-top: 0.5rem;
    padding: 0.125rem 0.375rem;
    line-height: 1.375rem;

    font-size: 0.75rem;
    color: rgb(227, 41, 84);
    background-color: rgba(227, 41, 84, 0.2);
    border: none;
    border-radius: 0.25rem;

    overflow: hidden;
    white-space: wrap;
}

.input-click-listener .error-container {
    user-select: none;
}


input::-webkit-date-and-time-value {
    text-align: left;
}



#side-menu-container.overlay-content {
    width: 25vw !important;
}

.nowrap {
    white-space: nowrap !important;
}

.cursor-pointer {
    cursor: pointer;
}

/* Position */
.w-100 {
    width: 100%;
}

.vw-85 {
    width: 85vw;
}

.w-max-content {
    width: max-content;
}

.h-100 {
    height: 100%;
}

.h-44px {
    height: 2.75rem;
}

.h-52px {
    height: 3.25rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.ms-3 {
    margin-left: 0.75rem;
}

.me-1 {
    margin-right: 0.25rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.p-5 {
    padding: 1.25rem !important;
}

.px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
}

/* Flex */
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-container-stretch {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;;
}

.justify-content-stretch {
    justify-content: stretch !important;;
}

.justify-items-end {
    justify-items: end;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-grow-2 {
    flex-grow: 2 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 0.75rem !important;
}

.gap-4 {
    gap: 1rem !important;
}

.gap-6 {
    gap: 1.5rem  !important;
}

.gap-8 {
    gap: 2rem !important;
}


.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

/* Text */
.white-space-pre-line {
    white-space: pre-line;
}

/* Shape */
.symbol {
    display: inline-block;
    flex-shrink: 0;
    position: relative;
}

.symbol.symbol-circle {
    border-radius: 50%;
}

.rounded {
    border-radius: 0.65rem !important;
}

/* font-size: mobile */
.fs-12 {
    font-size: 0.75rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-18 {
    font-size: 1.125rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-22 {
    font-size: 1.375rem;
}

.fs-24 {
    font-size: 1.5rem;
}

.fs-32 {
    font-size: 2rem;
}

.fs-40 {
    font-size: 2.5rem;
}

.fs-52 {
    font-size: 3.25rem;
}

.fw-semibold {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.button {
    cursor: pointer;
    
    display: inline-block;
    
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: transparent;
    border-color: transparent;
}

.button:has(i.fs-32) {
    padding: 0.25rem 0.75rem;
}

.button:has(i.fs-24) {
    padding: 0.25rem 0.625rem;
}

.button, .button:focus, .button:active, .button:hover {
    outline: none;
    box-shadow: none;
    background: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    -webkit-appearance: none;
}

.button:focus-visible {
    outline: none;
}

.button i {
    color: inherit;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.fixed-button-container {
    width: var(--overlay-footer-item-height);
    height: var(--overlay-footer-item-height);

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #EAEAEA;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);
    
    z-index: 100;
}

.fixed-container-bottom-left {
    position: fixed !important;
    bottom: var(--fixed-container-inset);
    left: var(--fixed-container-inset);
}

.fixed-container-bottom-right {
    position: fixed !important;
    bottom: var(--fixed-container-inset);
    right: var(--fixed-container-inset);
}

.fixed-button {
    height: var(--overlay-footer-item-height);
    width: var(--overlay-footer-item-height);
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 1.5rem;

    border-radius: 50%;
    cursor: pointer;
}

.large-circle-button {
    height: 3rem;
    width: 3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
    background: rgba(0, 0, 0, 0.025);
    border-radius: 50%;
}

.liquid-button {
    min-height: 2.75rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 1.25rem;
    font-weight: 500;
    
    background: rgba(230, 230, 230, 0.3);
    border-radius: var(--btm-bar-border-radius);
    backdrop-filter: blur(4px);
}

.liquid-glass-container {
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    
    background-color: rgba(230, 230, 230, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
}

.overlay-footer-item {
    height: var(--overlay-footer-item-height);
}



.btm-navi-button {
    display: flex;
    flex-direction: column;
    padding: 0 0.625rem !important;
    height: 2.75rem !important;
}

.btm-navi-button > * {
    display: flex;
    margin: 0 auto;
}

.btm-navi-icon-container {
    font-size: 1.5rem;
    height: 1.5rem !important;
    width: 1.5rem !important;
    transform: translateY(0.25rem);
}

.btm-navi-icon {
    height: 100%;
    width: 100%;
}

.btm-navi-button:not(.here) .btm-navi-icon-fill {
    display: none;
}

.btm-navi-button.here .btm-navi-icon-outline {
    display: none;
}

.btm-navi-button > div:not(.btm-navi-icon-container) {
    font-size: 0.75rem;
    transform: translateY(0.125rem);
    color: #131313bb
}


/* Colors */
.opacity-transparent {
    opacity: 0;
}

.gray-500, .gray-500:hover, .gray-500:active, .gray-500:focus {
    color: #99A1B7;
}

.gray-600, .text-gray-600 {
    color: #78829D
}

.gray-700 {
    color: #5E6C84;
}

.text-gray-900 {
    color: #071437;
}

.text-muted {
    color: #99A1B7;
    --bs-text-opacity: 1;
}


.bg-light-info {
    background-color: #F8F5FF;
}

.no-select {
    -webkit-user-select: none; /* Safari / iOS */
    -moz-user-select: none;    /* Firefox */
    user-select: none;         /* Standard */
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avatar {
    aspect-ratio: 1/1;
    object-fit: contain;
}

.hidden-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hidden-scrollbar::-webkit-scrollbar {
    display: none;
}

/* User list */
.user-list {
    --user-list-item-gap: 1.25rem;
    --checkbox-size: 1.5rem;
    --checkbox-space: calc(var(--checkbox-size) + var(--user-list-item-gap));
}

.user-list.user-list-small {
    --user-list-item-gap: 0.5rem;
    --checkbox-size: 1.25rem;
}

.user-list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--user-list-item-gap);

    height: 4.25rem;
    padding: 0.5rem 0;

    color: inherit;
    user-select: none;
}

.user-list-small > .user-list-item {
    height: 2.75rem;
    padding: 0.375rem 0;
}

.user-list-item:has(.checkbox-container) {
    cursor: pointer;
}

.user-list-item > .checkbox-container {
    width: var(--checkbox-size);
    height: var(--checkbox-size);
    font-size: var(--checkbox-size);
}

.user-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--user-list-item-gap);
    
    width: 100%;
    height: 100%;
}


.checkbox-container ~ .user-card {
    width: calc(100% - var(--checkbox-space));
    transition: transform 0.2s ease-in-out;

    /* TODO: Delete after user profile overlay implemented. */
    pointer-events: none;
}

.hide-checkbox .checkbox-container ~ .user-card {
    transform: translateX(calc(-1 * var(--checkbox-space)));
}

.user-card > * {
    height: 100%;
}

.user-card-img {
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 0.625rem;
    object-fit: contain;
}

.user-card-div {
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    
    overflow: hidden;
}

.user-list-item-msg {
    min-height: 1.5rem;
    padding-left: 1px;
}


.checkbox-container {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    
    flex-shrink: 0;
    font-size: 1.5rem;
    
    cursor: pointer;
    user-select: none;
    
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    transition: opacity 0.15s ease-in;
    transition-delay: 0.05s;
    opacity: 1;
}

.checkbox-container:has(input:checked) {
    border: none;
}

.hide-checkbox .checkbox-container {
    transition: opacity 0.3s ease-out;
    transition-delay: 0s;
    opacity: 0;
}

.checkbox-container.varieties-checkbox-container:has(input:checked) {
    background-color: #36d1d1 !important;
}

.checkbox-container:has(input:checked),
.checkbox-container.varieties-checkbox-container.varieties-checkbox-checked-at-first:has(input:checked) {
    background-color: #2ecc71 !important;
}

.checkbox-container.varieties-checkbox-container.varieties-checkbox-checked-at-first:not(:has(input:checked)) {
    background-color: #d63c3c !important;
}

.checkbox-container > i {
    color: white;
    position: absolute;
    inset: 0;
    
    display: none;
    justify-content: center;
    align-items: center;
}

.checkbox-container:not(.varieties-checkbox-container):has(input:checked) > i.bi-check,
.checkbox-container.varieties-checkbox-container.varieties-checkbox-checked-at-first:has(input:checked) > i.bi-check {
    display: flex;
    transform: translateY(1px);
}

.checkbox-container.varieties-checkbox-container.varieties-checkbox-checked-at-first:not(:has(input:checked)) > i.bi-x {
    display: flex;
    font-weight: 900;
}

.checkbox-container.varieties-checkbox-container.varieties-checkbox-unchecked-at-first:has(input:checked) > i.bi-plus {
    display: flex;
}

/* Change on click */
.change-on-click {
    position: relative;
    width: max-content;
}

.change-on-click > .change-on-click-changed {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.change-on-click > .change-on-click-ordinary {

}

.change-on-click.active > .change-on-click-ordinary,
.change-on-click:not(.active) > .change-on-click-changed {
    opacity: 0;
    transition: opacity 0.1s cubic-bezier(.19,1,.22,1);
}

.change-on-click.active > .change-on-click-changed,
.change-on-click:not(.active) > .change-on-click-ordinary {
    opacity: 1;
    transition: opacity 0.15s ease-in 0.1s;
}

/* Multistep */
.multistep-titles-container {
    --icon-size: 1.75rem;
    --icon-font-size: var(--icon-size);
    --non-icon-font-size: 1.25rem;
    
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: manipulation;
}

.multistep-titles-container::-webkit-scrollbar,
.multistep-titles-container::-webkit-scrollbar:horizontal {
    display: none;
}

.multistep-titles-container > * {
    flex: 0 0 auto;
}

.multistep-title:first-of-type {
    margin-left: 50vw;
}

.multistep-title:last-of-type {
    margin-right: 50vw;
}

.multistep-title {
    flex: 0 0 auto;
    
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    
    font-size: var(--non-icon-font-size);
    
    scroll-snap-align: center;
    cursor: pointer;
}

.multistep-title.active {
    color: #468ce8;
}

.multistep-title > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.multistep-title-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    font-size: var(--icon-size);
}




