.wallet-header {
	width: 100%;
	display: flex;
	align-items: center;
	background: #0752B5;
	background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(7, 82, 181, 1) 100%);
	border-radius: 0 0 0.5rem 0.5rem;
	margin-bottom: 1.5rem;
}


.wallet-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;

}

.wallet-title img {
	width: 2.75rem;
}



.wallet-links {
	flex: 1;
	display: flex;
	align-items:start;
	justify-content: end;
	gap: 0.8rem;

}

.wallet-signedin {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: end;
	font-size: 0.75rem;
	color: #fff;
}


.wallet-signedin-label {
	opacity: 50%;
}


.wallet-form {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	width: 100%;
}

.wallet-form-group {
	margin-bottom: 1.0rem;
}


.wallet-form label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.wallet-form .help-block {

	margin: 0.75rem 0;
}


.item-tooltiptext {
	font-size: 0.7rem;
	visibility: hidden;
	width: max-content;
	max-width: 300px;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	bottom: 110%;
	left: 50%;
	transform: translateX(-50%);
}

.item-tooltiptext::after {
	content: " ";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}


.item-tooltip {
	display: block;
	position: relative;

}


.item-tooltip:hover .item-tooltiptext {
	visibility: visible;
}




@media all and (max-width:640px) {

	.wallet-mywallet {
		display: none;
	}

}

@media all and (max-width:480px) {

	.wallet-signedin {
		display: none;
	}

}


.wallet-balance {
	display: flex;
	flex-direction: column;
	align-items: center;
}








.a-link-white {
	color: #fff !important;
}

.content-center {
	text-align: center;
}



.countrytext-center {
	justify-content: center;
}



.wallet-table {
	width: 100%;
	overflow: hidden;
	border-collapse: separate;
	border-spacing: 0;
}

.wallet-table th {
	background: #ddd;
}

.wallet-table th,
.wallet-table td {
	padding: 1.25rem;
	border-bottom: 1px solid #ddd;
}

.wallet-table tr:last-child td {
	border-bottom: none;
}



.wallet-table tr:nth-child(odd) {
	background: #f5f5f5;
}


.wallet-balance-amt {
	font-size: 2rem;
	font-weight: 600;
}


.help-block {
	color: #737373;
	font-size: 0.8rem;
}


.section-divider {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	margin: 1rem 0;
}


.section-divider-or {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 30px;
	background: #fff;
	font-weight: bold;
	z-index: 5;
}

.section-divider::after {
	position: absolute;
	content: "";
	border-bottom: 1px solid #ddd;
	width: 100%;
	top: 15px;
	z-index: 3;
}







.section-feedback {
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.feedback-icon {
	width: 2.5rem;
}


.align-center {
	text-align: center;
}


.signin-email-icon {
	text-align: center;
	margin-bottom: 1rem;
}





.wallet-settings-link {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 1.25rem;

	border-top: 1px solid #ddd;

}

.wallet-settings-title {
	flex: 1;
	font-size: 1rem;
	font-weight: 700;
}

.wallet-settings-icon {
	display: flex;
	align-items: center;
}


.wallet-settings-link span {

	transform: rotate(-90deg);

	background: url(../images/expand.svg) 0 0 no-repeat;
	background-size: 1.25rem 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
}

.section-grey {
	background: #f5f5f5;
}



.section-country {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.section-country:hover {
    background: #f5f5f5;
}


.country-currency {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
}

.currency-flag {
	width:3rem;
	overflow: hidden;
	border-radius: 0.25rem;
}

.currency-details {
    display: flex;
    flex:1;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.currency-title {
    font-weight: 600;
}

.currency-amt {
    color: #666;
    font-size: 1rem;
}

.wallet-currency {
	display: flex;
    align-items: center;
    gap: 0.25rem;
	color:#fff;
}
.wallet-currency-flag {
	width:35px;
	height:100%;
    border-radius: 0.25rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border:2px solid #fff;
}





.wallet-currency-dropdown {
    position: relative;
}

.wallet-currency-flag {
    cursor: pointer;
}

.wallet-currency-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 0.5rem;
	overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    z-index: 1000;
}

.wallet-currency-dropdown.open .wallet-currency-menu {
    display: block;
}

.wallet-currency-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.8rem;
    text-decoration: none;
	font-size: 0.8rem;
}

.wallet-currency-menu a:hover {
    background: #f5f5f5;
}
.currency-menu-icon {
	    flex-shrink: 0;
}

.currency-menu-icon img {
    width: 24px;
    height: auto;
    display: block;
}

.currency-menu-countrybalance {
	flex:1;
    display: flex;
    gap: 0.5rem;
	justify-content: space-between;
}

.currency-active {
	font-weight: 600;
	border-bottom: 1px dashed #ddd;
}

.currency-menu-amt {
	color: #666;
}

.currency-menu-all {
	border-top:1px dashed #ddd;
}



@media all and (max-width:480px) {

	.currency-details {
		flex-direction: column;
		align-items: start;
		gap: 0;
	}

}