.header-account-avatar {
    border-radius: 50%;
    object-fit: cover;
    height: 25px;
    width: 25px;
    margin-right: 5px
}

.subheading {
    font-size: 24px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 0px;
}

.subsubheading {
    opacity: .6;
    margin-top: 0px;
    margin-bottom: 20px;
}

.analytics-cell {
    width: 33%;
    border-right: 1px solid var(--border-color);
    box-sizing: border-box;
    padding: var(--padding-radius)
}

.analytics-cell:last-child {
    border-right: none
}

@media screen and (max-width: 720px){
    .analytics-cell {
        display: block;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .analytics-cell:last-child {
        border-bottom: none
    }
}

.analytics {
    width: 100%;
    box-sizing: border-box;
    background-color: var(--card-background);
    box-shadow: var(--card-shadow);
    border-radius: var(--padding-radius);
    text-align: center
}

.analytics-number {
    font-size: 50px
}

.analytics-description {
    margin-top: 10px;
    opacity: .6
}

.btn-small {
    font-size: 16px;
    padding: 6px 10px;
    margin-right: 2.5px;
    vertical-align: top
}

.projects {
    background-color: var(--card-background);
    box-shadow: var(--card-shadow);
    border-radius: var(--padding-radius);
    position: relative
}

.projects-empty {
    padding: var(--padding-radius)
}

.project {
    padding: var(--padding-radius);
    border-bottom: 1px solid var(--border-color)
}

.project:last-child {
    border-bottom: 1px solid transparent
}

.project-name {
    font-size: 18px;
    font-weight: 500
}

.project-description {
    opacity: .6;
    margin-top: 2.5px
}

.project-check {
    position: absolute;
}

.project-check.icon {
    margin-top: 12px
}

.project-info {
    margin-left: 40px;
    display: inline-block
}

.project-control {
    float: right
}

.project-button {
    margin-top: 5px;
    color: var(--accent-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 40px;
    transition: all .5s ease;
    display: inline-block
}

.project-button:hover {
    background-color: var(--accent-color-darken)
}

.logout {
    cursor: pointer
}

.popup {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    overflow-y: scroll
}

.popup-card {
    background-color: var(--card-background);
    box-shadow: var(--card-shadow);
    border-radius: var(--padding-radius);
    max-width: 800px;
    margin: 20px auto;
    padding: var(--padding-radius)
}

.tabs {
    margin-top: 15px
}

.tab {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    color: var(--color);
    cursor: pointer;
    margin-right: 2.5px;
}

.tab-picked {
    color: var(--accent-color);
    text-decoration: none;
    border: 1px solid var(--accent-color-darken);
    background-color: var(--accent-color-darken)
}

.tab-right {
    float: right
}

.tab-danger {
    color: rgb(255,59,48)
}

.project-avatar {
    border-radius: 50%;
    object-fit: cover;
    height: 25px;
    width: 25px;
    vertical-align: top
}

.form {
    position: relative
}

.form > label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 11.5px;
    font-size: 16px;
    font-weight: 600;
    pointer-events: none
}

.ref {
    right: 0 !important;
    font-weight: 400 !important;
    left: auto !important;
    pointer-events: all !important;
}

.input {
    font-size: 16px;
    padding: 10px;
    padding-top: 30px;
    border-radius: var(--padding-radius);
    border: 1px solid var(--border-color);
    width: 100%;
    background-color: transparent;
    box-sizing: border-box;
    color: var(--color)
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--padding-radius)
}

@media (prefers-color-scheme: dark){
    .loader {
        background-color: rgba(0, 0, 0, 0.9)
    }
}
  
.spinner {
    animation: rotator 1.4s linear infinite
}
  
@keyframes rotator {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(270deg)
    }
}

.path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    stroke: var(--accent-color);
    animation: dash 1.4s ease-in-out infinite
}
  
@keyframes dash {
    0% {
        stroke-dashoffset: 187
    }
    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg)
    }
    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg)
    }
}

.platforms {
    border: 1px solid var(--border-color);
    border-radius: var(--padding-radius)
}

.platform {
    padding: 10px
}

.platform > label {
    font-weight: 500;
    vertical-align: middle;
    font-size: 16px;
    margin-left: 5px;
}

.uploader {
    display: none
}