@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');


html , body {
    scroll-behavior: smooth;
}


:root {
    --pfp-primary-color: #ff0f47;
    --pfp-secondary-color: #ff938a42;
    --pfp-primary-rgba: 0, 120, 255;
    --pfp-primary-shadow: #ff9c4a17;
    --pfp-title-color: #463a6b;
    --pfp-text-color: #8F8FBE;
    --pfp-textLight-color: #ABABCA;
    --gradient-color1: rgb(0 120 255);
    --gradient-color2: rgb(130 189 255);
    --gradient-color3: #A974FF;
    --gradient-common: linear-gradient(90deg, var(--gradient-color1) 2%, var(--gradient-color2) 85%);
    --pfp-white-color: #fff;
    --pfp-success-color: #36B133;
    --pfp-danger-color: #ff0000;
    --pfp-bgOver: #393a3c;
    --pfp-border-radius: 10px;
    --pfp-border-color: #f7f8fb;
    --pfp-border-color: #E2EAF1;
    --transition: all 0.3s;
    --pfp-border-color-rgba: 3, 1, 76;
}



body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.3px;
	color: #778aab;
	font-weight: 400;
	background-color: #f8fafd;
	font-family: 'Outfit', sans-serif;

}
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* -webkit-touch-callout: none; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
	/* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

p {
    line-height: 1.8;
}

span  {
    
}

a {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
    line-height: 1.4;

}

button,
input,
select,
textarea {
	font-family: inherit;

}

img,
svg {
	vertical-align: middle;
}


.hide {
	display: none;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: center;
}

svg path {
	transition: var(--transition);
}

ul {
    margin: 0;
    padding: 0;
	list-style: none;
}

img {
	max-width: 100%;
}


/* header */

.fbd_heading_wrapper {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 20px 0;
}
.fbd_nav_flex {
    display: flex;
    justify-content: space-between;
}
.fbd_logo {
    padding: 15px 0 10px;
}
.fbd_logo img {
    max-width: 212px;
    height: 61px;
    object-fit: contain;
}

.fbd_userimg {
    max-width: 50px;
    min-width: 50px;
    max-height: 50px;
    min-height: 50px;
    overflow: hidden;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    background-size: cover !important;
    background-position: center !important;
}
.fbd_header_controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    max-width: 300px;
    position: relative;
}
.fbd_user_info_wrapper a {
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 50px 1fr;
    padding-right: 30px;
}
.fbd_user_info_box ul {
    padding: 10px;
}
.fbd_user_info_box ul li a {
    padding: 5px 15px;
    display: inline-flex;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    color: #000;
    align-items: center;
    gap: 10px;
}

.fbd_user_info_box {
    max-width: 200px;
    background: #fff;
    position: absolute;
    top: 60px;
    right:0;
    -webkit-transform: translateY(50px);
    -moz-trans-webkit-transform: translateY(50px);
    -ms-trans-webkit-transform: translateY(50px);
    -o-trans-webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    border: none;
    min-width: 11rem;
    padding: 0 0 0 0;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
    box-shadow: 0 0 20px rgba(89, 102, 122, 0.1);
}
.fbd_user_info_wrapper:hover .fbd_user_info_box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-trans-webkit-transform: translateY(0px);
    -ms-trans-webkit-transform: translateY(0px);
    -o-trans-webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.fbd_user_info_wrapper, 
.fbd_user_info_wrapper:hover, 
.fbd_user_info_wrapper .fbd_user_info_box, 
.fbd_user_info_wrapper:hover .fbd_user_info_box {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.fbd_toggle {
    display:none;
}
.fbd_user_info_wrapper .fbd_user_info_details h5 {
    font-size: 14px;
    font-weight: 600;
    color: #241F1B;
}
/* header */

/* Dash */

.fbd_main_Wr {
    margin-top: 100px;
    min-height: 100vh;
}
.fbd_heading h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
.fbd_heading h3 span {
    color: var(--pfp-primary-color);
}
.fbd_heading h4 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
    margin: 5px 0 30px;
}

.fbd_main_inner {
    display: grid;
    grid-gap: 20px;
    margin-bottom: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    padding:20px;
    background: #edebf5;
    border-radius: 6px;
}
.fbd_main_inner .fbd_main_item {
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 18px 30px 0 rgba(177,193,224,.1);

}
.fbd_main_inner .fbd_main_item h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--pfp-title-color);
    margin: 15px 0 0px;
}
.fbd_main_inner .fbd_main_item p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
    color: var(--pfp-title-color);
    
}
.fbd_main_inner .fbd_main_item img {
    width: 100%;
    object-fit: cover;
    min-height: 246px;
    border-radius: 6px;
}

.fbd_footer {
    text-align: center;
}
.fbd_footer p {
    text-align: center;
    color: #000;
    font-size: 16px;

}
/* Dash */


/* Profile */

.fbd_contentWrap {
    margin-top: 50px;
    min-height: 100vh;

}
.fbd_profileLeft {
    padding: 30px;
}
.fbd_cbox {
    border: 1px solid #eeeef9;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 15px 20px 0px rgb(26 28 37 / 2%);
    margin-bottom: 15px;
}
.fbd_profileName {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 8px;
    color: #241F1B;
}
.fbd_profileEmail {
    font-size: 16px;
    margin-bottom: 9px;
    color: #241F1B;
}
.fbd_profileEmail > span {
    color: #241F1B;
    font-weight: 600;
}
.fbd_cHeader {
    border-bottom: 1px solid #eeeef9;
    padding: 27px 29px;
}
.fbd_cHeaderT {
    color: #28262b;
    font-size: 20px;
}
.fbd_profileRight .fbd_cBody {
    padding: 30px 30px 0;
}
.fbd_btn {
    position: relative;
    background: var(--pfp-primary-color);
    box-shadow: 0px 4px 30px 0px #40478D1A;
    max-width: 100%;
    width: 100%;
    height: 55px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--pfp-white-color);
    padding: 0 25px;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0em;
    text-transform: capitalize;
    border: 0;
    z-index: 1;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    overflow: hidden;
    margin: 0;
}

.fbd_btn:hover {
    color: var(--pfp-white-color);
}
.fbd_btn:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.7);
    top: 0;
    height: 100%;
    width: 0%;
    transition: none;
    border-radius: 5px;
}

.fbd_btn:hover::after {
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    -moz-transition: all 0.8s ease-out 0s;
    -ms-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
}

.fbd_profile_footer {
    margin: 15px 0 30px 0;
    max-width: 250px;
}

.fbd_main_input {
    margin-bottom: 20px;
    position: relative;
}
.fbd_main_label {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
    color: #241F1B;
}
.fbd_custom_input {
    width: 100%;
    line-height: 50px;
    padding: 0 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    height: 50px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align: left;
    color: #241F1B;
    border: 1px solid #F0EEF8;
    background: #FBFAFF;
}
.fbd_custom_input:focus {
    border: 1px solid #4169e1;
    outline: none;
} 
.fbd_custom_input::placeholder {
    color: #5f6c91;
}
.fbd_custom_textarea {
    width: 100%;
    line-height: 1.5;
    padding: 10px 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align: left;
    color: #241F1B;
    border: 1px solid #F0EEF8;
    background: #FBFAFF;
    height: 120px;
    resize: none;    
}

/* Profile */


/* Buy Now */

.fbd_header_wrap {
    background-color: var(--pfp-primary-color);
    padding: 60px 20px;
}
.fbd_content_wrap {
    max-width: 1000px;
    align-items: center;
    margin: auto;
    padding: 50px 50px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 8px 250px 0px rgb(0 0 0 / 8%);
    margin-top: -40px;
    margin-bottom: 100px;
}
.fbd_content_wrap .fbd_product_Img img {
   margin-top:15px;
}
.fbd_content_wrap .fbd_product_Img img {
    width: 100%;
    object-fit: cover;
    min-height: 246px;
    border-radius: 6px;
}
.fbd_full_wr {
    text-align: center;
    padding: 0 50px;
}
.fbd_content_wrap form {
    margin-top: 30px;
}

.fbd_headingttl {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--pfp-title-color);
    font-weight: 600;
    margin: 20px 0 10px;
}
.fbd_content_wrap .bu_pricetext {
    color: var(--pfp-title-color);
    font-size: 18px;
}

.fbd_footerWrap {
    position:relative;
    background: #fff;
    padding: 20px;
    text-align: center;
}
.fbd_footertext {
    color: var(--pfp-text-color);
    font-size: 14px;
}
.pfp-back-head {
    margin-bottom: 15px;
}
.pfp-back-head .pfp-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: var(--pfp-primary-color);
    border: 1px solid #E1E6FF;
    margin-right: 12px;
}
.pfp-back-head .pfp-back-btn svg {
    margin-left: 2px;
    margin-top: 5px;
}
.pfp-back-head .pfp-back-btn svg ,
.pfp-back-head .pfp-back-btn svg path {
    fill: #fff ;
}
.fbd_goTo_home {
    padding: 15px 0;
    /*border-top: 1px solid #eeeef9;*/
    /*border-bottom: 1px solid #eeeef9;*/
    /*text-align:center;*/
}
.fbd_goTo_borderNone {
    border: none;
}

.fbd_border {
    border: 1px solid #eeeef9;
}
.fbd_goTo_home a {
    color: #4169e1;
    
}
.fbd_modal_footer {
    margin-top: 15px;
    max-width: 200px;
}

/* Buy Now */


/* NotiFication Css Start */
.pfp_notification_wrapper {
	position: fixed;
	top: 30px;
	right: 15px;
	max-width: 315px;
	width: 100%;
	z-index: 9999;
}

.pfp_comman_noti {
	background-color: #fff;
	padding: 20px;
	border-radius: 25px;
}

.pfp_inner {
	display: grid;
	grid-template-columns: 50px 215px;
	gap: 10px;
}

.pfp_close {
	position: absolute;
	top: 10px;
	right: 10px;
}

.noti_content h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 2px;
	padding: 0;
	color: green;
}

.pfp_notication_error .noti_content h3 {
	color: red;
}

.noti_content p {
	font-size: 12px;
	font-weight: 400;
	margin: 0;
	padding: 0;
	color: #000;
}

/* NotiFication Css End */

/* notFound Css  */
.pfp_notFound_item {
    background: #edebf5;
    padding: 100px 30px;
    border-radius: 12px;
    text-align: center;
}
.pfp_notFound_item img {
    width: 80px;
}
.pfp_notFound_item h3 {
    font-size: 22px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 30px;
    color: #28262b;
}
/* notFound Css End */

#login_model .btn-close img {
    display: none;
}
#signin_model .btn-close img {
    display: none;
}

@media screen and (max-width: 767px) {
    .fbd_profileEmail {
       font-size: 14px;
    }
    .fbd_profileLeft {
        padding: 20px;
    }

    .fbd_full_wr {
        padding: 0;
    }
    .fbd_headingttl {
        font-size: 18px;
    }
    .fbd_content_wrap {
        padding: 20px;
        margin: 15px;
        
    }
    .fbd_main_inner {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 15px;
    }
    .fbd_main_Wr {
        margin-top: 60px;
    }
    .fbd_heading h3 {
        font-size: 18px;
    }
    
    .fbd_heading h4 {
        font-size: 18px;
        margin: 5px 0 20px;
    }
    .fbd_main_inner .fbd_main_item h4 {
        font-size: 18px;
        margin: 10px 0 0px;
    }
    .fbd_main_inner .fbd_main_item p {
        font-size: 14px;
    }
    .fbd_cHeaderT {
        font-size: 18px;
    }
}

@media screen and (max-width: 500px) { 
    .fbd_logo img {
        max-width: 150px;
        height: 40px;
        object-fit: contain;
    }
}

