::root {
    --theme-color: #752bfa;
}

@media (prefers-color-scheme: dark) {
    ::root {
        --theme-color: #752bfa;
    }
}

body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    display: flex;
}


body > appinstallscreen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    z-index: 51;
}

body > appinstallscreen > content {
    position: relative;
    display: block;
    width: 100%;
    padding: 72px 22px 22px;
}

body > appinstallscreen > content > textwrap {
    position: relative;
    width: 100%;
    display: block;
}

body > appinstallscreen > content > textwrap > h1 {
    position: relative;
    display: block;
    margin: 0 0 22px 0;
    font-size: 34px;
    line-height: 1.12;
}


body > landing {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #752bfa;
    z-index: 39;
    opacity: 1;
    transition: opacity .2s linear;
    background-position: center center;
    background-size: cover;
    padding: 85px 0;
}

@media(max-width: 800px) {
    body > landing {
        padding-bottom: unset;
    }
}

body > landing > video,
body > landing > img {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    padding: 0;
    margin: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
}

@media(max-width: 1000px) {

    body > landing > video,
    body > landing > img {
        left: 0;
        bottom: unset;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-mask-image: unset;
        mask-image: unset;
        opacity: 1;
        transition: unset;
        object-position: 75% center;
    }
}

body > landing > scspinner {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 16px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, .15);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    z-index: 5;
}



body > landing > logo,
body > landing > a {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    padding: 32px 32px 22px;
    height: auto;
    padding: 32px;
    z-index: 1;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, .5));
    -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, .5));
}

body > landing > a {
    top: unset;
    bottom: 0;
    color: #ffffff;
    opacity: .25;
    font-size: 12px;
}

@media(max-width: 1000px) {
    body > landing > logo {
        width: 100%;
        justify-content: center;
    }

    body > landing > a {
        display: none;
    }
}


body > landing > logo > svg {
    position: relative;
    display: block;
    width: 128px;
    fill: #ffffff;
}

body > landing > logo > betatag {
    display: inline-flex;
    align-items: center;
    padding: 3px 4px 2px 5px;
    border: 2px solid #ffffff;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    line-height: 1;
    margin: 0 0 0 4px;
    opacity: .7;
}


body > landing > contentwrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: 650px;
    max-width: 800px;
    padding: 32px;
    margin: 0 auto;
    z-index: 2;
    opacity: 0;
    transition: opacity .12s linear;
}

@media(max-width: 800px) {
    body > landing > contentwrap {
        padding: 0 0 0;
        max-height: unset;
    }
}

body > landing > contentwrap > content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

body > landing > contentwrap > content > card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, .15);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid #e0e0e0;
    transform: translate3d(0, 0, 0) scale(1.02);
    transition: opacity .4s cubic-bezier(0.215, 0.610, 0.355, 1), transform .4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

@media(max-width: 800px) {
    body > landing > contentwrap > content > card {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

body > landing > contentwrap > content > card > contentwrap {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity .12s linear;
}

body > landing > contentwrap > content > card > contentwrap finput {
    padding: 8px 0;
}

body > landing > contentwrap > content > card > contentwrap finput:not(:last-child) {
    border: unset;
}

body > landing > contentwrap > content > card > contentwrap > titlewrap {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    margin: 0 0 0 20px;
    padding: 32px;
    border-bottom: 1px solid #e0e0e0;
}

body > landing > contentwrap > content > card > contentwrap > titlewrap > h3 {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

@media(max-width: 800px) {
    body > landing > contentwrap > content > card > contentwrap > titlewrap > h3 {
        font-weight: 650;
        font-size: 22px;
    }
}

body > landing > contentwrap > content > card > contentwrap > content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    flex: 1 1 100%;
    overflow: auto;
    padding: 32px;
}

body > landing > contentwrap > content > card > contentwrap > content > *:first-child {
    margin-top: 0;
}

body > landing > contentwrap > content > card > contentwrap > content > *:last-child {
    margin-bottom: 0;
}

body > landing > contentwrap > content > card > contentwrap > actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 32px;
    flex: 0 0;
    border-top: 1px solid #ececec;
}

@media(max-width: 800px) {
    body > landing > contentwrap > content > card > contentwrap > actions {
        padding-bottom: 52px;
    }

    body > landing > contentwrap > content > card > contentwrap > actions::before {
        position: absolute;
        left: 0;
        bottom: 26px;
        width: 100%;
        text-align: center;
        font-size: 12px;
        opacity: .5;
        content: 'copyright Alwin Lubbers Software 2019-2023';
    }
}

body > landing > contentwrap > content > card > contentwrap > actions > entry {
    position: relative;
    display: block;
    padding: 8px 16px;
    background: rgba(120, 120, 120, .2);
    border-radius: 8px;
    cursor: pointer;
}

@media(max-width: 800px) {
    body > landing > contentwrap > content > card > contentwrap > actions > entry {
        padding: 14px 26px;
        border-radius: 12px;
        flex: 1 1;
    }
}

body > landing > contentwrap > content > card > contentwrap > actions > entry:active {
    background: rgba(120, 120, 120, .3);
}

body > landing > contentwrap > content > card > contentwrap > actions > entry:not(:last-of-type) {
    margin-right: 8px;
}

body > landing > contentwrap > content > card > contentwrap > actions > entry > content {
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: none;
}

@media(max-width: 800px) {
    body > landing > contentwrap > content > card > contentwrap > actions > entry > content {
        justify-content: center;
    }
}

body > landing > contentwrap > content > card > contentwrap > scspinner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}


body > landing > contentwrap > content > textwrap {
    position: relative;
    display: block;
    width: 100%;
    padding: 32px 64px;
    transform: translate3d(20px, 0, 0);
    opacity: 0;
    transition: opacity .4s cubic-bezier(0.215, 0.610, 0.355, 1), transform .4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

body > landing > contentwrap > content > textwrap > h4 {
    position: relative;
    display: block;
    margin: 0 0 16px 0;
    font-weight: 600;
    opacity: .7;
}


body > landing > contentwrap > content > card > contentwrap > content > sbutton {
    position: relative;
    width: 100%;
}

body > landing > contentwrap > content > card > contentwrap > content > salert > contentwrap {
    border-radius: 8px;
    padding: 16px;
}

body > landing sbutton > img,
body > landing sbutton > icon {
    margin-right: 16px;
    font-size: 28px;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}



/* ---- Recovery specific ---- */

body > landing > contentwrap > content > card > contentwrap.recovery-reinstall logowrap {
    position: relative;
    display: flex;
    width: 100%;
    height: 142px;
    justify-content: center;
    pointer-events: none;
}

body > landing > contentwrap > content > card > contentwrap.recovery-reinstall logowrap > content {
    position: relative;
    display: block;
    width: 142px;
    height: 142px;
}

body > landing > contentwrap > content > card > contentwrap.recovery-reinstall logowrap > content > icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 64px;
    height: 64px;
    background: #ffffff;
    padding: 4px;
    font-size: 56px;
    border-radius: 50%;
    color: #000000;
    z-index: 1;
}

body > landing > contentwrap > content > card > contentwrap.recovery-reinstall logowrap > content > img {
    position: relative;
    display: block;
    width: 142px;
    height: 142px;
    object-fit: contain;
    object-position: center center;
    z-index: 0;
}

body > landing > contentwrap > content > card > contentwrap > content.recovery-main sbutton:not(:hover) {
    background: unset;
}

body > landing > contentwrap > content > card > contentwrap > content.recovery-main sbutton > content > p {
    text-align: left;
}





body > landing > contentwrap > content > card > contentwrap.recovery-signin logo {
    position: relative;
    display: flex;
    width: 100%;
    height: 38px;
    justify-content: center;
    pointer-events: none;
    margin: 64px 0 32px 0;
}

body > landing > contentwrap > content > card > contentwrap.recovery-signin logo > svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}


/* ---- Setup specific ---- */

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome {
    display: flex;
    flex-direction: column;
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome welcomeanim {
    position: relative;
    display: block;
    width: calc(100% + 64px);
    margin: -32px 0 0 -32px;
    height: 340px;
    overflow: hidden;
    flex: 1 0 340px;
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome welcomeanim::before,
body > landing > contentwrap > content > card > contentwrap > content.setup-welcome welcomeanim::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    height: 100%;
    display: block;
    content: '';
    z-index: 1;
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome welcomeanim::after {
    left: unset;
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5));
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome welcomeanim::before {
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5));
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome welcomeanim > h1 {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    font-size: 40px;
    font-weight: 600;
    opacity: 0;
    z-index: 0;

    background: linear-gradient(to bottom, #000, #555);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


body > landing > contentwrap > content > card > contentwrap > content.setup-welcome languagewrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1;
    text-align: center;
    padding: 32px 0 0 0;
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome languagewrap > content {
    position: relative;
    display: block;
    width: 100%;
    max-width: 300px;
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome languagewrap > content > selectwrap {
    position: relative;
    display: block;
    border-radius: 8px;
    background: rgba(160, 160, 160, .12);
    padding: 8px 12px 8px 8px;
}

body > landing > contentwrap > content > card > contentwrap > content.setup-welcome languagewrap > content > selectwrap > select {
    position: relative;
    display: block;
}

body > landing legal {
    position: relative;
    display: block;
    width: 100%;
}

body > landing legal h1,
body > landing legal h2,
body > landing legal h3,
body > landing legal h4,
body > landing legal h5 {
    position: relative;
    display: block;
    margin: 42px 0 8px 0;
    font-weight: 600;
}

body > landing legal ol {
    position: relative;
    display: block;
    margin: 8px 0 0 32px;
    color: #505050;
    font-size: 14px;
}

body > landing legal ol li {
    margin: 8px 0;
}

body > landing legal a {
    position: relative;
    margin: 0;
    font-size: 14px;
}

body > landing legal p {
    margin: 8px 0;
}

/* ---- Menu ---- */

body > icon {
    position: absolute;
    left: -200px;
    top: -200px;
}

body > menubg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 4;
}

body > menu {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    flex: 0 0 20vw;
    max-width: 300px;
    background: #f7f7f7;
    border-right: 1px solid #eeeeee;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 5;
}

body > menu > mobile {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 52px;
    padding: 0 16px;
    opacity: 1;
    transition: opacity .4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

body > menu > mobile > content {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 1 1 100%;
    transition: opacity .12s linear;
}

body > menu > mobile > content:active {
    transition: unset;
    opacity: .7 !important;
}

body > menu > mobile > content > icon:first-of-type {
    position: relative;
    display: block;
    flex: 0 0 20px;
    height: 20px;
    margin: 0 12px 0 0;
    color: var(--accent-color);
    cursor: pointer;
}

body > menu > mobile > content > icon svg {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
    stroke: var(--accent-color);
    stroke-width: 1;
}

body > menu > mobile > content > icon:last-of-type {
    position: relative;
    display: block;
    flex: 0 0 18px;
    height: 18px;
    margin: 0 0 0 8px;
    font-size: 18px;
    color: #222222;
    opacity: .5;
    cursor: pointer;
}


body > menu > mobile > content > h6 {
    position: relative;
    display: block;
    margin: 0;
    flex: 0 0;
    color: #222222;
    cursor: pointer;
    white-space: nowrap;
}


body > menu > mobile > user {
    position: relative;
    width: unset;
    flex: 0 0 auto;
    padding: 0;
    display: inline-flex;
    align-items: center;
    flex-grow: 0;
}


body > menu > mobile > user > profilepic > p {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    font-size: 10px;
    font-weight: 600;
}

body > menu > mobile > user > h6 {
    position: relative;
    margin: 0;
}

@media(max-width: 1000px) {
    body > menu > mobile > user > profilepic {
        position: relative;
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        margin: 0 0 0 12px;
        overflow: hidden;
    }

    body > menu > mobile > user > profilepic > p {
        font-size: 12px;
    }
}


@media(max-width: 600px) {
    body > menu > mobile > user > h6 {
        display: none;
    }
}

body > menu > contentwrap {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

body > menu > contentwrap > content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    flex: 1 1 100%;
}

body > menu > contentwrap > content > logo {
    position: relative;
    display: flex;
    align-items: center;
    padding: 32px 32px 22px;
}

body > menu > contentwrap > content > logo > svg {
    position: relative;
    display: block;
    width: 128px;
    fill: #2f2f2f;
}

body > menu > contentwrap > content > logo > betatag {
    display: inline-flex;
    align-items: center;
    padding: 3px 4px 2px 5px;
    border: 2px solid #888888;
    font-family: "Inter", sans-serif;
    color: #888888;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    line-height: 1;
    margin: 0 0 0 4px;
}

body > menu > contentwrap > content > apps {
    position: relative;
    display: block;
    width: 100%;
}

body > menu > contentwrap > content > apps > bundle {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 16px;
}


body > menu > contentwrap > content > apps entry {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 14px;
    border-radius: 10px;
    cursor: pointer;
}

body > menu > contentwrap > content > apps entry:not(:last-of-type) {
    margin-bottom: 1px;
}


@media(min-width: 1000px) {
    body > menu > contentwrap > content > apps entry:not(.a):hover {
        background: rgba(155, 155, 155, .1);
    }
}

body > menu > contentwrap > content > apps entry:not(.a):active {
    background: rgba(155, 155, 155, .15);
}

body > menu > contentwrap > content > apps entry > h6 {
    position: relative;
    display: block;
    color: #222222;
    cursor: pointer;
    font-weight: 450;
    font-size: 14px;
    margin: 0;
}

body > menu > contentwrap > content > apps entry > iconwrap {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    margin: 0 8px 0 0;
}

body > menu > contentwrap > content > apps entry > iconwrap > svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    stroke-width: .5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--accent-color);
    fill: var(--accent-color);
    shape-rendering: geometricPrecision;
    padding: 2px;
}

body > menu > contentwrap > content > apps entry.a {
    background: #e6e6e6;
}

body > menu > contentwrap > content > apps entry.a > iconwrap > svg {
    stroke-width: 1.2;
}

body > menu > contentwrap > content > apps entry.a > h6 {
    font-weight: 550;
    color: #000000;
}

body > menu user {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px;
}

body > menu user > content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding: 16px;
    cursor: pointer;
}

body > menu user > content:active {
    background: #f0f0f0;
}

body > menu user profilepic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    color: #ffffff;
    flex: 0 0 40px;
    pointer-events: none;
    z-index: 3;
}

body > menu user profilepic::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    content: '';
    z-index: 0;
}

body > menu user profilepic::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, .5), rgba(255, 255, 255, .75) 100%);
    content: '';
    z-index: 1;
}

body > menu user profilepic > p {
    position: relative;
    display: block;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.25;
    color: #00000090;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
}

body > menu user > content > textwrap {
    position: relative;
    display: block;
    flex: 1 1 100%;
    pointer-events: none;
    padding: 0 8px;
}

body > menu user > content > textwrap > h6 {
    position: relative;
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

body > menu user > content > textwrap > p {
    position: relative;
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    color: #666666;
    font-size: 14px;
}

body > menu user > content > icon {
    position: relative;
    display: block;
    font-size: 18px;
    color: #888888;
    pointer-events: none;
}

@media(max-width: 1000px) {
    body {
        display: block;
    }

    body > menu {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 84px;
        padding-bottom: 32px;
        max-width: unset;
        border-right: unset;
        border-top-right-radius: unset;
        border-bottom-right-radius: unset;
        overflow: hidden;
        transition: box-shadow .4s cubic-bezier(0.215, 0.610, 0.355, 1), height .4s cubic-bezier(0.215, 0.610, 0.355, 1), border-top-left-radius .4s cubic-bezier(0.215, 0.610, 0.355, 1), border-top-right-radius .4s cubic-bezier(0.215, 0.610, 0.355, 1);
        z-index: 6;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        overflow: hidden;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, .2);
        background: #ffffff;
    }

    body > menu > mobile {
        display: flex;
    }

    body > menu > contentwrap {
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        opacity: 0;
        pointer-events: none;
        width: 100%;
        height: 100%;
        flex: 1 1 100%;
        pointer-events: none;
        transform: translate3d(0, 0, 0);
    }

    body > menu > contentwrap > content > logo {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px 32px 22px;
        background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
    }

    body > menu > contentwrap > content > logo > svg {
        position: relative;
        display: block;
        width: 128px;
        fill: #2f2f2f;
    }

    body > menu > contentwrap > content > logo > betatag {
        display: inline-flex;
        align-items: center;
        padding: 3px 4px 2px 5px;
        border: 2px solid #888888;
        font-family: "Inter", sans-serif;
        color: #888888;
        font-weight: 700;
        font-size: 12px;
        border-radius: 8px;
        line-height: 1;
        margin: 0 0 0 4px;
    }

    body > menu > contentwrap > content > apps {
        position: relative;
        display: block;
        width: 100%;
    }

    body > menu > contentwrap > content > apps > bundle {
        position: relative;
        display: block;
        width: 100%;
        padding: 10px 16px;
    }


    body > menu > contentwrap > content > apps entry {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 8px 0;
        border-radius: 8px;
        cursor: pointer;
    }


    body > menu > contentwrap > content > apps entry > h6 {
        position: relative;
        display: block;
        color: #222222;
        cursor: pointer;
        font-weight: 400;
        margin: 0;
    }

    body > menu > contentwrap > content > apps entry > iconwrap {
        position: relative;
        display: block;
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        margin: 0 12px 0 0;
    }

    body > menu > contentwrap > content > apps entry > iconwrap > svg {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        stroke-width: .5;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: var(--accent-color);
        fill: var(--accent-color);
        shape-rendering: geometricPrecision;
        padding: 2px;
    }

    body > menu > contentwrap > content > apps entry.a {
        background: transparent;
    }

    body > menu > contentwrap > content > apps entry.a > iconwrap > svg {
        stroke-width: 1;
    }

    body > menu > contentwrap > content > apps entry.a > h6 {
        font-weight: 400;
    }

    body > menu > contentwrap > user {
        display: none;
    }
}



beam {
    position: relative;
    display: block;
    width: 100%;
    margin: 4px 0 0 0;
    padding: 12px 0 8px;
    border-top: 1px solid #eeeeee;
}

beam > p {
    position: relative;
    width: 100%;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 8px;
    padding: 0 16px;
}

beam > content {
    position: relative;
    display: block;
    gap: 8px;
}

beam > content > entry {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    padding: 4px 16px;
}

beam > content > entry:hover {
    background: #f9f9f9;
}


beam > content > entry:active {
    background: #f0f0f0;
}

beam > content > entry > content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

beam > content > entry > content > iconwrap {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    cursor: pointer;
    margin: 0 8px 0 0;
}

beam > content > entry > content > iconwrap > bg {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#fff, var(--accent-color));
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

beam > content > entry.a > content > iconwrap > bg {
    opacity: 1;
    animation: beamBgSpinner 2s linear infinite;
}

beam > content > entry.a > content > iconwrap > bg::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    opacity: 0;
    animation: beamBgIn 1s linear;
    content: '';
}

@keyframes beamBgIn {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes beamBgSpinner {
    from {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    to {
        transform: translate3d(0, 0, 0) rotate(360deg);
    }
}


beam > content > entry > content > iconwrap > content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #e0e0e0;
    overflow: hidden;
    padding: 6px;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition: box-shadow .4s cubic-bezier(0.215, 0.610, 0.355, 1), transform .4s cubic-bezier(0.215, 0.610, 0.355, 1), background .4s cubic-bezier(0.215, 0.610, 0.355, 1);
    box-shadow: 0px 0px 0px var(--accent-color);
}

beam > content > entry:active > content > iconwrap > content {
    transition: unset;
    background: #cccccc;
}


beam > content > entry.a > content > iconwrap > content {
    background: #ffffff;
    transform: translate3d(0, 0, 0) scale(.9);
    box-shadow: 0px 0px 8px var(--accent-color);
    animation: beamIconBoxShadow 5s linear infinite .4s;
}

@keyframes beamIconBoxShadow {
    0% {
        box-shadow: 0px 0px 8px var(--accent-color);
    }

    50% {
        box-shadow: 0px 0px 0px var(--accent-color);
    }

    100% {
        box-shadow: 0px 0px 8px var(--accent-color);
    }
}

beam > content > entry > content > iconwrap > content > img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

beam > content > entry > content > p {
    position: relative;
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000000;
    opacity: .7;
    transition: opacity .12s linear;
}


body > content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    transition: border-top-left-radius .4s cubic-bezier(0.215, 0.610, 0.355, 1), border-top-right-radius .4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

@media(max-width: 1000px) {
    body > content {
        z-index: 0;
        height: calc(100% - 84px);
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: transform .4s cubic-bezier(0.215, 0.610, 0.355, 1), border-top-left-radius .4s cubic-bezier(0.215, 0.610, 0.355, 1), border-top-right-radius .4s cubic-bezier(0.215, 0.610, 0.355, 1), opacity .4s linear;
    }
}

body > content > app {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    outline: unset;
    border: unset;
}


body > content > app > content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    outline: unset;
    border: unset;
}

body > content > app > content > iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    outline: unset;
    border: unset;
    background: #ffffff;
}



body > notifi {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    display: block;
    pointer-events: none;
    z-index: 6;
    transform: translate3d(0, 0, 0);
}

body > notifi.a {
    pointer-events: all;
}


body > notifi > entry {
    position: relative;
    display: flex;
    width: 100%;
    background: var(--accent-color);
    padding: 12px 18px;
    transform: translate3d(0, 0, 0);
    transition: transform .35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity .1s linear;
    cursor: pointer;
    border: 1px solid #292929;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


body > notifi > entry > icon {
    position: relative;
    margin: 0 12px 0 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    padding: 4px;
}

body > notifi > entry > icon::after,
body > notifi > entry > icon {
    font-size: 24px !important;
    color: #ffffff;
    background: rgba(0, 0, 0, .2);
    pointer-events: none;
}

body > notifi > entry > textwrap {
    position: relative;
    display: block;
    flex: 1 1;
}

body > notifi > entry > textwrap > h5 {
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #ffffff;
    margin: 0;
    pointer-events: none;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
    padding: 0;
}

body > notifi > entry > textwrap > p {
    position: relative;
    margin: 0;
    color: #ffffff;
    pointer-events: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}




body > maintenence {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 75;
    display: block;
}

body > maintenence > content {
    position: relative;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

body > maintenence > content > textwrap {
    position: relative;
    display: block;
    padding: 64px;
    width: 100%;
    flex: 0 0 100%;
    opacity: 0;
    animation: maintIn .5s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards;
}

@keyframes maintIn {
    from {
        transform: translate3d(75px, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

body > maintenence > content > textwrap > h1 {
    position: relative;
    margin: 0 0 12px 0;
}

body > maintenence > content > textwrap > p {
    position: relative;
    max-width: 560px;
}


body > maintenence > content > svg {
    position: absolute;
    left: 0;
    top: 0;
    margin: 64px 0 0 64px;
    display: block;
    height: 20px;
    width: auto;
    fill: #999999;
    opacity: 0;
    animation: maintLogoIn .5s linear 1.2s forwards;
}

@keyframes maintLogoIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




body > screen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    z-index: 52;
    background: #ffffff;
}

body > screen > contentwrap {
    position: relative;
    width: 100%;
    display: block;
}

body > screen > contentwrap > content {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    z-index: 5;
    overflow: hidden;
}

body > screen > contentwrap > content > spinnerwrap {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

body > screen > contentwrap > content > spinnerwrap > scspinner {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
    overflow: visible;
}

body > screen > contentwrap > content > spinnerwrap > scspinner > p {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    flex: 0 0 100%;
    transform: translate3d(0, 0, 0) !important;
    transition: unset !important;
}


body > screen > contentwrap > content > page {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: height .4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity .1s linear;
    overflow: hidden;
}

body > screen > contentwrap > content > page > content {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: transform .5s cubic-bezier(0.23, 1, 0.320, 1), height .4s cubic-bezier(0.23, 1, 0.320, 1), opacity .12s cubic-bezier(0.23, 1, 0.320, 1);
    transform-origin: -52px 50vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 150px 32px;
    overflow: hidden;
}

body > screen > contentwrap > content > page > content::-webkit-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    background: transparent;
}

body > screen > contentwrap > content > page > content::-webkit-scrollbar-thumb {
    width: 5px;
    background: var(--accent-color);
}


@media(max-width: 800px) {
    body > screen > contentwrap > content > page > content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: calc(100% - 80px);
        padding: 100px 32px 100px;
        overflow: scroll;
    }

    body > screen > contentwrap > content > page > content::-webkit-scrollbar {
        display: none;
    }
}

@media(min-width: 801px) and (max-height: 1000px) {
    body > screen > contentwrap > content > page > content {
        padding: 62px 32px;
    }

    body > screen > contentwrap > content > page > content > titlewrap > h1 {
        font-size: 46px;
    }
}

body > screen > contentwrap > content > page > content > img {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    display: block;
    background: #222222;
}

@media(min-width: 801px) {
    body > screen > contentwrap > content > page > content > img {
        display: none;
    }
}

body > screen > contentwrap > content > page > content > titlewrap {
    position: relative;
    display: block;
    width: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform .5s cubic-bezier(0.23, 1, 0.320, 1);
}

body > screen > contentwrap > content > page > content > titlewrap > h1 {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 32px 0;
}


body > screen > contentwrap > content > page > content > p,
body > screen > contentwrap > content > page > content > titlewrap > p {
    color: #ffffffee;
}

@media(max-width: 800px) {
    body > screen > contentwrap > content > page > content > titlewrap > h1 {
        font-size: 40px;
        line-height: 1.12;
    }

    body > screen > contentwrap > content > page > content > p,
    body > screen > contentwrap > content > page > content > titlewrap > p {
        color: rgb(170, 170, 170);
    }
}


body > screen > contentwrap > content > page > buttons {
    position: relative;
    width: 100%;
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .25);
}

body > screen > contentwrap > content > page > buttons > content {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transition: transform .4s cubic-bezier(0.215, 0.610, 0.355, 1), opacity .1s linear;
}

body > screen > contentwrap > content > page > buttons > content > button:not(:last-child) {
    margin-right: 8px;
}

@media(max-width: 800px) {
    body > screen > contentwrap > content > page > buttons {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #252525;
        padding: 22px 22px 52px;
    }

    body > screen > contentwrap > content > page > buttons > content > button {
        display: block;
        flex: 1 1 100%;
    }
}