body {
    touch-action: pan-x pan-y;
}
.section {
    padding: 40px 0;
}
.section-title {
    color: var(--stub);
    font-size: 20px;
    font-weight: 500;
}
.section-subtitle {
    padding: 20px 0;
    font-size: 16px;
    color: #a0a0a0;
}
.profile {
    border-bottom: 1px solid #ececec;
    position: relative;
    padding: 30px 0 0;
}
.profile img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    position: absolute;
    top: 30px;
    left: 0;
}
.profile .buttons .button {
    display: inline-block;
    text-align: center;
}
.profile .buttons .info {
    line-height: 64px;
}
.profile .name {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding-bottom: 4px;
    padding-left: 48px;
}
.profile .label {
    padding-left: 48px;
    font-size: 14px;
    color: #777777;
    font-weight: 400;
}
.profile .description {
    font-size: 16px;
    padding: 16px 8px;
    overflow-wrap: break-word;
    line-height: 28px;
}
.button {
    letter-spacing: 1px;
    display: inline-block;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 80px;
    text-align: center;
}
.button:hover {
    border: 1px solid #aaa;
}
.button.accent {
    background: var(--accent);
    border: none;
}
.button.accent:hover {
    background: var(--accent-hover);
}
.blue-link {
    letter-spacing: 1px;
    color: #196080;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    display: inline-block;
    padding: 8px 16px;
}
.buttons {
    margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
    .header.dark {
        background: #f6f6f6;
        border-bottom: 1px solid #e2e2e2;
    }
    h1 {
        color: #171717;
        font-size: 20px;
        position: fixed;
        top: 8px;
        left: 0;
        width: 100vw;
        z-index: 6;
    }
    .section {
        padding: 0;
    }
    .user-profile.popup-trigger.away {
        display: none;
    }
    .header .notifications {
        display: none;
    }
    .header.dark .logo {
        display: none;
    }
}
