/* ==========================================================
   Base
========================================================== */

html,
body {
    min-height: 100%;

    background: #000;
}

body {
    margin: 0;

    color: #fff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.showcase-dashboard {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(34, 211, 238, .065),
            transparent 30%
        ),
        #000;
}


/* ==========================================================
   Header
========================================================== */

.dashboard-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 76px;

    background: rgba(0, 0, 0, .96);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);
}

.dashboard-header-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 100%;

    padding: 0 28px;
}

.dashboard-brand {
    display: inline-flex;

    align-items: center;

    color: #fff;
    text-decoration: none;
}

.dashboard-brand:hover,
.dashboard-brand:focus {
    color: #fff;
}

.dashboard-brand-mark {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: #031018;

    font-size: 15px;
    font-weight: 900;

    background: #22d3ee;

    border: 3px solid rgba(255, 255, 255, .95);
    border-radius: 50%;

    box-shadow: 0 0 20px rgba(34, 211, 238, .20);
}

.dashboard-brand-text {
    display: flex;
    flex-direction: column;

    margin-left: 12px;

    line-height: 1.1;
}

.dashboard-brand-text strong {
    color: #fff;

    font-size: 17px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .025em;
}

.dashboard-brand-text span {
    margin-top: 4px;

    color: #22d3ee;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .17em;
}

.dashboard-header-actions {
    display: flex;

    align-items: center;

    gap: 8px;
}

.dashboard-header-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin: 0;
    padding: 0;

    color: #cbd5e1;

    background: transparent;

    border: 1px solid transparent;
    border-radius: 10px;

    cursor: pointer;
}

.dashboard-header-button:hover,
.dashboard-header-button:focus {
    color: #22d3ee;

    background: rgba(255, 255, 255, .045);

    border-color: rgba(255, 255, 255, .08);

    outline: none;
}

.dashboard-menu-toggle {
    display: none;
}


/* ==========================================================
   Dashboard Shell
========================================================== */

.dashboard-shell {
    display: flex;

    min-height: calc(100vh - 76px);
}


/* ==========================================================
   Sidebar
========================================================== */

.dashboard-sidebar {
    position: sticky;
    top: 76px;

    display: flex;
    flex: 0 0 285px;
    flex-direction: column;

    width: 285px;
    height: calc(100vh - 76px);

    padding: 30px 22px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .035),
            rgba(255, 255, 255, .015)
        ),
        #08090b;

    border-right: 1px solid rgba(255, 255, 255, .08);
}

.dashboard-sidebar-close {
    display: none;
}

.dashboard-member {
    padding: 0 12px 28px;

    text-align: center;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dashboard-member-photo {
    width: 112px;
    height: 112px;

    margin: 0 auto 16px;

    overflow: hidden;

    background: #111827;

    border: 4px solid rgba(34, 211, 238, .70);
    border-radius: 50%;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .40),
        0 0 26px rgba(34, 211, 238, .10);
}

.dashboard-member-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.dashboard-member h2 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 20px;
    font-weight: 900;
}

.dashboard-member span {
    color: #22d3ee;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .12em;
}


/* ==========================================================
   Sidebar Navigation
========================================================== */

.dashboard-navigation {
    flex: 1 1 auto;

    padding: 24px 0;
}

.dashboard-nav-link {
    display: flex;

    align-items: center;

    min-height: 49px;

    margin-bottom: 6px;
    padding: 0 14px;

    color: #94a3b8;
    text-decoration: none;

    border: 1px solid transparent;
    border-radius: 11px;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.dashboard-nav-link i {
    width: 23px;

    margin-right: 10px;

    color: #64748b;

    font-size: 15px;
    text-align: center;
}

.dashboard-nav-link span {
    font-size: 13px;
    font-weight: 800;
}

.dashboard-nav-link:hover,
.dashboard-nav-link:focus {
    color: #fff;

    background: rgba(255, 255, 255, .04);

    outline: none;
}

.dashboard-nav-link:hover i,
.dashboard-nav-link:focus i {
    color: #22d3ee;
}

.dashboard-nav-link.active {
    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(34, 211, 238, .16),
            rgba(34, 211, 238, .06)
        );

    border-color: rgba(34, 211, 238, .22);
}

.dashboard-nav-link.active i {
    color: #22d3ee;
}

.view-public-profile {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    color: #67e8f9;
    text-decoration: none;

    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .045em;

    border: 1px solid rgba(34, 211, 238, .35);
    border-radius: 11px;
}

.view-public-profile i {
    margin-right: 8px;
}

.view-public-profile:hover,
.view-public-profile:focus {
    color: #031018;

    background: #22d3ee;

    outline: none;
}

.logout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 12px;
    padding: 10px 18px;

    color: #f87171;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    background: rgba(248, 113, 113, .06);

    border: 1px solid rgba(248, 113, 113, .18);
    border-radius: 999px;

    transition: all .2s ease;
}

.logout-link i {
    margin-right: 8px;
    font-size: 12px;
}

.logout-link:hover,
.logout-link:focus {
    color: #fff;

    background: rgba(248, 113, 113, .16);
    border-color: rgba(248, 113, 113, .35);

    transform: translateY(-1px);
}

/* ==========================================================
   Main Content
========================================================== */

.dashboard-main {
    flex: 1 1 auto;

    min-width: 0;

    padding: 45px;

    overflow: hidden;
}

.dashboard-page-heading {
    max-width: 1180px;

    margin: 0 auto 30px;
}

.dashboard-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #22d3ee;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .16em;
}

.dashboard-page-heading h1 {
    margin: 0;

    color: #fff;

    font-size: 42px;
    font-weight: 900;

    line-height: 1.08;
    letter-spacing: -.035em;
}

.dashboard-page-heading > .row > .columns > p {
    margin: 10px 0 0;

    color: #94a3b8;

    font-size: 15px;
}


/* ==========================================================
   Profile Completion
========================================================== */

.profile-completion {
    max-width: 390px;

    margin-left: auto;
    padding-top: 3px;
}

.profile-completion-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}

.profile-completion-heading strong {
    color: #e2e8f0;

    font-size: 12px;
    font-weight: 800;
}

.profile-completion-heading span {
    color: #22d3ee;

    font-size: 24px;
    font-weight: 900;
}

.profile-completion-track {
    height: 9px;

    overflow: hidden;

    background: rgba(255, 255, 255, .08);

    border-radius: 99px;
}

.profile-completion-bar {
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #0891b2,
            #22d3ee
        );

    border-radius: inherit;

    box-shadow: 0 0 18px rgba(34, 211, 238, .28);

    transition: width .35s ease;
}

.profile-completion p {
    margin: 9px 0 0;

    color: #64748b;

    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================================
   Dashboard Sections
========================================================== */

.dashboard-section {
    display: none;

    max-width: 1180px;

    margin: 0 auto;
}

.dashboard-section.active {
    display: block;
}


/* ==========================================================
   Dashboard Card
========================================================== */

.dashboard-card {
    overflow: hidden;

    padding: 30px;

    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, .045),
            rgba(255, 255, 255, .016)
        ),
        #101215;

    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 20px;

    box-shadow: 0 24px 55px rgba(0, 0, 0, .34);
}

.dashboard-card-heading {
    display: flex;

    align-items: center;

    margin-bottom: 30px;
    padding-bottom: 24px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dashboard-card-icon {
    display: inline-flex;
    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-right: 15px;

    color: #22d3ee;

    font-size: 18px;

    background: rgba(34, 211, 238, .08);

    border: 1px solid rgba(34, 211, 238, .18);
    border-radius: 50%;
}

.dashboard-card-heading h2 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 23px;
    font-weight: 900;
}

.dashboard-card-heading p {
    margin: 0;

    color: #94a3b8;

    font-size: 13px;
    line-height: 1.5;
}

.dashboard-divider {
    height: 1px;

    margin: 30px 0;

    background: rgba(255, 255, 255, .08);
}


/* ==========================================================
   Profile Photo
========================================================== */

.profile-photo-section {
    display: flex;

    align-items: center;

    gap: 30px;
}

.profile-photo-preview {
    flex: 0 0 150px;

    width: 150px;
    height: 150px;

    overflow: hidden;

    background: #0b0d10;

    border: 4px solid rgba(255, 255, 255, .90);
    border-radius: 50%;

    box-shadow:
        0 15px 34px rgba(0, 0, 0, .42),
        0 0 0 1px rgba(34, 211, 238, .18);
}

.profile-photo-preview img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.profile-photo-controls {
    flex: 1 1 auto;
}

.profile-photo-controls h3 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 18px;
    font-weight: 900;
}

.profile-photo-controls p {
    margin: 0 0 4px;

    color: #cbd5e1;

    font-size: 13px;
}

.profile-photo-controls .profile-photo-format {
    color: #64748b;

    font-size: 11px;
}

.profile-photo-buttons {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin: 18px 0 10px;
}

.profile-photo-buttons .button {
    margin: 0;
}

#profilePhotoInput {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;
}

.profile-photo-controls small {
    color: #64748b;

    font-size: 10px;
}


/* ==========================================================
   Form Fields
========================================================== */

.dashboard-field {
    margin-bottom: 22px;
}

.dashboard-field label {
    display: block;

    margin-bottom: 8px;

    color: #dbe4ee;

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .065em;
}

.dashboard-field .required {
    color: #f87171;
}

.field-help-icon {
    margin-left: 4px;

    color: #64748b;

    cursor: help;
}

.field-help-icon:hover {
    color: #22d3ee;
}

.dashboard-field input,
.dashboard-field select,
.dashboard-field textarea {
    width: 100%;

    margin: 0;

    color: #fff;

    font-size: 13px;

    background: #090b0e;

    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 11px;

    box-shadow: none;
}

.dashboard-field input,
.dashboard-field select {
    height: 48px;
}

.dashboard-field textarea {
    min-height: 130px;

    padding: 13px;

    resize: vertical;
}

.dashboard-field input:focus,
.dashboard-field select:focus,
.dashboard-field textarea:focus {
    color: #fff;

    background: #090b0e;

    border-color: #22d3ee;

    box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);

    outline: none;
}

.dashboard-field input.invalid,
.dashboard-field select.invalid,
.dashboard-field textarea.invalid {
    border-color: #f87171;

    box-shadow: 0 0 0 3px rgba(248, 113, 113, .08);
}

.dashboard-field small {
    display: block;

    margin-top: 7px;

    color: #64748b;

    font-size: 10px;
    line-height: 1.5;
}

.field-error {
    display: none;

    margin-top: 7px;

    color: #f87171;

    font-size: 10px;
    font-weight: 700;
}

.dashboard-field.has-error .field-error {
    display: block;
}


/* ==========================================================
   Buttons
========================================================== */

.dashboard-primary-button,
.dashboard-secondary-button {
    min-height: 43px;

    /*padding: 0 17px;*/

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .035em;

    border-radius: 10px;
}

.dashboard-primary-button {
    color: #031018;

    background: #22d3ee;

    border: 1px solid #22d3ee;
}

.dashboard-primary-button:hover,
.dashboard-primary-button:focus {
    color: #031018;

    background: #67e8f9;

    border-color: #67e8f9;
}

.dashboard-secondary-button {
    color: #cbd5e1;

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .12);
}

.dashboard-secondary-button:hover,
.dashboard-secondary-button:focus {
    color: #fff;

    background: rgba(255, 255, 255, .07);

    border-color: rgba(255, 255, 255, .20);
}

.dashboard-primary-button i,
.dashboard-secondary-button i {
    margin-right: 6px;
}

.dashboard-primary-button:disabled,
.dashboard-secondary-button:disabled {
    opacity: .40;

    cursor: not-allowed;
}


/* ==========================================================
   Card Actions
========================================================== */

.dashboard-card-actions {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin: 12px -30px -30px;
    padding: 20px 30px;

    background: rgba(0, 0, 0, .18);

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.form-save-status {
    display: flex;

    align-items: center;

    color: #94a3b8;

    font-size: 11px;
    font-weight: 700;
}

.form-save-status i {
    margin-right: 7px;
}

.form-save-status.saved i {
    color: #4ade80;
}

.form-save-status.unsaved {
    color: #facc15;
}

.form-save-status.unsaved i {
    color: #facc15;
}

.form-save-status.saving {
    color: #22d3ee;
}

.form-save-status.saving i {
    color: #22d3ee;
}

.form-save-status.error {
    color: #f87171;
}

.form-save-status.error i {
    color: #f87171;
}

.dashboard-action-buttons {
    display: flex;

    align-items: center;

    gap: 10px;
}

.dashboard-action-buttons .button {
    margin: 0;
}


/* ==========================================================
   Placeholder Sections
========================================================== */

.dashboard-placeholder {
    padding: 65px 35px;

    text-align: center;
}

.dashboard-placeholder > i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    margin-bottom: 20px;

    color: #22d3ee;

    font-size: 30px;

    background: rgba(34, 211, 238, .08);

    border: 1px solid rgba(34, 211, 238, .18);
    border-radius: 50%;
}

.dashboard-placeholder h2 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 27px;
    font-weight: 900;
}

.dashboard-placeholder p {
    max-width: 500px;

    margin: 0 auto;

    color: #94a3b8;

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================
   Overlay
========================================================== */

.dashboard-overlay {
    position: fixed;
    inset: 76px 0 0;
    z-index: 1090;

    display: none;

    background: rgba(0, 0, 0, .72);
}

/* ==========================================================
   Dashboard Subheadings
========================================================== */

.dashboard-subheading {
    margin-bottom: 22px;
}

.dashboard-subheading h3 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 18px;
    font-weight: 900;
}

.dashboard-subheading p {
    margin: 0;

    color: #64748b;

    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================================
   Input Units
========================================================== */

.dashboard-input-unit {
    position: relative;
}

.dashboard-input-unit input {
    padding-right: 58px;
}

.dashboard-input-unit > span {
    position: absolute;
    top: 50%;
    right: 16px;

    color: #64748b;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .05em;

    transform: translateY(-50%);

    pointer-events: none;
}


/* ==========================================================
   Input Icons
========================================================== */

.dashboard-input-icon {
    position: relative;
}

.dashboard-input-icon > i {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;

    color: #64748b;

    font-size: 13px;

    transform: translateY(-50%);

    pointer-events: none;
}

.dashboard-input-icon input {
    padding-left: 43px;
}

.dashboard-input-icon:focus-within > i {
    color: #22d3ee;
}

/* ==========================================================
   Academic Course Builder
========================================================== */

.academic-course-builder {
    padding: 22px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
}

.academic-course-action .button {
    width: 100%;

    margin: 0;
}

.academic-tag-list {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    min-height: 30px;
    margin-top: 4px;
}

.academic-tag {
    display: inline-flex;

    align-items: center;

    min-height: 38px;

    padding: 5px 8px 5px 6px;

    color: #e2e8f0;

    font-size: 11px;
    font-weight: 800;

    background: rgba(255, 255, 255, .045);

    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
}

.academic-tag-type {
    display: inline-flex;

    align-items: center;

    min-height: 26px;

    margin-right: 8px;
    padding: 0 9px;

    color: #22d3ee;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .05em;

    background: rgba(34, 211, 238, .09);

    border: 1px solid rgba(34, 211, 238, .18);
    border-radius: 999px;
}

.remove-academic-tag {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    margin: 0 0 0 8px;
    padding: 0;

    color: #64748b;

    background: transparent;

    border: 0;
    border-radius: 50%;

    cursor: pointer;
}

.remove-academic-tag:hover,
.remove-academic-tag:focus {
    color: #fff;

    background: rgba(248, 113, 113, .18);

    outline: none;
}


/* ==========================================================
   Academic Responsive
========================================================== */

@media only screen and (max-width: 40em) {

    .academic-course-builder {
        padding: 16px;
    }

    .academic-tag-list {
        display: block;
    }

    .academic-tag {
        display: flex;

        width: 100%;

        margin-bottom: 9px;

        border-radius: 11px;
    }

    .remove-academic-tag {
        margin-left: auto;
    }

}

/* ==========================================================
   Recruiting Entry Builders
========================================================== */

.recruiting-entry-builder {
    padding: 22px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
}

.recruiting-builder-action .button {
    width: 100%;
    margin: 0;
}

.recruiting-entry-list {
    margin-top: 4px;
}

.recruiting-entry {
    display: flex;

    align-items: center;

    min-height: 68px;

    margin-bottom: 10px;
    padding: 12px 14px;

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 13px;
}

.recruiting-entry:last-child {
    margin-bottom: 0;
}

.recruiting-entry-icon {
    display: inline-flex;
    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-right: 13px;

    color: #22d3ee;

    background: rgba(34, 211, 238, .08);

    border: 1px solid rgba(34, 211, 238, .18);
    border-radius: 50%;
}

.recruiting-entry-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    min-width: 0;
}

.recruiting-entry-content strong {
    color: #fff;

    font-size: 13px;
    font-weight: 900;
}

.recruiting-entry-content span {
    margin-top: 4px;

    color: #64748b;

    font-size: 11px;
}

.remove-recruiting-entry {
    display: inline-flex;
    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin: 0;
    padding: 0;

    color: #64748b;

    background: transparent;

    border: 0;
    border-radius: 9px;

    cursor: pointer;
}

.remove-recruiting-entry:hover,
.remove-recruiting-entry:focus {
    color: #f87171;

    background: rgba(248, 113, 113, .10);

    outline: none;
}


/* ==========================================================
   Commitment Fields
========================================================== */

.recruiting-commitment-toggle {
    margin-bottom: 20px;
}

.dashboard-checkbox {
    display: inline-flex;

    align-items: center;

    margin: 0;

    color: #e2e8f0;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.dashboard-checkbox input {
    width: 18px;
    height: 18px;

    margin: 0 10px 0 0;
}

.commitment-fields {
    padding: 22px;

    background: rgba(34, 211, 238, .035);

    border: 1px solid rgba(34, 211, 238, .15);
    border-radius: 16px;
}


/* ==========================================================
   Recruiting Responsive
========================================================== */

@media only screen and (max-width: 40em) {

    .recruiting-entry-builder,
    .commitment-fields {
        padding: 16px;
    }

    .recruiting-entry {
        align-items: flex-start;
    }

    .recruiting-entry-icon {
        width: 38px;
        height: 38px;
    }

}

/* ==========================================================
   Featured Video
========================================================== */

.featured-media-panel {
    padding: 22px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
}

.featured-video-preview {
    position: relative;

    min-height: 345px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(34, 211, 238, .10),
            transparent 45%
        ),
        #080a0d;

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
}

.featured-video-preview iframe,
.featured-video-preview video {
    display: block;

    width: 100%;
    height: 345px;

    border: 0;
}

.featured-video-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;
}

.featured-video-placeholder > i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin-bottom: 18px;

    color: #031018;

    font-size: 24px;

    background: #22d3ee;

    border-radius: 50%;

    box-shadow: 0 0 30px rgba(34, 211, 238, .18);
}

.featured-video-placeholder strong {
    color: #fff;

    font-size: 17px;
    font-weight: 900;
}

.featured-video-placeholder span {
    max-width: 320px;

    margin-top: 8px;

    color: #64748b;

    font-size: 11px;
    line-height: 1.6;
}


/* ==========================================================
   Additional Video Builder
========================================================== */

.media-entry-builder {
    padding: 22px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
}

.media-builder-action .button {
    width: 100%;

    margin: 0;
}

.media-video-list {
    margin-top: 4px;
}

.media-video-entry {
    display: flex;

    align-items: center;

    min-height: 78px;

    margin-bottom: 10px;
    padding: 12px 14px;

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 13px;
}

.media-video-entry:last-child {
    margin-bottom: 0;
}

.media-video-thumbnail {
    display: inline-flex;
    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-right: 14px;

    color: #22d3ee;

    background: rgba(34, 211, 238, .08);

    border: 1px solid rgba(34, 211, 238, .18);
    border-radius: 11px;
}

.media-video-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    min-width: 0;
}

.media-video-content strong {
    color: #fff;

    font-size: 13px;
    font-weight: 900;
}

.media-video-content span {
    margin-top: 4px;

    color: #22d3ee;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.media-video-content a {
    display: block;

    max-width: 600px;

    margin-top: 5px;

    overflow: hidden;

    color: #64748b;

    font-size: 10px;

    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.media-video-content a:hover {
    color: #22d3ee;
}

.media-entry-actions {
    display: flex;
    flex: 0 0 auto;

    align-items: center;

    gap: 5px;
}

.media-entry-actions button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    margin: 0;
    padding: 0;

    color: #64748b;

    background: transparent;

    border: 0;
    border-radius: 9px;

    cursor: pointer;
}

.media-entry-actions .set-featured-video:hover,
.media-entry-actions .set-featured-video:focus {
    color: #facc15;

    background: rgba(250, 204, 21, .10);

    outline: none;
}

.media-entry-actions .remove-media-video:hover,
.media-entry-actions .remove-media-video:focus {
    color: #f87171;

    background: rgba(248, 113, 113, .10);

    outline: none;
}


/* ==========================================================
   Photo Upload Dropzone
========================================================== */

.media-photo-dropzone {
    padding: 42px 25px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(34, 211, 238, .06),
            transparent 55%
        ),
        rgba(0, 0, 0, .15);

    border: 2px dashed rgba(34, 211, 238, .28);
    border-radius: 18px;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.media-photo-dropzone:hover,
.media-photo-dropzone:focus,
.media-photo-dropzone.dragover {
    background-color: rgba(34, 211, 238, .035);

    border-color: #22d3ee;

    outline: none;
}

.media-photo-dropzone.dragover {
    transform: scale(1.005);
}

.media-dropzone-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin-bottom: 16px;

    color: #22d3ee;

    font-size: 27px;

    background: rgba(34, 211, 238, .08);

    border: 1px solid rgba(34, 211, 238, .20);
    border-radius: 50%;
}

.media-photo-dropzone h4 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 18px;
    font-weight: 900;
}

.media-photo-dropzone p {
    margin: 0 0 5px;

    color: #cbd5e1;

    font-size: 12px;
}

.media-photo-dropzone > span {
    display: block;

    margin-bottom: 20px;

    color: #64748b;

    font-size: 10px;
}

.media-photo-dropzone .button {
    margin: 0;
}

#mediaPhotoInput {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;
}


/* ==========================================================
   Upload Progress
========================================================== */

.media-upload-progress {
    margin-top: 18px;
    padding: 16px 18px;

    background: rgba(34, 211, 238, .035);

    border: 1px solid rgba(34, 211, 238, .14);
    border-radius: 13px;
}

.media-upload-progress-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;
}

.media-upload-progress-heading strong {
    color: #e2e8f0;

    font-size: 11px;
}

.media-upload-progress-heading span {
    color: #22d3ee;

    font-size: 11px;
    font-weight: 900;
}

.media-upload-progress-track {
    height: 7px;

    overflow: hidden;

    background: rgba(255, 255, 255, .08);

    border-radius: 999px;
}

.media-upload-progress-bar {
    width: 0;
    height: 100%;

    background: #22d3ee;

    border-radius: inherit;

    transition: width .2s ease;
}


/* ==========================================================
   Media Gallery
========================================================== */

.media-gallery-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin: 30px 0 16px;
}

.media-gallery-heading h4 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 17px;
    font-weight: 900;
}

.media-gallery-heading p {
    margin: 0;

    color: #64748b;

    font-size: 11px;
}

.media-gallery-heading > span {
    color: #22d3ee;

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.media-photo-column {
    display: flex;
}

.media-photo-card {
    position: relative;

    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    margin-bottom: 24px;

    overflow: hidden;

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px;
}

.media-photo-card.featured {
    border-color: rgba(34, 211, 238, .45);

    box-shadow: 0 0 24px rgba(34, 211, 238, .09);
}

.media-photo-image {
    position: relative;

    height: 215px;

    overflow: hidden;

    background: #080a0d;
}

.media-photo-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.featured-photo-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    display: none;

    align-items: center;

    padding: 7px 10px;

    color: #031018;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .05em;

    background: #22d3ee;

    border-radius: 999px;
}

.featured-photo-badge i {
    margin-right: 5px;
}

.media-photo-card.featured .featured-photo-badge {
    display: inline-flex;
}

.media-photo-card-content {
    flex: 1 1 auto;

    padding: 16px;
}

.media-photo-card-content .dashboard-field {
    margin-bottom: 15px;
}

.media-photo-actions {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 8px;
}

.media-photo-actions button {
    min-height: 35px;

    margin: 0;
    padding: 0 10px;

    color: #94a3b8;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .035em;

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;

    cursor: pointer;
}

.media-photo-actions button i {
    margin-right: 5px;
}

.media-photo-actions .set-featured-photo:hover,
.media-photo-actions .set-featured-photo:focus {
    color: #22d3ee;

    border-color: rgba(34, 211, 238, .30);

    outline: none;
}

.media-photo-actions .set-featured-photo:disabled {
    color: #22d3ee;

    cursor: default;
    opacity: 1;
}

.media-photo-actions .remove-media-photo:hover,
.media-photo-actions .remove-media-photo:focus {
    color: #f87171;

    border-color: rgba(248, 113, 113, .25);

    outline: none;
}

.featured-photo-input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


/* ==========================================================
   Empty Gallery
========================================================== */

.empty-media-gallery {
    padding: 45px 25px;

    text-align: center;

    background: rgba(0, 0, 0, .12);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
}

.empty-media-gallery > i {
    margin-bottom: 14px;

    color: #22d3ee;

    font-size: 35px;
}

.empty-media-gallery h4 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 17px;
    font-weight: 900;
}

.empty-media-gallery p {
    margin: 0;

    color: #64748b;

    font-size: 11px;
}


/* ==========================================================
   Media Settings
========================================================== */

.media-settings-panel {
    padding: 8px 20px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
}

.media-settings-panel .dashboard-checkbox {
    display: flex;

    align-items: flex-start;

    width: 100%;

    padding: 16px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.media-settings-panel .dashboard-checkbox:last-child {
    border-bottom: 0;
}

.media-settings-panel .dashboard-checkbox input {
    flex: 0 0 auto;

    margin-top: 3px;
}

.media-settings-panel .dashboard-checkbox > span {
    display: flex;
    flex-direction: column;
}

.media-settings-panel .dashboard-checkbox strong {
    color: #e2e8f0;

    font-size: 12px;
}

.media-settings-panel .dashboard-checkbox small {
    margin-top: 5px;

    color: #64748b;

    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================================
   Media Responsive
========================================================== */

@media only screen and (max-width: 64em) {

    .featured-video-preview,
    .featured-video-preview iframe,
    .featured-video-preview video {
        min-height: 300px;
        height: 300px;
    }

}


@media only screen and (max-width: 40em) {

    .featured-media-panel,
    .media-entry-builder {
        padding: 16px;
    }

    .featured-video-preview {
        margin-bottom: 24px;
    }

    .media-video-entry {
        align-items: flex-start;
    }

    .media-video-thumbnail {
        width: 42px;
        height: 42px;
    }

    .media-entry-actions {
        flex-direction: column;
    }

    .media-photo-dropzone {
        padding: 32px 18px;
    }

    .media-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .media-gallery-heading > span {
        margin-top: 9px;
    }

    .media-photo-image {
        height: 225px;
    }

}

/* ==========================================================
   Account Notices
========================================================== */

.account-verification-notice,
.account-warning-notice {
    display: flex;

    align-items: flex-start;

    padding: 15px 17px;

    border-radius: 13px;
}

.account-verification-notice {
    color: #86efac;

    background: rgba(34, 197, 94, .06);

    border: 1px solid rgba(34, 197, 94, .18);
}

.account-warning-notice {
    margin-top: 18px;

    color: #facc15;

    background: rgba(250, 204, 21, .055);

    border: 1px solid rgba(250, 204, 21, .18);
}

.account-notice-icon,
.account-warning-notice > i {
    flex: 0 0 auto;

    margin: 3px 12px 0 0;
}

.account-verification-notice strong,
.account-warning-notice strong {
    display: block;

    color: inherit;

    font-size: 12px;
    font-weight: 900;
}

.account-verification-notice p,
.account-warning-notice p {
    margin: 4px 0 0;

    color: #94a3b8;

    font-size: 10px;
    line-height: 1.5;
}


/* ==========================================================
   Password Fields
========================================================== */

.account-password-panel,
.guardian-contact-panel {
    padding: 22px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
}

.password-field-wrap {
    position: relative;
}

.password-field-wrap input {
    padding-right: 48px;
}

.toggle-password-visibility {
    position: absolute;
    top: 50%;
    right: 8px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin: 0;
    padding: 0;

    color: #64748b;

    background: transparent;

    border: 0;
    border-radius: 8px;

    transform: translateY(-50%);

    cursor: pointer;
}

.toggle-password-visibility:hover,
.toggle-password-visibility:focus {
    color: #22d3ee;

    background: rgba(34, 211, 238, .08);

    outline: none;
}

.password-requirements {
    margin-top: 4px;
    padding: 16px 18px;

    background: rgba(255, 255, 255, .025);

    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
}

.password-requirements strong {
    color: #e2e8f0;

    font-size: 11px;
    font-weight: 900;
}

.password-requirements ul {
    display: flex;

    flex-wrap: wrap;

    margin: 11px 0 0;

    list-style: none;
}

.password-requirements li {
    position: relative;

    width: 50%;

    margin-bottom: 7px;
    padding-left: 20px;

    color: #64748b;

    font-size: 10px;
}

.password-requirements li:before {
    position: absolute;
    top: 0;
    left: 0;

    content: "\f111";

    color: #475569;

    font-family: "Font Awesome 6 Free";
    font-size: 6px;
    font-weight: 900;
}

.password-requirements li.valid {
    color: #86efac;
}

.password-requirements li.valid:before {
    content: "\f058";

    color: #22c55e;

    font-size: 10px;
}


/* ==========================================================
   Account Setting Rows
========================================================== */

.account-settings-list {
    overflow: hidden;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
}

.account-setting-row {
    display: flex;

    align-items: center;

    min-height: 82px;

    padding: 16px 18px;

    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.account-setting-row:last-child {
    border-bottom: 0;
}

.account-setting-icon {
    display: inline-flex;
    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-right: 14px;

    color: #22d3ee;

    background: rgba(34, 211, 238, .07);

    border: 1px solid rgba(34, 211, 238, .16);
    border-radius: 50%;
}

.account-setting-content {
    flex: 1 1 auto;

    min-width: 0;
    padding-right: 20px;
}

.account-setting-content strong {
    display: block;

    color: #e2e8f0;

    font-size: 12px;
    font-weight: 900;
}

.account-setting-content p {
    margin: 5px 0 0;

    color: #64748b;

    font-size: 10px;
    line-height: 1.5;
}


/* ==========================================================
   Toggle Switches
========================================================== */

.dashboard-switch {
    position: relative;

    display: inline-block;
    flex: 0 0 auto;

    width: 48px;
    height: 26px;

    margin: 0;
}

.dashboard-switch input {
    width: 0;
    height: 0;

    opacity: 0;
}

.dashboard-switch-slider {
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;

    cursor: pointer;

    transition: .2s ease;
}

.dashboard-switch-slider:before {
    position: absolute;
    bottom: 3px;
    left: 3px;

    width: 18px;
    height: 18px;

    content: "";

    background: #94a3b8;

    border-radius: 50%;

    transition: .2s ease;
}

.dashboard-switch input:checked + .dashboard-switch-slider {
    background: rgba(34, 211, 238, .20);

    border-color: rgba(34, 211, 238, .45);
}

.dashboard-switch input:checked + .dashboard-switch-slider:before {
    background: #22d3ee;

    transform: translateX(22px);
}

.dashboard-switch input:focus + .dashboard-switch-slider {
    box-shadow: 0 0 0 3px rgba(34, 211, 238, .12);
}


/* ==========================================================
   Connected Accounts
========================================================== */

.connected-account-list {
    overflow: hidden;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
}

.connected-account-row {
    display: flex;

    align-items: center;

    min-height: 75px;

    padding: 14px 18px;

    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.connected-account-row:last-child {
    border-bottom: 0;
}

.connected-account-brand {
    display: inline-flex;
    flex: 0 0 auto;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-right: 14px;

    color: #fff;

    font-size: 18px;

    background: rgba(255, 255, 255, .055);

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
}

.connected-account-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    min-width: 0;
}

.connected-account-content strong {
    color: #e2e8f0;

    font-size: 12px;
    font-weight: 900;
}

.connection-status {
    margin-top: 4px;

    font-size: 10px;
}

.connection-status.connected {
    color: #86efac;
}

.connection-status.not-connected {
    color: #64748b;
}

.connected-account-row .button {
    flex: 0 0 auto;

    margin: 0;
}

.disconnect-social-account {
    color: #f87171;

    background: rgba(248, 113, 113, .07);

    border: 1px solid rgba(248, 113, 113, .18);
}


/* ==========================================================
   Account Status
========================================================== */

.account-status-grid {
    display: flex;

    gap: 16px;
}

.account-status-card {
    flex: 1 1 0;

    min-width: 0;
    padding: 20px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
}

.account-status-card > span {
    display: block;

    color: #64748b;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: .07em;
}

.account-status-card > strong {
    display: block;

    margin-top: 8px;

    color: #fff;

    font-size: 16px;
    font-weight: 900;
}

.account-status-card .status-active {
    color: #86efac;
}

.account-status-card a,
.account-status-card small {
    display: block;

    margin-top: 8px;

    font-size: 10px;
}

.account-status-card a {
    color: #22d3ee;

    text-decoration: none;
}

.account-status-card small {
    color: #64748b;
}


/* ==========================================================
   Current Session
========================================================== */

.account-session-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px;

    background: rgba(0, 0, 0, .15);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
}

.account-session-device {
    display: flex;

    align-items: center;
}

.account-session-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-right: 13px;

    color: #22d3ee;

    background: rgba(34, 211, 238, .07);

    border: 1px solid rgba(34, 211, 238, .16);
    border-radius: 50%;
}

.account-session-device strong {
    display: block;

    color: #e2e8f0;

    font-size: 12px;
    font-weight: 900;
}

.account-session-device span {
    display: block;

    margin-top: 4px;

    color: #64748b;

    font-size: 10px;
}

.account-session-row .button {
    margin: 0;
}


/* ==========================================================
   Danger Zone
========================================================== */

.account-danger-card {
    margin-top: 24px;

    border-color: rgba(248, 113, 113, .22);
}

.dashboard-card-icon.danger {
    color: #f87171;

    background: rgba(248, 113, 113, .08);

    border-color: rgba(248, 113, 113, .18);
}

.account-danger-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 20px;

    background: rgba(248, 113, 113, .035);

    border: 1px solid rgba(248, 113, 113, .13);
    border-radius: 14px;
}

.account-danger-row > div {
    max-width: 680px;
    padding-right: 25px;
}

.account-danger-row strong {
    color: #fca5a5;

    font-size: 13px;
    font-weight: 900;
}

.account-danger-row p {
    margin: 6px 0 0;

    color: #94a3b8;

    font-size: 10px;
    line-height: 1.6;
}

.account-danger-button {
    color: #fff;

    background: #b91c1c;

    border: 1px solid #dc2626;
}

.account-danger-button:hover,
.account-danger-button:focus {
    color: #fff;

    background: #dc2626;
}


/* ==========================================================
   Account Modal
========================================================== */

.account-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.account-modal.open {
    display: flex;
}

.account-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .82);
}

.account-modal-dialog {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 520px;

    padding: 30px;

    background: #1a1a1a;

    border: 1px solid rgba(248, 113, 113, .24);
    border-radius: 20px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .65);
}

.account-modal-close {
    position: absolute;
    top: 13px;
    right: 13px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin: 0;
    padding: 0;

    color: #64748b;

    background: transparent;

    border: 0;
    border-radius: 50%;

    cursor: pointer;
}

.account-modal-close:hover {
    color: #fff;

    background: rgba(255, 255, 255, .06);
}

.account-modal-danger-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 17px;

    color: #f87171;

    font-size: 22px;

    background: rgba(248, 113, 113, .08);

    border: 1px solid rgba(248, 113, 113, .18);
    border-radius: 50%;
}

.account-modal-dialog h3 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 22px;
    font-weight: 900;
}

.account-modal-dialog > p {
    margin: 0 0 22px;

    color: #94a3b8;

    font-size: 11px;
    line-height: 1.7;
}

.account-modal-actions {
    display: flex;

    justify-content: flex-end;

    gap: 9px;

    margin-top: 20px;
}

.account-modal-actions .button {
    margin: 0;
}

/* ==========================================================
   Account Responsive
========================================================== */

@media only screen and (max-width: 40em) {

    .account-password-panel,
    .guardian-contact-panel {
        padding: 16px;
    }

    .password-requirements li {
        width: 100%;
    }

    .account-setting-row {
        align-items: flex-start;
    }

    .account-setting-icon {
        width: 38px;
        height: 38px;
    }

    .account-setting-content {
        padding-right: 10px;
    }

    .dashboard-switch {
        margin-top: 6px;
    }

    .connected-account-row {
        flex-wrap: wrap;
    }

    .connected-account-content {
        width: calc(100% - 60px);
    }

    .connected-account-row .button {
        width: 100%;

        margin-top: 12px;
    }

    .account-status-grid {
        flex-direction: column;
    }

    .account-session-row,
    .account-danger-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-session-row .button,
    .account-danger-row .button {
        width: 100%;

        margin-top: 17px;
    }

    .account-danger-row > div {
        padding-right: 0;
    }

    .account-modal-dialog {
        padding: 25px 20px;
    }

    .account-modal-actions {
        flex-direction: column-reverse;
    }

    .account-modal-actions .button {
        width: 100%;
    }

}

/* ==========================================================
   Tablet
========================================================== */

@media only screen and (max-width: 64em) {

    .dashboard-sidebar {
        flex-basis: 245px;

        width: 245px;

        padding-right: 16px;
        padding-left: 16px;
    }

    .dashboard-main {
        padding: 35px 28px;
    }

    .dashboard-page-heading h1 {
        font-size: 36px;
    }

    .profile-photo-section {
        align-items: flex-start;
    }

}


/* ==========================================================
   Mobile
========================================================== */

@media only screen and (max-width: 50em) {

    body.dashboard-menu-open {
        overflow: hidden;
    }

    .dashboard-header {
        height: 68px;
    }

    .dashboard-header-inner {
        padding: 0 16px;
    }

    .dashboard-brand-mark {
        width: 40px;
        height: 40px;

        font-size: 13px;
    }

    .dashboard-brand-text strong {
        font-size: 14px;
    }

    .dashboard-menu-toggle {
        display: inline-flex;
    }

    .dashboard-shell {
        min-height: calc(100vh - 68px);
    }

    .dashboard-sidebar {
        position: fixed;
        top: 68px;
        bottom: 0;
        left: 0;
        z-index: 1100;

        width: 285px;
        height: auto;

        transform: translateX(-100%);

        transition: transform .28s ease;
    }

    .dashboard-sidebar.open {
        transform: translateX(0);
    }

    .dashboard-sidebar-close {
        position: absolute;
        top: 12px;
        right: 12px;

        display: inline-flex;

        align-items: center;
        justify-content: center;

        width: 34px;
        height: 34px;

        margin: 0;
        padding: 0;

        color: #94a3b8;

        background: rgba(255, 255, 255, .04);

        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 9px;

        cursor: pointer;
    }

    .dashboard-sidebar-close:hover,
    .dashboard-sidebar-close:focus {
        color: #fff;

        background: rgba(255, 255, 255, .08);

        outline: none;
    }

    .dashboard-overlay.open {
        display: block;
    }

    .dashboard-overlay {
        inset: 68px 0 0;
    }

    .dashboard-main {
        width: 100%;

        padding: 28px 18px 55px;
    }

    .dashboard-page-heading {
        text-align: center;
    }

    .profile-completion {
        max-width: none;

        margin: 25px 0 0;
        padding-top: 22px;

        text-align: left;

        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .dashboard-card {
        padding: 22px;
    }

    .dashboard-card-actions {
        margin-right: -22px;
        margin-bottom: -22px;
        margin-left: -22px;
        padding: 18px 22px;
    }

}


/* ==========================================================
   Small Mobile
========================================================== */

@media only screen and (max-width: 40em) {

    .dashboard-brand-text {
        display: none;
    }

    .dashboard-page-heading h1 {
        font-size: 31px;
    }

    .dashboard-page-heading > .row > .columns > p {
        font-size: 13px;
    }

    .dashboard-card-heading {
        align-items: flex-start;
    }

    .dashboard-card-icon {
        width: 43px;
        height: 43px;

        margin-right: 12px;
    }

    .dashboard-card-heading h2 {
        font-size: 20px;
    }

    .profile-photo-section {
        display: block;

        text-align: center;
    }

    .profile-photo-preview {
        width: 135px;
        height: 135px;

        margin: 0 auto 22px;
    }

    .profile-photo-buttons {
        justify-content: center;
    }

    .dashboard-card-actions {
        display: block;

        text-align: center;
    }

    .form-save-status {
        justify-content: center;

        margin-bottom: 16px;
    }

    .dashboard-action-buttons {
        display: flex;
    }

    .dashboard-action-buttons .button {
        flex: 1 1 50%;
    }

}


/* ==========================================================
   Extra Small Mobile
========================================================== */

@media only screen and (max-width: 25em) {

    .dashboard-main {
        padding-right: 12px;
        padding-left: 12px;
    }

    .dashboard-card {
        padding: 18px;
    }

    .dashboard-card-actions {
        margin-right: -18px;
        margin-bottom: -18px;
        margin-left: -18px;
        padding: 17px 18px;
    }

    .profile-photo-buttons {
        display: block;
    }

    .profile-photo-buttons .button {
        display: block;

        width: 100%;

        margin-bottom: 9px;
    }

    .dashboard-action-buttons {
        display: block;
    }

    .dashboard-action-buttons .button {
        display: block;

        width: 100%;

        margin-bottom: 9px;
    }

}