*, html, body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #001027;
    --blue: #009BF3;
    --blue-30:rgba(30, 35, 43, 0.3);
    --blue-60: rgba(0, 16, 39, 0.6);;
    --dark-900: #1E232B;
    --green-900:#3BD21F;
    --text-muted: #D8E2F1;
    --border-color: #E5E7EB;
    --white: #ffffff;
    --red:#FB2C36;
    --bdrRadius: 10px;
    --boxShadow: 0 5.06px 15.19px 0 rgba(0, 0, 0, 0.20);
}


body, html{
    font-family: "Poppins", sans-serif;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    min-height: 100%;
}


body {
    font-family: "Poppins", sans-serif;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    min-height: 100%;
}


p, h1, h2, h3, h4, h5, h5, h6, ul, li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;    
}
a{
    text-decoration: none;
    color: var(--blue);
}

img{
    display: block;
    max-width: 100%;
}

h6 {
	font-size: 0.75rem;
	color: var(--blue-60);
}
.main-wrapper{
    display: flex;
}


/*---Login Page css start here---*/
.login-page-content{
    background: url(../img/login_page_bg.png) no-repeat 0 0;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	flex-direction: column;
}
.login-form {
	background-color: var(--white);
	width: 100%;
	height: auto;
	padding: 2rem;
	border-radius: var(--bdrRadius);
}

.logo-block {
	width: auto;
	max-width: 50%;
}

.logo-block img{
	width: 100%;
}
.form-control {
	font-size: .875rem;
	color: var(--blue-10);
	padding: 0.75rem 1rem!important;
    border-radius: var(--bdrRadius);
    border-color: var(--primary);
}
.form-label {
	font-size: 0.875rem;
    color: var(--dark-900);
}
.form-control:focus, input:focus, label:focus, select:focus, button:focus{
    outline: none;
    box-shadow: none;
}
.email-icon{
    position: absolute;
    left: 15px;
    top: 10px;
}
.login-form-content .form-control{
    padding: 0.75rem 2.8rem 0.75rem 2.8rem !important;
}
.eye-icon{
    position: absolute;
    right: 13px;
    top: 13px;
}

.link-text{
    font-size: 0.875rem;
    color: var(--primary);
}

.btn{
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--bdrRadius);
}

.btn-primary{
    background-color: var(--blue);
    color:var(--white);
    border-color: var(--blue);
}

.btn-primary:hover{
    background-color: var(--primary);
    border-color: var(--primary);
}


/*--=====Sidebar section css start here=====--*/
.sidebar {
	z-index: 999;
	width: 260px;
	height: 100%;
	transition: width .2s, margin .2s;
	position: fixed;
	top: 0;
	left: 0;
    background: var(--primary);
}
.sidebar .sidebar-header {
	z-index: 999;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 1rem;
	transition: width .2s;
	display: flex;
}

.sidebar-toggler-mobile{
    display: none;
    max-width: 60%;
    margin: 0 auto;
}
.sidebar-brand{
    display: flex;
    max-width: 70%;
    margin: 0 auto;
}

/*--sidebar nav--*/
.sidebar .sidebar-body {
	height: 100%;
	max-height: calc(100% - 60px);
	-webkit-box-shadow: 0 8px 10px 0 var(--bs-sidebar-box-shadow-color);
	box-shadow: 0 8px 10px 0 var(--bs-sidebar-box-shadow-color);
	position: relative;
}

.main-navigation {
	padding: 1.5rem 1rem;
}
.main-navigation ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main-navigation ul li{
    list-style-type: none;
    display: flex;
    width: 100%;
}
.main-navigation ul li a{
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    width: 100%;
}
.main-navigation ul li a.active,
.main-navigation ul li:hover a.active{
    background-color: var(--white);
    color: var(--blue);
    box-shadow: var(--boxShadow);
}
.main-navigation ul li:hover a{
    color: var(--white);
    background-color: var(--dark-900);
}

.main-navigation ul li a svg{
    height: 20px;
    width: 20px;
}

/*--Right Sidebar section css start here--*/
.page-wrapper {
	background-color: #F2F2F4;
	flex-direction: column;
	width: calc(100% - 260px);
	min-height: 100vh;
	margin-left: 260px;
	transition: margin .1s,width .1s;
	display: flex;
    padding-top: 60px;
}

/*--Right Sidebar header--*/
.top-header {
	background: var(--white);
	border-bottom: 1px solid var(--border-color);
	z-index: 999;
	width: calc(100% - 260px);
	height: 60px;
	align-items: center;
	padding: 0;
	transition: width .2s,left .2s;
	display: flex;
	position: fixed;
	left: 260px;
    top: 0;
}

@keyframes pulse {
  0% {
    opacity:1;
    width:7px;
    height:7px;
    top:0;
    left:0
  }
  95% {
    opacity:.1;
    width:28px;
    height:28px;
    top:-10.5px;
    left:-10.5px
  }
  to {
    opacity:0;
    width:7px;
    height:7px;
    top:0;
    left:0
  }
}

.header-right-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
    padding: 0 10px;
}

.show-hide-arrow {
	background-color: var(--white);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.20);
	padding: 5px;
	border-radius: var(--bdrRadius);
	min-width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.page-header-right-links {
	display: flex;
	align-items: center;
	gap: 30px;
}

.search-form {
	display: flex;
	align-items: center;
	background: var(--white);
    border: 1px solid var(--dark-900);
    border-radius: var(--bdrRadius);
}
.search-form .input-group-text{
    background-color: transparent!important;
    border: 0px;
    cursor: pointer;
}
.search-form .form-control {
	border: 0px;
	background-color: var(--white);
	padding: 0.75rem 0 !important;
}

.notification button{
    background-color: transparent;
    border: 0;
    position: relative;
}

.indicator {
  position: absolute;
  top: 0;
  right: 2px;
}
.indicator .circle {
  background:var(--red);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.indicator .circle::before {
  content: "";
  background-color: var(--red);
  border-radius: 50%;
  display: table;
  position: absolute;
  animation-name: pulse;
  animation-duration: .9s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.user-thumbnail {
	background-color: var(--blue);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.user-thumbnail i{
    color: var(--white);
    font-size: 1.5rem;
}
.user-info{
    font-size: 0.875rem;
}

.user-info-seciton .dropdown-menu{
    border-radius: var(--bdrRadius);
    box-shadow: var(--boxShadow);
    border: 0px;
}

.user-info-seciton .dropdown-menu li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	color: var(--dark-900);
}

.show-hide-arrow.arrow-revert {
	transform: rotate(-180deg);
}

/*--Sidebar show hide--*/

.left-sidebar-open .page-wrapper{
    margin-left: 85px;
    width: calc(100% - 85px);
}

.left-sidebar-open .top-header {
	left: 85px;
	width: calc(100% - 85px);
}

.left-sidebar-open .sidebar {
	width: 85px;
	overflow: visible;
}

.left-sidebar-open .main-navigation .hide-menu {
	display: none;
}
.left-sidebar-open .sidebar-brand {
	display: none;
}

.left-sidebar-open .sidebar-toggler-mobile{
    display: flex;
}

/*--Dashboard stats section css start here--*/
.page-content {
  flex-grow: 1;
  padding: 25px;
}

.groth-up {
	font-size: 0.75rem;
	color: var(--blue-60);
    align-items: center;
}
.groth-up .green-arrow{
    stroke: var(--green-900);
}

.dash-icons {
	background-color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--bdrRadius);
	height: 42px;
    min-height: 42px;
    min-width: 42px;
    width: 42px;
    color: var(--white);
}

.total-request .dash-icons{
    background-color: var(--green-900);
}

.total-orders .dash-icons{
    background-color: #FF9B28;
}

.total-sales .dash-icons{
    background-color: #BD4BFF;
}

/*--acitive list--*/
.activeity-list-inner {
	padding: 0.875rem 1rem;
	border-radius: var(--bdrRadius);
}
.activeity-list-inner:hover {
    background-color: #EDF8FE;
}
.time-duration {
	font-size: 0.75rem;
	color: var(--blue-60);
}
.activeity-list-inner p {
	font-size: 1rem;
	color: var(--dark-900);
	margin-bottom: 5px;
}

.order{
    background-color: #C9FEDD;
    color: var(--green-900);
}
.quote{
    color: var(--blue);
    background-color: #C9EBFE;
}

.user{
    color: #9B4BC0;
    background-color: #E3C9FE;
}

.product{
    color: #CF7C4F;
    background-color: #FFCEB3;
}

/*---Responsive table view css start here---*/
.responisve-table table th {
	background-color: var(--blue);
	padding: 0.65rem 0.875rem;
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 600;
    border: 1px solid var(--white);
}

.responisve-table table td {
	background-color: var(--white);
	padding: 0.65rem 0.875rem;
	color: var(--dark-900);
	font-size: 0.875rem;
	font-weight: 400;
    border: 1px solid #dfe8f3;
}
.responisve-table table tr:hover td,
.responisve-table table tr:nth-child(odd) td{
    background-color: #EEF6FF;
}
.delete svg{
    stroke: var(--red);
}

/*--Paggination css start--*/
.pagination .page-item .page-link {
	color: var(--dark-900);
	border: 1px solid var(--blue-30);
}
.pagination .page-item .page-link:focus, .pagination .page-item .page-link:focus-visible{
    box-shadow: none;
}

/*--Model box css start here--*/
.close-btns{
    background-color: transparent;
    border: 0;
    color: var(--red);
}
.close-btns svg{
    stroke: var(--red);
}

.health-id-icon {
	background: url(../img/health_id.svg) no-repeat 10px 50%;
	padding-left: 2.5rem !important;
}

/*--input file btn--*/

/* Hide default input */
input[type="file"]{
    display:none;
}

/* Upload Card */
.upload-box {
	width: 100%;
	padding: 30px;
	border: 2px dashed var(--blue);
	border-radius: 12px;
	background: var(--white);
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hover effect */
.upload-box:hover{
    background:var(--blue-10);
}

/* Icon style */
.upload-icon{
    width:72px;
    height:60px;
    border-radius:50%;
    position:relative;
    background: url(../img/upload_icon.svg) no-repeat 0 0;
}

/* Text */
.upload-text h3{
    margin:0;
    font-size:1rem;
    color:var(--dark-900);
}

.upload-text p{
    margin:6px 0 0;
    color:var(--dark-900);
    font-size:0.75rem;
}

.select-label {
	background-color: transparent;
	border: 0px solid var(--primary);
	padding: 5px;
	width: 100%;
}
.select-label:hover{
    background-color: transparent;
}

.product-label .upload-box {
	padding: 0;
	border: 0;
    gap: 5px;
}

.product-label .upload-icon {
	width: 52px;
	height: 40px;
	background-size: 70%;
	background-position: center;
}
.product-label .upload-text h5{
    font-size: 1rem;
    color: var(--blue);
}



/*---Responsive css start here--*/

@media(max-width:992px){
    .sidebar{
        width: 85px;
    }
    .page-wrapper{
        margin-left: 85px;
        width: calc(100% - 85px);
    }
    .top-header {
        width: calc(100% - 85px);
        left: 85px;
    }

    .main-navigation .hide-menu {
        display: none;
    }
    .sidebar-brand{
        display: none;
    }
    .sidebar-toggler-mobile{
        display: flex;
    }
    .left-sidebar-open .sidebar-toggler-mobile{
        display: none;
    }

    .left-sidebar-open .sidebar-brand{
        display: flex;
    }
    .left-sidebar-open .sidebar {
        width: 240px;
        overflow: visible;
    }
    .left-sidebar-open .page-wrapper {
        margin-left: 240px;
        width: calc(100% - 240px);
    }
    .left-sidebar-open .top-header {
        left: 240px;
        width: calc(100% - 240px);
    }
    .left-sidebar-open .main-navigation .hide-menu {
        display: flex;
    }

   .responisve-table table td,
   .responisve-table table th {
        padding: 0.35rem 0.875rem;
        font-size: 0.75rem;
    }
    .search-form .form-control {
        padding: 0.5rem 0 !important;
    }

    .total-request h3, .total-user h3, .total-orders h3, .total-sales h3 {
        font-size: 1.25rem;
    }
}


@media(max-width:767px){
    .login-form {
        width: 90%;
        padding: 1rem;
    }

    .sidebar-toggler-mobile{
        display: none;
    }

    .sidebar{
        width: 0px;
    }
    .page-wrapper{
        margin-left: 0px;
        width: calc(100% - 0px);
    }
    .top-header {
        width: calc(100% - 0px);
        left: 0px;
    }

     .left-sidebar-open .sidebar {
        width: 240px;
        overflow: visible;
    }
    .left-sidebar-open .page-wrapper {
        margin-left: 240px;
        width: calc(100% - 0);
    }
    .left-sidebar-open .top-header {
        left: 240px;
        width: calc(100% - 0);
    }
    .main-navigation ul li a{
        padding: 0;
    }
    .left-sidebar-open .sidebar .main-navigation ul li a{
        padding: 0.75rem 1rem;
    }
    .user-info {
        display: none!important;
    }
    .user-thumbnail {
        width: 32px;
        height: 32px;
    }
    .user-thumbnail i {
        font-size: 1rem;
    }
    .page-header-right-links {
        gap: 16px;
    }
    .show-hide-arrow {
        margin-right: 10px;
    }

    .activeity-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .activeity-list-inner {
        border-bottom: 1px solid#EDF8FE;
        padding: 0 0 1rem 0;
    }
    .activeity-list-inner p {
    	font-size: 0.875rem;
        color: var(--dark-900);
        margin-bottom: 0;
    }

    .page-content {
        padding: 16px;
    }

    .responisve-table {
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
    }

    .responisve-table table {
        min-width: 410px;
    }
    
    
}