.dz-gradient-shape{
    &::after{
        content: "";
        position: absolute;
        background: var(--bg-gradient);
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
    }
}

.profile-area{
    .author-bx{
        text-align: center;
        padding: 30px 0;
        
        .dz-media{
            height: 105px;
            width: 105px;
            min-width: 105px;
            position: relative;
            box-sizing: border-box;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 25px;
        
            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
        .name{
            margin: 0 0 10px;
            font-size: 28px;
        }
        p{
            margin: 0;
            font-size: 16px;
        }
    }
    // Content Info
    .widget_getintuch{
        .svg-primary{
            fill: var(--primary);
            [fill]{
                fill: var(--primary);
            }
        }
        ul{
            padding: 0;
            margin: 0;
            li{
                display: flex;
                width: 100%;
                margin-bottom: 25px;
                
                .icon-bx{
                    height: 54px;
                    min-width: 54px;
                    text-align: center;
                    border-radius: 50%;
                    background-color: #fff;
                    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
                    margin-right: 15px;
                    
                    svg{
                        height: 54px;
                    }
                }
                .sub-title{
                    font-size: 12px;
                    margin: 0 0 10px;
                    font-weight: 500;
                }
                .title{
                    margin: 0;
                }
            }
        }
    }
}

// Edit Profile ===
.edit-profile{
    .profile-image{
		margin: 20px 0;
		text-align: center;
	}
	.avatar-upload{
		.avatar-preview{
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            position: relative;
            border-radius: 50%;	
            border: 2px solid var(--primary);
			& > #imagePreview{
                display: inline-block;
                width: 135px;
                height: 135px;
				background-size: cover;
				background-repeat: no-repeat;
				background-position: center;
				border-radius: 50%;	
			}
		}
		.change-btn{
			position: absolute;
            bottom: 0;
            right: 0;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--theme-text-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            border: 4px solid var(--body-bg);
            i{
                line-height: 1;
                display: block;
            }
		}
	}
}

// Profile > Coupons Screen ===
.dz-offer-coupon{
	display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 12px 15px;
	margin-bottom: 15px;
    border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	.offer{
		width: 50px;
		height: 40px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-right: 15px;
		padding-right: 15px;
		border-right: 2px dashed var(--border-color);
	}
	h6{
		margin-bottom: 0;
		font-weight: 500;
	}
	p{
		margin-bottom: 0;
		color: var(--text-light);
        font-size: 14px;
	}
}