.account-home {
	padding: 0 5px;

	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	button {
		color: var(--text-body);
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-weight: 700;
	}

	h3 {
		font-size: var(--font-size-lg);
	}

	.btn-secondary {
		font-size: var(--font-size);
	}

	.row {
		margin: 0;
	}

	.row,
	.row a {
		text-decoration: none;
	}

	button.btn-default {
		box-shadow: none !important;
	}

	.account-home__primary__user-info p a:hover,
	.account-home__primary__orders__heading a:hover,
	.account-home__menu a:hover {
		text-decoration: underline;
	}
}

.account-home.container {
	@media (min-width: 1200px) {
		max-width: 1400px;
	}
}

.site-content {
	padding-top: 2em;
}

.text-warning {
	color: var(--red);
}


/* Account Sidebar Menu */
.account-home__menu {
	padding: var(--unit);
	height: 100vh;

	li {
		list-style-type: none;
		padding-bottom: var(--unit-sm);
		font-size: var(--font-size-sm);
		line-height: 18px;

		a {
			text-decoration: none;
		}
	}

	ul {
		padding: 0 0 var(--unit-sm);
		margin-bottom: var(--unit-sm);
		border-bottom: 1px solid var(--gray);
	}

	ul:last-child {
		border-bottom: none;
	}

	h5 {
		padding: 7px 0;
		font-weight: 700;
		font-size: var(--font-size);
		color: var(--text-body);
	}
}



/* Account Alerts */
.account-home__primary__alerts {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;

	.account-home__card {
		aspect-ratio: 3/1;
		justify-content: center;
		align-items: center;
		background-repeat: no-repeat;
		background-position: 120% 50%;
		background-size: 50%;
		background-color: var(--light-grey);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	div.account-home__card {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24l0 112c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-112c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
		background-position: 110% 10px;
		background-size: 30%;
		background-repeat: no-repeat;
		color: var(--text-body);
		aspect-ratio: unset;
		justify-content: space-between;
		flex-direction: row;
		height: 100%;
		min-height: 100px;

		strong {
			font-size: var(--font-size);
			font-weight: 700;
		}

		p {
			font-size: var(--font-size-sm);
			line-height: 1.2;
			margin-top: var(--unit);
		}

		svg {
			font-size: var(--font-size-lg);
			vertical-align: text-bottom;
		}

		button {
			background-color: var(--body);
			align-self: baseline;
			margin-left: 10px;
			border: 1px solid var(--dark);
			padding: 8px 16px;
			white-space: nowrap;
			border-radius: 6px;
			text-transform: capitalize;
			color: var(--text-body);

			strong {
				font-size: var(--font-size-sm);

			}

			svg {
				margin-right: 3px;

			}
		}

		button.disabled {
			opacity: 1;
			font-size: var(--font-size-sm);
		}

		.p-l-0 {
			@media (max-width:767px) {
				padding: 0;
			}
		}
	}

}





/* Account User Info */
.account-home__primary__user-info,
.account-home__shipping-info div {
	position: relative;
	border: 1px solid var(--gray);
	border-radius: var(--border-radius);
	padding: var(--unit);
	font-size: var(--font-size);
}

.account-home__primary__user-info h3 {
	font-size: var(--font-size-lg);
	color: var(--text-body);
	font-weight: 700;
	max-width: 85%;
	word-break: break-word;

	@media (max-width: 767px) {
		max-width: 100%;
	}
}

.account-home__primary__user-info .edit-btn,
.account-home__shipping-info .btn {
	position: absolute;
	top: var(--unit);
	right: var(--unit);
	padding: 7px 16px;
	border-radius: 6px;
	background-color: var(--body);
	color: var(--text-body);
	border: 1px solid var(--text-body);
	font-size: var(--font-size-sm);
}

.account-home__primary__user-info button svg,
.account-home__shipping-info button svg {
	font-size: var(--font-size);
	padding-right: 3px;
}

.account-home__primary__icon {
	background-color: var(--light-grey);
	border-radius: 10em;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: var(--unit);
	max-width: 100px;
	max-height: 100px;
	aspect-ratio: 1/1;

	@media (max-width: 992px) {
		display: none;
	}

	@media (min-width: 768px) and (max-width: 1199px) {
		margin-bottom: var(--unit);
	}
}

.account-home__primary__user-info {
	.col-lg-8 {
		@media (max-width: 991px) {
			margin-top: 10px;
		}
	}

	p {
		color: var(--text-body);
		margin: 10px 0;
	}

	.fa-user {
		color: var(--gray);
		font-size: var(--font-size-absurd);
	}

	button {
		@media (max-width:767px) {
			top: auto;
			bottom: var(--unit);
			z-index: 1;
		}
	}
}

.account-home__email {
	max-width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
	align-items: center;

	span {
		text-overflow: ellipsis;
		overflow: hidden;
	}
}

.account-home__primary__library .account-home__card,
.account-home__help-cta .account-home__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.account-home__primary {

	a.resendEmailBtn,
	a.emailSentBtn {
		color: var(--text-body);
		border: none;
		position: relative;
		display: inline-block;
		padding: 0 10px 0;
	}

	a.resendEmailBtn {
		text-decoration: underline !important;
	}

}

.account-home__primary__currency {
	display: flex;
	align-items: center;

	select,
	select:hover,
	select:active,
	select:focus {
		border: none;
		font-weight: 700;
		font-size: var(--font-size);
		width: fit-content;
		padding: 5px;
	}

	.input-group-btn {
		display: inline-block;
		font-weight: 700;
		color: var(--text-body);
		position: relative;
	}
}

.account-home__primary__user-info,
.account-home__shipping-info div,
.panel-default>.panel-heading {
	@media (max-width:767px) {
		padding: var(--unit);
	}
}

.account-home__primary__currency {
	@media (max-width:375px) {
		padding-bottom: 50px;
	}
}

.account-home__primary__membership-status__subscriptions-list li {
	font-size: var(--font-size-sm);
}

@media (max-width: 640px) {
	.account-home__primary__membership-status__subscriptions-list li {
		font-size: var(--font-size-xs);
	}
}


.account-home__primary__membership-status #channels-list .card-deck {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 16px;
}

.account-home__primary__membership-status #channels-list p {
	font-size: var(--font-size-sm);
	gap: 5px;
}

.account-home__primary__membership-status #channels-list .post-currency-label {
	font-size: var(--font-size-lg);
}




/* Library */
.account-home__primary__library .account-home__card h3,
.account-home__help-cta .account-home__card h3 {
	font-size: var(--font-size-lg);
	color: var(--text-body);
}

.account-home__primary__library {
	.account-home__card svg {
		font-size: 100px;
		color: rgba(33, 33, 33, 0.1);
		align-self: end;
		justify-self: end;
	}

	@media (max-width:991px) {
		padding: 0;
		margin-bottom: 30px;
	}
}


.account-home__wishlist,
.account-home__favorites,
.account-home__video-library,
.account-home__ppm-history {}

.account-home__primary__library {
	.account-home__card {
		@media (max-width:767px) {}

		svg {
			@media (max-width:767px) {
				font-size: 100px;
			}
		}
	}
}

@media (max-width:767px) {

	.account-home__wishlist,
	.account-home__favorites {
		margin-bottom: var(--unit-lg);
	}

	.account-home__wishlist,
	.account-home__video-library {}

	.account-home__favorites,
	.account-home__ppm-history {}
}



/* Account PPM Minutes/Membership */
.account-home__card {
	aspect-ratio: 1/1;
	width: 100%;
	color: var(--dark);
	background-color: var(--light-grey);
	border-radius: var(--border-radius);
	overflow: hidden;
	position: relative;
	padding: var(--unit);
	background-repeat: no-repeat;
	background-position: 140% -20%;
	background-size: 70%;
}

.account-home__primary__wallet {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--unit);

	@media (max-width: 1199px) {
		margin-top: 0px;
		grid-template-columns: repeat(1, 1fr);
	}

	@media (max-width: 991px) {
		padding-right: 0;
	}

	@media (max-width: 767px) {
		padding: var(--unit) 0px;
		grid-template-columns: repeat(2, 1fr);
	}

	@media (max-width: 400px) {
		grid-template-columns: repeat(1, 1fr);
	}

	.account-home__card {
		padding: var(--unit);
	}

	span {
		font-size: var(--font-size-sm);
		display: block;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;

		@media (max-width: 400px) {

			font-size: var(--font-size-lg);
		}
	}

	p,
	span {
		z-index: 1;
		position: relative;
	}

	p {
		font-size: calc(var(--font-size-absurd) * .8);
		font-weight: 700;
		line-height: 1;
		margin: 0;

		@media (max-width: 991px) {
			font-size: var(--font-size-xl);
		}

		@media (max-width: 400px) {
			font-size: var(--font-size-absurd);
		}
	}

	p.account-home__primary__ppm-minutes__cancellation {
		font-size: calc(var(--font-size-absurd) * .4);
	}

	.btn,
	.btn:hover,
	.btn:active,
	.btn:focus {
		height: 40px;
		border-radius: 40px;
		font-size: var(--font-size-sm);
		border: none;
		padding: var(--unit) 20px 16px;
		line-height: 1;

		@media (max-width: 400px) {
			padding: 10px 20px 0px;
			font-size: var(--font-size-lg);
		}
	}
}

.account-home__primary__wallet.no-grid {
	grid-template-columns: 1fr !important;
}

.account-home__primary__membership-status {
	div.activated {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23222" fill-opacity="0.1" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
	}

	@media (max-width: 991px) {
		padding: 0;
	}

	@media (min-width: 1200px) {
		padding: 0 0 0 var(--unit-sm);
	}

}

.account-home__primary__ppm-minutes {

	div {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path fill="%23222" fill-opacity="0.1" d="M256 0c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32s32-14.3 32-32l0-29.3C378.8 81.9 448 160.9 448 256c0 106-86 192-192 192S64 362 64 256c0-53.7 22-102.3 57.6-137.1c12.6-12.4 12.8-32.6 .5-45.3S89.5 60.8 76.8 73.1C29.5 119.6 0 184.4 0 256C0 397.4 114.6 512 256 512s256-114.6 256-256S397.4 0 256 0zM193 159c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l80 80c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80z"/></svg>');
	}

	@media (max-width: 991px) {
		padding: 0;
	}

	@media (min-width: 1200px) {
		padding: 0 var(--unit-sm) 0 0;
	}

	@media (min-width: 768px) and (max-width: 1199px) {}

	@media (max-width: 767px) {}

}


.account-home__primary__membership-status__btn-group,
.account-home__primary__ppm-minutes .btn {
	position: absolute;
	bottom: 5%;
	right: 5%;
}

.account-home__primary__membership-status__btn-group {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	background-color: transparent;

	span {
		font-size: var(--font-size-sm);
	}
}






/* Account Orders */
.account-home__primary__orders__heading {
	display: flex;
	justify-content: space-between;
	align-items: center;

	a {
		font-size: var(--font-size-sm);
		text-decoration: none;
		border-right: 1px solid var(--text-body);
		padding: 0 5px;
	}

	a:last-child {
		border-right: none;
		padding-right: 0px;
	}

	@media (max-width: 768px) {
		display: block;
	}

	div {
		@media (max-width: 768px) {
			text-align: right;
		}
	}

	table tr td:first-child {
		@media (max-width: 768px) {
			border-top-left-radius: 6px;
			border-bottom-left-radius: 6px;
		}
	}
}

.account-home__primary__orders table tr,
.account-home__primary__orders__heading {
	background-color: var(--body);
	border-bottom: 1px solid var(--light-grey);
	padding: var(--unit);
}


.account-home__primary__orders {
	table {
		border: none;
		border-collapse: collapse;
		margin: 0;
		padding: 0;
		width: 100%;
		table-layout: fixed;

		th {
			font-size: var(--font-size);
			color: var(--text-body);
			letter-spacing: .1em;
		}

		.fa-circle-chevron-right {
			color: var(--gray);
			font-size: var(--font-size-xxl);
		}

		th,
		td {
			padding: var(--unit);
			text-align: left;
			vertical-align: middle;
			background-color: transparent;
		}

		@media (max-width: 768px) {
			table-layout: unset;
			border: none;
			border-collapse: separate;
			border-spacing: 0 var(--unit);
		}
	}

	table tbody table tr:last-child {
		border: none;
	}

	td:nth-child(1),
	th:nth-child(1) {
		width: 7%;
		text-align: center;
	}

	td:nth-child(4),
	th:nth-child(4) {
		width: 30%;
	}

	td:last-child,
	th:last-child {
		width: 9%;
	}

	@media (max-width: 768px) {
		margin-bottom: var(--unit);
		padding: 0px;
	}
}

.account-home__primary__orders table tbody tr:hover {
	filter: brightness(50%);
}

.account-home__primary__orders table tr,
.account-home__primary__orders__heading {
	@media (max-width: 768px) {
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
	.account-home__primary__orders table tr td:last-child {
		border-top-right-radius: 6px;
		border-bottom-right-radius: 6px;
	}

	.account-home__primary__orders table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.account-home__primary__orders table tr {
		border-radius: 6px;
		margin-bottom: .625em;
	}

	.account-home__primary__orders table td {
		font-weight: 700;
		font-size: var(--font-size);
		padding: var(--unit);
	}

	.account-home__primary__orders table td.text-right {
		text-align: right;
	}

	.account-home__primary__orders table td span {
		font-weight: 400;
		font-size: var(--font-size-sm);
	}

	.account-home__primary__orders table .fa-circle-chevron-right {
		font-size: var(--font-size-xxxl);
	}

	.account-home__primary__orders table [data-label="Ship Method"],
	.account-home__primary__orders table [data-label="Ship Date"],
	.account-home__primary__orders table [data-label="Order Date"],
	.account-home__primary__orders table [data-label="Status"] {
		display: none;
	}

	.account-home__primary__orders table td:last-child {
		border-bottom: 0;
	}

	.account-home__primary__orders td:nth-child(1) {
		width: 10%;
	}
}

/* Payment Method */
.account-home__payment-method__card {
	aspect-ratio: 1.59/1;
	padding: 20px;
	border-radius: var(--border-radius);
	border: 1px solid var(--gray);
	display: block;
	position: relative;
}

.account-home__payment-method {
	h3 {
		font-size: var(--font-size-lg);
		font-weight: 700;
		color: var(--text-body);
		text-transform: uppercase;
		font-style: italic;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.card-identify h3,
	.card-identify svg {
		color: var(--white);
	}

	svg {
		font-size: 36px;
	}

	.account-home__payment-method__card__update {
		justify-self: end;
		align-self: end;
		position: absolute;
		bottom: 20px;
		right: 20px;
		background-color: transparent;
		border: 1px solid var(--body);
		font-size: var(--font-size-sm);
		padding: 8px 16px;
	}

	button a {
		text-decoration: none;
		padding: 8px 10px;
		border-radius: 6px;
	}

	.account-home__payment-method__card__add-payment {
		border: 1px solid var(--dark);
		border-radius: 6px;

		a {
			font-size: var(--font-size-sm);
			font-weight: 400;
			padding-right: 2px;
		}

		svg,
		p {
			font-size: var(--font-size);

		}
	}

	@media (max-width:767px) {
		margin-bottom: var(--unit);
		padding: 0px;
	}

	@media (min-width:768px) and (max-width: 1199px) {
		position: relative;
	}
}


.account-home__payment-method__no-payment {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	flex-direction: column;

	button {
		border-color: var(--text-body);
	}
}

.account-home__payment-method__card-number {
	position: absolute;
	margin: 0;
	font-weight: 700;
	font-size: var(--font-size-lg);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.account-home__payment-method__expiration {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-size: var(--font-size-sm);
	display: flex;
	justify-content: space-between;

	span {
		width: 35px;
		display: inline-block;
		text-transform: uppercase;
		font-weight: 100;
		font-size: var(--font-size-xs);
		line-height: 1;
	}

	p {
		margin: 0 10px 0 0;
		display: inline-block;
		font-weight: 700;
		vertical-align: middle;
		font-size: var(--font-size);

	}
}

.account-home__payment-method__card.VISA,
.account-home__payment-method__card.MasterCard,
.account-home__payment-method__card.Discover,
.account-home__payment-method__card.Diners,
.account-home__payment-method__card.JCB {
	color: var(--white);
	border: none;
}

.account-home__payment-method__card.VISA {
	background-color: #1A1F71;

}

.account-home__payment-method__card.MasterCard {
	background: linear-gradient(90deg, #EB001B 0%, #FF5F00 50%, #F79E1B 100%);

}

.account-home__payment-method__card.Discover {
	background: linear-gradient(180deg, #E96D25 0%, #F59220 100%);

}

.account-home__payment-method__card.Diners {
	background: #004C97;

}

.account-home__payment-method__card.JCB {
	background: linear-gradient(75deg, #151f41 0%, #1968b3 100%);
}

.account-home__payment-method__card.card-identify button {
	border-color: var(--white);

	a,
	h3,
	svg {
		color: var(--white);
	}

}




.account-home__payment-method__card-number,
.account-home__payment-method h3 {
	@media (min-width:768px) and (max-width: 1099px) {
		font-size: var(--font-size);
	}
}

/* Shipping Info */
.account-home__shipping-info {
	@media (max-width:767px) {
		padding: 0px;

	}

	div {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23222222" fill-opacity="0.3" d="M112 0C85.5 0 64 21.5 64 48l0 48L16 96c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 208 0c8.8 0 16 7.2 16 16s-7.2 16-16 16L64 160l-16 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l16 0 176 0c8.8 0 16 7.2 16 16s-7.2 16-16 16L64 224l-48 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 144 0c8.8 0 16 7.2 16 16s-7.2 16-16 16L64 288l0 128c0 53 43 96 96 96s96-43 96-96l128 0c0 53 43 96 96 96s96-43 96-96l32 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l0-64 0-32 0-18.7c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7L416 96l0-48c0-26.5-21.5-48-48-48L112 0zM544 237.3l0 18.7-128 0 0-96 50.7 0L544 237.3zM160 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm272 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z"/></svg>');
		background-repeat: no-repeat;
		background-position: 100% 48px;
		height: 100%;
		font-weight: 500;

		@media (max-width:767px) {
			background-size: 65%;
			background-position: 110% 40px;
		}
	}

	h3 {
		max-width: 90%;

		@media (max-width:767px) {
			padding-right: 60px;
		}
	}
}



/* Privacy GDPR */
.account-home__privacy-gdpr {
	.panel-heading {
		a {
			display: flex;
			align-items: center;
			justify-content: space-between;
			text-decoration: none;

			@media (max-width:767px) {
				display: block;
			}

			span {
				@media (max-width:767px) {
					width: 100%;
					text-align: right;
					display: block;
					margin-top: var(--unit);
				}
			}
		}
	}

	.panel-default>.panel-heading {
		background-color: transparent;
		padding: 30px;

		@media (max-width:767px) {
			padding: var(--unit);
		}
	}

	.panel-group {
		.panel {
			font-size: var(--font-size);
			border-radius: var(--border-radius);
			border: 1px solid var(--gray);
			background-color: transparent;
		}

		.panel-heading+.panel-collapse .panel-body {
			border: none;
		}
	}

	.panel-body {
		padding: 0px var(--unit-lg) var(--unit-lg);
	}

	@media (max-width:767px) {
		padding: var(--unit);
	}
}



/* Help CTA */



.account-home__help-cta {
	a {
		text-decoration: none;
	}

	.account-home__card {
		aspect-ratio: 3/1;
		justify-content: center;
		align-items: center;
		background-repeat: no-repeat;
		background-position: 120% 50%;
		background-size: 50%;
	}

	@media (max-width:767px) {
		padding: 0px;
		margin: var(--unit) 0;
	}
}

.account-home__customer-service {
	.account-home__card {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" d="M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2s0 0 0 0s0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.2-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9c0 0 0 0 0 0s0 0 0 0l-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z"/></svg>');

		@media (max-width:767px) {
			margin-bottom: var(--unit);

		}
	}

	@media (max-width:767px) {
		padding: 0px;
	}

	@media (min-width:768px) {
		padding: 0 var(--unit-sm);
		padding-left: 0px;
	}
}

.account-home__help-center {
	.account-home__card {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3l58.3 0c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24l0-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1l-58.3 0c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
	}

	@media (max-width:767px) {
		padding: 0px;
		padding-right: 8px;
	}

	@media (min-width:768px) {
		padding: 0 var(--unit-sm);
	}
}

.account-home__return-form {
	.account-home__card {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" d="M205 34.8c11.5 5.1 19 16.6 19 29.2l0 64 112 0c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96l-96 0 0 64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z"/></svg>');
	}

	@media (max-width:767px) {
		padding: 0px;
		padding-left: var(--unit-sm);
	}

	@media (min-width:768px) {
		padding: 0 var(--unit-sm);
		padding-right: 0px;
	}
}

/* Top Up Minute */
.account-home__top-up {
	border: 1px solid var(--gray);
	border-radius: var(--border-radius);
	padding: var(--unit);
	font-size: var(--font-size);
}

.account-home__top-up h2 {
	margin-bottom: 15px;
}

.account-home__top-up p {
	color: var(--account-dark);
	margin-bottom: 15px;
}

.account-home .account-home__top-up__status {
	background-color: var(--light-grey);
	border-radius: 6px;
	padding: 15px;
}

.account-home .account-home__top-up .account-home__top-up__status .btn-group label.btn {
	border-radius: 6px;
	border: 1px solid var(--black);
	padding: 13px 24px;
}

.account-home .account-home__top-up .account-home__top-up__status .btn-group label.active {
	background-color: var(--gray);
	border: none;
	border-radius: 6px;
}

.account-home__top-up__status__active,
.account-home__top-up__status__inactive {
	display: flex;
	justify-content: start;
	align-items: center;
}

.account-home__top-up__status h5 {
	color: var(--account-dark);
	font-weight: 400;
}

.account-home__top-up__status__inactive strong {
	color: var(--account-dark);
	font-size: var(--font-size-xl);
	margin-right: 15px;
}

.account-home__top-up__status__active strong {
	margin-right: 15px;
}

.account-home__top-up__status__inactive button,
.account-home__top-up__status__inactive button:hover,
.account-home__top-up__status__inactive button:focus {
	border: 1px solid var(--blue);
	color: var(--blue);
	background-color: rgba(241, 241, 241, .5);
}

.account-home__top-up__info p,
.account-home__top-up__info i {
	color: var(--account-dark);
}

.account-home__top-up__info i {
	margin-right: 5px;
}

.account-home__top-up__info i,
.account-home__top-up__info strong {
	font-size: var(--font-size-lg);
}

.account-home__top-up__info strong {
	margin-bottom: 15px;
	display: inline-block;
}

.account-home__top-up__info p {
	font-size: var(--font-size-sm);
}

.account-home__top-up__status {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
	background-repeat: no-repeat;
	background-position: 120% 50%;
	background-size: 50%;
}

.account-home__top-up__status__active button {
	background-color: rgba(241, 241, 241, .5);
	font-weight: 700;
	border: 1px solid var(--gray);
}

.account-home__top-up__status__active button:hover,
.account-home__top-up__status__active button:focus,
.account-home__top-up__status__active button:active {
	background-color: var(--primary);
}

.account-home__top-up__status__active strong {
	color: var(--green);
	font-size: var(--font-size-xxl);
}

@media (min-width: 768px) and (max-width: 991px) {
	.account-home__top-up__status {
		background-size: 40%;
	}
}

@media (max-width:991px) {
	.account-home__top-up__status {
		margin-bottom: 15px;
	}
}

@media (max-width:768px) {
	.account-home__top-up .col-sm-12 {
		width: 100%;
	}


}

@media (max-width:430px) {

	.account-home__top-up__status__active strong,
	.account-home__top-up__status__inactive strong {
		font-size: var(--font-size-xl);
		margin: 0 0 15px 0;
	}

	.account-home__top-up__status__active,
	.account-home__top-up__status__inactive {
		flex-direction: column;
	}
}

/* Account Menu Off Canvas */
.account-home {
	.modal-content {
		width: 100%;
		position: relative;
		padding: var(--unit-lg) var(--unit-lg) var(--unit-xl) var(--unit-lg);

		button {
			background-color: transparent;
			border: none;
			position: absolute;
			top: var(--unit);
			right: var(--unit);
			font-size: var(--font-size-xxxl);
			color: var(--gray);
			padding: 0;
		}
	}
}

.account-home__menu-button {
	button {
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: transparent;
		border: 1px solid var(--text-body);
		color: var(--text-body);
		border-radius: 6px;
		padding: 10px;
		width: 100%;

		svg {
			font-size: var(--font-size-xl);
			padding-right: 10px;
		}
	}
}

/* ---------Top Up opt in on Checkout Page--------- */
/* Top up feature */

.checkout__topup-feature {
	width: 100%;
	flex-basis: 100%;
	display: flex;
	flex-direction: column;
	background-color: var(--dark-15);
	border-radius: var(--unit-sm);
	justify-content: space-between;
	padding: var(--unit);
	font-size: var(--font-size-sm);

	@media (min-width: 700px) {
		flex-direction: row;
		align-items: center;
		gap: var(--unit);
	}

	@media (min-width: 769px) {
		flex-direction: row;
	}

	@media (min-width: 992px) and (max-width: 1199px) {
		flex-direction: column;
		gap: var(--unit);
		align-items: center;
	}

	strong,
	span {
		display: block;
		white-space: nowrap;
		line-height: 1.4;
	}

	.btn.btn-secondary-outline {
		align-self: end;
		box-shadow: 0 0 0 1px var(--black) inset !important;
		font-weight: 700;

		@media (min-width: 700px) {
			align-self: center;
		}

		@media (min-width: 769px) {
			align-self: end;
		}

		@media (min-width: 992px) {
			align-self: center;
		}
	}

	div:first-child {
		margin-bottom: var(--unit);

		@media (min-width: 700px) and (max-width: 768px) {
			margin-bottom: 0;
		}

		@media (min-width: 769px) {
			align-self: start;
		}

		@media (min-width: 1024px) {
			margin-bottom: 0;
		}

	}

	dl {
		margin-bottom: 0;
	}

	svg {
		color: var(--successlight);
		font-size: var(--font-size-xl);
	}

	input {
		opacity: 0;
		height: 0;
		width: 0;
		display: none;
	}

	label {
		display: flex;
		align-items: center;
		gap: 7px;
		cursor: pointer;

		@media (min-width: 992px) and (max-width: 1199px) {
			width: 100%;
		}
	}

	span.btn {
		width: 100%;
	}

	input:checked~span:after {
		content: 'Opt out of Top Up';
	}

	input:checked~.btn {
		opacity: 0.7;
	}

	span:after {
		content: 'Opt in to Top Up';
	}

	.fa-circle-check {
		transition: color 0.3s ease-in-out;
		color: var(--black-lighter);

	}

	input:checked~.fa-circle-check {
		color: var(--success);
	}
}

.dark {
	.checkout__topup-feature {
		background-color: var(--dark-gray);
	}
}

.dark {

	.account-home__card,
	.account-home__top-up__status {
		background-color: var(--dark-gray);
		color: var(--text-body);

		h3 {
			color: var(--text-body);
		}

	}

	.account-home__primary__library {
		svg {
			opacity: 0.5;
		}
	}

	.account-home__customer-service {
		.account-home__card {
			background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" fill-opacity="0.3" d="M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2s0 0 0 0s0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.2-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9c0 0 0 0 0 0s0 0 0 0l-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z"/></svg>');
		}
	}

	.account-home__help-center {
		.account-home__card {
			background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" fill-opacity="0.3" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3l58.3 0c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24l0-13.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1l-58.3 0c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
		}
	}

	.account-home__return-form {
		.account-home__card {
			background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" fill-opacity="0.3" d="M205 34.8c11.5 5.1 19 16.6 19 29.2l0 64 112 0c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96l-96 0 0 64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z"/></svg>');
		}
	}

	.account-home__primary__ppm-minutes {
		div {
			background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" fill-opacity="0.1" d="M256 0c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32s32-14.3 32-32l0-29.3C378.8 81.9 448 160.9 448 256c0 106-86 192-192 192S64 362 64 256c0-53.7 22-102.3 57.6-137.1c12.6-12.4 12.8-32.6 .5-45.3S89.5 60.8 76.8 73.1C29.5 119.6 0 184.4 0 256C0 397.4 114.6 512 256 512s256-114.6 256-256S397.4 0 256 0zM193 159c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l80 80c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80z"/></svg>');
		}
	}

	.account-home__primary__membership-status,
	.account-home__top-up__status {
		div.activated {
			background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" fill-opacity="0.1" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
		}
	}

	.account-home__top-up__status {
		background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" fill-opacity="0.1" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
	}

	.account-home__shipping-info {
		div {
			background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="%23DADADA" fill-opacity="0.3" d="M112 0C85.5 0 64 21.5 64 48l0 48L16 96c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 208 0c8.8 0 16 7.2 16 16s-7.2 16-16 16L64 160l-16 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l16 0 176 0c8.8 0 16 7.2 16 16s-7.2 16-16 16L64 224l-48 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 144 0c8.8 0 16 7.2 16 16s-7.2 16-16 16L64 288l0 128c0 53 43 96 96 96s96-43 96-96l128 0c0 53 43 96 96 96s96-43 96-96l32 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l0-64 0-32 0-18.7c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7L416 96l0-48c0-26.5-21.5-48-48-48L112 0zM544 237.3l0 18.7-128 0 0-96 50.7 0L544 237.3zM160 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm272 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z"/></svg>');
			background-repeat: no-repeat;
		}
	}

	.account-home__primary__library {
		.account-home__card svg {
			color: rgba(218, 218, 218, .3);

		}
	}
}

/* new currency */
.account-home__primary__currency {
	display: flex;
	align-items: center;
	gap: var(--unit-sm);
}

/* Currency Selector*/
.currency-selector {
	display: inline-block;
	min-width: 0;

	img {
		display: inline-block;
		height: auto;
		width: 20px;
		border-radius: 500em;
		box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
	}

	.dropdown-toggle,
	.currency-selector__option {
		display: flex;
		align-items: center;
		gap: var(--unit-sm);
		min-width: 0 !important;
		justify-content: start;
		border: var(--border-width) var(--border-style) transparent;
		background: var(--body);
		color: var(--text-body);
		cursor: pointer;

		@media (max-width:767px) {
			bottom: 0;
		}
	}

	.currency-selector__option {
		border: none;
		/* background-color: transparent; */
		width: 100%;
		padding: var(--unit-sm) var(--unit);
		transition: all .3s ease-in-out;

		&:hover {
			background-color: var(--light-grey);
			cursor: pointer;
		}
	}

	.dropdown-menu {
		border-radius: var(--unit-sm);
		overflow: hidden;
		min-width: 100px;
		padding: 0;
		z-index: 1111;

		li {
			margin: 0 !important;
		}
	}
}

/* Ugh.  this is ugly.  But necessary at the moment.  - DG 11.4.20026*/
.dark .currency-selector__option:hover {
	background-color: var(--dark-gray);
}