
	html,body{
		height: 100%;
	}
	.header-nav ul
	{
		list-style: none;
	}
	.header-nav li
	{
		display: inline-block;
		padding: 10px 20px;
		cursor: pointer;
	}
	header
	{
		position: fixed;
		width: 100%;
		top: 0;
		z-index: 500;
		transition: all 500ms ease-out;
	}
	.header-nav li
	{
		color: white;
	}
	.header-nav li:hover
	{
		background-color: whitesmoke;
		color: dimgray;
	}
	.header-nav li *
	{
		cursor: pointer;
	}

	.folded-header li{
		color: dimgrey !important;
	}

	body{
		background-color: rgb(250,250,250);
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: auto;
		height: 100% !important;
	}

	html{
		height: 100% !important;
	}

	body *{
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: auto;
	}

	.profile-table
	{
		width: 100%;
		font-family: varela_roundregular;
		font-size: 14px;
	}

	.profile-table td{
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.profile-input input,select,textarea
	{
		border: none;
		font-family: varela_roundregular, Nunito;
		padding: 10px;
		color: dimgray;
		outline: none;
		background-color: transparent !important;
	}
	.transaction-table
	{
		margin-bottom: 15px;
		margin-top: 10px;
	}
	.transaction-table tr:first-child
	{
		padding-left: 20px !important;
	}
	.transaction-table td
	{
		padding: 10px;
	}
	.pending-transaction-con
	{
		padding: 5px;
		border-top: 1px solid whitesmoke;
		cursor: pointer;
	}
	.pending-transaction-con.pending:hover
	{
		background-color: rgba(255,234.999994,58.999999993,0.25);
	}
	.pending-transaction-con.dispute:hover
	{
		background-color: rgba(244,66.999999996,53.999999991,0.25);
	}
	.pending-transaction-con.dispute
	{
		background-color: rgba(244,66.999999996,53.999999991,0.15);
	}
	.pending-transaction-con.pending
	{
		background-color: rgba(255,234.999994,58.999999993,0.15);
	}

	.profile-image
	{
		width: 130px;
		height: 130px;
		border-radius: 50%;
		margin: auto;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.profile-photo-container
	{
		display: inline-block;
		height: 180px;
		width: 180px;
		border-radius: 50%;
		position: relative;
		border: 1px solid lightgray;
	}
	.profile-photo-container div
	{
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 50%;
		border-bottom-left-radius: 83px;
		border-bottom-right-radius: 83px;
		cursor: pointer;
		font-family: varela_roundregular;
		padding-top: 13px;
	}
	.profile-input input,select,textarea
	{
		border: none;
		font-family: varela_roundregular, Nunito;
		padding: 10px;
		color: dimgray;
		outline: none;
		background-color: transparent !important;
	}
	.message-box{
		padding: 10px;
		font-family: varela_roundregular, Nunito, Sans-serif;
		background-color: rgb(250,250,250);
		border: 1px solid lightgray;
		font-size: 14px;
		margin-bottom: 20px;
		display: none;
	}

	.message-box.error{
		background-color: rgba(200,10,30,0.16);
		color: darkred;
	}


	a{
		text-decoration: none !important;
	}
	.profile-pane
	{
		background-color: white !important;
		border: 1px solid rgb(220,220,220);
	}
	@media(max-width: 600px) {
		.profile-menu
		{
			top: 0;
			width: 80%;
			position: fixed;
			height: 100%;
			overflow: auto;
			background-color: rgba(0,0,0,0.8);
			z-index: 300;
			padding-top: 30px;
			display: none;
		}
		.profile-menu .profile-menu-page
		{
			width: 95%;
		}
		.profile-menu .menu
		{
			margin-top: 20px;
		}
		.profile-menu .item
		{
			cursor: pointer;
		}
		.profile-menu .item img
		{
			margin-top: 5px;
		}
		.profile-menu .item h6
		{
			font-family: varela_roundregular, Nunito, serif;
			margin-top: 15px;
			font-size: 14px;
			color: white;
		}
		.profile-menu .item:hover
		{
			background-color: rgba(140,120,120,0.1);
		}

		.profile-low-page{
			margin-top: 50px !important;
		}
		.profile-top-bar{
			position: fixed;
			top: 0;
			width: 100%;
			z-index: 200;
			transition: all 0.8s ease-in-out;
		}
		#transactions-graph{
			height: 200px;
		}
		.profile-page-top{
			position: fixed;
			top: 0;
			width: 100%;
		}
	}
	@media(min-width: 1030px)
	{
		.profile-menu
		{
			margin-top: 0px;
			width: 17%;
			position: fixed;
			height: 100%;
			overflow: auto;
			background-color: white;
			border-right: 1px solid lightgray;
		}
		.profile-page
		{
			width: 82.99% !important;
			margin-left: 17%;
		}
		.profile-menu .profile-menu-page
		{
			width: 100%;
		}
		.profile-menu .menu
		{
			margin-top: 50px;
		}
		.profile-menu .item
		{
			cursor: pointer;
		}
		.profile-menu .item.active
		{
			background-color: rgb(251, 251, 251) !important;
			border-right: 4px solid rgb(189, 40, 40);
		}
		.profile-menu .item img
		{
			margin-top: 5px;
		}
		.profile-menu .item h6
		{
			font-family: varela_roundregular, Nunito, serif;
			margin-top: 15px;
			font-size: 14px;
			color: black;
		}
		.profile-menu .item:hover
		{
			background-color: rgba(140,120,120,0.1);
		}
		.dash-pulls
		{
			height: 300px;
		}
		.page-bars{
			float: left;
			height: 100% !important;
		}
	}

	/*
			checkbox
	 */
	@supports (-webkit-appearance: none) or (-moz-appearance: none) {
		input[type=checkbox],
		input[type=radio] {
			--active: #275EFE;
			--active-inner: #fff;
			--focus: 2px rgba(39, 94, 254, .3);
			--border: #BBC1E1;
			--border-hover: #275EFE;
			--background: #fff;
			--disabled: #F6F8FF;
			--disabled-inner: #E1E6F9;
			-webkit-appearance: none;
			-moz-appearance: none;
			height: 21px;
			outline: none;
			display: inline-block;
			vertical-align: top;
			position: relative;
			margin: 0;
			cursor: pointer;
			border: 1px solid var(--bc, var(--border));
			background: var(--b, var(--background));
			transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
		}
		input[type=checkbox]:after,
		input[type=radio]:after {
			content: "";
			display: block;
			left: 0;
			top: 0;
			position: absolute;
			transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
		}
		input[type=checkbox]:checked,
		input[type=radio]:checked {
			--b: var(--active);
			--bc: var(--active);
			--d-o: .3s;
			--d-t: .6s;
			--d-t-e: cubic-bezier(.2, .85, .32, 1.2);
		}
		input[type=checkbox]:disabled,
		input[type=radio]:disabled {
			--b: var(--disabled);
			cursor: not-allowed;
			opacity: 0.9;
		}
		input[type=checkbox]:disabled:checked,
		input[type=radio]:disabled:checked {
			--b: var(--disabled-inner);
			--bc: var(--border);
		}
		input[type=checkbox]:disabled + label,
		input[type=radio]:disabled + label {
			cursor: not-allowed;
		}
		input[type=checkbox]:hover:not(:checked):not(:disabled),
		input[type=radio]:hover:not(:checked):not(:disabled) {
			--bc: var(--border-hover);
		}
		input[type=checkbox]:focus,
		input[type=radio]:focus {
			box-shadow: 0 0 0 var(--focus);
		}
		input[type=checkbox]:not(.switch),
		input[type=radio]:not(.switch) {
			width: 21px;
		}
		input[type=checkbox]:not(.switch):after,
		input[type=radio]:not(.switch):after {
			opacity: var(--o, 0);
		}
		input[type=checkbox]:not(.switch):checked,
		input[type=radio]:not(.switch):checked {
			--o: 1;
		}
		input[type=checkbox] + label,
		input[type=radio] + label {
			font-size: 14px;
			line-height: 21px;
			display: inline-block;
			vertical-align: top;
			cursor: pointer;
			margin-left: 4px;
		}

		input[type=checkbox]:not(.switch) {
			border-radius: 7px;
		}
		input[type=checkbox]:not(.switch):after {
			width: 5px;
			height: 9px;
			border: 2px solid var(--active-inner);
			border-top: 0;
			border-left: 0;
			left: 7px;
			top: 4px;
			transform: rotate(var(--r, 20deg));
		}
		input[type=checkbox]:not(.switch):checked {
			--r: 43deg;
		}
		input[type=checkbox].switch {
			width: 38px;
			border-radius: 11px;
		}
		input[type=checkbox].switch:after {
			left: 2px;
			top: 2px;
			border-radius: 50%;
			width: 15px;
			height: 15px;
			background: var(--ab, var(--border));
			transform: translateX(var(--x, 0));
		}
		input[type=checkbox].switch:checked {
			--ab: var(--active-inner);
			--x: 17px;
		}
		input[type=checkbox].switch:disabled:not(:checked):after {
			opacity: 0.6;
		}

		input[type=radio] {
			border-radius: 50%;
		}
		input[type=radio]:after {
			width: 19px;
			height: 19px;
			border-radius: 50%;
			background: var(--active-inner);
			opacity: 0;
			transform: scale(var(--s, 0.7));
		}
		input[type=radio]:checked {
			--s: .5;
		}
	}
	* {
		box-sizing: inherit;
	}
	*:before, *:after {
		box-sizing: inherit;
	}
	html {
		box-sizing: border-box;
		-webkit-font-smoothing: antialiased;
	}




	.collapsible {
		border-top: 1px solid #ddd;
		border-right: 1px solid #ddd;
		border-left: 1px solid #ddd;
		margin: 0.5rem 0 1rem 0;
	}

	.collapsible-header {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		line-height: 1.5;
		padding: 1rem;
		background-color: #fff;
		border-bottom: 1px solid #ddd;
	}

	.collapsible-header:focus {
		outline: 0;
	}

	.collapsible-header i {
		width: 2rem;
		font-size: 1.6rem;
		display: inline-block;
		text-align: center;
		margin-right: 1rem;
	}

	.keyboard-focused .collapsible-header:focus {
		background-color: #eee;
	}

	.collapsible-body {
		display: none;
		border-bottom: 1px solid #ddd;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		padding: 2rem;
	}

	.sidenav .collapsible,
	.sidenav.fixed .collapsible {
		border: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.sidenav .collapsible li,
	.sidenav.fixed .collapsible li {
		padding: 0;
	}

	.sidenav .collapsible-header,
	.sidenav.fixed .collapsible-header {
		background-color: transparent;
		border: none;
		line-height: inherit;
		height: inherit;
		padding: 0 16px;
	}

	.sidenav .collapsible-header:hover,
	.sidenav.fixed .collapsible-header:hover {
		background-color: rgba(0, 0, 0, 0.05);
	}

	.sidenav .collapsible-header i,
	.sidenav.fixed .collapsible-header i {
		line-height: inherit;
	}

	.sidenav .collapsible-body,
	.sidenav.fixed .collapsible-body {
		border: 0;
		background-color: #fff;
	}

	.sidenav .collapsible-body li a,
	.sidenav.fixed .collapsible-body li a {
		padding: 0 23.5px 0 31px;
	}

	.collapsible.popout {
		border: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.collapsible.popout > li {
		-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
		margin: 0 24px;
		-webkit-transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}

	.collapsible.popout > li.active {
		-webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
		box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
		margin: 16px 0;
	}

	.z-depth-1, mat-card-panel, .mat-card, .toast, .btn, .btn-large, .btn-small, .btn-floating, .collapsible, .sidenav {
		-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	}

	#mobile-menu{
		width: 80%;
		position: fixed;
		top: 0;
		height: 100%;
		overflow-y: auto;
		z-index: 700;
		background-color: rgba(0,0,0,0.8);
		display: none;
	}

	#mobile-menu ul{
		list-style: none;
		margin: 0;
		padding: 0;
	}

	#mobile-menu li{
		color: white;
		font-family: varela_roundregular, serif;
		padding: 18px 20px;
	}

	#mobile-menu i{
		float: right;
	}

	.ui.button{
		font-family: varela_roundregular, Nunito, segoe ui, serif !important;
	}

	.selectable{
		cursor: pointer;
		position: relative;
		/*box-shadow:0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;*/
		border: 2px solid rgba(0,100,140,0.2);
	}

	.selectable:hover{
		/*box-shadow:0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)!important;*/
		box-shadow:0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;
		border: 2px solid transparent;
		background-color: rgba(0,100,140,0.1);
	}

	.selectable *{
		cursor: pointer;
	}

	.selected{
		background-color: rgba(0,100,140,0.1);
	}

	.hoverable:hover{
		box-shadow:0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)!important;
		cursor: pointer !important;
		background-color: rgba(0,100,140,0.1);
	}

	.tabbed-container{

	}

	.tab-body{
		border: 1px solid lightgray;
		padding: 15px;
		min-height: 100px;
	}

	.tab-head{
		display: table;
	}

	.tab-head-item{
		padding: 20px;
		float: left;
		text-align: center;
		font-family: varela_roundregular, serif;
		border-top: 1px solid lightgray;
		border-bottom: 1px solid lightgray;
		border-right: 1px solid lightgray;
		cursor: pointer;
		font-weight: bold;
		transition: all 400ms ease-out;
	}

	.tab-head-item:first-of-type{
		border-left: 1px solid lightgray;
	}

	.tab-head-item *{
		cursor: pointer;
	}

	.tab-head-item.active{
		box-shadow: rgba(0,100,140,0.2) 5px 1px 6px 1px;
		background-color: white;
	}

	.tab-body-item{
		display: none;
	}

	.tab-body-item.active{
		display: block !important;
	}

	.whatsapp-chat{
		position: fixed;
		left: 20px;
		bottom: 20px;
		width: 60px;
		height: 60px;
		cursor: pointer;
	}

	.whatsapp-chat img{
		width: 100%;
	}



	#mobile-menu-container{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.5);
		z-index: 700;
		display: none;
	}

	#mobile-menu-body{
		position: absolute;
		left: 0;
		height: 100%;
		overflow-y: auto;
		background-color: white;
		display: none;
	}

	#mobile-search-header{
		display: none;
	}






	.mobile-menu-list ul{
		list-style: none;
		padding: 0;
	}

	.mobile-menu-list li{
		font-family: varela_roundregular;
		font-size: 13px !important;
		padding: 8px 20px;
	}

	.mobile-menu-list img{
		vertical-align: middle;
		width: 20px !important;
		margin-right: 15px;
	}

	.mobile-menu-list span{
		vertical-align: middle;
	}

	.mobile-menu-nav-header h6{
		font-family: varela_roundregular;
		font-size: 14px;
	}

	.mobile-menu-nav-header{
		background-color: rgb(250,250,250);
		margin: 0 !important;
		padding: 5px 15px;
	}