:root {
    --page-margin-width: 60px;

    --page-width: 1200px;

    /* Backgrounds */
    --background-color: #0b0f16;
    --glass-bg: rgba(17, 25, 40, 0.72);
    --glass-border: rgba(255, 255, 255, 0.12);

    --color-error: hsl(1, 79%, 63%);

    /* Brand colors */
    --color-primary: #1F2A3A;
    /* primær tekst / logo */
    --color-accent: #3A8DCA;
    /* links / signal */
    --color-soft: #7CC7EE;
    /* hover / sekundær */

    --color-accent-opacity: oklch(from var(--color-accent) calc(l + (1 - l) / 2) c h);
    --color-accent-opacity: var(--color-accent);
    /* oklch( from var(--color-soft) ); */


    /* CTA */
    --color-bg-cta: linear-gradient(135deg, #4c6ef5, #3b5bdb);
    --color-bg-cta-h: #284a8a;

    /* Text */
    --color-text: #e6eaf0;
    --color-white: #ffffff;

    --header-height: 5rem;
    --header-background: var(--color-primary);
    --header-color: var(--color-text);
    --section-background: --background-color;
    --section-color: var(--color-text);
    --section-alt-background: var(--color-primary);
    --section-alt-color: var(--color-text);

    --button-background: var(--color-accent);
    --button-color: var(--color-white);

    --button-hover-background: oklch(from var(--button-background) l c h / 70%);
    --button-hover-color: var(--color-white);

    --logo-size: 128px;

    --gap-small: 8px;
    --gap-medium: 12px;
    --gap-large: 16px;
    --gap-xlarge: 32px;
    --gap-xxlarge: 48px;

    --text-sm: 0.8rem;
    --text-md: 1rem;
    --text-lg: 1.2rem;
}

html {
    scroll-behavior: smooth;

    /* scroll-snap-type: y proximity; */
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 12px);
}

html.no-snap {
    scroll-snap-type: none;
}

.hide {
    display: none !important;
}

.language-selector {
    position: relative;
    display: inline-block;
    color: rgba(230, 234, 240, 0.58);
}

.language-selector summary {
    display: flex;
    height: 2.2rem;
    align-items: center;
    box-sizing: border-box;
    gap: 0.55rem;
    padding: 0.3rem 0.2rem 0.3rem 0.55rem;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    list-style: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.language-selector summary::-webkit-details-marker { display: none; }
.language-selector summary:hover,
.language-selector summary:focus-visible,
.language-selector[open] summary { background: rgba(255, 255, 255, 0.045); color: rgba(255, 255, 255, 0.82); outline: none; }
.language-current { font-size: 0.68rem; font-weight: 500; }
.language-chevron { width: 0.32rem; height: 0.32rem; margin-right: 0.15rem; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform 180ms ease; }
.language-selector[open] .language-chevron { transform: translateY(2px) rotate(225deg); }

.language-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 20;
    display: grid;
    width: 9.5rem;
    box-sizing: border-box;
    gap: 0.3rem;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    background: #142033;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

header-actions .language-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0.7rem 0.8rem;
    border-radius: 9px;
    color: rgba(230, 234, 240, 0.68);
    font-size: 0.72rem;
    text-transform: none;
}

header-actions .language-menu a:hover { background: rgba(255, 255, 255, 0.045); color: white; }
header-actions .language-menu a.active { color: rgba(255, 255, 255, 0.88); }
header-actions .language-menu a.active::before { color: rgba(124, 199, 238, 0.8); content: "✓"; }
header-actions .language-menu a.active span { margin-right: auto; margin-left: 0.55rem; }

:root,
html[data-theme="dark"] {
    --background-color: #0b0f16;
    --glass-bg: rgba(17, 25, 40, 0.72);
    --glass-border: rgba(255, 255, 255, 0.12);

    --color-primary: #1F2A3A;
    --color-accent: #3A8DCA;
    --color-soft: #7CC7EE;

    --color-bg-cta: #1f3b73;
    --color-bg-cta-h: #284a8a;

    --color-text: #e6eaf0;
    --color-white: #ffffff;
}

html[data-theme="light"] {
    --background-color: #f4f6f9;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(31, 42, 58, 0.12);

    --color-primary: #1F2A3A;
    --color-accent: #2f6fa3;
    --color-soft: #5aaed6;

    --color-bg-cta: #1F2A3A;
    --color-bg-cta-h: #16202d;

    --color-text: #1f2933;
    --color-white: #ffffff;
}

@media (prefers-color-scheme: light) {
    html:not([data-theme]) {
        color-scheme: light;
    }
}

@media (prefers-color-scheme: dark) {
    html:not([data-theme]) {
        color-scheme: dark;
    }
}



* {
    font-family: 'Noto Sans', system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    /* Show hidden widths */
    /* outline: 1px solid springgreen; */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    align-content: center;
    height: 100%;
}

body>header,
body>main,
body>footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: #3a8eca35 0px 25px 20px -20px;
}

body>footer>center {
    margin: var(--gap-medium);
}

footer contanct-info {
    margin: var(--gap-large);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: var(--gap-medium);
}

footer contanct-info * {
    opacity: 0.7;
    font-size: var(--text-sm);
}

img:focus-visible {
    outline: none;
}

body>header {
    position: fixed;
    scroll-snap-align: start;
    height: var(--header-height);
    background-color: var(--header-background);
    color: var(--header-color);
    display: flex;
    justify-content: space-between;
    inset: 0;
    z-index: 100;
}

page-content {
    max-width: var(--page-width);
    width: 100%;
}

body>header>page-content {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    padding-inline: clamp(1rem, 4vw, var(--page-margin-width));
}

body>header icon { justify-self: start; }
body>header mobile-menu { justify-self: center; }
header-actions { display: flex; justify-self: end; }

body>header icon img {
    opacity: 0.6;
    filter: grayscale();
    width: var(--logo-size);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s ease-in-out;
}

body>header icon img:hover {
    opacity: 1;
    filter: unset;
}


body>header icon>a {
    background-color: unset;
    padding: unset;
    margin: unset;
}


body>main {
    display: flex;
    flex-direction: column;
    justify-self: stretch;
    color: var(--color-text);
}

/* Glass panel */
.glass {
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}


/* Typography & layout */
main {
    color: var(--color-text);
    line-height: 1.6;
}

section {
    scroll-snap-align: start;
    width: 100%;
    padding-top: var(--header-height);
    padding-bottom: var(--header-height);
    margit-top: calc(-1 * var(--header-height));
}

section center {
    max-width: var(--page-width);
    width: 100%;
}

section:nth-child(2n +1) {
    background-color: var(--section-background);
    color: var(--section-color);
}

section:nth-child(2n +2) {
    background-color: var(--section-alt-background);
    color: var(--section-alt-color);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;

}

section>* {
    max-width: calc(var(--article-max-width) / 2);
}

h1,
h2,
h3,
h4,
h5 {
    text-transform: uppercase;
    text-wrap: balance;
}

h1 {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.1rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
}

p {
    margin-bottom: 1rem;
    max-width: 60ch;
    text-wrap: pretty;
}

ul,
ol {
    margin-left: 1.25rem;
    margin-top: 0.5rem;
}

li {
    margin-bottom: 0.4rem;
}

/* Links */
a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: var(--color-soft);
    /* text-decoration: underline; */
}

mobile-menu>input,
mobile-menu>input+label {
    display: none;
}

mobile-menu {
    display: flex;
    min-width: 0;
}

menu a {
    margin: 0;
    padding: 1.15rem 1.05rem;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
}

/* Call to action */
a.action {
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    background: var(--color-bg-cta);        
    color: var(--color-white);
    text-decoration: none;
    corner-shape: squircle;
    font-size: 1.4rem;
    box-shadow: 0 12px 40px rgba(76, 110, 245, 0.3);
    text-align: center;
}

a.action:hover {
    color: var(--color-white);
    background-color: var(--color-accent-opacity);
    box-shadow: 0 16px 50px rgba(76, 110, 245, 0.4);
    /* box-shadow: var(--color-accent-opacity) 0px 10px 10px 0px; */
}

menu { display: flex; flex-wrap: nowrap; align-items: center; margin: 0; padding: 0; }

menu a.active {
    position: relative;
    color: var(--color-soft);
}

menu a.active::after {
    position: absolute;
    right: 1.4rem;
    bottom: 0.65rem;
    left: 1.4rem;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
    content: "";
}

/* Secondary links */
.small-link {
    background: unset !important;
    padding: unset !important;
    text-decoration: underline !important;
    color: var(--color-accent);
}

/* Emphasis */
strong {
    font-weight: 700;
    color: var(--color-white);
}


.wb-logo .wb-line {
    fill: var(--color-primary);
}

.wb-logo .wb-dot {
    opacity: 0;
    animation: wb-fade-in 2.4s ease forwards;
}

.wb-logo .dot-1 {
    animation-delay: 0.6s;
    fill: var(--color-primary);
}

.wb-logo .dot-2 {
    animation-delay: 1.2s;
    fill: var(--color-accent);
}

.wb-logo .dot-3 {
    animation-delay: 1.8s;
    fill: var(--color-soft);
}

@keyframes wb-fade-in {
    from {
        opacity: 0;
        transform: translateX(-4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Respekt for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .wb-logo .wb-dot {
        animation: none;
        opacity: 1;
    }
}

.wb-logo {
    margin-bottom: 0px;
    opacity: 0.85;
}

section:first-of-type a {
    margin-top: 2rem;
}

section:first-of-type p {
    opacity: 0.85;
}

section:first-of-type p:first-of-type {
    opacity: 1;
}

menu a {
    background-color: unset;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.015em;
}

/* Content */
.split-content {
    text-align: left;
    width: 100%;
}

.split-content h2 {
    margin-top: 0;
}

.split-content p {}

.split-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.split-content li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    list-style: none;
}

.split-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split:nth-child(2n + 1) .split-media {
        order: 0;
    }
}

.photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

:root {}

.split {
    display: flex;
    justify-content: center;
}

section>center {
    display: flex;
    justify-items: center;
    grid-template-columns: auto;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    max-width: min(90vw, var(--page-width));
    width: 100%;
    justify-content: space-between;
}

.split>center {
    grid-template-columns: 1fr 1fr;
}

/* Reverse layout */
.split:nth-child(2n + 1) {
    grid-template-columns: auto 1fr;
}

.split:nth-child(2n + 1) .split-media {
    order: 2;
}

.split-media {
    width: 100%;
}

.split-media img {
    display: block;
    margin: auto;
    opacity: 0.95;
}

.circle {
    border-radius: 999px;
    box-shadow: var(--color-accent) 0px 5px 15px;
    max-width: 40vw;
    max-height: 40vw;
    animation: glow-animate 5s ease-in-out infinite;
}


@keyframes glow-animate {
    0% {
        box-shadow: var(--color-accent) 0px 5px 15px;
    }

    50% {
        box-shadow: var(--color-accent) 0px 3px 10px;
    }

    100% {
        box-shadow: var(--color-accent) 0px 5px 15px;
    }
}

#what .circle {
    height: 420px;
    width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;

}

#what .circle price {
    font-size: 4rem;

}

.small {
    font-size: 0.7rem;
}



@media(max-width: 1350px) {
    header em {
        display: none;
    }

    :root {
        --page-width: 100vw;
    }

    menu a {
        padding-inline: 0.85rem;
        font-size: 0.86rem;
    }
}

@media(max-width: 1000px) {

    :root {
        /* --page-width: 100vw; */
    }

    section>center {
        margin-inline: var(--page-margin-width);
    }
}

@media(max-width: 700px) {

    mobile-menu>input,
    mobile-menu>input+label {
        display: block;
    }

    #mobile-menu {
        opacity: 0;
    }

    menu {
        z-index: 1;
        transition-duration: 0.25s;
        position: fixed;
        left: -100%;
        top: 0px;
        height: 100vh;
        max-width: 80vw;
        display: flex;
        flex-direction: column;
        gap: var(--gap-large);
    }

    mobile-menu {
        display: block;
        position: absolute;
        top: var(--gap-medium);
        right: 1rem;
        width: 32px;
        height: 32px;
        opacity: 0.9;
    }

    #mobile-menu:checked+label>span {
        transform: rotate(45deg);
    }

    #mobile-menu:checked+label>span::before {
        top: 0px;
        transform: rotate(0deg);
    }

    #mobile-menu:checked+label>span::after {
        top: 0px;
        transform: rotate(90deg);
    }

    #mobile-menu:checked~menu {
        margin: unset;
        padding: var(--gap-medium);
        left: 0px;
        position: fixed;
        top: 0px;
        background-color: var(--header-background);
    }

    #mobile-menu+label>span,
    #mobile-menu+label>span::before,
    #mobile-menu+label>span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--color-accent);
        transition-duration: 0.25s;
    }

    #mobile-menu+label>span::before {
        content: '';
        top: -8px;
    }

    #mobile-menu+label>span::after {
        content: '';
        top: 8px;
    }

    mobile-menu:hover {
        opacity: 1;
    }


    header em {
        display: none;
        margin-left: var(--page-margin-width);
    }

    menu a {
        font-size: 1.25rem;
        margin: unset;
    }

    header-actions { position: absolute; right: 4rem; }
    .language-menu { right: 0; left: auto; }

    section>center {
        flex-direction: column;
    }

    .split-content {
        width: unset;
    }

    .split:nth-child(2n+1) .split-media {
        order: 0;
    }


    .circle {
        max-width: 80vw;
        max-height: 80vw;
    }

   section>center {
        margin-inline: 0px;
    }
}

#who em {
    text-transform: uppercase;
}

/* TOAST */

/* Container & Positioning */
.toast-container {
    position: fixed;
    z-index: 9999;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 450px;
    pointer-events: none;
}

[data-position="tr"] {
    top: 0;
    right: 0;
    align-items: flex-end;
}

[data-position="tc"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

[data-position="tl"] {
    top: 0;
    left: 0;
    align-items: flex-start;
}

[data-position="br"] {
    bottom: 0;
    right: 0;
    align-items: flex-end;
    flex-direction: column-reverse;
}

[data-position="bc"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    flex-direction: column-reverse;
}

[data-position="bl"] {
    bottom: 0;
    left: 0;
    align-items: flex-start;
    flex-direction: column-reverse;
}

.toast {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 12px;
    min-width: 320px;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.toast.toast-success {
    --toast-accent-color: #16a34a;
    background: #16a34a !important;
    color: #ffffff !important;
}

.toast.toast-error {
    --toast-accent-color: #dc2626;
    background: #dc2626 !important;
    color: #ffffff !important;
}

.toast.toast-warning {
    --toast-accent-color: #f59e0b;
    background: #f59e0b !important;
    color: #ffffff !important;
}

.toast.toast-info {
    --toast-accent-color: #3b82f6;
    background: #3b82f6 !important;
    color: #ffffff !important;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.style-accent .toast-icon,
.style-bordered .toast-icon,
.style-minimal .toast-icon {
    color: var(--toast-accent-color);
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.4rem;
    opacity: 0.4;
    line-height: 1;
    padding: 0;
    margin-left: auto;
    transition: opacity 0.2s;
    align-self: flex-start;
}

.toast-close:hover {
    opacity: 1;
}

.style-accent {
    border: 1px solid var(--toast-accent-color);
    border-left: 6px solid var(--toast-accent-color);
}

.style-bordered {
    border: 2px solid var(--toast-accent-color);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: var(--toast-accent-color);
    opacity: 0.3;
    transform-origin: left;
    z-index: 10;
    transform: scaleX(1);
}

.style-solid .toast-progress {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutUp {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* TOAST */

button {
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    background: var(--color-bg-cta);
    color: var(--color-white);
    text-decoration: none;
    corner-shape: squircle;
    font-size: 1.4rem;
    box-shadow: rgba(50, 50, 93, .25) 0 50px 100px -20px, rgba(0, 0, 0, .3) 0 30px 60px -30px;
    border: 0px;
}

button:hover {
    background-color: var(--button-hover-background);
    color: var(--button-hover-color);
}

/* SLIDER */
.switch {
    position: relative;
    width: 48px;
    height: 28px;
    display: inline-block;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 999px;
    transition: .2s;
    cursor: pointer;
}

.slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 4px;
    top: 4px;
    background: #fff;
    border-radius: 999px;
    transition: .2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.switch input:checked+.slider {
    background: var(--color-accent);
}

.switch input:checked+.slider:before {
    transform: translateX(20px);
}

/* SLIDER */

/* infobox / confirm */
.infobox-overlay,
.confirmbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: center;
}

.infobox-overlay.visible,
.confirmbox-overlay.visible {
    display: flex;
}

.infobox,
.confirmbox {
    background: var(--glass-bg);
    border-radius: 12px;
    min-width: 320px;
    max-width: 520px;
    width: 90%;
    padding: var(--gap-large);
    position: relative;

    button {
        cursor: pointer;
        padding-block: var(--gap-medium);
        padding-inline: var(--gap-xlarge);
    }
}

.infobox-header,
.confirmbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--gap-large);
}

.infobox-icon,
.confirmbox-icon {
    color: var(--color-accent);
    display: flex;
    align-items: center;
}

.infobox-icon .material-symbols-outlined,
.confirmbox-icon .material-symbols-outlined {
    font-size: 2rem;
}

.infobox-close,
.confirmbox-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

.infobox-close:hover,
.confirmbox-close:hover {
    color: var(--color-text-70);
}

.infobox-body,
.confirmbox-body {
    color: var(--color-text);
    word-wrap: break-word;
}

.confirmbox-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.confirmbox-no,
.confirmbox-yes {}

.confirmbox-yes {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent-70);
}

.confirmbox-no:hover {}

.confirmbox-yes:hover {
    opacity: 0.85;
}

/* ── Animations ──────────────────────────────────────── */
@keyframes infoboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes infoboxZoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.85);
    }
}

@keyframes confirmboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes confirmboxZoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.85);
    }
}

/* infobox */
