: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;
}


accountsnotifications {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
}

accountsnotifications > entry {
    position: relative;
    display: block;
    width: 100%;
    padding: 262px 162px 32px 32px;
    max-width: 1000px;
    background: radial-gradient(100% 100% at 0% 100%, #3cbd51 25%, #3cbd5100 100%);
    background-position: -500px 500px;
    background-repeat: no-repeat;
    transition: background-position .5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

accountsnotifications > entry > content {
    position: relative;
    display: flex;
    width: 100%;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, .5));
    transform: translate3d(0, 0, 0);
}

accountsnotifications > entry > content > icon {
    position: relative;
    display: block;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin: 0 24px 0 0;
}

accountsnotifications > entry > content > icon > svg {
    position: relative;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    display: block;
    stroke-linejoin: round;
    stroke-linecap: round;
}

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: 300px 1fr;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

@media(max-width: 900px) {
    accountsdashboard {
        padding-top: 0 !important;
    }

    accountsdashboard > content {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
}

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



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

accountsdashboard > content > sidebar > content > user {
    position: relative;
    display: block;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    margin: 0;
}


accountsdashboard > content > sidebar > content > user > img {
    position: relative;
    display: block;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 0 12px 0;
    padding: 0;
    background: #ececec;
}

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

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

accountsdashboard > content > sidebar > content > user > textwrap > p {
    position: relative;
    width: 100%;
    margin: 0 0 4px;
    line-height: 1.25;
}

@media(max-width: 900px) {
    accountsdashboard > content > sidebar > content > user {
        padding: 16px;
        margin: 0;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #dddddd;
        margin: 0 0 16px;
    }

    accountsdashboard > content > sidebar > content > user > img {
        margin: 0 12px 0 0;
        background: #dddddd;
    }

    accountsdashboard > content > sidebar {
        display: block;
        padding-left: 12px;
        padding-right: 12px;
        background: linear-gradient(to top, #f0f0f0 0%, #ffffff 100%);
        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 > sidebar > content {
        overflow: auto;
    }
}

accountsdashboard > content > mobhead {
    position: relative;
    width: 100%;
    display: none;
    border-bottom: 1px solid #dddddd;
    background: #ffffff;
    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: 12px 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: 550;
    padding: 0;
    opacity: .5;
}

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

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;
}






accountsdashboard > content > sidebar > content > group > content > entry > content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 5px 0;
    opacity: .85;
}

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

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

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


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.a > content {
    opacity: 1;
}

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


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;
}











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;
}