@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Ubuntu, sans-serif;
}


.logincontainer {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
    overflow-y:hidden;
    background: linear-gradient(90deg, #C7C5F4, #776BCC);

}

.screen {		
	background: linear-gradient(90deg, #5D54A4, #7C78B8);		
	position: relative;	
	height: 600px;
	width: 360px;	
	box-shadow: 0px 0px 24px #5C5696;
}

.screen__content {
	z-index: 1;
	position: relative;	
	height: 100%;
}

.screen__background {		
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;	
	top: -50px;
	right: 120px;	
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #6C63AC;	
	top: -172px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #5D54A4, #6A679E);
	top: -24px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #7E7BB9;	
	top: 420px;
	right: 50px;	
	border-radius: 60px;
}

.login {
	width: 320px;
	padding: 30px;
	padding-top:120px;
}

.login__field {
	padding: 20px 0px;	
	position: relative;	
}

.login__icon {
	position: absolute;
	top: 30px;
	color: #7875B5;
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #6A679E;
}

.login__submit {
	background: #fff;
	font-size: 14px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid #D4D3E8;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 100%;
	color: #4C489D;
	box-shadow: 0px 2px 2px #5C5696;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #6A679E;
	outline: none;
}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: #7875B5;
}

.social-login {	
	position: absolute;
	height: 140px;
	width: 160px;
	text-align: center;
	bottom: 0px;
	right: 0px;
	color: #fff;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-login__icon {
	padding: 20px 10px;
	color: #fff;
	text-decoration: none;	
	text-shadow: 0px 0px 8px #7875B5;
}

.social-login__icon:hover {
	transform: scale(1.5);	
}




/*input:focus { 
    outline: none !important;
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
 }*/

 :root{

 	--blue:#287bff;
 	--white:#fff;
 	--gray:#f5f5f5;
 	--blak1:#222;
 	--black2:#999;
 }
 body{

 	min-height: 100vh;
 	overflow-x:hidden;
 }
 .maincontainer{
 	position: relative;
 	widht:100%;

 }

 .navigation{
 	position: fixed;
 	width:300px;
 	height:100%;
 	background: var(--blue);
 	border-left: 10px solid var(--blue);
 	transition:0.5s;
 	overflow:hidden;

 }
 .navigation.active{
 	width:80px;

 }
 .status.hide{
 	display: none;
 }

 .ownername.hide{
 	display: none;
 }
 .ownerdesignation.hide{
 	display: none;
 }
 .navigation ul{
 	position: absolute;
 	top:0;
 	left:0;
 	width: 100%;
 }
 .navigation ul li{
 	position: relative;
 	width:100%;
 	list-style:none;
 	border-top-left-radius: 30px;
 	border-bottom-left-radius: 30px;

 }

 .navigation ul li:hover,
 .navigation ul li.hovered
 {
 	background:var(--white);
 }

.navigation ul li:nth-child(1){
	margin-bottom: 40px;
	pointer-events: none;
}


.navigation ul li:nth-child(1) img{
	max-width:250px;
	margin-left:20px;
}
.navigation ul li a{
	position: relative;
	display: block;
	width:100%;
	display: flex;
	text-decoration: none;
	color:var(--white);
}
.navigation ul li:hover a,
.navigation ul li.hovered a
{
	color:var(--blue);
}
.navigation ul li a .icon{
	position:relative;
	display: block;
	min-width: 60px;
	height:60px;
	line-height: 70px;
	text-align: center;
}

.navigation ul li a .icon ion-icon{
	font-size:1.75em;
}

.navigation ul li a .title{
	position: relative;
	display: block;
	padding:0 10px;
	height: 60px;
	line-height: 60px;
	text-align: start;
	white-space: nowrap;

}

.navigation ul li:hover a::before,
.navigation ul li.hovered a::before
{
	content: '';
	position: absolute;
	right:0;
	top:-50px;
	width: 50px;
	height: 50px;
	background: transparent;
	border-radius: 50%;
	box-shadow: 35px 35px 0 10px var(--white);
	pointer-events: none;
}

.navigation ul li:hover a::after,
.navigation ul li.hovered a::after
{
	content: '';
	position: absolute;
	right:0;
	bottom:-50px;
	width: 50px;
	height: 50px;
	background: transparent;
	border-radius: 50%;
	box-shadow: 35px -35px 0 10px var(--white);
	pointer-events: none;
}

/* main */
.main{

	position: absolute;
	width: calc(100% - 300px);
	left:300px;
	min-height:100vh;
	background:var(--white);
	transition:0.5s;
}
.main.active{
	width: calc(100% - 80px);
	left: 80px;
}
.topbar{
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:0 10px;



}
.menutoggle{
	position: relative;
	top:0;
	width:60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.5em;
	cursor:pointer;
}
.search{
	position: relative;
	width: 400px;
	margin:0 10px;

}
.search label{
	position: relative;
	width: 100%;
}
.search label input{
	width: 100%;
	height: 40px;
	border-radius: 40px;
	padding:5px 20px;
	padding-left: 35px;
	outline: none;
	font-size:18px;
	outline: none;
	border:1px solid var(--black2);
}
.search label ion-icon{
	position: absolute;
	top:10px;
	left:10px;
	font-size:1.2em;
}
.user{
	position: relative;
	min-width: 60px;
	height: 40px;
	overflow: hidden;
	cursor:pointer;
	top: 7px;
}

.cardBox{

	position:relative;
	width:100%;
	padding:20px;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 30px;
}

.cardBox .card{

	position: relative;
	background: var(--white);
	padding:30px;
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
	cursor:pointer;
	box-shadow: 0 7px 25px rgba(0,0,0,0.08);
}

.cardBox a:hover{
	text-decoration: none;
}

.fullcardBox{
	position:relative;
	width:100%;
	padding:20px;
	display: grid;
	grid-template-columns: repeat(1,1fr);
	grid-gap: 30px;
}

.fullcardBox .fullcard{
	width: 100%;
    position: relative;
	background: var(--white);
	padding:30px;
	border-radius: 20px;
	justify-content: space-between;
	cursor:pointer;
	box-shadow: 0 7px 25px rgba(0,0,0,0.08);
}

.card{

	 flex-direction: unset;
 }

.cardBox .card .numbers{

	position:relative;
	font-weight: 500;
	font-size: 2.5em;
	color:var(--blue);
}

.cardBox .card .cardName{
	color:var(--black2);
	font-size: 1.1em;
	margin-top:5px;
}

.cardBox .card .iconBx{
	font-size: 3.5em;
	color:var(--black2);
}
.cardBox .card:hover{
  background: var(--blue);
}
.cardBox .card:hover .numbers,
.cardBox .card:hover .cardName,
.cardBox .card:hover .iconBx{
  color:var(--white);
}

.details{
	position:relative;
	width: 100%;
	padding:20px;
	display: grid;
	grid-template-columns:  1fr;
	grid-gap: 30px;
	margin-top:10px;
}

.details .recentOrders{
  position: relative;
  display: grid;
  min-height:220px;
  background: var(--white);
  padding:20px;
  box-shadow: 0 7px 25px rgba(0,0,0,0.08)

}

.details .recentOrders ion-icon{
	  background: #e0e0e0!important;
    padding: 10px!important;
    color: black!important;
    font-size: 15px!important;
    border-radius: 5px!important;
box-shadow: -6px 4px 8px -4px rgba(0,0,0,0.63);
-webkit-box-shadow: -6px 4px 8px -4px rgba(0,0,0,0.63);
-moz-box-shadow: -6px 4px 8px -4px rgba(0,0,0,0.63);
}

.details .recentOrders ion-icon: hover{
	  background:white!important;
    padding: 10px!important;
    color: black!important;
    font-size: 15px!important;
    border-radius: 5px!important;
    color: black;
}
.details .recentOrders .usernaem {
    position: relative;
    top: -8px;
    padding: 2px;
}


.cardHeader{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.cardHeader h2{
	font-weight: 600;
	color:var(--blue);
}
.btn{
	position: relative;
	padding:5px 10px;
	background: var(--blue);
	text-decoration: none;
	color:var(--white);
	border-radius: 6px;
}
.details table{
	width: 100%;
    border-collapse: collapse;
    margin-top:10px;

}

.details table thead td{
	font-weight: 600;
}

.details .recentOrders table thead td{
	color:var(--balck1);
	border-bottom:1px solid rgba(0,0,0,0.1);
}

.details .recentOrders table tr:last-child{
	border-bottom: none;
}

.details .recentOrders table tbody tr:hover{
	background:  rgba(211,211,211,0.7);
	color:var(--balck1);
}

.details .recentOrders table tr td{
	padding:5px;
}

.details .recentOrders table tr td:last-child{
	text-align: end;
}

.details .recentOrders table tr td:nth-child(2){
	text-align: end;
}
.details .recentOrders table tr td:nth-child(3){
	text-align: center;
}

.status.delivered{
	padding:2px 4px;
	background: #8de02c;
	color:var(--white);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.status.pending{
    padding:2px 4px;
	background: #f9ca3f;
	color:var(--white);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.status.return{
    padding:2px 4px;
	background: #f00;
	color:var(--white);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}
.status.inprogress{
    padding:2px 4px;
	background: #1795ce;
	color:var(--white);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}
.recentCustomers{
	position: relative;
	display: grid;
	min-height: 500px;
	padding:20px;
	background: var(--white);
	box-shadow: 0 7px 25px rgb(0 0 0 / 8%);
	border-radius: 20px;
}

.recentCustomers .imgBx{
	position: relative;
	display: flex;
	width: 100%;
	height:50px;
	overflow: hidden;
}

.recentCustomers .imgBx img{
	
	top:0;
	left:0;
	width:50px;
	height:50px;
	border-radius:50%;
	object-fit: cover;
}

.recentCustomers .imgBx h4{
    position: relative;
    top: 5px;
    padding: 0px 15px;
}



.recentCustomers table tr td{
	padding: 12px 10px;
}

.recentCustomers table tr td h4{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;

}

.recentCustomers table tr td h4 span{
	font-size: 14px;
	color: var(--black2);
}

.recentCustomers table tr:hover{
	background: var(--blue);
	color:var(--white);
}

.recentCustomers table tr:hover td h4 span{
	color:var(--white);
}

/*top menu bar*/

.topmenubar ul{
	display:flex;
	margin: 5px 0px;

}

.topmenubar ul li{
	
	padding: 0px 45px;
	list-style: none;
}

.topmenubar ul li:hover a,.topactive a{

  border-bottom:2px solid #636e72;
  padding-bottom:3px;
 
}

.topmenubar ul li a{

  text-decoration: none;
  color:#636e72;
  font-weight:500;
}


/*input design*/

.fullcard .halfcard .row100{
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,2fr));
}
.fullcard .threecard .row100{
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,3fr));
}



.fullcard .fivecard.row100{
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(300px,5fr));
}

.fullcard .row100 .col{
	position: relative;
	width: 100%;
	padding:0 10px;
	margin:30px 0 10px;
	transition:0.5s;
}

.fullcard .row100 .inputBox{

	position: relative;
	widht:100%;
	height: 40px;
	color:#636e72;
}

.fullcard .row100 .inputBox input,
.fullcard .row100 .textarea textarea{

	position: absolute;
	width:100%;
	height: 100%;
	background:transparent;
	box-shadow: none;
	border:none;
	outline:none;
	font-size: 18px;
	padding:0 10px;
	z-index: 1;
	color:#000;

}

.fullcard .row100 .inputBox .text{

	position: absolute;
	top:0;
	left:0;
	line-height: 40px;
	font-size: 18px;
	padding:0 10px;
	display: block;
	transition:0.5s;
	pointer-events: none;

}

.fullcard .row100 .inputBox input:focus + .text,
.fullcard .row100 .inputBox input:valid + .text{
	top:-35px;
	left:-10px;
}

.fullcard .row100 .inputBox .line{
	position: absolute;
	bottom:0;
	display: block;
	width:100%;
	height: 2px;
	background: #b7b7b740;
	transition: 0.5s;
	border-radius: 2px;
	pointer-events: none;
}

.fullcard .row100 .inputBox input:focus ~ .line,
.fullcard .row100 .inputBox input:valid ~ .line{
  height: 100%;
}

.fullcard .row100 .textarea{
	position: relative;
	width: 100%;
	height: 100px;
	padding:10px 0;
} 

.fullcard .row100 .inputBox textarea{
	height: 100%;
	resize: none;

}

.fullcard .row100 .inputBox textarea:focus + .text,
.fullcard .row100 .inputBox textarea:valid + .text{
	top:-35px;
	left:-10px;
}

.fullcard .row100 .inputBox textarea:focus ~ .line,
.fullcard .row100 .inputBox textarea:valid ~ .line{
  height: 100%;
}

input[type="submit"]{
	border:none;
	padding:7px 35px;
	cursor:pointer;
	outline:none;
	background: #b7b7b740;
	color:#000;
	font-size: 18px;
	border-radius:20px;

}

.halfcard{

    width: 50%;
    float: left;
}

.threecard{
	  width: 33%;
    float: left;
}

.fivecard{

	 width:16%;
	 float: left;
}

.fivecard .selectcol{
	position: relative;
	top: -35px;
}

.timepreview{

	width:100%;
	background: white;
	height:15px;
	position: relative;
	border:2px solid silver;

}

.progressbargreen{

	background: #8de02c;
	height:11px;
	width:20%;
	position: absolute;
	left:0;

}
.progressbarred{

	background: #f00;
	height:11px;
	width:90%;
	position: absolute;
	left:0;

}
.progressbaryellow{

	background: #f9ca3f;
	height:11px;
	width:60%;
	position: absolute;
	left:0;

}

.progressbarblue{

	background: #1795ce;
	height:11px;
	width:100%;
	position: absolute;
	left:0;

}

.usertd{
  position: relative;
}
.username{
   position: absolute;
    top: 10px;
    
}
.actiontd{
	text-align: center!important
}
.actionbutton{
	font-size: 16px;
	text-align: left;
	cursor: pointer;
}
.actionbutton:hover{
  color:white;
}

.pencil{
  color:blue;
  font-weight: bold;
}


.close{
  color:red;
  font-weight: bold
}

.refresh{
  color:red;
  font-weight: bold
}
.checkmark{
  color:green;
  font-weight: bold
}

.datepicker{
  
  top: -40px!important;;
}
.userlogo {
    display: grid;
    place-items: center;
    position: relative;
    left: -5px;
    top: 15px;
    margin-bottom: 30px;
}

.userlogo img{

    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.userlogo h5{
    
	padding:10px;
	color:white;
	line-height:2px;
}

.status{
  position: relative;
  display: grid;
  place-items:center;
  margin-top:30px;
}
.statusoption{
	width:250px;
}
.statusoption p{
	line-height:15px;
	color:#fff;
	font-size:18px;
}

.statusoption p:hover{
  pointer-events:painted!important;
}

.statusoption .toggle-container {
    display: inline-block;
    position: absolute;
    right: 50px;
}




/*modal*/

.smallimageactive{
	width:60px!important;
	height:60px!important;
}

select {
    word-wrap: normal;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid silver;
}




.profileedit {
    border-radius: 50%;
    background: rgb(0 173 255 / 85%);
    color: white;
    top: -30px;
    left: 25px;
    position: relative;
    padding: 5px;
    cursor: pointer!important;

}
.profileedit:hover {
	 background: var(--blue);
}


@media (max-width:991px)
{
	.navigation{
		left:-300px;
	}
	.navigation.active{
     width: 300px;
     left:0;
	}
	.main{
		width: 100%;
		left:0;
	}
	.main.active{
		left:300px;
	}
	.cardBox{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width:768px)
{
	.details{
		grid-template-columns: repeat(1, 1fr);
	}
	.recentOrders{
		overflow-x: auto;
	}

}


@media (max-width:480px)
{
	.cardBox{
		grid-template-columns: repeat(1, 1fr);
	}
	.cardHeader h2{
		font-size: 20px;
	}
	.user{
		min-width: 40px;
	}
	.navigation{
		width: 100%;
		left: -100%;
		z-index: 1000;
	}
	.navigation.active{
		left:0;
	}
	.menutoggle{
		z-index: 10001;
	}
	.userlogo {
    display: grid;
    place-items: normal start!important;
    position: relative;
    left: 5px;
    top: 20px;
  }
  .topmenubar{
  	display: none;
  }
  .fullcardBox .fullcard {
    width: 100%;
    position: relative;
    background: var(--white);
    padding: 10px;
    border-radius: 20px;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 7px 25px rgb(0 0 0 / 8%);
  }
  table.vgt-table {
    font-size: 12px!important;
  }
  .vgt-wrap__footer .footer__navigation__page-btn span {
    display: inline-block;
    vertical-align: middle;
    font-size: 10px!important;
  }
  .vgt-wrap__footer .footer__navigation {
    font-size: 14px!important;
  }
  .halfcard {
    width: 100%!important;
    float: left;
  }
  h5{
  	font-size: 14px;
  }
  .cardHeader h2 {
    margin-top: 16px;
   }
   .mobilelogo{
	  display: block;
   }

}
