.account-management{
	--item-gap:2rem;

	width: 100vw;
	position: relative;
	left: 50%;
	margin: 0 -50vw;
	background-color: #fff;

	a.btn,
	button{white-space: nowrap; margin:0;}

	section{
		padding: var(--section-padding-top) 0 var(--section-padding-bottom);
	}
	p:not(:last-child){
		margin-bottom: 1em;
	}

	hr{
		width: 40%;
		color: rgba(150, 150, 150, 0.15);
	}

	.wrapper{
		width:100%;
	}
	
	.dashboard{
		display: flex;
		flex-direction: column;
		gap:calc( var(--item-gap) * 2);
	}

	.account-management-heading{
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
		position: sticky;
		top: 0;
		z-index: 999;
		backdrop-filter: blur(10px);
		background-color: rgba(255, 255, 255, 0.9);
		border-bottom: 1px solid rgba(150, 150, 150, 0.2);

		.navigation-widget.dropdown{
			position: relative;
			.menu-page-title{
				padding: 0;
			}
		}
	}

	.navigation-widget h2{
		font-size: var(--font-size-lg);
		font-weight: normal;
	}

	i.circle-icon{
			
		background-color: #e8ebfc; /* Circle background color */
		color: #173ed3; /* Icon color */
		padding: 15px; /* Adjust this to change the size of the circle */
		border-radius: 50%; /* Makes the box a perfect circle */
		font-size: 24px; /* Icon size */
		width: 50px; /* Force equal width */
		height: 50px; /* Force equal height */
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;

	}
	
	.affiliate-code-info{
		--num-columns:2;
		--column-gap:var(--item-gap);

		@media only screen and (max-width:767px) {
			--num-columns:1;
		}

		gap:var(--column-gap);
		margin-bottom: var(--section-padding);
		flex-wrap: wrap;
		
		& > div{
			display: flex;
			flex-direction: column;
			justify-content: space-between;
		}

		div.referral_link,
		div.coupon_code{
			border-top: 1px solid rgba(150, 150, 150, 0.2);
			padding:var(--item-gap) 0;
			gap: 1em;

			& > div{
				flex:1;
			}
		}

		div.qr_code .flex-column{
			gap:1em;
			max-width: 320px;
			margin: 0 auto 1em;
			text-align: center;

			.qr-code-image img{
				border: 1px solid rgba(150, 150, 150, 0.2);
				padding:10px;
			}
		}
		div.important_dates{
			display: flex;
			flex-direction: column;
			justify-content: center;
		}
		
		.btn{
			white-space: nowrap;
		}

		& > div{
			
			width: calc((100% / var(--num-columns)) - (calc(var(--num-columns) - 1) * var(--column-gap) / var(--num-columns)));

			border: 1px solid rgba(0, 0, 0, 0.1);
			border-radius: 5px;
			padding: var(--item-gap);

			input{
				width:100%;
				background-color: rgba(0, 0, 0, 0.023);
				border: 1px solid rgba(150, 150, 150, 0.2); 
				padding:8px 12px;
				-webkit-user-select: all;
				user-select: all; 
				font-size: var(--font-size-md);
			}
		}

		.tip{
			background-color: rgba(0, 0, 0, 0.023);
			border-radius:5px; 
			display: flex;
			gap:1em;
			padding:0.5em;
		}
	}

	.reporting {
	

		h6:has(+ .grid){
			margin:var(--item-gap) 0 calc(-1 * var(--item-gap) / 2);
			
		}
		.grid {
			padding:0;
			box-sizing: border-box;
			display: block;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			margin:var(--item-gap) 0;
			gap:var(--item-gap);
		}


		.grid > div {
			flex: 1;

			position: relative;
			/* border: 1px solid #cdcdcd; */
			background-color:  rgba(0, 0, 0, 0.023);
			border: 1px solid rgba(0, 0, 0, 0.1);

			border-radius: 5px;
			overflow: hidden;
			text-align: center;
			text-transform: uppercase;
			font-size: 1.5rem;
		
			display: flex;
			flex-direction: column;
			gap:1em;
			padding:2em 1em;
			align-items: center;
			min-width: 150px;

			p{
				margin:0; line-height: 1em;			
			}
			em{
				font-size: 1.5rem;
				font-style: normal;
				vertical-align: middle;
				line-height: 1em;
			}

			.heading{
				background: #333;
				color: #fff;
				padding: 16px;
				display: block;
				font-size: 18px;
				margin:-1em -1em 0;			
			}

			.item-count{

				max-width: 100%;
				white-space: nowrap;
				font-size: 7rem;
				font-weight: 400;

				em{
					display: block;
				}
			}
			.item-stat{
				text-transform: capitalize;
			}

			ol{
				text-align: left;
			}
		}


		.grid a{
			display: inline-block;
			font-weight: bold;
		}
		.grid a em{
			/* font-size: 0.9em; */
			font-weight: normal;
		}

		.dataTable td:empty:after{
			content:"-";
		}

		.heading h4{
			margin-top: 0;
			padding:20px;
		}
		.heading form{
			float: right;
			margin: 10px 10px;
			font-size: 1.15em;
			color:#fff;

		}

		header input[type="text"].daterange{
			display: inline-block;
			width: 12em;
			font-weight: 400;
			font-size: 1.5em;
			text-align: center;
			padding: 6px 2px;
			line-height: 1em;
			box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.5);
			background: #fff;
		}
	
	}

	table {
		max-width: 100%;
		width: 100%;
		border-collapse: collapse;
		margin-bottom: 1rem;
		border: 1px solid rgba(0, 0, 0, 0.1);
	}
	th, td {
		padding: 0.75rem;
		/* border: 1px solid #dee2e6; */
	}
	tr:nth-child(odd) td{
		box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
	}

	thead th {
		background-color: #fff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		text-align: left;
	}

	table *,
	.dataTables_wrapper *{
		font-family: "proxima-nova", sans-serif;
		font-size: 14px;
	}
	.dataTables_header{
		margin-bottom:var(--item-gap);
		gap: 2rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		.toolbar{flex:1;}
		.dt-buttons:is(:empty){
			display: none;
		}
		.dt-buttons{
			display: flex;
			gap:1rem;
			button{
				margin:0;
			}

		}
		
	}

	fieldset{
		margin: calc(var(--item-gap) * 2) 0;
		legend{
			font-size: var(--font-size-lg);
			border-bottom: 1px solid rgba(0, 0, 0, 0.1);
			display: block;
			width: 100%;
			margin-bottom: var(--item-gap);
		}
		
		label{
			display: block;
		}
		textarea,
		input{
			width: 100%;
		}
		
		textarea.tinymce{
			visibility: hidden;
		}

		span.field{
			gap:var(--item-gap) ;
			display: flex;
			align-items: center;
		}
		div.flex{
			flex-wrap: wrap;
			gap:var(--item-gap);
			& > p,
			& > div{
				flex:1;
			}
			&.three-column > p{
				min-width: calc(100% / 3 - (var(--item-gap) * 2 / 3));
				margin-bottom: 0;
			}
		}
	}

	

}

.view-order{
    text-overflow: ellipsis;
    font-size: 100%;
    font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;


	h3{
		margin: 0 0 25px;
		font-size: 22px;
		font-weight: 400;
		line-height: 1;
	}


    ul.specs{
        margin: 0;
    }

    table{
    	border-collapse: collapse;
		border: 1px solid rgba(0, 0, 0, 0.1);
		tbody{
			border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		}

		th{
			background-color:  rgba(0, 0, 0, 0.023);
			border: 1px solid rgba(0, 0, 0, 0.1);
		}
        th,td{
            padding: 10px;
			border-right: 1px solid rgba(0, 0, 0, 0.1);
            /* border-right: 1px solid #cdcdcd;
            border-bottom: 1px solid #cdcdcd; */
        }
		tbody.totals td{
			border-right: 1px solid rgba(0, 0, 0, 0.1);
		}
    }

	&.printable div.clear{
		clear: both;
	}
	&.printable table {
		width: 100%;
		margin: 1em 0;
		border-top: 1px solid #cdcdcd;
		border-left: 1px solid #cdcdcd;

	}
	&.printable  table th{
		padding: 10px;
		text-align: left;
		border-right: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;
	}
	&.printable  table td{
		padding: 10px;
		border: none;
		border-right: 1px solid #cdcdcd;
		border-bottom: 1px solid #cdcdcd;

	}
	&.printable table.totals{
		border-top: none;
	}
	&.printable .totals p {
		text-align: right;
		padding: 0 11px;
		font-size: 0.95em;
		margin-bottom: 0.5em;
	}

	&.printable .totals span span,
	&.printable .totals p.total span {
		display: inline-block;
		width: 100px;
		text-align: right;
	}

	&.printable .totals p.total {
		font-weight: bold;
		padding: 0;
	}

	&.printable .totals p.total span {
		font-size: 1.1em;
	}

	&.printable .vcard {
		width: 200px;
		float: left;
		margin-right: 15px;
	}

	&.printable .vcard .category {
		margin: 0;
	}

	&.printable textarea{
		height: auto;
	}
}

.wwwuser form p input[type="text"],
.wwwuser form  p input[type="password"],
.wwwuser form  p textarea{margin-bottom:0}

.wwwuser form label.checkbox{display: inline-block !important;}
.wwwuser form input[readonly],
.wwwuser form input.readonly{
	background: #fcfcfc;
	border: 1px solid #e1e1e1;
	box-shadow: none;
	color: #777;
	line-height: 1rem;
	font-weight: bold;
	font-style: italic;
	pointer-events: none;
}

.wwwuser .profile-image label {
    display: inline;
}

.wwwuser .profile-image img {
    width: 100%;
    border: 1px solid #cdcdcd;
    background: #f6f6f6;
}

.wwwuser .profile-image .photo i {
color: #e0e0e0;
font-size: 150px;
text-align: center;
width: 100%;
height: 100%;
border: 1px solid #cdcdcd;
background: #f6f6f6;
vertical-align: middle;
}

.wwwuser .profile-image .photo {
    border: 1px solid #cdcdcd;
    display: block;
    background: #fff;
    box-sizing: border-box;
    position: relative;
    padding: 4px;
    height:175px;
    width:175px;
}

.wwwuser .profile-image .photo .preview {
    width: 100%;
    height: 100%;
    background-size: cover;
    display: block;
    background-position: center center;
}

.wwwuser .profile-image input {
    width: 100%;
    display: none;
}

.wwwuser .profile-image .photo:hover:before {
    background: rgba(0, 0, 0, 0.35) !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
}

.wwwuser .profile-image .photo:after {
content: "\f055";
font-family: 'FontAwesome';
position: absolute;
bottom: 10px;
right: 10px;
color: #999;
background: #ffffff;
border-radius: 50%;
padding: 0 2px;
line-height: 24px;
text-align: center;
font-size: 24px;
vertical-align: middle;
}

.wwwuser .profile-image .photo:hover:after {
    color: #fff;
    background: #000;
}

.wwwuser .footer{
	padding:10px;
	text-align: right;
}

.wwwuser .ui-tabs.localized-input-tabs {
    margin: 0;
    font-family: inherit;
    font-size: 1rem;
    border:none;
    padding:0;
}

.wwwuser .ui-tabs.localized-input-tabs .ui-tabs-panel {
    padding: 10px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    background: #fcfcfc;
}

.wwwuser .ui-tabs.localized-input-tabs .ui-tabs-nav {
    border-radius: 3px 3px 0 0;
	border-bottom: none;
	background:none;
	border:none;
}

.wwwuser .ui-tabs.localized-input-tabs .ui-tabs-nav li {
margin: 0 1px -1px;
background: #ccc;
list-style: none;
float: left;
position: relative;
top: 0;
padding: 0;
white-space: nowrap;
height: auto;
min-width: initial;
line-height: 1.1em;
font-size: inherit;
border-radius: 3px 3px 0 0;
font-weight: normal;
}

.wwwuser .ui-tabs.localized-input-tabs .ui-tabs-nav li.ui-state-active{
	border: 1px solid #c5c5c5;
	background: #fcfcfc;

	font-weight: normal;
	color: #333;
	border-bottom: none;
}
.wwwuser .ui-tabs.localized-input-tabs .ui-tabs-nav li.ui-state-active a{
	color:#333;
}
.wwwuser .ui-tabs.localized-input-tabs .ui-tabs-nav .ui-tabs-anchor{
	padding: .25em 1em;
	color:#666;
}

.wwwuser .ui-tabs {
	padding: 0;
	border: none;
}
.wwwuser .ui-tabs .ui-widget-header{
	background: transparent;
	border: none;
	padding: 0 ;
	border-radius: 0;
}

.wwwuser .ui-tabs  .ui-tabs-panel{
	padding: 1em;
	border: 1px solid #cdcdcd;
}
.wwwuser .ui-tabs .ui-tabs-nav li.ui-tabs-active{
	background: #fff;
	border-color: #cdcdcd;
	a{
		color:#333;

	}
}
	

.wwwuser .account-management-heading{
text-align: center;
display: table;
table-layout: fixed;
width: 100%;
border-bottom: 1px solid #ddd;
margin-bottom: 2rem;
padding-bottom: 1rem;
}

.wwwuser .account-management-heading > *{
	display: table-cell;
	vertical-align: middle;
	width:100%;
	margin:0;
	padding:0;
}
.wwwuser .account-management-heading >:first-child,
.wwwuser .account-management-heading >:last-child{
	text-align: left;
	width:20%;
	white-space: nowrap;

}
.wwwuser .account-management-heading >:last-child{
	text-align: right;
}
.wwwuser .account-management-heading h2{
	font-weight: normal;
}
.wwwuser .account-management-heading h2 strong{
	font-weight: bold;
}
.wwwuser .account-management-heading i{
	vertical-align: middle;
}
.wwwuser .account-management-heading a.btn{
	margin:0;
}

.wwwuser .dashboard{
	display: flex; 
	flex-wrap: wrap;
	gap:var(--item-gap);
}

.wwwuser .dashboard .profile{ min-width: 25%; border-radius: 4px;  vertical-align: top; text-align: center;  display: inline-block; display: inline-block; background: #f2f2f2; border:1px solid #ddd; }
.wwwuser .dashboard .profile h3{margin:0}
.wwwuser .dashboard .profile a{ max-width: 100%; overflow: hidden; text-overflow: ellipsis; display: inline-block; color:#333;}

.wwwuser .dashboard .profile .profile-details,
.wwwuser .dashboard .profile .profile-social{
	padding:0 1rem 1rem;
}
.wwwuser .dashboard .profile-social a{
	margin: 0;
	padding: 0;
	line-height: 1.25rem;
	
	vertical-align: middle;
	display: block;
}
.wwwuser .dashboard .profile .social-links{
	margin-top:1rem;
}
.wwwuser .dashboard .profile .social-links span{display: none;}
.wwwuser .dashboard .profile .social-links a{

	padding:0 5px;
	display: inline-block;
}
.wwwuser .dashboard .profile .profile-details + .profile-social{
	padding-top:0;
}

.wwwuser .dashboard .profile .profile-details .p-address{
	display: inline-block;
}
.wwwuser .dashboard .profile a.btn{display: inline-block; width:100%; margin-top:1em;}

.wwwuser .dashboard .dashboard-content{
	vertical-align: top;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap:var(--item-gap);
}

.wwwuser .dashboard .u-photo{
	overflow: hidden;
	border: 1px solid #cdcdcd;
	display: block;
	background: #fff;
	box-sizing: border-box;
	position: relative;
	padding: 4px;
	height: 150px;
	width: 150px;
	margin: 2.5rem auto 1.5rem;
	border-radius: 50%;
	font-size: 18px;
}
.wwwuser .dashboard .u-photo:empty:before{
	position: absolute;
	top: 60%;
	left: 50%;
	box-sizing: border-box;
	font-size: 10em;
	text-align: center;
	vertical-align: middle;
	font-family: FontAwesome;
	color: #dbdbdb;
	content: "\f007";
	display: block;
	transform: translate(-50%,-50%);
}


.wwwuser .dashboard .u-photo img{position: absolute; top:0; left:0; width:100%;  font-size: 6em; height: auto; vertical-align: middle; text-align: center; }


.wwwuser .dashboard .h-card{width: 100%; padding: 0; margin-bottom: 10px;}
.wwwuser .dashboard .social-links{display: block;}

.wwwuser .dashboard .goals{ 	margin:1em 0; padding:0; list-style: none; clear: both;}
.wwwuser .dashboard .goals li:after{content:""; clear:both; display:block;}
.wwwuser .dashboard .goals li{border-radius: 10px; background:  rgba(205, 205, 205, 0.2); padding:10px; margin-bottom: 1em;}
.wwwuser .dashboard .goals strong{font-size: 1.25em;}
.wwwuser .dashboard .goals .date{font-size:0.85em;}
.wwwuser .dashboard .goals .date,
.wwwuser .dashboard .goals .subtitle{float:right}
.wwwuser .dashboard .goals .percentage{
	display: block;
	background: #fff;
}
.wwwuser .dashboard .goals .percentage span{
	background: #333;
	height: 1.5em;
	display: block;
	position: relative;
	margin: 0.5em 0 1.5em;
}
.wwwuser .dashboard .goals .percentage span:after{
font-family: "FontAwesome";
content: "\f0d8";
display: block;
font-size: 1.25em;
height: 10px;
width: 10px;
position: absolute;
bottom: -12px;
right: -5px;
}

.wwwuser .dashboard .welcome-block{
	display: flex;
	border-radius: 4px;
	border: 1px solid #ddd;
	flex: 1;
	flex-wrap: wrap;


	
	& > div{
		padding: 2rem;
		min-width: 200px;
		min-height: 240px;
		flex:1;
	}
	& > div:first-child{
		min-width: 60%;
	}

	.contact-info{
		background: #f6f6f8;
	}
	.contact-info ul{
		list-style: none;
		padding:0;
		margin:0;
	}

}


.wwwuser .dashboard .quick-links{
	.item-list-grid{
		margin:0;
	}
}
.wwwuser .flex{
	gap:2rem;
}

.wwwuser .verify-account{
	text-align: center;
	max-width: 720px;
	margin: 1em auto;
	gap:1em;
	display: flex;
	flex-direction: column;
	border: 1px solid #cdcdcd;
	border-radius: 5px;
	padding: 3em;

	*{
		margin:0;
	}
} */