:root {
    --accent-color: #007AFF;
}

body {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

spinner > wrap > svg {
    position: relative;
    display: block;
    animation: rotate 1.5s linear infinite;
    height: 120px;
    width: 120px;
    margin: 0 auto;
}

spinner > wrap > svg circle {
    stroke-dasharray: 1200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite 0s, color 6s ease-in-out infinite;
    stroke-linecap: round;
    fill: none;
    stroke-width: 5;
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    } 50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    } 100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #000000;
    } 50% {
        stroke: #333333;
    }
}


body > section:first-of-type {
    padding-top: 0;
}


accountsdashboard {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: scale(1);
    transition: opacity .1s linear, transform .4s cubic-bezier(0.215, 0.610, 0.355, 1);
}



accountsdashboard > content {
    position: relative;
    display: grid;
    grid-template-columns: 250px 1fr;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 14px;
}

@media(max-width: 900px) {
    accountsdashboard > content {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
}

accountsdashboard > content > sidebar {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-right: 52px;
    overflow: hidden;
}



accountsdashboard > content > sidebar > content {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

accountsdashboard > content > sidebar > content > user {
    position: relative;
    display: block;
    width: 100%;
    padding: 22px 22px;
    margin: 0 0 12px 0;
}

@media(max-width: 900px) {
    accountsdashboard > content > sidebar > content > user {
        padding: 0 22px 22px;
        margin: 0;
    }
}

accountsdashboard > content > sidebar > content > user > h6 {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 0 2px 0;
}

accountsdashboard > content > sidebar > content > user > p {
    position: relative;
    width: 100%;
    margin: 0;
}

@media(max-width: 900px) {
    accountsdashboard > content > sidebar {
        display: block;
        padding-left: 12px;
        padding-right: 12px;
        background: #f0f0f0;
        opacity: 0;
        height: 0px;
        overflow: hidden;
        transform: translate3d(0,-50px,0);
        transition: height .3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    accountsdashboard.me > content > sidebar {
        transition: height .4s cubic-bezier(0.215, 0.610, 0.355, 1), transform .4s cubic-bezier(0.215, 0.610, 0.355, 1), opacity .4s cubic-bezier(0.215, 0.610, 0.355, 1);
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

accountsdashboard > content > mobhead {
    position: relative;
    width: 100%;
    display: none;
    border-bottom: 1px solid #ececec;
    background: #ffffff;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 12px 22px;
    transition: background .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media(max-width: 900px) {
    accountsdashboard.me > content > mobhead {
        transition: background .4s cubic-bezier(0.215, 0.610, 0.355, 1);
        background: #f0f0f0;
    }

    accountsdashboard > content > mobhead {
        display: block;
    }
}


accountsdashboard > content > mobhead > content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

accountsdashboard > content > mobhead > content > svg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 6px 0 6px 6px;
    display: block;
    width: 42px;
    transform: rotate(0deg);
    transition: width .3s cubic-bezier(0.215, 0.610, 0.355, 1), flex .3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

accountsdashboard > content > mobhead > content > textwrap {
    position: relative;
    display: block;
    flex: 1 1 100%;
    opacity: 1;
    transition: opacity .2s linear;
}

accountsdashboard > content > mobhead > content > textwrap > h6,
accountsdashboard > content > mobhead > content > textwrap > p {
    position: relative;
    display: block;
    white-space: nowrap;
    margin: 0;
}

accountsdashboard > content > mobhead > content > textwrap > h6 {
    font-size: 18px;
}

accountsdashboard.me > content > mobhead > content > textwrap {
    opacity: 0;
}

accountsdashboard.me > content > mobhead > content > svg {
    width: 100%;
    transform: rotate(-180deg);
}




accountsdashboard > content > sidebar > content > group {
    position: relative;
    display: block;
    width: 100%;
    padding: 18px 0;
}

@media(max-width: 900px) {
    accountsdashboard > content > sidebar > content > group {
        padding: 8px 0;
    }
}

accountsdashboard > content > sidebar > content > group:first-of-type {
    padding-top: 0;
}

accountsdashboard > content > sidebar > content > group > p {
    position: relative;
    display: block;
    text-transform: uppercase;
    margin: 0 0 2px 0;
    font-size: 12px;
    font-weight: 500;
    padding: 0 22px;
    opacity: .6;
}

accountsdashboard > content > sidebar > content > group > content {
    position: relative;
    display: block;
    width: 100%;
}

accountsdashboard > content > sidebar > content > group > content > entry {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    border-radius: 10px;
}

accountsdashboard > content > sidebar > content > group > content > entry:not(:last-child) {
    margin-bottom: 1px;
}


@media(min-width: 901px) {
    accountsdashboard > content > sidebar > content > group > content > entry:hover {
        background: #f5f5f5;
    }

    accountsdashboard > content > sidebar > content > group > content > entry:active {
        background: #f0f0f0;
    }

    accountsdashboard > content > sidebar > content > group > content > entry.a {
        background: #f5f5f5;
    }
}

@media(max-width: 900px) {
    accountsdashboard > content > sidebar > content > group > content > entry { 
        border: 1px solid transparent;
    }

    accountsdashboard > content > sidebar > content > group > content > entry.a {
        background: #ffffff;
        border: 1px solid #dddddd;
    }
}

accountsdashboard > content > sidebar > content > group > content > entry::after {
    position: absolute;
    left: 2px;
    top: 13px;
    height: calc(100% - 26px);
    width: 4px;
    background: var(--accent-color);
    content: '';
    border-radius: 5000px;
    transform: scaleY(0) translate3d(0,0,0);
    transition: transform .12s cubic-bezier(0.47, 0, 0.745, 0.715);
}

accountsdashboard > content > sidebar > content > group > content > entry.a::after {
    transition: transform .4s cubic-bezier(0.215, 0.610, 0.355, 1);
    transform: scaleY(1) translate3d(0,0,0);
}

accountsdashboard > content > sidebar > content > group > content > entry > content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8px 22px;
}

accountsdashboard > content > sidebar > content > group > content > entry > content >  accounticon {
    position: relative;
    width: 24px;
    flex: 0 0 24px;
    height: 24px;
    margin: 0 8px 0 0;
}

accountsdashboard > content > sidebar > content > group > content > entry > content > accounticon > svg {
    position: relative;
    width: 24px;
    height: 24px;
    fill: transparent;
    stroke-width: 2;
    stroke: #222222;
    cursor: pointer;
}

accountsdashboard > content > sidebar > content > group > content > entry.a > content > accounticon > svg {
    stroke: var(--accent-color);
}

accountsdashboard > content > sidebar > content > group > content > entry > content > textwrap {
    position: relative;
    display: block;
    width: 100%;
}

accountsdashboard > content > sidebar > content > group > content > entry > content > textwrap > p {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

accountsdashboard > content > sidebar > content > group > content > entry > content > textwrap > p:first-of-type {
    font-weight: 500;
    font-size: 16px;
}

accountsdashboard > content > sidebar > content > group > content > entry > content > textwrap > p:last-of-type:not(:first-of-type) {
    opacity: .8;
    font-size: 14px;
    font-weight: 400;
    margin: 2px 0 0 0;
}

accountsdashboard > content > sidebar > content > group > content > entry > content > textwrap > p:first-of-type:last-of-type {
    margin: 0;
}


/* --- Frame --- */


accountsdashboard > content > page {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    overflow: hidden;
}

@media(max-width: 900px) {
    accountsdashboard > content > page {
        height: calc(100% - 140px);
    }
}

accountsdashboard > content > page > spinner,
accountsdashboard > content > page > error {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity .12s linear;
    pointer-events: none;
}

accountsdashboard > content > page > spinner.sh {
    transition: unset;
    opacity: 1;
    pointer-events: all;
}

accountsdashboard > content > page > spinner > wrap {
    opacity: 0;
    transition: opacity .12s linear;
}

accountsdashboard > content > page > spinner.sh.spinner > wrap {
    opacity: 1;
}

accountsdashboard > content > page > error {
    z-index: 3;
}

accountsdashboard > content > page > error.sh {
    opacity: 1;
    pointer-events: all;
}

accountsdashboard > content > page > error > div {
    position: relative;
    display: block;
    text-align: center;
}

accountsdashboard > content > page > error > div > button {
    position: relative;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 12px 0 0 0;
}

accountsdashboard > content > page > error > div > h3,
accountsdashboard > content > page > error > div > p {
    position: relative;
    text-align: center;
    width: 100%;
}

accountsdashboard > content > page iframe {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    outline: none;
    border: none;
    overflow: auto;
    z-index: 0;
}



/* ----- Form ---- */

scform {
    position: relative;
    display: block;
    width: 100%;
    padding: 22px 0;
}



view > content > scform {
    padding-bottom: 0;
    padding-top: 0;
}

list > entry > content > scform {
    padding: 22px 0;
}

scform > content {
    position: relative;
    width: 100%;
    display: block;
    border-radius: 10px;
}



scform > content > finput {
    position: relative;
    width: 100%;
    display: block;
}

scform.oe:not(.e) > content > finput input,
scform.oe:not(.e) > content > finput select,
scform.oe:not(.e) > content > finput textarea,
scform.oe:not(.e) > content > finput > content {
    pointer-events: none;
}


scform.oe > content > finput.l input,
scform.oe > content > finput.l select,
scform.oe > content > finput.l textarea,
scform.oe > content > finput.l > content {
    transition: color .2s linear;
}

scform.oe:not(.e) > content > finput.l content,
scform.oe:not(.e) > content > finput.l {
    cursor: pointer;
}

scform.oe:not(.e) > content > finput.l input,
scform.oe:not(.e) > content > finput.l select,
scform.oe:not(.e) > content > finput.l textarea {
    color: rgba(var(--accent-color), 1);
    text-decoration: underline;
}

scform.oe:not(.e) > content > finput.l:active,
scform.oe:not(.e) > content > finput.l:active,
scform.oe:not(.e) > content > finput.l:active {
    opacity: .5;
}


scform > content > finput > content {
    position: relative;
    width: 100%;
    padding: 4px 22px;
    display: block;
}

scform > content > finput > content > p {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    margin: 0 0 8px 0;
    text-align: right;
}

scform.oe:not(.e) > content > finput.m {
    pointer-events: none;
}

scform > content > finput.b,
scform > content > finput.b > content,
scform > content > finput.m,
scform > content > finput.m > content {
    cursor: pointer;
}

scform > content > finput.b > content > icon,
scform > content > finput.m > content > icon {
    position: relative;
    margin: 0 10px 0 0;
    cursor: pointer;
}

scform > content > finput.b > content > icon,
scform > content > finput.b > content > icon::after {
    color: rgba(var(--accent-color), 1);
}


scform > content > finput.m > content > icon,
scform > content > finput.m > content > icon::after {
    color: #999999;
    transition: opacity .12s linear;
    opacity: 1;
}

scform > content > finput.b > content > p {
    color: rgba(var(--accent-color), 1);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    cursor: pointer;
}

scform > content > finput.m > content > p {
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

scform > content > finput.m > content > p:last-of-type {
    padding: 10px 12px;
    color: #ffffff;
    flex: 1 1 100%;
    text-align: left;
}


scform > content {
    position: relative;
    width: 100%;
    display: block;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 10px;
    transition: background .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}





scform > content > finput > content {
    display: flex;
    align-items: center;
}

scform.oe > content > finput > content {
    transition: background .2s cubic-bezier(0.165, 0.84, 0.44, 1), padding .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

scform.oe > content > finput > content > input,
scform.oe > content > finput > content > textareawrap > textarea,
scform.oe > content > finput > content > select {
    transition: padding .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

scform.oe:not(.e) > content > finput > content > input,
scform.oe:not(.e) > content > finput > content > textareawrap > textarea,
scform.oe:not(.e) > content > finput > content > select {
    padding-top: 2px;
    padding-bottom: 2px;
}

scform.oe > content > finput > content > input::placeholder,
scform.oe > content > finput > content > textareawrap > textarea::placeholder {
    transition: opacity .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

scform.oe:not(.e) > content > finput > content > input::placeholder,
scform.oe:not(.e) > content > finput > content > textareawrap > textarea::placeholder {
    opacity: 0;
}

scform.oe:not(.e) > content > finput > content {
    padding: 4px 0;
}

scform.oe:not(.e) > content > finput:first-child > content {
    padding-top: 0;
}

scform.oe:not(.e) > content > finput:last-child > content {
    padding-bottom: 0;
}

scform.oe > content > finput.oev {
    overflow: hidden;
    height: 47px;
    transition: height .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

scform.oe:not(.e) > content > finput.oev {
    height: 0px;
}

scform > content > finput.b:active,
scform > content > finput.m:active {
    background: rgba(255, 255, 255, .05);
}

scform.oe:not(.e) content > finput.m > content > icon {
    opacity: 0;
}

scform > content > finput:not(:last-child) {
    border-bottom: 1px solid #292929;
}

scform.oe:not(.e) content > finput:not(:last-child) {
    border-bottom: 1px solid transparent;
}

scform > content > finput > content > p {
    display: inline-block;
    margin: 0;
    padding: 0 10px 0 0;
    color: #555555;
}


scform > content > finput > content > textareawrap {
    position: relative;
}

scform > content > finput > content > input,
scform > content > finput > content > textareawrap,
scform > content > finput > content > textareawrap > textarea {
    border: unset;
    background: unset;
    width: 100%;
    font-size: 16px;
}


scform:not(.oe) > content > finput > content > textareawrap::after,
scform.oe:not(.e) > content > finput > content > textareawrap::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, #000000 0%, #00000000 100%);
    content: '';
}



scform > content > finput > content > select {
    position: relative;
    flex: 0 0 50%;
    font-size: 16px;
    border: unset;
    background: transparent;
    outline: unset;
    padding-right: 2px;
    background: none !important;
    padding: 10px 12px;
}

scform > content > finput > content > select:active,
scform > content > finput > content > select:focus {
    border: unset;
    background: transparent;
    outline: unset;
}

scform > content > finput > content > input:active,
scform > content > finput > content > input:focus,
scform > content > finput > content > textareawrap > textarea:active,
scform > content > finput > content > textareawrap > textarea:focus {
    outline: unset;
    border: unset;
    box-shadow: unset;
}

scform > content > content > finput:not(:last-child) {
    border-bottom: 1px solid #292929;
}











alerts {
    position: fixed;
    left: 0;
    pointer-events: none;
    background: rgba(240,240,240,0);
    transition: background .18s ease;
    z-index: 500;
}



body.cw-dark alerts {
    background: rgba(0,0,0,0);
}

alerts.sh {
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: all;
    background: rgba(240,240,240,.8);
}


body.cw-dark alerts.sh {
    background: rgba(0,0,0,.8);
}

alerts.hi {
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: all;
    background: rgba(240,240,240,0);
}


body.cw-dark alerts.hi {
    background: rgba(0,0,0,0);
}


alerts > content {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

alerts > content > entry {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 2px 12px rgba(0,0,0,.12);
    animation: alertIn .2s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}



body.cw-dark alerts > content > entry {
    background: #1d1d1d;
    border: 1px solid #363636;
}

@keyframes alertIn {
    from {
        opacity: 0;
        transform: scale(1.2);
    } to {
        opacity: 1;
        transform: scale(1);
    }
}

alerts > content > entry.hi {
    pointer-events: none;
    animation: alertOut .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes alertOut {
    from {
        opacity: 1;
        transform: scale(1);
    } to {
        opacity: 0;
        transform: scale(.95);
    }
}

alerts > content > entry > content {
    position: relative;
    display: block;
    width: 100%;
    padding: 28px 16px;
}

alerts > content > entry > content > h5,
alerts > content > entry > content > p {
    position: relative;
    width: 100%;
    text-align: center;
}

alerts > content > entry > content > p {
    margin: 0;
}

alerts > content > entry > buttons {
    position: relative;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    display: flex;
}



body.cw-dark alerts > content > entry > buttons {
    border-top: 1px solid #363636;
}



alerts > content > entry > buttons > div {
    position: relative;
    flex: 1 1;
    padding: 10px;
    vertical-align: middle;
    font-family: "Inter", sans-serif;
    color: var(--accent-color);
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}


alerts > content > entry > buttons > div:active {
    background: #e7e7e7;
}


body.cw-dark alerts > content > entry > buttons > div:active {
    background: #242424;
}

alerts > content > entry > buttons > div:not(:last-child) {
    border-right: 1px solid #e0e0e0;
}



body.cw-dark content > entry > buttons > div:not(:last-child) {
    border-right: 1px solid #363636;
}


alerts > content > entry h1,
alerts > content > entry h2,
alerts > content > entry h3,
alerts > content > entry h4,
alerts > content > entry h5,
alerts > content > entry h6 {
    background: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}
