/*
Theme Name: Poorex Child
Author: AVF Trust 
Version: 2.2 Enterprise Production
Template: poorex
*/

/* ============================
GLOBAL FORM CONTAINER
============================ */
.uwp-login, .uwp-registration, .uwp-forgot, .uwp-account {
    background:#f1f1f1;
    margin:auto;
    max-width:100%;
    padding:20px;
}
.uwp-registration-form>div {
    background:#fff;
    padding:2px;
    border-radius:4px;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.uwp-registration-form input,
.uwp-registration-form select { width:100%; }
.select2-container { width:100% !important; }
.nice-select.uwp_textfield.aui-select2 { display:none !important; }

/* ============================
USERSWP REGISTRATION GRID
============================ */
@media(min-width:768px){
    .uwp-registration-form { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
    .uwp-registration-form input[type="submit"],
    #profile_photo_row { grid-column:span 2; width:100%; }
}
@media(max-width:767px){ .uwp-registration-form{ display:block; } }

/* ============================
MEMBER / DIRECTORY CARDS
============================ */
.avf-member-card p, .avf-dir-card p{margin-bottom:0px}
.avf-member-card, .avf-dir-card {
    position: relative;
    border-radius: 15px;
    padding: 20px;
    text-align:center;
    background: linear-gradient(180deg,#fff,#f8fbfd);
    border: 1px solid #e0e6ed; /* subtle separation */
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    overflow:hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Hover lift + shadow */
.avf-member-card:hover, .avf-dir-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.50); background: linear-gradient(45deg,#fff,#f1f1f1);
}

/* ============================
AVATAR WITH CIRCULAR ANIMATED GLOW
============================ */

/* Hover effect on avatar glow */
.avf-member-card:hover .avf-member-avatar::before, 
.avf-dir-card:hover .avf-member-avatar::before {
    opacity:1;
    transform: scale(1.1);
}

/* Avatar zoom effect on hover */
.avf-member-card:hover img, .avf-dir-card:hover img {
    transform: scale(1.05);
    border-color:#2c7be5;
    box-shadow:0 0 18px rgba(44,123,229,0.8);
}

/* ============================
CARD TEXT
============================ */
.avf-member-card h4, .avf-member-name {
    font-size:16px; font-weight:600; color:#162b3c; margin-bottom:0px; margin-top:15px;
}
.avf-member-role { font-size:12px; color:#7c8b96; margin-bottom:10px; }
.avf-member-id, .avf-id { font-size:14px; font-weight:700; color:#0a4b78; letter-spacing:0.5px; }

/* ============================
LEADER RIBBON
============================ */
.avf-member-card.leader_district::before,
.avf-member-card.leader_state::before,
.avf-member-card.leader_national::before {
    position:absolute; top:14px; left:-6px; color:#fff;
    padding:6px 15px; font-size:12px; font-weight:600; border-radius:0 6px 6px 0;
}
.avf-member-card.leader_district::before { content:"District Leader"; background:#3498db; }
.avf-member-card.leader_state::before { content:"State Leader"; background:#27ae60; }
.avf-member-card.leader_national::before { content:"National Leader"; background:#e74c3c; }

/* ============================
MEMBER DIRECTORY GRID & SEARCH
============================ */
.avf-directory-wrapper, .avf-member-grid, .avf-directory {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); gap:10px; margin:10px 0;
}
#avfMemberSearch, .avf-directory-filter input, .avf-directory-filter select {
    width:100%; padding:12px; border-radius:10px; border:1px solid #ddd; margin-bottom:20px;
}

/* ============================
RESPONSIVE
============================ */
@media(max-width:1024px){ .avf-member-card{ padding:15px 15px 10px 15px; } }
@media(max-width:768px){
    .uwp-registration-form{ display:block; }
    .avf-directory{ grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); }
    .avf-member-card, .avf-dir-card { padding:12px 10px 8px 10px;}
    .avf-member-card img, .avf-dir-card img { width:75px; height:75px; }
    .avf-member-name{ font-size:16px; }
    .avf-member-role{ font-size:13px; }
    .avf-member-id{ font-size:14px; }
}
@media(max-width:480px){
    .avf-gov-card, .avf-pvc-card{ width:95%; }
    .avf-id-body{ flex-direction:column; text-align:center; }
    .avf-directory{ grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); }
    .avf-member-card img{ width:65px; height:65px; }
    .avf-member-card{ padding:15px 10px; }
    .avf-member-name{ font-size:15px; }
    .avf-member-role{ font-size:12px; }
    .avf-member-id{ font-size:13px; }
    
}

/* ============================
PRINT STYLE
============================ */
@media print{
    body *{ visibility:hidden; }
    #avfCard, #avfCard *{ visibility:visible; }
    #avfCard{ position:absolute; left:0; top:0; width:100%; }
    .avf-card-actions{ display:none; }
}

/* ============================
ANIMATION KEYFRAMES
============================ */
@keyframes glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ============================
AVATAR ORBIT SWOOSH EFFECT
============================ */

/* Avatar base */
.avf-member-card img,
.avf-dir-card img {
    width:80px;
    height:80px;
    border-radius:50%!important;
    object-fit:cover;
    margin-bottom:20px;
    border:3px solid #f1f4f7;
    position:relative;
    z-index:2;
    transition:all .4s ease;
}

/* Avatar wrapper for animation */
.avf-member-card .avf-avatar-wrap,
.avf-dir-card .avf-avatar-wrap {
    position:relative;
    width:88px;
    height:88px;
    margin:auto;
    border-radius:50%;
}

/* Create swoosh orbit */
.avf-member-card .avf-avatar-wrap::before,
.avf-dir-card .avf-avatar-wrap::before {
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    z-index:1;

    /* Swoosh gradient */
    background: conic-gradient(
        transparent 0deg,
        transparent 220deg,
        #f39c12 260deg,
        #ffcc33 300deg,
        #2c7be5 330deg,
        transparent 360deg
    );

    opacity:0;
    transform:rotate(0deg);
    transition:opacity .3s ease;
}

/* Show swoosh on hover */
.avf-member-card:hover .avf-avatar-wrap::before,
.avf-dir-card:hover .avf-avatar-wrap::before {
    opacity:1;
    animation: avf-swoosh-spin 1.2s linear infinite;
}
/* Avatar hover zoom */
.avf-member-card:hover img,
.avf-dir-card:hover img {
    transform:scale(1.06);
    border-color:#2c7be5;
    box-shadow:0 0 18px rgba(44,123,229,.40);
}

/* Spin animation */
@keyframes avf-swoosh-spin {
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}
/* =====================================================
AVF PREMIUM DIRECTORY UI v1
===================================================== */

/* ---------- GRID ---------- */
.avf-directory{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:10px;
    margin:30px 0;
}

/* ---------- CARD BASE ---------- */
.avf-member-card{
    position:relative;
    display:block;
    padding:20px;
    border-radius:22px;
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.06),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    text-align:center;
    transition:all .35s ease;
    overflow:hidden;
}

/* Soft separation even without hover */
.avf-member-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    pointer-events:none;
    box-shadow:inset 0 0 0 1px rgba(44,123,229,0.05);
}

/* ---------- HOVER LIFT ---------- */
.avf-member-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.15),
        inset 0 0 0 1px rgba(255,255,255,0.6);
}

/* =====================================================
AVATAR – CIRCLE + SWOOSH GLOW
===================================================== */

.avf-avatar-wrap{
    width:100px;
    height:100px;
    margin:0 auto 18px;
    border-radius:50%;
    position:relative;
    display:grid;
    place-items:center;
}

/* Avatar image */
.avf-avatar-wrap img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    z-index:2;
    background:#fff;
    border:4px solid #fff;
    transition:transform .4s ease;
}

/* Outer glow ring */
.avf-avatar-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:conic-gradient(
        #f39c12,
        #ffcc33,
        #2c7be5,
        #9b59b6,
        #f39c12
    );
    opacity:.15;
    filter:blur(8px);
}

/* Swoosh ring */
.avf-avatar-wrap::after{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:50%;
    border:3px solid transparent;
    background:
        linear-gradient(#fff,#fff) padding-box,
        conic-gradient(
            from 0deg,
            transparent 0%,
            #2c7be5 25%,
            #f39c12 45%,
            transparent 60%
        ) border-box;
    opacity:0;
    transition:opacity .4s ease;
}

/* Hover animations */
.avf-member-card:hover .avf-avatar-wrap img{
    transform:scale(1.12);
}

.avf-member-card:hover .avf-avatar-wrap::after{
    opacity:1;
    animation:avf-swoosh 1.2s linear infinite;
}

/* Swoosh animation */
@keyframes avf-swoosh{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}

/* =====================================================
MOBILE
===================================================== */
@media(max-width:768px){
    .avf-avatar-wrap{ width:90px; height:90px; }
    .avf-avatar-wrap img{ width:74px; height:74px; }
}
/* BADGES */
.avf-badge{
    position:absolute;
    right:-4px;
    bottom:-4px;
    width:32px;
    height:32px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:14px;
    font-weight:bold;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
}

.avf-badge.platinum{
    background:linear-gradient(135deg,#f6c343,#ffb100);
}

.avf-badge.leader{
    background:linear-gradient(135deg,#8e44ad,#5e2b97);
}

/* =====================================================
AVF USERWP ULTRA FORM FIX + PREMIUM UX
===================================================== */

/* ================================
REMOVE USERWP FIELD BOXES
================================ */
.uwp-form .form-group,
.uwp-registration-form > div,
.uwp-account .form-group {

    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
}


/* ================================
INPUT ULTRA CLEAN STYLE
================================ */
.uwp-form input,
.uwp-form select,
.uwp-form textarea {

    width:100%;
    padding:12px 14px;

    border:1px solid #dcdfe4;
    border-radius:8px;

    background:#ffffff;
    box-shadow:none;
    transition:all .25s ease;
}


/* ================================
FOCUS STATE (ACCESSIBILITY)
================================ */
.uwp-form input:focus,
.uwp-form select:focus,
.uwp-form textarea:focus {

    border-color:#ff6a00;
    box-shadow:0 0 0 3px rgba(255,106,0,0.15);
    outline:none;
}


/* ================================
ERROR VALIDATION
================================ */
.uwp-form .uwp-error input,
.uwp-form .uwp-error select,
.uwp-form .uwp-error textarea,
.uwp-form input.error,
.uwp-form select.error {

    border-color:#e63946 !important;
    box-shadow:0 0 0 3px rgba(230,57,70,0.15) !important;
}

/* Error label highlight */
.uwp-form .uwp-error label {
    color:#e63946;
}


/* ================================
FIELD SPACING
================================ */
.uwp-form .form-group {
    margin-bottom:18px;
}


/* ================================
SUBMIT + LOGIN BUTTON ROW
================================ */
.uwp-form .uwp-submit,
.uwp-form .uwp-login-link {

    display:inline-block;
    width:48%;
    vertical-align:top;
}

.uwp-form .uwp-submit {
    margin-right:4%;
}


/* ================================
PRIMARY BUTTON
================================ */
.uwp-form input[type="submit"],
.uwp-form button[type="submit"] {

    width:100%;
    padding:14px;
    border-radius:10px;

    border:none;
    background:linear-gradient(135deg,#ff6a00,#ff8533);

    color:#fff;
    font-weight:600;
    cursor:pointer;

    transition:.3s;
}

.uwp-form input[type="submit"]:hover {
    transform:translateY(-1px);
    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}


/* ================================
LOGIN LINK → BUTTON STYLE
================================ */
.uwp-login-link a {

    display:block;
    text-align:center;

    padding:13px;
    border-radius:10px;

    border:2px solid #ff6a00;
    color:#ff6a00;
    font-weight:600;
    text-decoration:none;

    transition:.3s;
}

.uwp-login-link a:hover {
    background:#ff6a00;
    color:#fff;
}


/* ================================
SELECT2 FIX
================================ */
.select2-container {
    width:100% !important;
}

.select2-selection {border-radius:8px !important; border:1px solid #dcdfe4 !important;padding:.45rem 1.125rem!important;}


/* ================================
GRID FORM STABILITY
================================ */
@media(min-width:768px){

    .uwp-registration-form,
    .uwp-account-form {

        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .uwp-registration-form input[type="submit"],
    .uwp-account-form input[type="submit"] {
        grid-column:1 / -1;
    }
}


/* ================================
MOBILE STACK
================================ */
@media(max-width:600px){

    .uwp-form .uwp-submit,
    .uwp-form .uwp-login-link {
        width:100%;
        margin:10px 0;
    }
}


/* ================================
SMOOTH FIELD HOVER
================================ */
.uwp-form input:hover,
.uwp-form select:hover,
.uwp-form textarea:hover {
    border-color:#ffb088;
}


/* ================================
HELP TEXT STYLE
================================ */
.uwp-help-text {
    font-size:12px;
    color:#6b7280;
    margin-top:5px;
}


/* =====================================================
SECTION HEADINGS FULL ROW FIX
===================================================== */

/* Make headings full width */
.uwp-registration-form h3,
.uwp-registration-form .avf-form-section, .uwp-account-form h3{

    grid-column:1 / -1;   /* Full row */
    width:100%;

    font-size:20px!important;
    font-weight:700;
    margin-top:20px;
    margin-bottom:5px;
letter-spacing:1px!important;
    padding-bottom:8px;
    border-bottom:2px solid #ccc;
}

/* =====================================================
FORCE ALL NORMAL FIELDS INTO 2 COLUMN
===================================================== */

@media(min-width:768px){

    .uwp-registration-form{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    /* Force special fields full width */
    .uwp-registration-form input[type="submit"],
    .uwp-registration-form .uwp-login-link,
    .uwp-registration-form .uwp-submit,
    .uwp-registration-form #profile_photo_row,
    .uwp-registration-form .uwp-file-upload{

        grid-column:1 / -1;
    }

}
/* =====================================================
FORCE LABEL VISIBILITY (UserWP Fix)
===================================================== */

.uwp-registration-form label{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative !important;
    font-weight:600;
    font-size:1rem;
    margin-bottom:6px!important;
    
}

/* Remove hidden accessibility labels */
.uwp-registration-form label.visually-hidden,
.uwp-registration-form .screen-reader-text{
    position:relative !important;
    width:auto !important;
    height:auto !important;
    overflow:visible !important;
    clip:auto !important; margin:0 0 6px 0 !important;
	
}


/* ===== FIX: DROPDOWN + FILE HEIGHT ===== */

.uwp-registration-form select,
.select2-container--default .select2-selection--single,
.uwp-registration-form input[type="file"]{
    height:48px !important;
    border-radius:8px;
}

/* Select2 text alignment */
.select2-selection__rendered{
    line-height:46px !important;
}

/* File input padding */
.uwp-registration-form input[type="file"]{
    padding-top:10px;
}
/* ===== FIX: BUTTON ROW ===== */

.uwp-registration-form .uwp-submit,
.uwp-registration-form .uwp-login-link{
    display:inline-block;
    width:48%;
    vertical-align:top;
}

.uwp-registration-form .uwp-submit{
    margin-right:4%;
}

/* Login Button Styling */
.uwp-registration-form .uwp-login-link a{
    display:block;
    text-align:center;
    height:52px;
    line-height:52px;
    border:2px solid #2c7be5;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    color:#2c7be5;
}

.uwp-registration-form .uwp-login-link a:hover{
    background:#2c7be5;
    color:#fff;
}

/* Mobile Stack */
@media(max-width:600px){
    .uwp-registration-form .uwp-submit,
    .uwp-registration-form .uwp-login-link{
        width:100%;
        margin:10px 0;
    }
}

/* =====================================================
MOBILE STACK
===================================================== */

@media(max-width:600px){

    .uwp-registration-form .uwp-submit,
    .uwp-registration-form .uwp-login-link{
        flex-direction:column;
        gap:10px;
    }

    .uwp-registration-form input[type="submit"],
    .uwp-registration-form .uwp-login-link a{
        width:100%;
    }

}


/* ===== Premium Gender Selection ===== */

[data-argument="gender"] .form-check {display: inline-block; margin-right: 10px!important; padding: 0;}
.bsui .form-check {padding-left:0px!important}

/* Hide default radio */
[data-argument="gender"] .form-check-input {display: none;}

/* Gender Button Style */
[data-argument="gender"] .form-check-label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #d5d2dc;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
    background: #fff;
    min-width: 110px;
    text-align: center;
}

/* Hover Effect */
[data-argument="gender"] .form-check-label:hover {border-color: #0d6efd; color: #0d6efd;}

/* Selected State */
[data-argument="gender"] .form-check-input:checked + .form-check-label {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 3px 10px rgba(13,110,253,0.25);
}


/* Force register submit button in single row */
.uwp_register_submit {white-space: nowrap; display: inline-block;}
.pb-120 {padding-bottom: 60px;}
.pt-120 {padding-top: 60px;}
.card-title.text-center.mb-4{display:none!important;}
.select2-container .select2-selection--single {height:auto!important;}/* Convert login link into button */
.uwp-footer-links .uwp-login-link {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #6c757d;
    color: #fff !important;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}


/* ===== Premium Fieldset Heading ===== */

.uwp_input_fieldset {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    padding: 12px 18px;
    margin-top: 30px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f3f7fb, #ffffff);
    border-left: 5px solid #0d6efd;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.5px;
}

/* Optional underline accent */
.uwp_input_fieldset::after {content: ""; display: block; width: 60px; height: 3px; background: #0d6efd;  margin-top: 8px;    border-radius: 2px;}


/* Overriide CSS */
.tp-slider-2__mb {margin-bottom: 0px;}
.tp-slider-2__thumb-text{padding:20px; bottom:0px; right:10%;}
.tp-feature-2__area.pb-90{padding-bottom:30px;}
.tp-about-3__circle-box {position: absolute;top: 160px;right: 20px; z-index: 11;}

/* Contact Card Section */

    .contact-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        border-radius: 10px;
        text-decoration: none;
        color: var(--tp-grey-2);
        font-size: 17px;
        font-weight: 500;
        transition: 0.3s ease;
        margin-bottom: 12px;  background: #333;
    }

    .contact-item:hover {
        background: #555; color: var(--tp-common-orange);
        transform: translateX(4px);
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
    }

     /* Floating Buttons */
    .float-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 1000;
    }

    .float-btn {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: 0.3s ease;
    }

    .float-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    }

    .float-phone { background: #0a66c2; }
    .float-wa { background: #25D366; }
    .float-mail { background: #ff8c00; }





/* ===== AVF Footer Views & Likes – FINAL POLISHED UI ===== */
.avf-stats-pro {
  display: inline-flex;
  align-items: center;
  gap: 40px; /* space between eye + heart */
  padding: 10px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f4f52, #244245);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

/* Improve emoji alignment */
.avf-stats-pro {
  line-height: 1;
  letter-spacing: 0.6px;
}

/* Subtle hover */
.avf-stats-pro:hover {
  transform: translateY(-2px);
  transition: all 0.25s ease;
  background: linear-gradient(135deg, #365f63, #2b4e52);
}

/* Center align footer */
.site-footer .avf-stats-pro,
.footer .avf-stats-pro {
  margin: 0 auto;
}


@media (max-width: 600px) {
  .avf-stats-pro {
    font-size: 13px;
    padding: 8px 20px;
  }
	.tp-breadcrumb-height, .tp-contact-form__space  {
  padding-top: 20px;
		padding-bottom:20px;}
}



.footer-stats {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #344e50;
  border-radius: 30px;
  font-size: 14px;
  color: #f1f6f6;
  gap: 12px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat .icon {
  font-size: 15px;
  line-height: 1;
}

.stat .count {
  font-weight: 600;
}

.likes .icon {
  color: #ff5b5b;
}

.divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.donateBtn{
  color: #2ebc4b;}

.tp-header-2__main-menu > nav > ul > li > a {padding:16px 0px;  }

.tp-slider-2__main-thumb {padding-top:201px!important}

.tp-slider-2__content {
  padding-top: 150px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-2__thumb-text {
    right: 40%;
  }
}
.tp-breadcrumb-height {
  padding-top: 140px;
  padding-bottom:60px;

  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
 background-position: center center;
}

.tp-contact-form__space {
  padding-top: 75px;
  padding-bottom: 75px;
}

.tp-header-2__plr {
  box-shadow: 2px 3.464px 20px 0px rgba(10, 9, 9, 0.04);
  padding: 10px 10px;
  margin-top: 20px;
  background-color: var(--tp-common-white);
}
.tp-header-2__main-menu {
  padding-left: 20px;
}




/* UsersWP – Member Photo Grid */
/* ===== MEMBER GRID ===== */
/* ===== GRID ===== */
.avf-member-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px; text-align:center;
}

/* ===== FULL CARD CLICKABLE ===== */
.avf-member-card {
    position: relative;
    background: rgba(255,255,255,0.80);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 15px 10px 10px 10px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.10);
    transition: all 0.35s ease;
    height: 100%;
    overflow: hidden;
}

.avf-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* ===== AVATAR ===== */
.avf-member-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%!important;
    object-fit: cover;
    border: 3px solid #f2f2f2;
    margin-bottom: 10px;
    transition: 0.3s;
}

.avf-member-card:hover .avf-member-avatar {
    transform: scale(1.08);
}

/* ===== VERIFIED BADGE ===== */
.avf-member-card.verified::after {
    content: "✔";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00b67a;
    color: #fff;
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== NAME ===== */
.avf-member-name a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    margin-bottom: 10px;
}

.avf-member-name a:hover {
    color: #ff6a00;
}

/* ===== ROLE BADGE ===== */
.avf-member-role {
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff; background: linear-gradient(45deg,#ff6a00,#457b9d);
    font-weight: 600;
}

/* ===== ROLE COLORS ===== */
.avf-member-role:contains("Administrator") {
    background: #e63946;
}

.avf-member-role:contains("Editor") {
    background: #457b9d;
}

.avf-member-role:contains("Subscriber") {
    background: linear-gradient(45deg,#ff6a00,#2a9d8f);
}

.avf-member-role:contains("Member") {
    background: #2a9d8f;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .avf-member-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 900px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .avf-member-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 500px;
        gap: 10px;
    }
	.avf-member-name a {font-size:13px;}
}


.uwp-search-form{
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
}

.uwp-search-form select,
.uwp-search-form input{
min-width:200px;
padding:8px;
border-radius:6px;
}

@media(max-width:768px){
.uwp-search-form{
flex-direction:column;
}
}
.avf-badge{
padding:4px 10px;
border-radius:20px;
font-size:12px;
font-weight:600;
color:#fff;
}

.avf-badge.verified{
background:#28a745;
}

.avf-badge.volunteer{
background:#ff9800;
}
.avf-progress-bar{
width:100%;
background:#eee;
border-radius:20px;
overflow:hidden;
}

.avf-progress-fill{
background:#28a745;
color:#fff;
text-align:center;
padding:5px;
font-size:14px;
}



.bsui .form-select{display:none!important;}

.avf-stats{
display:flex;
gap:20px;
margin-bottom:20px;
}

.stat-box{
flex:1;
background:#fff;
padding:20px;
text-align:center;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}


@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-2__logo {
    padding: 0px 0!important;
  }
	.container.container-large {padding:0px;}
	.tp-header-2__plr {margin-top:0px;}
	
	.tp-breadcrumb-height {padding-top:90px;}
	.pt-120 {
  padding-bottom: 80px!important;
}
}

.tp-breadcrumb__list{padding:8px;}


.uwp_page.uwp-profile-header-img {
    
    border-radius: 10px; border:0px!important;
}
.avatar avatar-150.photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.18);
}



.avf-member-card p{font-size:14px;}

.fwrap-gender-Male .form-check-label::before {content: "♂ ";font-size: 16px;}
.fwrap-gender-Female .form-check-label::before {content: "♀ "; font-size: 16px;}
.uwp-footer-links .uwp-login-link:hover { background: #5c636a; color: #fff !important;}
.uwp_register_submit {grid-column: 1 / -1;  width: 100%;}
.uwp-footer-links {margin-top: 10px;}
.bsui .input-group-inside .form-control {padding-left: auto;}
.tp-funfact-2__area.grey-bg.pb-90 {padding-bottom:30px;}
.tp-footer__bg {background-position: center; background-repeat: no-repeat; background-size: cover; padding-top: 100px; padding-bottom: 20px; position: relative; z-index: 2;}

.wp-ulike, .wpulike wpulike-robeen  {text-align: center;}
.wp-ulike-heart .wp_ulike_btn {background: #c40000; border-radius: 50px; padding: 8px 20px; color: #fff;font-weight: 600; transition: 0.3s;}
.wp-ulike-heart .wp_ulike_btn:hover { background: #900000;}
.wp_ulike_counter {font-size: 16px; font-weight: 700;}
.wp_ulike_general_class{border: 1px solid #ccc; padding: 10px 15px;  border-radius: 80px;}

/* more info tab css after - loggedin user */
/* Main Container */
.uwp-profile-extra-div {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 30px auto;
    width: 100%;
  
}

/* Each Row */
.uwp-profile-extra-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s ease;
}

.uwp-profile-extra-wrap:last-child {
    border-bottom: none;
}

/* Hover Effect */
.uwp-profile-extra-wrap:hover {
    background: #f9fbff;
    padding-left: 10px;
    border-radius: 8px;
}

/* Label (Left Side) */
.uwp-profile-extra-key {
    font-weight: 600;
    color: #444;
    width: 30%;
    font-size: 15px;
}

/* Remove colon spacing */
.uwp-profile-extra-sep {
    margin-left: 5px;
    color: #aaa;
}

/* Value (Right Side) */
.uwp-profile-extra-value {
    width: 65%;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

/* Bio Special Styling */
.uwp-profile-bio {
    background: #f4f7ff;
    padding: 12px 15px;
    border-radius: 10px;
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

/* Verified Status Highlight */
.uwp-profile-extra-value:contains("Verified") {
    color: #1ca94c;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .uwp-profile-extra-wrap {flex-direction: column; }
    .uwp-profile-extra-key, .uwp-profile-extra-value {width: 100%; }
    .uwp-profile-extra-key { margin-bottom: 5px; }
    .tp-slider-2__main-thumb {padding-top: 01px !important;}
    .tp-faq-2__space {padding-top: 0px; padding-bottom: 50px;}
    .elementor-195 .elementor-element.elementor-element-94cba0b > .elementor-widget-container {padding: 20px 0px 50px 0px!important;}
    .tp-about-3__main-thumb img:first-child{display: none!important;}
}
@media(max-width:480px){
   .uwp-profile-extra-div {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    margin: 0px;
    width: 100%;
  
}
    .col-xl-2.col-lg-2.col-md-6.mb-45{margin-bottom: 0px!important;}
}