
/*******************************************************************************************************************
                                              INDEX  PAGE
*******************************************************************************************************************/

/*
*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}


body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f8f5f6;

    color:#333;

}
*/
.people-page{

    width:100%;

    max-width:1200px;

    margin:0 auto;

    padding:35px 20px 60px;

}


/* =========================================================
   PAGE HEADER
========================================================= */

.people-header{

    margin-bottom:30px;

}


.people-header h1{

    font-family:Georgia, "Times New Roman", serif;

    color:#6B1F3A;

    font-size:30px;

    margin-bottom:7px;

}


.people-header p{

    color:#888;

    font-size:14px;

    line-height:1.5;

}


/* =========================================================
   USERS GRID

   DESKTOP = 3 PER ROW
   Similar to Bootstrap col-md-4
========================================================= */

.users-grid{

    display:grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:25px;

}


/* =========================================================
   USER CARD
========================================================= */

.user-card{

    background:#fff;

    border-radius:17px;

    overflow:hidden;

    box-shadow:
        0 5px 25px rgba(0,0,0,.07);

    transition:.25s;

}


.user-card:hover{

    transform:translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.10);

}


/* =========================================================
   IMAGE AREA
========================================================= */

.profile-image-area{

    width:100%;

    height:340px;

    position:relative;

    overflow:hidden;

    background:#eee;

    cursor:pointer;

}


.profile-image-area img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.4s;
}


.user-card:hover
.profile-image-area img{

    transform:scale(1.02);

}


/* =========================================================
   IMAGE COUNT
========================================================= */

.image-count{

    position:absolute;

    top:12px;

    right:12px;

    background:rgba(0,0,0,.65);

    color:#fff;

    padding:6px 10px;

    border-radius:20px;

    font-size:12px;

    font-weight:bold;

    backdrop-filter:blur(5px);

}


.image-count-icon{

    margin-right:4px;

}


/* =========================================================
   ONLINE INDICATOR - OPTIONAL
========================================================= */

.online-dot{

    position:absolute;

    left:14px;

    top:14px;

    width:11px;

    height:11px;

    border-radius:50%;

    background:#35b96b;

    border:2px solid #fff;

}


/* =========================================================
   USER INFORMATION
========================================================= */

.user-information{

    padding:18px;

}


.user-name{

    font-family:Georgia, "Times New Roman", serif;

    color:#222;

    font-size:21px;

    font-weight:bold;

    margin-bottom:7px;

}


.user-location{

    color:#777;

    font-size:13px;

    margin-bottom:15px;

}


.user-location span{

    margin-right:3px;

}


.user-bio-line{

    color:#888;

    font-size:12px;

    margin-bottom:17px;

}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.user-actions{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:8px;

}


.action-btn{

    height:42px;

    border-radius:22px;

    border:1px solid #ddd;

    background:#fff;

    color:#555;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:bold;

    cursor:pointer;

    transition:.2s;

}


.action-btn:hover{

    border-color:#6B1F3A;

    color:#6B1F3A;

}


.like-btn{

    color:#6B1F3A;

}


.like-btn.liked{

    background:#6B1F3A;

    color:#fff;

    border-color:#6B1F3A;

}


.message-btn{

    background:#6B1F3A;

    color:#fff;

    border-color:#6B1F3A;

}


.message-btn:hover{

    background:#55182e;

    color:#fff;

}


.view-profile-btn{

    grid-column:1 / -1;

    background:#f5edf0;

    color:#6B1F3A;

    border-color:#f5edf0;

}


.view-profile-btn:hover{

    background:#ead8df;

}


/* =========================================================
   EMPTY RESULT
========================================================= */

.no-users{

    background:#fff;

    border-radius:15px;

    padding:50px 20px;

    text-align:center;

    color:#888;

}


/* =========================================================
   FULLSCREEN IMAGE VIEWER
========================================================= */

.gallery-viewer{

    display:none;

    position:fixed;

    z-index:99999;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.96);

    align-items:center;

    justify-content:center;

}


.gallery-viewer.show{

    display:flex;

}


/* =========================================================
   VIEWER IMAGE
========================================================= */

.gallery-image-container{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

/*    touch-action:pan-y;*/
    touch-action:none;
	user-select:none;

    -webkit-user-select:none;
}


.gallery-viewer-image{

    max-width:94%;

    max-height:88%;

    width:auto;

    height:auto;

    object-fit:contain;

    user-select:none;

    -webkit-user-drag:none;

    transition:.2s;

}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.gallery-close{

    position:absolute;

    top:20px;

    right:25px;

    z-index:5;

    width:44px;

    height:44px;

    border:0;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:25px;

    cursor:pointer;

}


.gallery-close:hover{

    background:rgba(255,255,255,.22);

}


/* =========================================================
   NEXT / PREVIOUS
========================================================= */

.gallery-navigation{

    position:absolute;

    top:50%;

    left:0;

    right:0;

    transform:translateY(-50%);

    display:flex;

    justify-content:space-between;

    padding:0 20px;

    pointer-events:none;

}

.checks{
	position: absolute;
	left: 0;
	right: 0;
	top: 48vh;
/*	color: red;*/
/*	background: blue;*/
	z-index: 9999;
	display: flex;
	justify-content:space-between;
}
.checks button{
/*	display: block;*/
}
@media(max-width:1200px){
	.checks{
		display: none;
	}
}
.gallery-nav-btn{

    pointer-events:auto;

    width:48px;

    height:48px;

    border:0;

    border-radius:50%;

    background:rgba(255,255,255,.13);

    color:#fff;

    font-size:25px;

    cursor:pointer;

}


.gallery-nav-btn:hover{

    background:rgba(255,255,255,.25);

}


/* =========================================================
   IMAGE POSITION / COUNT
========================================================= */

.gallery-counter{

    position:absolute;

/*    top:23px;*/
    top:7px;

    left:50%;

    transform:translateX(-50%);

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:7px 14px;

    border-radius:20px;

    font-size:13px;

    font-weight:bold;
    z-index: 9999;
}


/* =========================================================
   VIEWER USER NAME
========================================================= */

.gallery-user-name{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    background:rgba(0,0,0,.55);

    color:#fff;

    padding:9px 17px;

    border-radius:20px;

    font-size:13px;

    white-space:nowrap;

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

    .users-grid{

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:18px;

    }


    .profile-image-area{

        height:320px;

    }

}


/* =========================================================
   MOBILE

   ONE USER PER ROW
========================================================= */

@media(max-width:600px){

    .people-page{

        padding:25px 12px 50px;

    }


    .people-header h1{

        font-size:26px;

    }


    .users-grid{

        grid-template-columns:1fr;

        gap:18px;

    }


    .user-card{

        border-radius:15px;

    }


    .profile-image-area{

        height:420px;

    }


    .user-information{

        padding:16px;

    }


    .user-name{

        font-size:20px;

    }


    .gallery-viewer-image{

        max-width:100%;

        max-height:85%;

    }


    .gallery-navigation{

        display:none;

    }


    .gallery-close{

        top:15px;

        right:15px;

    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media(max-width:380px){

    .profile-image-area{

        height:370px;

    }

}
/*******************************************************************************************************************
                                   END OF INDEX PAGE
*******************************************************************************************************************/


/*******************************************************************************************************************
                                   REGISTER  PAGE
*******************************************************************************************************************/

/* =========================================================
   MAIN PAGE
========================================================= */

.signup-page{

    width:100%;

    min-height:100vh;
    min-height:100dvh;

    display:flex;
}


/* =========================================================
   LEFT BRANDING SIDE
========================================================= */

.brand-side{

    width:50%;

    min-height:100vh;

/*    background:#e91e63*/
    background:#6B1F3A;

    color:#fff;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:50px;

    overflow:hidden;
}


/* Decorative circles */

.brand-side::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-180px;
    left:-180px;
}


.brand-side::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-250px;
    right:-200px;
}


/* =========================================================
   BRAND CONTENT
========================================================= */

.brand-content{

    width:100%;

    max-width:500px;

    position:relative;

    z-index:2;
}


/* Logo / Website name */

.brand-name{

    font-family:Georgia, "Times New Roman", serif;

    font-size:45px;

    line-height:1.15;

    font-weight:bold;

    margin-bottom:20px;
}


.brand-name span{

    display:block;

    font-size:18px;

    font-family:Arial, Helvetica, sans-serif;

    font-weight:normal;

    letter-spacing:1px;

    margin-top:10px;

    opacity:.9;
}


/* Main description */

.brand-description{

    font-size:17px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    max-width:450px;

    margin-bottom:35px;
}


/* Quote */

.brand-quote{

    border-left:3px solid rgba(255,255,255,.65);

    padding-left:18px;

    font-family:Georgia, "Times New Roman", serif;

    font-size:17px;

    line-height:1.6;

    font-style:italic;

    color:rgba(255,255,255,.95);

    margin-bottom:40px;
}


/* =========================================================
   BRAND LINKS
========================================================= */

.brand-links{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;
}


.brand-links a{

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    padding-bottom:3px;

    border-bottom:1px solid transparent;

    transition:.25s;
}


.brand-links a:hover{

    border-bottom-color:#fff;
}


.brand-links .divider{

    width:4px;
    height:4px;

    border-radius:50%;

    background:rgba(255,255,255,.6);
}


/* =========================================================
   RIGHT FORM SIDE
========================================================= */

.form-side{

    width:50%;

    min-height:100vh;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    overflow-y:auto;

    padding:45px 40px;
}


.form-container{

    width:100%;

    max-width:600px;
}


/* =========================================================
   MOBILE BRAND HEADER
========================================================= */

.mobile-brand{

    display:none;
}


/* =========================================================
   FORM TOP
========================================================= */

.form-top{

    margin-bottom:30px;
}


.form-top h2{

    font-family:Georgia, "Times New Roman", serif;

    font-size:28px;

    color:#222;

    margin-bottom:8px;
}


.form-top p{

    color:#888;

    font-size:14px;

    line-height:1.6;
}


/* =========================================================
   PROGRESS
========================================================= */

.progress-area{

    margin-bottom:30px;
}


.progress-steps{

    display:flex;

    justify-content:space-between;

    position:relative;
}


.progress-line{

    position:absolute;

    left:9%;
    right:9%;

    top:18px;

    height:3px;

    background:#eee;

    z-index:0;
}


.progress-line-active{

    position:absolute;

    left:9%;

    top:18px;

    width:0%;

    height:3px;

    background:#bB1F3A;

    z-index:1;

    transition:.35s ease;
}


.step{

    width:33.33%;

    text-align:center;

    position:relative;

    z-index:2;
}


.step-circle{

    width:38px;
    height:38px;

    border-radius:50%;

    margin:auto;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#eee;

    color:#888;

    font-size:13px;

    font-weight:bold;

    transition:.3s;
}


.step.active .step-circle,
.step.completed .step-circle{

    background:#bB1F3A;

    color:#fff;
}


.step-title{

    margin-top:7px;

    font-size:11px;

    color:#999;
}


.step.active .step-title{

    color:#bB1F3A;

    font-weight:bold;
}


/* =========================================================
   SECTIONS
========================================================= */

.form-section{

    display:none;

    animation:fadeIn .3s ease;
}


.form-section.active{

    display:block;
}

	/* ===================== PASSWORD FIELD ================================ */ 
	.password-wrapper{ position:relative; width:100%; } 
	.password-wrapper input{ width:100%; padding-right:48px !important; } 
	.password-toggle{ position:absolute; right:5px; top:50%; transform:translateY(-50%); width:40px; height:40px; border:0; background:transparent; color:#777; cursor:pointer; font-size:17px; display:flex; align-items:center; justify-content:center; border-radius:50%; } 
	.password-toggle:hover{ background:#f5edf0; color:#6B1F3A; }

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateX(12px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }

}


.section-heading{

    margin-bottom:22px;
}


.section-heading h3{

    font-family:Georgia, "Times New Roman", serif;

    font-size:22px;

    color:#222;

    margin-bottom:6px;
}


.section-heading p{

    font-size:13px;

    color:#999;

    line-height:1.5;
}


/* =========================================================
   FORM GRID
========================================================= */

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;
}


.form-group{

    width:100%;
}


.form-group.full{

    grid-column:1 / -1;
}


/* =========================================================
   LABEL
========================================================= */

.form-group label{

    display:block;

    font-size:12px;

    font-weight:bold;

    color:#444;

    margin-bottom:7px;
}


.required{

    color:#bB1F3A;
}


/* =========================================================
   INPUT / SELECT
========================================================= */

.form-group input,
.form-group select{

    width:100%;

    height:48px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 14px;

    font-family:inherit;

    font-size:13px;

    color:#333;

    background:#fff;

    outline:none;

    transition:.25s;
}


.form-group input::placeholder{

    color:#aaa;
}


.form-group input:focus,
.form-group select:focus{

    border-color:#bB1F3A;

    box-shadow:0 0 0 3px rgba(233,30,99,.08);
}


/* =========================================================
   PROFILE IMAGE
========================================================= */

.profile-upload{

    border:2px dashed #eadde2;

    border-radius:14px;

    padding:25px;

    background:#fffafd;

    text-align:center;
}


.profile-upload input[type="file"]{

    display:none;
}


.upload-label{

    cursor:pointer;

    display:flex;

    flex-direction:column;

    align-items:center;
}


.upload-icon{

    width:55px;
    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#ffeaf2;

    color:#bB1F3A;

    font-size:25px;

    margin-bottom:10px;
}


.upload-title{

    font-size:13px;

    font-weight:bold;

    color:#444;
}


.upload-subtitle{

    font-size:11px;

    color:#999;

    margin-top:5px;
}


.image-preview{

    display:none;

    width:90px;
    height:90px;

    margin:15px auto 0;

    border-radius:50%;

    overflow:hidden;

    border:3px solid #fff;

    box-shadow:0 4px 15px rgba(0,0,0,.12);
}


.image-preview img{

    width:100%;
    height:100%;

    object-fit:cover;
}


/* =========================================================
   BUTTONS
========================================================= */

.form-navigation{

    display:flex;

    justify-content:space-between;

    gap:12px;

    margin-top:28px;

    padding-top:22px;

    border-top:1px solid #eee;
}


.nav-btn{

    min-width:120px;

    height:46px;

    border:0;

    border-radius:24px;

    font-family:inherit;

    font-size:13px;

    font-weight:bold;

    cursor:pointer;

    transition:.25s;
}


.previous-btn{

    background:#f2f0f1;

    color:#555;
}


.previous-btn:hover{

    background:#e7e4e5;
}


.next-btn,
.submit-btn{

    background:#bB1F3A;

    color:#fff;

    margin-left:auto;

    padding:0 25px;

    box-shadow:0 5px 15px rgba(233,30,99,.18);
}


.next-btn:hover,
.submit-btn:hover{

    background:#d81759;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:850px){

    .signup-page{

        display:block;

        background:#fff;
    }


    /* Brand becomes top section */

    .brand-side{

        width:100%;

        min-height:auto;

        padding:35px 25px;

        display:block;
    }


    .brand-content{

        max-width:none;
    }


    .brand-name{

        font-size:32px;

        margin-bottom:12px;
    }


    .brand-name span{

        font-size:14px;

        margin-top:6px;
    }


    .brand-description{

        font-size:14px;

        line-height:1.6;

        margin-bottom:20px;

        max-width:650px;
    }


    .brand-quote{

        display:none;
    }


    .brand-links{

        gap:15px;
    }


    .brand-links a{

        font-size:12px;
    }


    /* Form */

    .form-side{

        width:100%;

        min-height:auto;

        padding:30px 20px 45px;

        overflow:visible;
    }


    .form-container{

        max-width:650px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:600px){

    .brand-side{

        padding:28px 18px;
    }


    .brand-name{

        font-size:28px;
    }


    .form-side{

        padding:25px 15px 40px;
    }


    .form-grid{

        grid-template-columns:1fr;

        gap:16px;
    }


    .form-group.full{

        grid-column:auto;
    }


    .form-top h2{

        font-size:24px;
    }


    .section-heading h3{

        font-size:20px;
    }


    .step-circle{

        width:35px;
        height:35px;
    }


    .progress-line,
    .progress-line-active{

        top:17px;
    }


    .step-title{

        font-size:9px;
    }


    .nav-btn{

        min-width:0;

        flex:1;
    }

}
/*******************************************************************************************************************
                                  END OF REGISTER PAGE
*******************************************************************************************************************/


/*******************************************************************************************************************
                                  START SIGN IN PAGE
*******************************************************************************************************************/



/* =========================================================
   RESET
========================================================= */

/*
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html,
body{
    width:100%;
    min-height:100%;
}


body{

    font-family:Arial, Helvetica, sans-serif;

    background:#fff;

    color:#333;
}
*/


/* =========================================================
   MAIN PAGE
========================================================= */

.signin-page{

    width:100%;

    min-height:100vh;
    min-height:100dvh;

    display:flex;
}


/* =========================================================
   LEFT BRANDING SIDE
========================================================= */

.brand-side{

    width:50%;

    min-height:100vh;

    background:#6B1F3A;

    color:#fff;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:50px;

    overflow:hidden;
}


/* Decorative circles */

.brand-side::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-180px;
    left:-180px;
}


.brand-side::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-250px;
    right:-200px;
}


/* =========================================================
   BRAND CONTENT
========================================================= */

.brand-content{

    width:100%;

    max-width:500px;

    position:relative;

    z-index:2;
}


.brand-name{

    font-family:Georgia, "Times New Roman", serif;

    font-size:45px;

    line-height:1.15;

    font-weight:bold;

    margin-bottom:20px;
}


.brand-tagline{

    display:block;

    font-family:Arial, Helvetica, sans-serif;

    font-size:17px;

    font-weight:normal;

    letter-spacing:.5px;

    margin-top:10px;

    color:rgba(255,255,255,.88);
}


.brand-description{

    font-size:17px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    max-width:450px;

    margin-bottom:35px;
}


.brand-quote{

    border-left:3px solid rgba(255,255,255,.65);

    padding-left:18px;

    font-family:Georgia, "Times New Roman", serif;

    font-size:17px;

    line-height:1.6;

    font-style:italic;

    color:rgba(255,255,255,.95);

    margin-bottom:40px;
}


/* =========================================================
   BRAND LINKS
========================================================= */

.brand-links{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;
}


.brand-links a{

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    padding-bottom:3px;

    border-bottom:1px solid transparent;

    transition:.25s;
}


.brand-links a:hover{

    border-bottom-color:#fff;
}


.brand-links .divider{

    width:4px;
    height:4px;

    border-radius:50%;

    background:rgba(255,255,255,.6);
}


/* =========================================================
   RIGHT FORM SIDE
========================================================= */

.form-side{

    width:50%;

    min-height:100vh;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:45px 40px;
}


.form-container{

    width:100%;

    max-width:430px;
}


/* =========================================================
   FORM HEADER
========================================================= */

.form-header{

    text-align:left;

    margin-bottom:30px;
}


.form-header .heart{

    width:55px;
    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#f5e8ed;

    color:#6B1F3A;

    font-size:25px;

    margin-bottom:20px;
}


.form-header h2{

    font-family:Georgia, "Times New Roman", serif;

    font-size:30px;

    color:#222;

    margin-bottom:8px;
}


.form-header p{

    color:#888;

    font-size:14px;

    line-height:1.6;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group{

    width:100%;

    margin-bottom:20px;
}


.form-group label{

    display:block;

    font-size:13px;

    font-weight:bold;

    color:#444;

    margin-bottom:8px;
}


.required{

    color:#6B1F3A;
}


/* =========================================================
   INPUT
========================================================= */

.form-group input{

    width:100%;

    height:52px;

    border:1px solid #ddd;

    border-radius:11px;

    padding:0 15px;

    font-family:inherit;

    font-size:14px;

    color:#333;

    background:#fff;

    outline:none;

    transition:.25s;
}


.form-group input::placeholder{

    color:#aaa;
}


.form-group input:focus{

    border-color:#6B1F3A;

    box-shadow:
        0 0 0 3px rgba(107,31,58,.09);
}


/* =========================================================
   PASSWORD FIELD
========================================================= */

.password-wrapper{

    position:relative;

    width:100%;
}


.password-wrapper input{

    padding-right:50px;
}


.password-toggle{

    position:absolute;

    right:5px;

    top:50%;

    transform:translateY(-50%);

    width:42px;
    height:42px;

    border:0;

    background:transparent;

    color:#777;

    cursor:pointer;

    font-size:17px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;
}


.password-toggle:hover{

    background:#f5edf0;

    color:#6B1F3A;
}


/* =========================================================
   FORGOT PASSWORD
========================================================= */

.forgot-password{

    text-align:right;

    margin-top:-8px;

    margin-bottom:24px;
}


.forgot-password a{

    color:#6B1F3A;

    text-decoration:none;

    font-size:13px;

    font-weight:600;
}


.forgot-password a:hover{

    text-decoration:underline;
}


/* =========================================================
   SIGN IN BUTTON
========================================================= */

.signin-button{

    width:100%;

    height:52px;

    border:0;

    border-radius:27px;

    background:#6B1F3A;

    color:#fff;

    font-family:inherit;

    font-size:14px;

    font-weight:bold;

    cursor:pointer;

    transition:.25s;

    box-shadow:
        0 7px 18px rgba(107,31,58,.20);
}


.signin-button:hover{

    background:#55182e;

    transform:translateY(-1px);
}


/* =========================================================
   SIGN UP LINK
========================================================= */

.signup-link{

    text-align:center;

    margin-top:25px;

    color:#888;

    font-size:13px;
}


.signup-link a{

    color:#6B1F3A;

    text-decoration:none;

    font-weight:bold;

    margin-left:4px;
}


.signup-link a:hover{

    text-decoration:underline;
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.form-note{

    text-align:center;

    color:#aaa;

    font-size:11px;

    line-height:1.6;

    margin-top:35px;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:850px){

    .signin-page{

        display:block;

        background:#fff;
    }


    .brand-side{

        width:100%;

        min-height:auto;

        padding:35px 25px;

        display:block;
    }


    .brand-content{

        max-width:none;
    }


    .brand-name{

        font-size:32px;

        margin-bottom:12px;
    }


    .brand-tagline{

        font-size:14px;

        margin-top:6px;
    }


    .brand-description{

        font-size:14px;

        line-height:1.6;

        margin-bottom:20px;

        max-width:650px;
    }


    .brand-quote{

        display:none;
    }


    .brand-links{

        gap:15px;
    }


    .brand-links a{

        font-size:12px;
    }


    .form-side{

        width:100%;

        min-height:auto;

        padding:40px 20px 50px;

        align-items:flex-start;
    }


    .form-container{

        max-width:550px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:500px){

    .brand-side{

        padding:28px 18px;
    }


    .brand-name{

        font-size:28px;
    }


    .form-side{

        padding:35px 18px 45px;
    }


    .form-header h2{

        font-size:26px;
    }


    .form-header .heart{

        width:50px;
        height:50px;

        font-size:22px;
    }

}

/************************************************************************************************
                                      VERIFY PAGE START
************************************************************************************************/
.verif{
	 min-height:100vh;

            display:flex;

            align-items:center;

            justify-content:center;

            padding:25px;

            background:#f7f3f5;

            font-family:
                Arial,
                Helvetica,
                sans-serif;

}
  .verification-container{

            width:100%;

            max-width:760px;

            background:#ffffff;

            border-radius:18px;

            overflow:hidden;

            box-shadow:
                0 15px 45px rgba(107,31,58,0.12);

        }


        /* =================================================
           TOP SECTION
        ================================================= */

        .verification-header{

            background:#6B1F3A;

            padding:38px 25px 35px;

            text-align:center;

            color:#ffffff;

        }


        .verification-icon{

            width:70px;

            height:70px;

            margin:0 auto 18px;

            border-radius:50%;

            display:flex;

            align-items:center;

            justify-content:center;

            background:rgba(255,255,255,0.15);

            font-size:32px;

        }


        .verification-header h1{

            font-size:25px;

            margin-bottom:8px;

            font-weight:700;

        }


        .verification-header p{

            font-size:14px;

            line-height:1.6;

            color:#f5dce6;

        }


        /* =================================================
           FORM AREA
        ================================================= */

        .verification-body{

            padding:35px 30px 40px;

        }


        .verification-body .intro{

            text-align:center;

            color:#666666;

            font-size:14px;

            line-height:1.7;

            margin-bottom:27px;

        }


        .form-group{

            margin-bottom:22px;

        }


        .form-group label{

            display:block;

            margin-bottom:9px;

            font-size:14px;

            font-weight:600;

            color:#333333;

        }


        .code-input{

            width:100%;

            height:58px;

            border:1px solid #dddddd;

            border-radius:10px;

            outline:none;

            text-align:center;

            font-size:25px;

            font-weight:600;

            letter-spacing:8px;

            color:#6B1F3A;

            background:#ffffff;

            transition:
                border-color .2s ease,
                box-shadow .2s ease;

        }


        .code-input:focus{

            border-color:#6B1F3A;

            box-shadow:
                0 0 0 4px rgba(107,31,58,0.09);

        }


        .code-input::placeholder{

            color:#bbbbbb;

            letter-spacing:4px;

            font-size:15px;

            font-weight:normal;

        }


        /* =================================================
           BUTTON
        ================================================= */

        .verify-button{

            width:100%;

            height:54px;

            border:0;

            border-radius:10px;

            background:#6B1F3A;

            color:#ffffff;

            font-size:15px;

            font-weight:600;

            cursor:pointer;

            transition:
                background .2s ease,
                transform .2s ease;

        }


        .verify-button:hover{

            background:#54172d;

            transform:translateY(-1px);

        }


        .verify-button:active{

            transform:translateY(0);

        }


        /* =================================================
           RESEND
        ================================================= */

        .resend-area{

            text-align:center;

            margin-top:25px;

            color:#777777;

            font-size:13px;

            line-height:1.7;

        }


        .resend-area a{

            color:#6B1F3A;

            font-weight:600;

            text-decoration:none;

        }


        .resend-area a:hover{

            text-decoration:underline;

        }


        /* =================================================
           FOOTER
        ================================================= */

        .verification-footer{

            border-top:1px solid #eeeeee;

            background:#faf8f9;

            padding:20px;

            text-align:center;

            color:#999999;

            font-size:12px;

        }


        .verification-footer strong{

            color:#6B1F3A;

        }


        /* =================================================
           MOBILE
        ================================================= */

        @media(max-width:500px){

/*
            body{

                padding:15px;

            }
*/


            .verification-header{

                padding:32px 20px;

            }


            .verification-body{

                padding:30px 22px 35px;

            }


            .verification-header h1{

                font-size:22px;

            }


            .verification-icon{

                width:62px;

                height:62px;

                font-size:28px;

            }


            .code-input{

                height:55px;

                font-size:22px;

            }

        }


/************************************************************************************************
                                      VERIFY PAGE
************************************************************************************************/

/************************************************************************************************
                                      PROFILE PAGE
************************************************************************************************/

.profil_bd{
	 background:#f7f3f5;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color:#333;

    min-height:100vh;
	margin-top: -3em;
}

@media(max-width:900px){
	.profil_bd{
		margin-top: -3.4em;
		margin-left: -15px;
		margin-right: -15px;
	}
}
/* =========================================================
   HEADER
========================================================= */

.page-header{

    background:#6B1F3A;

    color:#fff;

    padding:22px 30px;

}

.header-inner{

    max-width:1150px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

}

.brand{

    font-size:22px;

    font-weight:bold;

}

.brand-sub{

    font-size:12px;

    color:#ead6df;

    margin-top:4px;

}

.back-btn{

    display:inline-flex;

    align-items:center;

    gap:7px;

    color:#fff;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.3);

    padding:9px 15px;

    border-radius:8px;

    font-size:13px;

}

.back-btn:hover{

    background:rgba(255,255,255,.1);

}



/* =========================================================
   MAIN
========================================================= */

.page-container{

    max-width:1150px;

    margin:35px auto;

    padding:0 20px;

}

.page-title{

    margin-bottom:25px;

}

.page-title h1{

    font-size:28px;

    color:#6B1F3A;

    margin-bottom:7px;

}

.page-title p{

    color:#777;

    font-size:14px;

    line-height:1.6;

}



/* =========================================================
   PROFILE SUMMARY
========================================================= */

.profile-card{

    background:#fff;

    border-radius:16px;

    padding:25px;

    box-shadow:
        0 8px 30px rgba(107,31,58,.07);

    margin-bottom:22px;

}

.profile-top{

    display:flex;

    align-items:center;

    gap:25px;

}


/* Clickable profile image */

.profile-photo-area{

    position:relative;

    width:120px;

    height:120px;

    flex-shrink:0;

    cursor:pointer;

}

.profile-photo{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #f3e4ea;

    display:block;

}

.profile-photo-area:hover .profile-photo{

    opacity:.85;

}

.change-photo{

    position:absolute;

    right:2px;

    bottom:4px;

    width:36px;

    height:36px;

    border-radius:50%;

    border:3px solid #fff;

    background:#6B1F3A;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    font-size:15px;

}

.profile-intro h2{

    color:#333;

    font-size:22px;

    margin-bottom:6px;

}

.profile-intro p{

    color:#777;

    font-size:13px;

    line-height:1.6;

}

.profile-status{

    margin-top:10px;

    display:inline-flex;

    align-items:center;

    gap:6px;

    font-size:12px;

    color:#6B1F3A;

    background:#f8eef2;

    padding:6px 10px;

    border-radius:20px;

}

.status-dot{

    width:7px;

    height:7px;

    background:#4caf50;

    border-radius:50%;

}



/* =========================================================
   CARDS
========================================================= */

.edit-card{

    background:#fff;

    border-radius:16px;

    padding:28px;

    margin-bottom:22px;

    box-shadow:
        0 8px 30px rgba(107,31,58,.07);

}

.card-heading{

    margin-bottom:23px;

    padding-bottom:16px;

    border-bottom:1px solid #eee;

}

.card-heading h2{

    font-size:18px;

    color:#6B1F3A;

    margin-bottom:5px;

}

.card-heading p{

    color:#888;



    font-size:13px;

    line-height:1.5;

}



/* =========================================================
   FORM
========================================================= */

.form-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:20px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group.full{

    grid-column:1 / -1;

}

.form-group label{

    font-size:13px;

    font-weight:600;

    color:#444;

    margin-bottom:8px;

}

.required{

    color:#b72c5a;

}

input,
select,
textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:9px;

    padding:13px 14px;

    background:#fff;

    color:#333;

    font-size:14px;

    outline:none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;

}

input,
select{

    height:48px;

}

textarea{

    min-height:130px;

    resize:vertical;

    line-height:1.6;

}

input:focus,
select:focus,
textarea:focus{

    border-color:#6B1F3A;

    box-shadow:
        0 0 0 3px rgba(107,31,58,.08);

}



/* =========================================================
   BUTTONS
========================================================= */

.button-row{

    margin-top:25px;

    display:flex;

    justify-content:flex-end;

    gap:10px;

}

.btn{

    border:0;

    border-radius:9px;

    padding:12px 21px;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

}

.btn-primary{

    background:#6B1F3A;

    color:#fff;

}

.btn-primary:hover{

    background:#54172d;

}



/* =========================================================
   PROFILE IMAGE CHANGE
========================================================= */

.profile-change-input{

    display:none;

}

.profile-change-text{

    margin-top:12px;

    font-size:12px;

    color:#888;

}



/* =========================================================
   UPLOAD BOX
========================================================= */

.upload-box{

    border:2px dashed #dbc2cd;

    border-radius:12px;

    padding:28px;

    text-align:center;

    background:#fcf9fa;

    cursor:pointer;

    transition:.2s ease;

}

.upload-box:hover{

    border-color:#6B1F3A;

    background:#faf4f7;

}

.upload-icon{

    width:52px;

    height:52px;

    margin:0 auto 12px;

    border-radius:50%;

    background:#f1e3e9;

    color:#6B1F3A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:21px;

}

.upload-box strong{

    display:block;

    color:#555;

    font-size:14px;

    margin-bottom:5px;

}

.upload-box span{

    color:#999;

    font-size:12px;

}

.upload-box input{

    display:none;

}



/* =========================================================
   SELECTED IMAGE COUNT
========================================================= */

.selected-count{

    display:none;

    margin-top:15px;

    padding:12px 15px;

    border-radius:9px;

    background:#f8eef2;

    color:#6B1F3A;

    font-size:13px;

    font-weight:600;

}

.selected-count.show{

    display:block;

}



/* =========================================================
   NEW PHOTO PREVIEW
========================================================= */

.new-photo-preview{

    display:grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:12px;

    margin-top:18px;

}

.new-preview-item{

    position:relative;

    height:135px;

    border-radius:10px;

    overflow:hidden;

    background:#eee;

}

.new-preview-item img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.new-preview-label{

    position:absolute;

    bottom:0;

    left:0;

    right:0;

    padding:6px;

    background:rgba(0,0,0,.6);

    color:#fff;

    text-align:center;

    font-size:10px;

}



/* =========================================================
   EXISTING PHOTOS
========================================================= */

.gallery-title{

    margin-top:28px;

    margin-bottom:14px;

    font-size:14px;

    color:#555;

    font-weight:600;

}

.photo-grid{

    display:grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:12px;

}


.photo-item{

    position:relative;

    height:145px;

    border-radius:10px;

    overflow:hidden;

    background:#eee;

}

.photo-item img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.photo-delete{

    position:absolute;

    top:7px;

    right:7px;

    width:30px;

    height:30px;

    border:0;

    border-radius:50%;

    background:rgba(0,0,0,.65);

    color:#fff;

    cursor:pointer;

    font-size:17px;

}

.photo-delete:hover{

    background:#b4234d;

}

.main-photo-label{

    position:absolute;

    left:7px;

    bottom:7px;

    background:#6B1F3A;

    color:#fff;

    padding:5px 8px;

    border-radius:5px;

    font-size:10px;

}



/* =========================================================
   PASSWORD
========================================================= */

.password-note{

    background:#faf5f7;

    border-left:4px solid #6B1F3A;

    padding:12px 14px;

    font-size:12px;

    color:#777;

    line-height:1.6;

    margin-bottom:20px;

}

.password-wrapper{

    position:relative;

}

.password-wrapper input{

    padding-right:48px;

}

.password-toggle{

    position:absolute;

    right:10px;

    top:50%;

    transform:translateY(-50%);

    border:0;

    background:none;

    cursor:pointer;

    color:#6B1F3A;

    font-size:17px;

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:800px){

    .form-grid{

        grid-template-columns:1fr;

    }

    .form-group.full{

        grid-column:auto;

    }

    .photo-grid,
    .new-photo-preview{

        grid-template-columns:
            repeat(3,1fr);

    }

}


@media(max-width:550px){

    .page-header{

        padding:18px 17px;

    }

    .header-inner{

        align-items:flex-start;

    }

    .brand{

        font-size:18px;

    }

    .back-btn{

        padding:8px 11px;

        font-size:11px;

    }

    .page-container{

        padding:0 12px;

        margin:20px auto;

    }

    .page-title h1{

        font-size:23px;

    }

    .profile-card,
    .edit-card{

        padding:20px;

        border-radius:13px;

    }

    .profile-top{

        align-items:flex-start;

    }

    .profile-photo-area,
    .profile-photo{

        width:90px;

        height:90px;

    }

    .change-photo{

        width:30px;

        height:30px;

        font-size:12px;

    }

    .profile-intro h2{

        font-size:18px;

    }

    .photo-grid,
    .new-photo-preview{

        grid-template-columns:
            repeat(2,1fr);

    }

    .photo-item,
    .new-preview-item{

        height:155px;

    }

    .button-row{

        flex-direction:column;

    }

    .btn{

        width:100%;

    }

}

/************************************************************************************************
                                      PROFILE PAGE ends
************************************************************************************************/


/************************************************************************************************
                                      CHAT PAGE BEGINS
************************************************************************************************/

/* =========================
   BASIC RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f3f4;
    color:#333;
}


/* =========================
   CHAT CONTAINER
========================= */

.chat-container{

    width:100%;
    max-width:800px;

    height:100vh;
    height:100dvh;

    margin:auto;

    background:#fff;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    box-shadow:0 0 20px rgba(0,0,0,.08);
}

.like-container{

    width:100%;
    max-width:800px;

/*    height:100vh;*/
/*    height:100dvh;*/

    margin:1em auto;

    background:#fff;

    display:flex;
    flex-direction:column;

/*    overflow:hidden;*/

    box-shadow:0 0 20px rgba(0,0,0,.08);
}


/* =========================
   CHAT HEADER
========================= */

.chat-header{

    height:70px;
    min-height:70px;

    background:#fff;

    border-bottom:1px solid #eee;

    display:flex;
    align-items:center;

    padding:10px 18px;

    z-index:10;
}


.back-button{

    width:38px;
    height:38px;

    border:0;
    background:none;

    font-size:25px;

    cursor:pointer;

    margin-right:8px;

    color:#333;
}


.profile-picture{

    width:45px;
    height:45px;

    border-radius:50%;

    object-fit:cover;

    margin-right:12px;
}


.profile-info{
    flex:1;
}


.profile-name{

    font-size:16px;
    font-weight:bold;

    color:#222;
}


.online-status{

    margin-top:3px;

    font-size:12px;

    color:#27ae60;
}


/* =========================
   MESSAGE AREA
========================= */

.messages{

    flex:1;

    overflow-y:auto;

    overflow-x:hidden;

    padding:20px 18px 25px;

    background:#faf8f9;

    scroll-behavior:auto;
}


/*
   This is important.

   The messages DIV is the element
   that scrolls, NOT the body.
*/

.messages::-webkit-scrollbar{
    width:6px;
}

.messages::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:10px;
}


/* =========================
   DATE
========================= */

.date-divider{

    text-align:center;

    margin:15px 0 20px;

    font-size:11px;

    color:#999;
}


/* =========================
   MESSAGE ROW
========================= */

.message-row{

    display:flex;

    margin-bottom:8px;

    width:100%;
}


/* RECEIVED MESSAGE */

.message-row.received{

    justify-content:flex-start;
}


/* SENT MESSAGE */

.message-row.sent{

    justify-content:flex-end;
}


/* =========================
   MESSAGE BUBBLE
========================= */

.message-bubble{

    max-width:70%;

    padding:10px 13px;

    border-radius:17px;

    font-size:14px;

    line-height:1.5;

    word-wrap:break-word;
}


/* RECEIVED */

.received .message-bubble{

    background:#fff;

    color:#333;

    border:1px solid #eee;

    border-bottom-left-radius:5px;
}


/* SENT */

.sent .message-bubble{

    background:#e91e63;

    color:#fff;

    border-bottom-right-radius:5px;
}


/* =========================
   TIME
========================= */

.message-time{

    font-size:10px;

    margin-top:4px;

    opacity:.65;

    text-align:right;
}


/* =========================
   MESSAGE INPUT AREA
========================= */

.message-form{

    min-height:70px;

    padding:10px 15px;

    background:#fff;

    border-top:1px solid #eee;

    display:flex;

    align-items:flex-end;

    gap:10px;
}


/* TEXTAREA */

.message-input{

    flex:1;

    border:1px solid #ddd;

    border-radius:25px;

    padding:12px 16px;

    outline:none;

    resize:none;

    font-family:inherit;

    font-size:14px;

    max-height:120px;

    min-height:45px;

    line-height:20px;
}


.message-input:focus{

    border-color:#e91e63;
}


/* SEND BUTTON */

.send-button{

    width:45px;
    height:45px;

    flex-shrink:0;

    border:0;

    border-radius:50%;

    background:#e91e63;

    color:white;

    cursor:pointer;

    font-size:19px;

    display:flex;

    align-items:center;

    justify-content:center;
}


.send-button:hover{

    background:#d81758;
}


/* =========================
   MOBILE
========================= */

@media(max-width:600px){

    body{
        background:#fff;
    }

    .chat-container{

        width:100%;

        height:100vh;
        height:100dvh;

        box-shadow:none;
    }

    .chat-header{

        height:62px;
        min-height:62px;

        padding:8px 10px;
    }

    .profile-picture{

        width:40px;
        height:40px;
    }

    .messages{

        padding:15px 10px 20px;
    }

    .message-bubble{

        max-width:80%;

        font-size:14px;
    }

    .message-form{

        padding:8px 10px;

        min-height:62px;

        padding-bottom:max(8px, env(safe-area-inset-bottom));
    }

}


/* =========================
   TYPING INDICATOR
========================= */

.typing{

/*    display:none;*/

    margin-bottom:10px;

    color:#888;

    font-size:12px;
}
.ty{
	padding: 0px 15px;
}

.block-modal{

    display:none;

    position:fixed;

    inset:0;

    z-index:99999;

    background:rgba(0,0,0,.65);

    align-items:center;

    justify-content:center;

    padding:20px;

}


.block-modal.show{

    display:flex;

}


.block-box{

    width:100%;

    max-width:480px;

    background:#fff;

    border-radius:16px;

    padding:25px;

    box-shadow:0 15px 50px rgba(0,0,0,.25);

}


.block-header h3{

    margin:0 0 8px;

}


.block-header p{

    color:#777;

    font-size:14px;

    margin-bottom:20px;

}


.block-reasons{

    display:flex;

    flex-direction:column;

    gap:8px;

}


.block-reason{

    width:100%;

    padding:12px 15px;

    border:1px solid #ddd;

    background:#fff;

    border-radius:8px;

    text-align:left;

    cursor:pointer;

    transition:.2s;

}


.block-reason:hover{

    border-color:#6B1F3A;

}


.block-reason.selected{

    border-color:#6B1F3A;

    background:#f5edf0;

    color:#6B1F3A;

    font-weight:bold;

}


.block-modal-actions{

    display:flex;

    justify-content:flex-end;

    gap:10px;

    margin-top:22px;

}


#confirmBlock:disabled{

    opacity:.5;

    cursor:not-allowed;

}
.msgh{}
.msgh span{
	height: 20px;
	width: 20px;
	background: #260D1A;
	color: #fff;
	text-align: center;
	padding: 2px;
	font-size: 10px;
	position: absolute;
	left: -12px;
	top: -34px;
	border-radius: 50%;
}
/************************************************************************************************
                                     CHAT PAGE ends
************************************************************************************************/

/************************************************************************************************
                                     VIEW USER PROFILE PAGE 
************************************************************************************************/

/*
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#faf7f8;
    color:#333;
}
*/
/* MAIN CONTAINER */

.profile-container{
    width:100%;
    max-width:1150px;
    margin:30px auto;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 8px 35px rgba(0,0,0,0.08);
}

/* PROFILE GALLERY */

.gallery{
    width:100%;
    display:flex;
    background:#111;
    min-height:550px;
}

/* LARGE IMAGE */

.main-photo{
    position:relative;
    flex:1;
    height:550px;
    overflow:hidden;
}

.main-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:opacity .25s ease;
}

/* IMAGE COUNTER */

.image-counter{
    position:absolute;
    top:20px;
    left:20px;
    background:rgba(0,0,0,.55);
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
}

/* NAVIGATION BUTTONS */

.photo-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.85);
    color:#333;
    font-size:24px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5;
}

.photo-btn:hover{
    background:#fff;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

/* THUMBNAILS */

.thumbnails{
    width:125px;
    padding:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
    overflow-y:auto;
    background:#171717;
}

.thumbnail{
    width:95px;
    height:85px;
    border-radius:10px;
    overflow:hidden;
    cursor:pointer;
    opacity:.55;
    border:2px solid transparent;
}

.thumbnail.active{
    opacity:1;
    border-color:#e91e63;
}

.thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* PROFILE INFORMATION */

.profile-content{
    padding:35px 40px 40px;
}

.profile-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.name{
    font-size:32px;
    font-weight:700;
    color:#242424;
}

.age{
    font-weight:400;
    color:#777;
}

.location{
    margin-top:8px;
    color:#777;
    font-size:15px;
}

.location span{
    color:#e91e63;
}

/* ACTION BUTTONS */

.actions{
    display:flex;
    gap:10px;
}

.action-btn{
    border:none;
    padding:12px 20px;
    border-radius:30px;
    cursor:pointer;
    font-size:14px;
}

.message{
    background:#e91e63;
    color:#fff;
}

.like{
    background:#fff0f5;
    color:#e91e63;
}

/* BIO */

.section{
    margin-top:30px;
}

.section-title{
    font-size:19px;
    font-weight:700;
    margin-bottom:12px;
    color:#292929;
}

.bio{
    color:#666;
    line-height:1.8;
    font-size:15px;
    max-width:850px;
}

/* DETAILS */

.details{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:20px;
}

.detail{
    background:#faf7f8;
    border-radius:12px;
    padding:15px;
}

.detail-label{
    color:#999;
    font-size:12px;
    margin-bottom:5px;
}

.detail-value{
    font-size:15px;
    font-weight:600;
    color:#444;
}

/* MOBILE */

@media(max-width:768px){

    body{
/*        background:#000;*/
    }

    .profile-container{
        margin:0;
        border-radius:0;
        box-shadow:none;
        background:#fff;
    }

    .gallery{
        display:block;
        min-height:0;
        background:#000;
    }

    .main-photo{
        width:100%;
        height:100svh;
        max-height:850px;
        min-height:500px;
        background:#000;
    }

    .main-photo img{
        object-fit:cover;
    }

    .thumbnails{
        display:none;
    }

    .photo-btn{
        width:40px;
        height:40px;
        font-size:20px;
        background:rgba(0,0,0,.35);
        color:#fff;
    }

    .prev{
        left:12px;
    }

    .next{
        right:12px;
    }

    .image-counter{
        top:15px;
        left:50%;
        transform:translateX(-50%);
        font-size:12px;
    }

    .profile-content{
        padding:25px 20px 35px;
    }

    .profile-header{
        display:block;
    }

    .name{
        font-size:27px;
    }

    .actions{
        margin-top:20px;
    }

    .action-btn{
        flex:1;
    }

    .details{
        grid-template-columns:repeat(2,1fr);
    }

}

/* SMALL PHONES */

@media(max-width:420px){

    .main-photo{
        height:92svh;
    }

    .details{
        grid-template-columns:1fr 1fr;
    }

}

/************************************************************************************************
                                     VIEW USER PROFILE PAGE ENDS
************************************************************************************************/

/************************************************************************************************
                                     PAYMENT PLAN  PAGE STARTS
************************************************************************************************/
.paymentss-page{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#faf7f8;
    color:#222;
}

.payment-page{
    max-width:1150px;
    margin:0 auto;
    padding:60px 20px 80px;
}

/* HEADER */

.payment-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 45px;
}

.payment-header .small-title{
    color:#c2185b;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.payment-header h1{
    margin:0;
    font-size:38px;
    line-height:1.2;
    color:#222;
}

.payment-header p{
    margin:15px auto 0;
    color:#777;
    font-size:16px;
    line-height:1.7;
}

/* PLANS */

.plans{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    align-items:stretch;
}

/* CARD */

.plan-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    padding:32px 28px;
    position:relative;
    display:flex;
    flex-direction:column;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    transition:.25s ease;
}

.plan-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.09);
}

/* PREMIUM */

.plan-card.recommended{
    border:2px solid #c2185b;
    transform:translateY(-8px);
}

.plan-card.recommended:hover{
    transform:translateY(-13px);
}

.recommended-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#c2185b;
    color:white;
    padding:7px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:bold;
    white-space:nowrap;
}

/* PLAN NAME */

.plan-name{
    text-transform:capitalize;
    font-size:23px;
    font-weight:700;
    margin-bottom:8px;
}

.plan-description{
    color:#888;
    font-size:14px;
    min-height:40px;
}

/* PRICE */

.price{
    margin:25px 0;
}

.price .currency{
    font-size:16px;
    vertical-align:top;
    color:#555;
}

.price .amount{
    font-size:40px;
    font-weight:800;
    color:#222;
}

.price .duration{
    color:#888;
    font-size:14px;
}

/* FEATURES */

.features{
    margin:0 0 30px;
    padding:0;
    list-style:none;
    flex:1;
}

.features li{
    padding:10px 0;
    color:#555;
    font-size:14px;
    border-bottom:1px solid #f3f3f3;
}

.features li::before{
    content:"✓";
    color:#c2185b;
    font-weight:bold;
    margin-right:10px;
}

/* BUTTON */

.plan-button{
    width:100%;
    border:none;
    border-radius:10px;
    padding:14px 20px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    background:#f4e9ee;
    color:#c2185b;
    transition:.2s ease;
}

.plan-button:hover{
    background:#c2185b;
    color:#fff;
}

.recommended .plan-button{
    background:#c2185b;
    color:#fff;
}

.recommended .plan-button:hover{
    background:#a9154d;
}

/* TRUST */

.payment-note{
    text-align:center;
    margin-top:45px;
    color:#777;
    font-size:14px;
}

.payment-note strong{
    color:#333;
}

/* RESPONSIVE */

@media(max-width:850px){

    .plans{
        grid-template-columns:1fr;
        max-width:500px;
        margin:auto;
    }

    .plan-card.recommended{
        transform:none;
    }

    .plan-card.recommended:hover{
        transform:translateY(-5px);
    }

    .payment-header h1{
        font-size:30px;
    }

}

/************************************************************************************************
                                     PAYMENT PLAN  PAGE ends
************************************************************************************************/


/************************************************************************************************
                                     REPORT MODAL  PAGE STARTS
************************************************************************************************/
.report-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:999999;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.report-modal.show{
    display:flex;
}

.report-modal-box{
    width:100%;
    max-width:520px;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:14px;
    padding:25px;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.3);
}

.report-modal-box h3{
    margin:0 0 8px;
}

.report-description{
    color:#666;
    font-size:14px;
    margin-bottom:20px;
}

.report-close{
    position:absolute;
    right:15px;
    top:12px;
    border:0;
    background:none;
    font-size:28px;
    cursor:pointer;
    color:#777;
}

.report-reason{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:12px;
    margin-bottom:8px;
    border:1px solid #eee;
    border-radius:8px;
    cursor:pointer;
    transition:.2s;
}

.report-reason:hover{
    background:#f8f8f8;
}

.report-reason input{
    margin-top:3px;
}

.submit-report-btn{
    width:100%;
    border:0;
    padding:12px;
    margin-top:15px;
    border-radius:8px;
    background:#dc3545;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.submit-report-btn:disabled{
    opacity:.6;
    cursor:not-allowed;
}

.report-message{
    margin-top:15px;
    text-align:center;
    font-size:14px;
}
/************************************************************************************************
                                    REPORT MODAL PAGE ends
************************************************************************************************/

