
/* Activity Timeline Line */
.profile-timeline {
    position: relative;
}

.profile-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 2px dashed rgba(120, 130, 140, 0.4);
}

.profile-timeline-item {
    position: relative;
    padding-left: 25px;
}

.profile-timeline-item .avatar-xs {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-content {
        width: 86% !important;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* FGen Avatar Uploader Component */
.avatar-uploader-component .avatar-filepond-wrap {
    width: 140px;
    max-width: 140px;
}

.avatar-uploader-component .filepond--root {
    width: 140px;
    max-width: 140px;
    margin: 0 auto;
}

.avatar-uploader-component .filepond--panel-root {
    background-color: var(--vz-secondary-bg);
    border: 1px dashed var(--vz-border-color);
}

.avatar-uploader-component .filepond--drop-label {
    color: var(--vz-body-color);
    font-size: 12px;
}

.avatar-uploader-component .filepond--label-action {
    color: var(--vz-primary);
    text-decoration: underline;
}

/* Prevent raw file input flash before FilePond initializes */
.avatar-uploader-component input[data-avatar-input].filepond-input-circle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


/* FGen Inline Profile Media Editor */
.profile-media-inline {
    position: relative;
}

.profile-media-inline-avatar {
    display: inline-block;
}

.profile-setting-img > .avatar-uploader-component {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.profile-setting-img .profile-media-inline-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.profile-media-inline-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-media-inline-edit {
    position: absolute;
    z-index: 4;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-media-inline-avatar .profile-media-inline-edit {
    right: 2px;
    bottom: 4px;
    z-index: 4;

    color: #fff;

    background: rgba(3, 13, 28, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.22);

    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}



.profile-media-inline-banner .profile-media-inline-edit {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 4;

    width: 52px;
    height: 52px;
    padding: 0;

    border-radius: 50%;
    color: #fff;
    font-size: 20px;

    background: rgba(3, 13, 28, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.24);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.profile-media-inline-banner .profile-media-inline-edit:hover {
    color: #fff;
    background: rgba(3, 13, 28, 0.76);
    border-color: rgba(255, 255, 255, 0.34);
}

/*
 * Profile media glass treatment.
 * The banner shade is applied to the image itself,
 * so it cannot extend into the profile form below.
 */
.profile-media-inline-banner > img {
    position: relative;
    display: block;
    filter: brightness(0.72);
}

.profile-media-inline-banner .profile-media-inline-edit:hover,
.profile-media-inline-avatar .profile-media-inline-edit:hover {
    color: #fff;
    background: rgba(3, 13, 28, 0.76);
    border-color: rgba(255, 255, 255, 0.38);
}


/*
 * FGENIO_MOBILE_INPUT_NO_AUTO_ZOOM_V1
 *
 * iOS Safari automatically zooms focused form controls
 * when their effective font size is below 16px.
 *
 * Global user-panel mobile contract:
 * text-entry/select fields must remain >= 16px.
 */
@media (max-width: 767.98px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]),
    select,
    textarea,
    .form-control,
    .form-select {
        font-size: 16px !important;
    }
}

