:root {
  --color-white: #ffffff;
  --color-light: #f1f5f9;
  --color-black: #121212;
  --color-night: #001632;
  --color-red: #f44336;
  --color-blue: #1a73e8;
  --color-gray: #80868b;
  --color-grayish: #dadce0;
  --shadow-normal: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
  	0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  	0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  	0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  font-size: 100%;
  font-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: var(--color-black);
  background: var(--color-light);
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80rem;
  min-height: 100vh;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

.ion-logo-apple {
  font-size: 1.65rem;
  line-height: inherit;
  margin-right: 0.5rem;
  color: var(--color-black);
}
.ion-logo-google {
  font-size: 1.65rem;
  line-height: inherit;
  margin-right: 0.5rem;
  color: var(--color-red);
}
.ion-logo-facebook {
  font-size: 1.65rem;
  line-height: inherit;
  margin-right: 0.5rem;
  color: var(--color-blue);
}

.text {
  font-family: inherit;
  line-height: inherit;
  text-transform: unset;
  text-rendering: optimizeLegibility;
}
.text-large {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-black);
}
.text-normal {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black);
}
.text-links {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-blue);
}
.text-links:hover {
  text-decoration: underline;
}

.main .wrapper {
  max-width: 28rem;
  width: 100%;
  margin: 2rem auto;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: var(--shadow-large);
}
.main .wrapper .form {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}
.main .wrapper .form .input-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.main .wrapper .form .input-field {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: inherit;
  width: 100%;
  height: auto;
  padding: 0.75rem 1.25rem;
  border: none;
  outline: none;
  border-radius: 2rem;
  color: var(--color-black);
  background: var(--color-light);
  text-transform: unset;
  text-rendering: optimizeLegibility;
}
.main .wrapper .form .input-submit {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  min-width: 40%;
  height: auto;
  padding: 0.65rem 1.25rem;
  border: none;
  outline: none;
  border-radius: 2rem;
  color: var(--color-white);
  background: var(--color-blue);
  box-shadow: var(--shadow-medium);
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
}

.flex-container{
	display:flex;
}
.left-sidebar{
	flex: 0 0 200px;
    min-height: 100vh;
    background-color: black;
    padding: 19px 13px;
    position: fixed;
    width: 200px;
}
.left-sidebar a{
    color: white;
    margin-bottom: 9px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
}
.logout{
	background-color: #202020;
    border-radius: 6px;
}
.right-sidebar{
    margin-left: 200px;
    width: 100%;
    padding: 16px 49px;
}
.fa-bars{
	cursor:pointer;
	display:none;
	font-size: 22px;
}
.cards-group{
	grid-template-columns: repeat(4, 1fr);
	display: grid;
	gap: 22px;
}
.single-card{
	background-color: white;
    padding: 12px;
    box-shadow: 0px 0px 6px 3px #aaaaaa1f;
}
.heading-top{
	margin-bottom:28px;
}
.red{
	color:red;
}
.green{
	color:green;
}
.single-card a{
	background-color: black;
    border-radius: 6px 12px;
    color: white;
    padding: 6px 27px;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
}
.two-col{
	grid-template-columns: repeat(2, 1fr);
	display: grid;
	gap: 12px;
}
.form-control{
	display: block;
    width: 100%;
    padding: 11px;
    outline: 0px;
}
.ilabel{
	display: block;
    font-weight: bold;
}
.btn{
	background-color: black;
    border-radius: 6px 12px;
    color: white;
    padding: 6px 27px;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
	cursor:pointer;
}
.emsg{
	background-color: #a7cd3f;
    margin-top: 12px;
    color: white;
    padding: 6px 13px;
    border-radius: 12px;
}
.reflink{
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 19px;
	margin-top: 6px;
	position:relative;
}
.mt0{
	margin-top:0px !important;
}
#copyText1{
	background-color: white;
    flex: 0 0 300px;
    max-width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 12px;
	overflow: hidden;
}
#coppied{
	background-color: black;
    color: white;
    padding: 3px 15px;
    font-size: 12px;
    position: absolute;
    top: -25px;
    border-radius: 6px;
	display:none;
}
.text-center{
	text-align:center;
}
.text-right{
	text-align:right;
}
.bigfont{
	font-size: 55px;
	font-weight: bold;
	color: black;
}
.dflex{
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.addbtn{
	background-color: black;
	color: white;
	padding: 12px 12px;
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 22px;
}
.paymentdetails{
	text-align: center;
	color: black;
	font-weight: bold;
	font-size: 29px;
}
.bluebg{
	background-color: #1a73e8 !important;
    color: white !important;
}
.yellowbg{
	background-color: #b7a800 !important;
    color: white !important;
}
.tmb{
	margin-bottom:12px;
}
.tmb label{
	font-weight:500;
}
.emsg{
	background-color: #a7cd3f;
    margin-top: 12px;
    color: white;
    padding: 6px 13px;
    border-radius: 12px;
	margin-bottom:12px;
}
.withdrawl{
	font-size: 35px;
    background-color: green;
    color: white;
    text-align: center;
    font-weight: bold;
}
.btitle{
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
}
.lightbtn{
	background-color: white !important;
    color: black !important;
}
.emsgtwo{
	font-weight: 400;
    font-size: 14px;
    margin-top: 12px;
}
.acchistory{
	display:grid;
	grid-template-columns: repeat(6, 1fr);
	gap:12px;
	background-color: white;
	padding: 12px 22px;
	border: 1px solid #c9c9c9;
	justify-content: space-between;
	font-size: 14px;
}
.inflex{
	display:flex;
	gap:8px;
}
.amb{
	display: block;
	width: 100%;
	padding: 8px 11px;
	outline: 0px;
	border: 1px solid #767676;
	font-size: 15px;
	border-radius: 2px;
}
.uinfo{
	background-color: green;
    color: white;
}
.uinfo p, .uinfo p{
	margin-top:6px;
	margin-bottom:6px;
	margin-top: 6px;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.disabled{
	border: 1px solid black;
    padding: 8px 19px;
    background-color: #e2e2e2;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
@media screen and (max-width: 800px) {
	.fa-bars{
		display:block;
		position: absolute;
		right: 22px;
		top: 17px;
	}
	.left-sidebar{
		display:none;
	}
	.right-sidebar {
		margin-left: 0px;
		padding: 45px 19px;
	}
	.cards-group, .acchistory{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 600px) {
	.cards-group, .two-col, .acchistory{
		grid-template-columns: repeat(1, 1fr);
	}
	#copyText1{
		    flex: 0 0 100%;
	}
	.reflink {
		display: block;
		width: 100%;
		margin-bottom: 40px;
	}
	.reflink .mt0{
		margin-top:12px !important;
	}
}



