
@charset "utf-8";
/* CSS Document */

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #ececf5;
  color: #1a1a1a;
  font-size: 14px;
}

a {
  color: #7047eb;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
p{
	font-size: 14px;
}

::-webkit-scrollbar {
  width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #DBDBDB;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #7047eb;
	border-radius: 5px}
/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 160px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

.dashtitle {
  margin-bottom: 10px;
}

.dashtitle h3 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
  color: #303030;
}
.dashsubtitle{
	font-size: 16px;
	font-weight: 500;
}
/*--------------------------------------------------------------
# top scroll
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #7047eb;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Dropdown menus */

.dropdown-menu {
  border-radius: 0px;
  padding: 10px 0;
	transition: visibility .3s linear, opacity .3s ease, margin-top .3s ease, height .3s ease;
  /*animation-name: dropdown-animate;
  animation-duration: 0.5s;
  animation-fill-mode: both;*/
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f2edff;

}

.dropdown-item.active, .dropdown-item:active{
	background: #f2edff;
	color: #7047eb !important;
}
.dropdown-menu.show{
  min-width: 230px;
	transform: translateY(0);
      opacity: 1;	
}
.dropend .dropdown-toggle::after{
	float: right;
	margin-top: 7px
}
.dropdown-menu{
    animation: dropdown-animate 500ms ease-in-out forwards;
    transform-origin: top center;}

.project .dropdown-menu{
  height: 400px;
    overflow: scroll;
    padding-top:0;
}
.project .dropdown-menu li:first-child{
  position: sticky;
    top: 0px;
  }
 .project .dropdown-menu.show{
  width: 100%;
}
.project button{
  overflow: hidden;
  min-height: 41px;
}
.selectin.dropdown-toggle::after {
    /* float: right; */
    /* margin-top: -12px; */
    position: absolute;
    right: 12px;
    top: 10px;
    background: #fff;
    /* padding: 15px; */
    margin: 15px;
}
@keyframes dropdown-animate {
    0% {
        transform: scaleY(0)
    }
    80% {
        transform: scaleY(1.1)
    }
    100% {
        transform: scaleY(1)
    }
}

/*@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}*/


.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 200px;
  }
}

.logo img {
  max-height: 60px;
  margin-right: 6px;
}


.header {
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  z-index: 900;
  transition: all 0.5s;
  background-color: #fff;
  
  
}
.header-top{
	padding:10px 20px;
	border-bottom: solid 1px #d8d8d8;
}
.header .search-bar {
  min-width: 50%;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 120px;
    visibility: visible;
    opacity: 1;
  }
}

.search-form {
  width: 100%;
}

.search-form input {
  background: #f5f5f8;
  font-size: 14px;
  color: #7047eb;
  border: 0px ;
  padding: 15px 38px 15px 8px;
  border-radius: 0px;
  transition: 0.3s;
  width: 100%;
  
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #7047eb;
	-webkit-text-stroke: .4px;
}

.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 19px;
  color: #7047eb;
  margin-right: 20px;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 12px 16px;
  background: #f5f5f8;
  -webkit-text-stroke: .4px;
}

.header-nav .nav-profile {
  color: #676767;
  
}

.header-nav .nav-profile img {
  max-height: 45px;
	border:#E8E8E8 solid 1px;
}

.header-nav .nav-profile span {
  font-size: 15px;
  font-weight: 600;
}
.small_sapn{
	font-size: 13px !important;
	position: relative;
	top: -6px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #04AA6D;
  border-radius: 50%;
  border:#E8E8E8 solid 1px;
  display: inline-block;
  position: absolute;
  right: 0px;
  bottom: 7px;
}
.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 50%;
}

.header-nav .notifications {
  inset: 64px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
	-webkit-text-stroke: .4px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 64px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 65px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}
.main_menu{
	padding: 5px 10px;
}
.navbar-nav .nav-item{
	font-size: 14px;
	font-weight: 600;
}
.navbar-nav .nav-item .dropdown-item {
  color: #1d192a;
}
.navbar-nav .nav-item .dropdown .dropdown-menu {
  display: none;
  background: #fff;
}
.navbar-nav .nav-item a:hover, .nav-link a:hover{
	color: #7047eb;
}
.navbar-nav .nav-item {
	padding: 0px 5px;
}
.navbar-nav .nav-item a i{
	font-size: 20px;
	margin-right: 5px;
	-webkit-text-stroke: .4px;
	position: relative;
	top: 2px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
	color: #7047eb;
}
.navbar-nav .nav-item .dropdown:hover>.dropdown-menu, 
.navbar-nav .nav-item .dropend:hover>.dropdown-menu {
  display: block;
  margin-top: .1em;
  margin-left: .1em;
  color: #7047eb;
}
/*.navbar-nav .nav-item .dropend:hover>.dropdown-menu li a::before, .nav-item li a::before{
		 font-family: "bootstrap-icons";
		 content: "\F517";
		 font-size: 8px;
		 margin-right: 5px;
		 
	 }*/
@media screen and (min-width:769px) {
  .navbar-nav .dropend:hover>.dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
	box-shadow: 0px;  
  }
  .navbar-nav .dropend .dropdown-toggle {
    margin-left: .2em;
  }
	
}

.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 0px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 10px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #303030;
  font-family: "Montserrat", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 10px 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
.btn{
	padding: 8px;
}
/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}
.btn{border-radius: 0px}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #7047eb;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}
/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #7047eb;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #7047eb;
  border-bottom: 2px solid #7047eb;
}
.dashboard{
	width: 100%;
}
.dash-aside{
	width: 430px;
	margin-left: 20px;
}

.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}
.dash-aside .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}
.dashboard .filter .icon, .dash-aside .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #7047eb;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}
 .sales-overview {
  display: flex;
  justify-content:space-between;
  border-bottom: solid 1px #e2e0fd;
	padding-bottom: 10px; 
}
.media{
	padding: 0 10px;
	
}
.left-border{
	border-right: solid 1px #e3e1fc;
}
.media label{
	font-size: 12px;
	color: #646c75;
}
.media h3{
	font-weight: 700;
}
.media span{
	
	font-size: 12px;
}
.media span.up{
	color: #5de117;
	font-size: 12px;
}
.media span.down{
	color: #E11616;
	font-size: 12px;
}
.media span i{
	font-size: 22px;
}
.media h6{
	font-weight: 700;
	font-size: 13px;
}
.sales-date{
	display: flex;
	justify-content:space-between;
}
/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #7047eb;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #7047eb;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

.btn-purple{
	background: #7047eb;
	border: #7047eb solid 1px;
	color: #fff;
	border-radius: 0px;
}
.purple_lrg{
	padding: 10px 15px;
	
}
.purple{
	border: #f5f5f8 solid 2px;
	border-radius: 2px;
	color: #7047eb;
}
.purple:hover{
	border: #7047eb solid 2px;
	color: #7047eb;
	border-radius: 3px;
}
.btn-purple:hover, .btn-purple a:hover{
	border: #7047eb solid 1px;
	clear: #7047eb;
}
.apexcharts-legend-text, .apexcharts-text, .apexcharts-xaxis-label,
.echarts-tooltip{
	font-family: "Montserrat", sans-serif !important;
}
.calendarbox{
	padding-bottom: 20px;
}
.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #efefef;
}

.calendar-toolbar > .current-month {
  font-size: 20px;
  font-weight: bold;
  color: #19181a;
}

.calendar-toolbar > [class$="month-btn"] {
  width: 40px;
  aspect-ratio: 1;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #19181a;
  background: #f8f7fa;
  border: none;
  
}
.calendar_title{
	padding: 0 30px;
	display: flex;
}
.calendar_title h1{
	font-size: 65px;
	color: #7047eb;
	font-weight: 700;
}
.calendar-table{
	margin: auto;
}
.current-date{
	margin-top: 16px;
	margin-left: 10px;
	font-size: 14px;
}
.weekdays,
.calendar-days {
  
}
.weekdays {
  padding-top: 12px;
}
.calendar-days {
  padding-bottom: 12px;
}

.weekday-name,
[class$="-day"] {
  width: 35px;
  height: 35px;
  color: #19181a;
  text-align: center;
  line-height: 40px;
  font-weight: 500;
  font-size: 1rem;
}

.weekday-name {
  color: #19181a;
  font-weight: 700;
}

.current-day {
  background-color: rgb(112, 71, 235);
  color: #f8f7fa;
  font-weight: 700;
  transition: 0.5s;
  cursor: pointer;
}

.padding-day {
  color: #a5a5a5;
  user-select: none;
}

.calendar-toolbar > [class$="month-btn"]:hover,
.month-day:hover {
  
  background-color: #f8f7fa;
  color: rgb(112, 71, 235);
  transition: 0.1s;
  cursor: pointer;
  box-shadow: inset 0px 0px 0px 1.5px rgb(112, 71, 235);
}

.calendar-toolbar > [class$="month-btn"]:focus,
.month-day:focus{
  
  background-color: rgb(112, 71, 235);
  color: #f8f7fa;
}

.goto-buttons {
  border-top: 1px solid #efefef;
  padding-block: 18px;
  display: flex;
  justify-content: space-evenly;
}
.table{
	padding: 0px;
}
.table-responsive{
	width: 100%;
	overflow-x:auto;
}
.dataTables_wrapper .dt-row{
	 
}
.ver1 td {
  padding: 12px 20px;
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
}
.selectli{
	padding: 8px 15px;
}
.ver1 th {
  padding: 12px 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  background-color: #7047eb;
  
  text-align: center;
}
.ver1 img{
	width: 32px;
	height: 32px;
	margin-right: 10px;
	border-radius: 50%; 
}
.table .ver1 .row100:hover {
  background-color: #DB8B8C;
}

.ver1 .hov-column-ver1 {
  background-color: #f2f2f2;
}

.ver1 .hov-column-head-ver1 {
  background-color: #484848 !important;
}

.ver1 .row100 td:hover {
  background-color: #6c7ae0;
  color: #fff;
}
.btn-small{
	padding: 6px 10px;
	    color: #595959;
    background: #f5f5f8;
	
}
/*login*/

.pagination .page-link{
	border-radius: 0px;
	background: rgb(112, 71, 235);
	color: #fff;
	padding: 7px 15px;
}
.page-item:first-child .page-link{
	border-radius: 0px;
}
.page-item:last-child .page-link{
	border-radius: 0px;
}
.loginimg{
	background: #fff;
	padding-right: 0px;
	margin-right: 0px;
}
.logimg{
	background:url("../img/loginbg.jpg");
	background-size: cover;
	width: 100%;
	height: 100%;
	padding: 25px 35px;
}
.signinimg{
	background: #fff;
	padding-right: 0px;
	margin-right: 0px;
}
.signimg{
	background:url("../img/signinbg.jpg");
	background-size: cover;
	width: 100%;
	height: 100%;
	padding: 25px 35px;
}
.login-logo img{
	width: 225px;
	margin-bottom: 55px;
}
.loginbox{
	padding: 65px;
	
}
.login_text{
	font-size: 22px;
}
.form-control, .form-select{
	border-radius: 0px;
	font-size: 14px;
	padding: 10px;
}
.loginbox label{
	font-size: 12px;
}
.cursor-pointer {
      cursor: pointer;
    }
.eye_show{
	position: relative;
    left: -9px;
    bottom: -36px;
    float: right;
	color: #7047eb;
}
.forgot{
	float: right;
	
}
.logtext{
	
	color: aliceblue;
	font-size: 40px;
	
}
.line-before-text {
  position: relative;
  display: inline-block;
  padding-left: 20px; /* Space for the line */
}

.line-before-text::before {
  content: '';
  position: absolute;
  top: 72%;
  left: -55px;
  transform: translateY(-50%);
  width: 70px; 
  height: 3px;
  background-color: #fff;
}

.search-bar {
  min-width: 50%;
  padding: 0 20px;
}



.search-form input {
  background: #f5f5f8;
  font-size: 14px;
  color: #7047eb;
  border: 0px ;
  padding: 13px 38px 13px 15px;
  border-radius: 0px;
  transition: 0.3s;
  width: 100%;
  
}

.search-form input:focus,
.search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  
}

.search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.search-form button i {
  color: #7047eb;
	-webkit-text-stroke: .4px;
}
.advance{
	padding: 10px 15px;
}
.advance_search{
	padding: 20px 0;
	margin-top: 20px;
	border-top: solid 1px #e2e0fd;
}
.selectin{
	padding: 10px;
	width: 100%;
	background: #fff;
	border: solid 1px #dee2e6;
	text-align: left;
	color: #727272;
}
.selectin.dropdown-toggle::after{
	float: right;
    margin-top: 8px;
}
.datetimepicker button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.datetimepicker button i {
  color: #7047eb;
	-webkit-text-stroke: .4px;
}
.input-group-text{
	border-radius: 0px;
	color: #7047eb;
}
.flatpickr-day.today {
    border-color: #7047eb;
}

.flatpickr-day.today:hover,.flatpickr-day.today:focus {
    border-color: #7047eb;
    background: #7047eb;
    color: #fff
}
.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay {
    background: #7047eb;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: #7047eb
}
.form-check-input[type=checkbox] {
    border-radius: 0.25em;
    width: 15px;
    height: 15px;
}
/*04-12*/
.box {
  background-color: #2B2D3E;
  padding: 25px 20px;
}

.shadow {
  box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
}
.sparkboxes .box {
  padding-top: 10px;
  padding-bottom: 10px;
  text-shadow: 0 1px 1px 1px #666;
  box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
  margin-bottom: 10px;
  
}

.sparkboxes .box .details {
  color: #fff;
	text-align: right;
}
.sparkboxes strong {

  
  color: #fff;
}
.sparkboxes .box .details h5{
	font-size: 14px;
}
.sparkboxes .box .details h3{
	font-weight: 800;
}
.sparkboxes .box1 {
  /*background-image: linear-gradient( 135deg, #a990f3 10%, #7047eb 100%);*/
	background:#7047eb; 
}

.sparkboxes .box2 {
 	/*background-image: linear-gradient( 135deg, #ffdc6e 10%, #f4aa42 100%);*/
	background:#F39C12; 
}

.sparkboxes .box3 {
 /* background-image: linear-gradient( 135deg, #fd8175 10%, #fc422f 100%);*/
	background:#C0392B; 
}

.sparkboxes .box4 {
  /*background-image: linear-gradient( 135deg, #9ba0fb 10%, #5961F9 100%);*/
	background:#005B96; 
}
.sparkboxes .box5 {
  /*background-image: linear-gradient( 135deg, #2BAE66 10%, #19683d 100%);*/
	background:#16A085; 
}

.sparkboxes .box6 {
  /*background-image: linear-gradient( 135deg, #81a8ff 10%, #4C83FF 100%);*/
	background:#1B3A57;
}
.sparkboxes .box7 {
  
	background:#3498DB;
}
.sparkboxes .box8 {
  
	background:#16213E;
}
.sparkboxes .box9 {
  
	background:#FF6F61;
}
.sparkboxes .box10 {
  
	background:#4A4E69;
}
.sparkboxes .box11 {
  
  background:#114378;
}
.sparkboxes .box12 {
  
  background:#73982d;
}
.bgin{
	background: #f0f4fb;
}
.modal-content{
	border-radius: 0px;
}
.select_height.dropdown-menu.show{
	height: 450px;
	overflow: scroll;
}
.dropdown-item input[type='checkbox']{
	margin-right: 5px;
}
.dynamic-div{
	padding: 15px;
	margin: 10px 0;
	border: solid 1px #dee2e6;
}
.jtoggler {
    display: none;
}
.jtoggler:disabled + .jtoggler-control,
.jtoggler:checked:disabled + .jtoggler-control {
    background-color: rgba(0,0,0,0.05);
}
.jtoggler:disabled + .jtoggler-control .jtoggler-handle {
    background-color: #ccc;
}
.jtoggler:disabled + .jtoggler-control:hover {
    cursor: default;
}
.jtoggler-wrapper {
    display: inline-flex;
    align-items: center;
}
.jtoggler-control {
    position: relative;

    width: 50px;
    height: 30px;

    background: #e8e3f7;
    border-radius: 30px;
    box-shadow: inset 0 0 1px rgba(0,0,0,0.25);

    transition: background-color 0.3s;
}
.jtoggler-control:hover {
    cursor: pointer;
}
.jtoggler-control .jtoggler-handle {
    display: block;
    position: absolute;

    width: 28px;
    height: 28px;
    top: calc(50% - 14px);
    left: 0;

    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.25);

    transition: left 0.3s;
}
.jtoggler:checked + .jtoggler-control {
    background: #7047eb;
}
.jtoggler:checked + .jtoggler-control .jtoggler-handle {
    left: 21px;
}
.jtoggler-label {
    padding-left: 5px;
}
.jtoggler-radio {
    display: none;
}
.jtoggler-btn-wrapper {
    display: flex;
    width: 33.33%;
}
.jtoggler-btn-wrapper:hover {
    cursor: pointer;
}
.jtoggler-wrapper-multistate .jtoggler-control {
    display: flex;
    width: 90px;
}
.jtoggler-wrapper-multistate .jtoggler-control.is-fully-active {
    background: #4a89dc;
}
.jtoggler-wrapper-multistate .jtoggler:disabled + .jtoggler-control:hover .jtoggler-btn-wrapper {
    cursor: default;
}
.jtoggler-btn-wrapper:nth-child(1).is-active ~ .jtoggler-handle {
    left: 0;
}
.jtoggler-btn-wrapper:nth-child(2).is-active ~ .jtoggler-handle {
    left: 30px;

    background: #4a89dc;
}
.jtoggler-btn-wrapper:nth-child(3).is-active ~ .jtoggler-handle {
    left: 62px;
}
#range-buttons{
	margin-top: 10px;
}
/*.select-all{
	margin: 10px 5px 10px 15px;
}*/
.navbar-toggler{
	border: 0px;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    border: none;
    box-shadow: none;
}
 #pie-chart {
            width: 100%;
            max-width: 800px;
            height: 500px;
         
	 	font-family: "Montserrat", sans-serif;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #pie-chart {
                height: 450px;
            }

            #range-buttons .btn {
                font-size: 14px;
                padding: 8px 16px;
				margin-bottom: 8px;
				width: 100%;
            }
        }

        @media (max-width: 480px) {
            #range-buttons .btn {
                font-size: 12px;
                padding: 6px 12px;
            }

            #pie-chart {
                height: 300px;
            }
        }
#wrap {
		width: 100%;
		margin: 0 auto;
		}

	#external-events {
		float: left;
		width: 150px;
		padding: 0 10px;
		text-align: left;
		}

	#external-events h4 {
		font-size: 16px;
		margin-top: 0;
		padding-top: 1em;
		}

	.external-event { /* try to mimick the look of a real event */
		margin: 10px 0;
		padding: 2px 4px;
		background: #3366CC;
		color: #fff;
		font-size: .85em;
		cursor: pointer;
		}

	#external-events p {
		margin: 1.5em 0;
		font-size: 11px;
		color: #666;
		}

	#external-events p input {
		margin: 0;
		vertical-align: middle;
		}

	#calendar {
/* 		float: right; */
        margin: 0 auto;
		width: 100%;
		background-color: #FFFFFF;
        box-shadow: 0 1px 2px #C3C3C3;
		}
.fc-h-event, .fc-v-event {
    border: 1px solid #7047eb;
    background-color:#fff;
}
/*email*/


.profile-pic img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border: 2px solid #ddd;
        }
        .message {
            color: green;
        }
/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile-card{
	padding: 50px 0
}
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #7047eb;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #7047eb;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}
#chart-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/*email*/
.email{
	display: flex;
}
.sidebar {
            width: 250px;
            background-color: #27203c;
            color: #ecf0f1;
            display: flex;
            flex-direction: column;
            padding: 20px;
        }

        .sidebar h2 {
            margin-bottom: 30px;
            text-align: center;
            font-size: 1rem;
			
        }

        .sidebar ul {
            list-style: none;
			margin: 0;
			padding: 0;
        }

        .sidebar ul li {
            margin: 10px 0;
        }

        .sidebar ul li a {
            color: #ecf0f1;
            text-decoration: none;
            display: block;
            padding: 10px;
           
            transition: background-color 0.3s;
        }

        .sidebar ul li a:hover {
            background-color: #38314B;
        }

        /* Main content area */
        .main-content {
            flex: 2;
            display: flex;
            flex-direction: column;
            padding: 20px;
			background: #fff;
        }

        .header_email {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            padding: 10px 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .header_email h2 {
            color: #333;
			padding: 5px;
        }

        .compose-form {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
.inbox {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        .email-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s;
        }

        .email-row:hover {
            background-color: #f9f9f9;
            cursor: pointer;
        }

        .email-sender {
            flex: 1;
            font-weight: bold;
            color: #34495e;
        }

        .email-subject {
            flex: 2;
            color: #7f8c8d;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

        .email-date {
            flex: 0.8;
            text-align: right;
            color: #bdc3c7;
        }

        /* Scrollbar styling */
        .inbox::-webkit-scrollbar {
            width: 8px;
        }

        .inbox::-webkit-scrollbar-thumb {
            background-color: #bdc3c7;
            border-radius: 8px;
        }
      .email-details {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .email-details h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .email-details p {
            margin: 5px 0;
            color: #555;
        }

        .email-details .meta {
            font-size: 0.9rem;
            color: #888;
        }

        .email-body {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
        }

        .email-body p {
            line-height: 1.6;
            color: #444;
        }   
.ql-container{
	height: 150px;
}
.offcanvas-end {
            width: 300px; /* Adjust the width of the popup */
        }
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	border-radius: 0px;
	background: #7047eb;
}  
.nav-pills .nav-link{
	border: solid 1px #7047eb;
	color: #7047eb;
	border-radius: 0px;
}
.offcanvas{
	width: 50% !important;
}
h4.lead-heading {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 10px;
    color: #262626;
}
span.lead-title {
    display: block;
    font-size: 14px;
    opacity: .5
}
.form-group{
	    margin-bottom: 1rem;
}
.modal-backdrop{
	z-index: 1046px !important;
	--bs-backdrop-zindex:1046px !important;
}
.offcanvas-header .btn-close, .modal-header .btn-close{
	font-size: 40px;
}
.input-group .btn {
	z-index: 0 !important;
}
.mt-30{
	margin-top: 30px;
}
.form-check-label{
	color: rgba(47,47,47,1.00);
	font-weight: bold;
}
/* 404 */
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #7047eb;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

/*responcive fix*/

 @media only screen and (max-width: 1199px) and (min-width: 300px){
	 .dash-aside{
		 display: none;
	 }
	 .weekdays, .calendar-days{
		     padding-inline: 4px;
	 }
}

@media only screen and (max-width: 1540px ) and (min-width: 1200px){
	.leads, .reports{
		width: 75%;
	}
	
}

 @media only screen and (max-width: 992px) and (min-width: 300px){
	 
	 .header-nav .nav-profile span {
    width: 100%;
    float: left;
	}
	 .logo img {
    max-height: 50px;
		 }
	 .dropend .dropdown-toggle{
		 padding-left: 10px;
	 }
	 .navbar-nav .nav-item .dropend:hover>.dropdown-menu{
		 box-shadow:0 5px 30px 0 rgba(82, 63, 105, 0.0);
	 }
	 
	 .navbar-nav .nav-item .dropend:hover>.dropdown-menu li a::before{
		 font-family: "bootstrap-icons";
		 content: "\F51C";
		 font-size: 8px;
		 margin-right: 5px;
		 
	 }
	 .offcanvas{
	width: 100% !important;
}
}
@media only screen and (max-width: 760px) and (min-width: 300px){
	 .email{
		display: block;
}
	.sidebar, .sidebar ul{
		width: 100%;
		margin-top: 20px;
	}
	
	.sidebar ul li, .sidebar ul li a {
		display: inline;
	}
	.loginbox{
		padding: 20px;
	}
	.header-nav .nav-icon{
	margin-right: 10px;
    
    width: 40px;
    height: 40px;
    padding: 7px 10px;
	}
}
@media only screen and (max-width: 600px) and (min-width: 300px){
	.header-top{
		display: block !important;
	}
	.header-nav .nav-profile span {
    width: 100%;
    float: left;
	font-size: 12px;
	}
	.header-nav{
		margin-top: 10px;
	}
	.header-nav ul.align-items-center{
		-ms-flex-pack: justify !important;
    justify-content: space-between !important;
	}
	.header-nav .notifications, .header-nav .messages {
		left: -100px !important;
		width: 320px;
	}
	.header-nav .messages {
		left: -50px !important;
		width: 320px;
	}
	#main {
		margin-top: 200px;}
	.sales-overview{
		display: block;
	}
	.advance{
		width: 100%;
		margin-bottom: 20px;
	}
}

/*020124*/
.advance_search ul.dropdown-menu.show{
	height:350px;
	overflow-y: scroll;
}
.offcanvas-bottom-right {
    position: fixed;
    bottom: -100%;
    right: 0;
    width: 300px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    border-radius: 10px; /* Optional for rounded corners */
    transition: transform 0.3s ease-in-out;
    transform: translateY(0) translateX(100%);
}

.offcanvas-bottom-right.show {
    transform: translateY(-100%) translateX(-100%);
}
.form-check-input{
	border: 1px solid #4d90fe;
}
.selectlong ul.dropdown-menu.show{
	height:350px;
	overflow-y: scroll;
}
.bg-purple {
	background: #7047eb;}

.btn-smalls {
    padding: 6px 10px;
    color: #fff;
    }
.blue{
	color: #fff;
	background: var(--bs-blue);
}

.indigo{
	color: #fff;
	background: var(--bs-indigo);
}
.pink{
	color: #fff;
	background: var(--bs-pink);
}
.red{
	color: #fff;
	background: var(--bs-red);
}
.orange{
	color: #fff;
	background: var(--bs-orange);
}
.yellow{
	color: #fff;
	background: var(--bs-yellow);
}
.green{
	color: #fff;
	background: var(--bs-green);
	
}
.teal{
	color: #fff;
	background: var(--bs-teal);
}
.bluedark{
	color: #fff;
	background: #005B96;
}
.capblue{
	color: #fff;
	background: #1b3a57;
}
.yellow{
	color: #fff;
	background: var(--bs-yellow);
}
.blue:hover{
	color: #fff;
	background: #0a61e1;
}

.indigo:hover{
	color: #fff;
	background: #590bd7;
}
.pink:hover{
	color: #fff;
	background: #c52d79;
}
.red:hover{
	color: #fff;
	background: #cb2f3e;
}
.orange:hover{
	color: #fff;
	background: rgba(236,110,0,1.00);
}
.yellow:hover{
	color: #fff;
	background: #d19d00;
}
.green:hover{
	color: #fff;
	background: #126a42;
	
}
.teal:hover{
	color: #fff;
	background: #179972;
}
.bluedark:hover{
	color: #fff;
	background: #004A7A;
}
.capblue:hover{
	color: #fff;
	background: #1b3a57;
}
.advance_search{
  padding: 20px 15px;
  margin-top: 20px;
  border-top: solid 1px #e2e0fd;
  background: #e7f0fb;
  /*background: #edf2fd;
  background: #f0ecfd;*/
 /* background: #f3f3f3;
 background:#e7f0fb linear-gradient(180deg, #fff, #e7f0fb) repeat-x !important;*/
 /*background:#e7f0fb linear-gradient(180deg, #fff, #e7f0fb) repeat-x !important;*/
}
.ver1 td {
    padding: 12px 20px;
    /*font-size: 14px;*/
    color: #1a1a1a;
    font-weight: 600;
  }
 .form_head{
  background: #7047eb;
    border-radius: 5px;
    padding: 20px !important;
    color: #ffffff;
    margin-bottom: 30px;
 }
 .bg{
  background: #E7F0FB;
 }
 .card-title_box{
      padding: 10px 20px 0px 20px;
  background: #7047eb;
  margin-bottom: 30px;
}
.card-title_box .card-title{
  color: #fff;
}
.input-group-text, .selectin, .form-control, .form-select{     border: #9C9C9C solid 1px !important; }
.float-right{
  float: right;
}
@media only screen and (max-width: 860px) and (min-width: 300px){
  
  .noflex{
    display: block !important;
    
  }
}
@media only screen and (max-width: 600px) and (min-width: 300px){
  
  .noflex btn{
    width: 100%;
    margin-bottom: 5px;
  }
}
.login-container {
            
    margin: 100px auto;
    padding: 50px;
    border: 1px solid #ddd;
    border-top: 5px solid #7047eb;
    border-radius: 5px;
    background: #f8f9fa;
}
.mt-20{
    margin-top: 20px;
}