@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('../../plugins/fontawesome/css/font-awesome.css'); /*Icons Fonts*/

/* Modern Design System Variables */
:root {
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bg-main: #f8fafc;
  --bg-sidebar: #0f172a;
  --bg-header: #ffffff;
  --bg-card: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;

  /* Brand Colors */
  --brand-primary: #4f46e5;
  --brand-primary-hover: #4338ca;
  --brand-success: #10b981;
  --brand-info: #0ea5e9;
  --brand-warning: #f59e0b;
  --brand-danger: #ef4444;

  /* Layout */
  --sidebar-width: 250px;
  --sidebar-collapsed: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 0 3px rgba(79, 70, 229, 0.3);
}


body {
  background-color: var(--bg-main);
  color: var(--text-secondary);
  font-family: var(--font-family-sans);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body, html {
  /*overflow-x:hidden;*/
}

strong, b {
  font-weight: 600;
  color: var(--text-primary);
}

.transit {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
}

/*****************************
Loader
*****************************/

.loading-container {
  position:fixed;
  background-color: var(--bg-main);
  z-index:9;
  top: 0;
  left: 0;
  height:100%;
  width:100%;
  cursor:wait;
}

.loading {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  bottom:0;
  right:0;
  margin:auto;
  transform: rotate(45deg);
}

.loading div {
  width: 16px;
  height: 16px;
  position: absolute;
}

.l1 div, .l2 div, .l3 div, .l4 div {
  width: 100%;
  height: 100%;
}

.l1 div{ background-color:#03718c;}
.l2 div{ background-color:#025569;}
.l3 div{ background-color:#025569;}
.l4 div{ background-color:#03718c;}

.l1 { transform: translate(0,0); }
.l2 { transform: translate(0,16px); }
.l3 { transform: translate(16px,0px); }
.l4 { transform: translate(16px,16px); }

@keyframes rot1 {
  0%{ transform: rotate(0deg); }
  40%{ transform: rotate(0deg); }
  50%{ transform: rotate(0deg); }
  60%{ transform: rotate(90deg); }
  100%{ transform: rotate(90deg); }
}

@keyframes rot2 {
  0%{ transform: rotate(0deg); }
  40%{ transform: rotate(0deg); }
  50%{ transform: rotate(0deg); }
  60%{ transform: rotate(-90deg); }
  100%{ transform: rotate(-90deg); }
}

@keyframes rot3 {
  0%{ transform: rotate(45deg); }
  35%{ transform: rotate(45deg); }
  65%{ transform: rotate(405deg); }
  100%{ transform: rotate(405deg); }
}

@keyframes l1-rise {
  0%{ transform: translate(0px,0px); }
  30%{ transform: translate(-4px, -4px); }
  70%{ transform: translate(-4px, -4px); }
  100%{ transform: translate(0px, 0px); }
}

@keyframes l2-rise {
  0%{ transform: translate(0,16px); }
  30%{ transform: translate(-4px, 20px); }
  70%{ transform: translate(-4px, 20px); }
  100%{ transform: translate(0,16px); }
}

@keyframes l3-rise {
  0%{ transform: translate(16px, 0px); }
  30%{ transform: translate(20px, -4px); }
  70%{ transform: translate(20px, -4px); }
  100%{ transform: translate(16px, 0px); }
}

@keyframes l4-rise {
  0%{ transform: translate(16px,16px); }
  30%{ transform: translate(20px, 20px); }
  70%{ transform: translate(20px, 20px); }
  100%{ transform: translate(16px,16px); }
}



.l1 { animation: l1-rise 3s ease 0s infinite; }
.l2 { animation: l2-rise 3s ease 0s infinite; }
.l3 { animation: l3-rise 3s ease 0s infinite; }
.l4 { animation: l4-rise 3s ease 0s infinite; }

.l1 div, .l4 div { animation: rot1 3s ease 0s infinite; }
.l2 div, .l3 div { animation: rot2 3s ease 0s infinite; }






/*****************************
Left Panel (aside navigation)
*****************************/

aside.left-panel{
  background-color: var(--bg-sidebar);
  width: var(--sidebar-width);
  position: fixed;
  padding: 30px 0px;
  box-shadow: var(--shadow-xl, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1));
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1000;
  transition: width 0.3s ease;
}

aside.left-panel.collapsed{
  overflow: visible !important;
  position: absolute;
  bottom: 0px;
}


/*** Aside sizes ***/

aside.left-panel.lg{
  width: 280px;
}

aside.left-panel.lg + .content{
  margin-left: 280px;
}

/*** Aside Collapsed ***/
@media (min-width: 768px) {
  aside.left-panel.collapsed{
    width: var(--sidebar-collapsed);
    text-align: center;
  }

  aside.left-panel.collapsed + .content{
    margin-left: 80px; /* Force to hardcoded 80px */
    width: calc(100% - 80px) !important;
    transition: margin-left 0.3s ease, width 0.3s ease;
  }

  aside.left-panel.collapsed .user .user-login,
  aside.left-panel.collapsed span.nav-label{
    display: none;
  }

  aside.left-panel.collapsed .navigation > ul > li > a,
  aside.left-panel.collapsed .navigation > ul > div > li > a {
    padding: 15px 0;
    text-align: center;
    border-radius: var(--border-radius-md);
    margin: 5px;
    display: flex;
    justify-content: center;
  }

  aside.left-panel.collapsed i.fa{
    font-size: 24px;
    margin-right: 0;
  }

  aside.left-panel.collapsed .navigation > ul > li.has-submenu:after{
    display: none;
  }
}


/*****************************
User
*****************************/

.user{
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user h4.user-name{
  color: #f1f5f9;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.user img{
  border: 3px solid rgba(255,255,255,0.1);
  padding: 4px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.user .user-login{
  display:inline-block;}

.user .user-login .btn{
  border:1px solid #343847;
  background-color:transparent;
  color:#616574;
  padding:4px 8px;}

.user-login .dropdown-menu{
  border:1px solid #343847;
  color:#616574;
  background-color:#2B2F3E;
  width:100%;
  margin-top:-1px;
  min-width:100%;
  border-radius:0px 0px 4px 4px;
  border-top:0px;}

.user-login .dropdown-menu li a{
  font-size:12px;
  color:#616574;
  padding:4px 8px;}

.user-login .dropdown-menu li a:hover,
.user-login .dropdown-menu li a:focus{
  background-color:#616574;
  color:#fff;}

.user .user-login .status-icon{
  font-size:6px;
  line-height:0px;
  margin-right:2px;
  position:relative;
  bottom:2px;}

.user .user-login .status-icon.available{
  color:#27c7bc;}

.user .user-login .status-icon.busy{
  color:#EC971F;}

.user .user-login .status-icon.invisibled{
  color:#4a4e5d;}

.user .user-login .status-icon.signout{
  color:#FF404B;}




/*****************************
Navigation
*****************************/

.navigation{
  margin: 20px 0px;
  padding: 0 15px;
}

.navigation > ul > li{
  position: relative;
  margin-bottom: 5px;
}
.navigation > ul > div > li{
  position: relative;
  margin-bottom: 5px;
}

.navigation > ul > li.has-submenu:after{
  content:"\f105";
  font-family: 'FontAwesome';
  display:inline-block;
  position:absolute;
  color: var(--text-muted);
  right:15px;
  transition: all 0.3s;
  top:12px;
  visibility:hidden;
}
.navigation > ul > div > li.has-submenu:after{
  content:"\f105";
  font-family: 'FontAwesome';
  display:inline-block;
  position:absolute;
  color: var(--text-muted);
  right:15px;
  transition: all 0.3s;
  top:12px;
  visibility:hidden;
}

.navigation > ul > li.active.has-submenu:after,
.navigation > ul > div > li.active.has-submenu:after,
.navigation > ul > li.has-submenu:hover:after{
  color: #ffffff;
}
.navigation > ul > div > li.has-submenu:hover:after{
  color: #ffffff;
}

.navigation > ul > li > a{
  display: block;
  padding: 12px 20px;
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  border-bottom: none;
}
.navigation > ul > div > li > a{
  display: block;
  padding: 12px 20px;
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  border-bottom: none;
}

.navigation > ul:hover > li.active > a{
  background-color: transparent;
  box-shadow: none;
  color: #94a3b8;
}
.navigation > ul:hover > div > li.active > a{
  background-color: transparent;
  box-shadow: none;
  color: #94a3b8;
}

.navigation > ul > li:hover > a,
.navigation > ul > li.active:hover > a,
.navigation > ul > li.active > a{
  color: #ffffff;
  background-color: var(--brand-primary);
  box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
  transform: translateX(4px);
}
.navigation > ul > div > li:hover > a,
.navigation > ul > div > li.active:hover > a,
.navigation > ul > div > li.active > a{
  color: #ffffff;
  background-color: var(--brand-primary);
  box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
  transform: translateX(4px);
}

.navigation ul li a i{
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.navigation ul div li a i{
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}



/*** Sub Menu ***/
.navigation ul li ul{
  display: none;
  background-color: transparent;
  padding-left: 20px;
  margin-top: 5px;
}
.navigation ul div li ul{
  display: none;
  background-color: transparent;
  padding-left: 20px;
  margin-top: 5px;
}

aside:not(.collapsed) .navigation ul li.active ul{
  display: block;
}
aside:not(.collapsed) .navigation ul div li.active ul{
  display: block;
}

.navigation ul li ul li a{
  padding: 10px 15px;
  color: #94a3b8;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-size: 13px;
  border-left: 1px solid #334155;
  text-align: left;
  display: block;
}
.navigation ul div li ul li a{
  padding: 10px 15px;
  color: #94a3b8;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-size: 13px;
  border-left: 1px solid #334155;
  text-align: left;
  display: block;
}

.navigation ul li ul li a:hover,
.navigation ul li ul li.active a{
  border-left: 2px solid var(--brand-primary);
  color: #ffffff;
  background-color: rgba(255,255,255,0.05);
}
.navigation ul div li ul li a:hover,
.navigation ul div li ul li.active a{
  border-left: 2px solid var(--brand-primary);
  color: #ffffff;
  background-color: rgba(255,255,255,0.05);
}




/*** Aside Collapsed Sub Menu ***/
@media (min-width: 768px) {
  aside.left-panel.collapsed .navigation ul li ul{
    position:absolute;
    z-index:3;
    left:100%;
    top:0px;
    background-color:#F2F2F4;
    box-shadow:none;
    padding:10px 0px;
    min-width:200px;
    border:1px solid #dddddd;}
  aside.left-panel.collapsed .navigation ul div li ul{
    position:absolute;
    z-index:3;
    left:100%;
    top:0px;
    background-color:#F2F2F4;
    box-shadow:none;
    padding:10px 0px;
    min-width:200px;
    border:1px solid #dddddd;}

  aside.left-panel.collapsed .navigation ul li ul:before{
    display:block;
    content:"";
    height:20px;
    width:20px;
    border-color: transparent #F2F2F4 transparent transparent;
    border-width:10px;
    border-style:solid;
    position:absolute;
    cursor:pointer;
    right:100%;
    top:22px;}
  aside.left-panel.collapsed .navigation ul div li ul:before{
    display:block;
    content:"";
    height:20px;
    width:20px;
    border-color: transparent #F2F2F4 transparent transparent;
    border-width:10px;
    border-style:solid;
    position:absolute;
    cursor:pointer;
    right:100%;
    top:22px;}

  aside.left-panel.collapsed .navigation > ul > li:hover > ul{
    display:block !important;}
  aside.left-panel.collapsed .navigation > ul > div > li:hover > ul{
    display:block !important;}


  aside.left-panel.collapsed .navigation ul li ul li a{
    border:0px;
    color:#8f8f9f;
    border-bottom:1px dashed #ECECEE;}
  aside.left-panel.collapsed .navigation ul div li ul li a{
    border:0px;
    color:#8f8f9f;
    border-bottom:1px dashed #ECECEE;}
}



/*****************************
Top Header
*****************************/

header{
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  padding: 0px !important;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: 60px;
  z-index: 999;
  position: relative;
}

header:before,
header:after {
  display: none !important;
}

header.container-fluid {
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-right: 0px !important;
  margin-left: 0px !important;
}

section.content {
  width: calc(100% - var(--sidebar-width));
  margin-left: var(--sidebar-width);
  padding: 0 !important;
  transition: margin-left 0.3s ease, width 0.3s ease;
  position: relative;
  z-index: 1;
}

.navbar-toggle{
  margin: 0 !important;
  display: block;
  padding-left: 0px;
  border: none;
  background: transparent;
}

.navbar-toggle .icon-bar{
  background-color: var(--text-secondary);
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  margin-bottom: 4px;
}
.app-search {
  position:relative;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
}

.app-search .form-control,
.app-search .form-control:focus{
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-primary);
  padding: 8px 15px 8px 35px;
  background-color: var(--bg-main);
  box-shadow: none;
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
}

.app-search .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-glow);
  background-color: #ffffff;
}

.app-search:before{
  content:"\f002";
  position:absolute;
  left:14px;
  font-family: FontAwesome;
  cursor:pointer;
  top: 10px;
  color: var(--text-muted);
  display:inline-block;
}

.app-search .form-control::-moz-placeholder {
  color: var(--text-muted);
}

.container-fluid {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin: 0 !important;
}

.content > .container-fluid,
.content > .container,
.content > .warper,
section.content .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 15px !important; /* Kept 15px inner layout padding */
  padding-right: 15px !important;
}



/*** Nav Toolbar (right)***/

header .navbar-default .navbar-nav > li > a{
  color: var(--text-secondary);
}

/*** Nav Toolbar (right)***/

.nav-toolbar{
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
}

.nav-toolbar > li{
  padding: 0;
  display: inline-block;
  margin-left: 10px;
  position: relative;
  list-style: none;
}

.nav-toolbar li span.badge{
  position:absolute;
  top: -4px;
  right: -4px;
  background-color: var(--brand-primary);
  font-weight: 600;
  cursor:pointer;
  height: 18px;
  width: 18px;
  padding: 2px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.nav-toolbar li span.badge.bg-info{
  background-color: var(--brand-info);
}

.nav-toolbar li span.badge.bg-warning{
  background-color: var(--brand-danger);
}

.nav-toolbar > li > a{
  color: var(--text-secondary);
  font-size: 18px;
  border: 1px solid transparent;
  border-radius: var(--border-radius-full);
  height: 40px;
  width: 40px;
  text-align:center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-main);
  transition: all 0.2s ease;
}

.nav-toolbar > li > a:hover{
  color: var(--brand-primary);
  background-color: rgba(79, 70, 229, 0.1);
}

.nav-toolbar .dropdown-menu.panel{
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-top: 10px;
}



/*****************************
Content Area (right)
*****************************/

.content{
  margin-left: var(--sidebar-width);
  transition: margin-left 0.3s ease;
}

.content > .container-fluid{
  padding-left: 0px;
  padding-right: 0px;
}


.warper{
  padding-top: 25px;
  padding-bottom: 25px;
  min-height: 550px;
}

/*** Page Header / Page Title ***/

.page-header{
  margin: 0 0 25px 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header h1{
  color: var(--text-primary);
  font-weight: 700;
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.025em;
}

.page-header *{
  font-weight: 600;
}

.page-header * small{
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 10px;
}






/*****************************
Custom Margins & Paddings
*****************************/

.no-margn{
  margin:0px;}


.margn-t-xs{
  margin-top:5px;}

.margn-t-sm{
  margin-top:10px;}







.no-padd{
  padding:0px;}


.padd-xs{
  padding:5px;}

.padd-sm{
  padding:10px;}

.padd-md{
  padding:15px;}

.padd-lg{
  padding:20px;}


.padd-t-xs{
  padding-top:5px;}

.padd-t-sm{
  padding-top:10px;}

.padd-t-md{
  padding-top:15px;}

.padd-t-lg{
  padding-top:20px;}









/*****************************
Styled Radio/Checkbox
*****************************/

.cr-styled{
  display:inline-block;
  margin:0px 2px;}

.cr-styled i{
  display:inline-block;
  height:20px;
  width:20px;
  cursor:pointer;
  vertical-align:middle;
  border:2px solid #CCC;
  border-radius:3px;
  text-align:center;
  padding-top:1px;
  font-family: 'FontAwesome';}

.cr-styled input{
  visibility:hidden;
  display:none;}



/* Checkbox */
.cr-styled input[type=checkbox]:checked + i:before{
  content: "\f00c";}


/* Radio */
.cr-styled input[type=radio] + i{
  border-radius:20px;}
.cr-styled input[type=radio]:checked + i:before{
  content: "\f111";}




/*** cr-styled Theaming/Colorss ***/

.cr-styled input:checked + i{
  border-color:#a49bc4;
  color:#a49bc4;}

















/*****************************
 Pages / Widgets / Elements
*****************************/


/****Dashboard Stats****/

.dashboard-stats.panel{
  position: relative;
  cursor: pointer;
  padding: 20px;
  background-color: var(--bg-card);
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.dashboard-stats i.fa.stats-icon{
  width: 60px;
  height: 60px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: var(--border-radius-md);
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.dashboard-stats h3{
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.dashboard-stats p.text-muted{
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.dashboard-stats small{
  font-size: 13px;
  margin-left: 6px;
  opacity: 0.8;
}

.dashboard-stats:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dashboard-stats:hover i.fa.stats-icon{
  transform: scale(1.05);
}







/****Messages-Chating****/

.messages{
  max-height:520px;
  overflow:auto;}

.messages .media{
  padding-top:18px;
  padding-bottom:18px;
  margin:0px;
  border-top:1px dashed #eaeef1;}

.messages .media:first-child{
  border:0px;}

.messages .media .media-body .media{
  margin-top:18px;
  padding-bottom:0px;}


/*user status icon*/
.user-status{
  position:relative;
  display:inline-block;}

.user-status:before,
.user-status:before{
  content:"";
  display:inline-block;
  height:12px;
  width:12px;
  border-radius:100%;
  background-color:#666;
  position:absolute;
  top:0px;
  right:0px;
  border:2px solid #fff;}


/*user status icon color*/
.user-status.online:before{
  background-color:#70ba63;}

.user-status.busy:before{
  background-color:#01a0e6;}

.user-status.invisibled:before{
  background-color:#f2b635;}

.user-status.offline:before{
  background-color:#f25648;}



.messages .media > .pull-left{
  margin-right:15px;}
.messages .media > .pull-right{
  margin-left:15px;}

.messages .media > .pull-right + .media-body{
  text-align:right;}


.messages .media img.media-object{
  width:54px;
  border-radius:100%;}

.messages .media .media-body{
  font-size:13px;}





/****ToDo List****/
.todo-list li{
  border:0px;
  margin:0px;
  border-radius:0px;
  border-bottom:1px dashed #e0e0e0;}





/****Activities List****/


.activities-list{
  max-height:560px;
  overflow:auto;}

.activities-list > li{
  position:relative;
  padding:10px 95px 10px 40px;}

.activities-list > li:before{
  content:"";
  position:absolute;
  left:15px;
  top:0px;
  height:100%;
  border-left:1px solid #ccc;}

.activities-list > li:after{
  content:"";
  position:absolute;
  left:10px;
  top:10px;
  height:12px;
  width:12px;
  border-radius:20px;
  border:1px solid #ccc;
  background-color:#fff;}


.activities-list > li span.time{
  font-size:12px;
  color:#ccc;}


.activities-list li .activity-actions{
  position:absolute;
  right:0px;
  top:25px;}


.activities-list > li.info-activity:before,
.activities-list > li.info-activity:after{
  border-color:#4fcdfc;}

.activities-list > li.warning-activity:before,
.activities-list > li.warning-activity:after{
  border-color:#fcd036;}

.activities-list > li.danger-activity:before,
.activities-list > li.danger-activity:after{
  border-color:#ff6264;}

.activities-list > li.success-activity:before,
.activities-list li.success-activity:after{
  border-color:#68b828;}

.activities-list > li.primary-activity:before,
.activities-list > li.primary-activity:after{
  border-color:#7c38bc;}

.activities-list > li.info-activity:before,
.activities-list > li.info-activity:after{
  border-color:#4fcdfc;}






/*****************************
Footer
*****************************/

.footer {
  background-color: #f2f2f4;
  border-top: 1px solid #ececee;
  padding-bottom: 15px;
  padding-top: 15px;
}






/***********************************************
================================================
 Custom Bootstrap / Overwriting
================================================
************************************************/



/*****************************
 Grid
*****************************/

.row.no-gutter {
  margin-left: 0;
  margin-right: 0;}

.row.no-gutter [class*="col-"]:not(:first-child),
.row.no-gutter [class*="col-"]:not(:last-child) {
  padding-left: 0;
  padding-right: 0;
}




/*****************************
 Color >> Backgrounds + Text
*****************************/

.bg-white{
  background-color:#fff;}
.text-white{
  color:#fff;}


.bg-pink{
  background-color:#eaa1bd;}
.text-pink{
  color:#eaa1bd;}


.bg-yellow{
  background-color:#f9dc85;}
.text-yellow{
  color:#f9dc85;}


.bg-gray{
  background-color:#b2b2b2;}
.text-gray{
  color:#b2b2b2;}


.bg-lightgray{
  background-color:#fbfbfd;}
.text-lightgray{
  color:#fbfbfd;}


.bg-red{
  background-color:#F16364;}
.text-red{
  color:#F16364;}


.bg-blue{
  background-color:#00a0e6;}
.text-blue{
  color:#00a0e6;}

.bg-green{
  background-color:#67BF74;}
.text-green{
  color:#67BF74;}


.bg-purple{
  background-color:#8d82b5;}
.text-purple{
  color:#8d82b5;}


.bg-yellow{
  background-color:#F9A43E;}
.text-yellow{
  color:#F9A43E;}


.bg-orange{
  background-color:#F58559;}
.text-orange{
  color:#F58559;}


.bg-test{
  background-color:#79B9D9;}
.text-test{
  color:#79B9D9;}


.bg-warning{
  background-color:#FEB252;}
.text-warning{
  color:#FEB252;}

.bg-danger{
  background-color:#E9573F;}
.text-danger{
  color:#E9573F;}

.bg-success{
  background-color:#70BA63;}
.text-success{
  color:#70BA63;}

.bg-info{
  background-color:#4DC5F9;}
.text-info{
  color:#4DC5F9;}













/*****************************
 Form Elements
*****************************/

/*** Custom Colors Btn ***/
.btn-purple{
  background-color:#8d82b5;
  border-color:#6b5f98;
  color:#fff;}


.btn-purple:hover,
.btn-purple:focus,
.btn-purple:active,
.btn-purple.active,
.open .dropdown-toggle.btn-purple{
  background-color:#6b5f98;
  color:#fff;}

.btn-green{
  background-color:#70ba63;
  border-color:#579e4b;
  color:#fff;}

.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active,
.open .dropdown-toggle.btn-purple{
  background-color:#579e4b;
  color:#fff;}











/*** Btn Shapes ***/
.btn-circle,
.form-control-circle,
.btn-group .btn-circle:first-child:not(:last-child):not(.dropdown-toggle){
  border-radius:50px;}

.btn-flat,
.form-control-flat{
  border-radius:0px;}




/*****************************
Form Elements
*****************************/

.has-feedback div[class*=col-] .form-control-feedback{
  right:15px;
  line-height:34px;}





/*****************************
Panel Styling
*****************************/

.panel{
  margin-bottom: 30px;
  background-color: var(--bg-card);
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

.panel:hover {
  box-shadow: var(--shadow-lg);
}

.panel-heading{
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-color);
  background-color: transparent;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.panel-body {
  padding: 25px;
}

.panel-heading small,
.panel-heading span,
.panel-heading.un-bold{
  font-weight: 400;
  color: var(--text-secondary);
}


/*** default ***/
.panel-default > .panel-heading,
.panel-default > .panel-footer{
  border-color: var(--border-color);
  box-shadow: none;
  background-color: transparent;
}

.panel-default > .panel-heading,
.btn-default{
  color: var(--text-primary);
}


/*** primary ***/
.panel-primary{
  border-color:#8d82b5;}

.panel-primary > .panel-heading,
.panel-primary > .panel-footer{
  border-color: #8d82b5;
  background-color:#8d82b5;
  box-shadow:none;}


/*** success ***/
.panel-success{
  border-color:#70ba63;}

.panel-success > .panel-heading,
.panel-success > .panel-footer{
  border-color: #70ba63;
  background-color:#70ba63;
  color:#fff;
  box-shadow:none;}


/*** info ***/
.panel-info{
  border-color:#4cbceb;}

.panel-info > .panel-heading,
.panel-info > .panel-footer{
  border-color: #4cbceb;
  background-color:#4cbceb;
  color:#fff;
  box-shadow:none;}


/*** warning ***/
.panel-warning{
  border-color:#feb252;}

.panel-warning > .panel-heading,
.panel-warning > .panel-footer{
  border-color: #feb252;
  background-color:#feb252;
  color:#fff;
  box-shadow:none;}


/*** danger ***/
.panel-danger{
  border-color:#e35b5a;}

.panel-danger > .panel-heading,
.panel-danger > .panel-footer{
  border-color: #e35b5a;
  background-color:#e35b5a;
  color:#fff;
  box-shadow:none;}






/*** Clean Panel Heading ***/
.panel-heading.clean,
.panel-footer.clean{
  background:none;
  border:none;}





/*****************************
 Dropdown
*****************************/

.dropdown-menu{}


.dropdown-menu > li > a{
  color:#84868e;}

/*** Dropdown Menu Sizes ***/

.dropdown-menu.md{
  min-width:300px}


.dropdown-menu.lg{
  min-width:400px;}




.dropdown-menu.arrow:after,
.dropdown-menu.arrow:before{
  content:"";
  display:block;
  position:absolute;
  height:11px;
  width:11px;
  border-color:inherit;
  border-style:solid;
  border-width:11px;
  border-top-color:transparent;
  border-left-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  position:absolute;
  bottom:100%;
  left:6px;}


.dropdown-menu.arrow.arrow-top-right,
.dropdown-menu.arrow.arrow-top-left{
  top:calc(100% + 15px);}



/**Top Right Arrow**/
.dropdown-menu.arrow.arrow-top-right:after,
.dropdown-menu.arrow.arrow-top-right:before{
  border-bottom-color:inherit;
  right:6px;
  left:auto;}

.dropdown-menu.arrow.arrow-top-right:before{
  right:5px;
  left:auto;}

.dropdown-menu.arrow.arrow-top-right:after{
  border-bottom-color:#fff;}




/**Top Left Arrow**/
.dropdown-menu.arrow.arrow-top-left:after,
.dropdown-menu.arrow.arrow-top-left:before{
  border-bottom-color:inherit;
  left:6px;
  left:auto;}

.dropdown-menu.arrow.arrow-top-left:before{
  left:5px;}




.dropdown-menu.arrow:after{
  height:10px;
  width:10px;
  border-width:10px;}

.dropdown-menu.arrow.panel-default:after{
  border-bottom-color:#F5F5F5;}






/*****************************
Progress Bars
*****************************/

.progress.progress-xxs{
  height:4px;}

.progress.progress-xs{
  height:8px;}

.progress.progress-sm{
  height:12px;}

.progress.progress-lg{
  height:24px;}






/*****************************
Horizaontal Row
*****************************/

hr.sm{
  margin-top:15px;
  margin-bottom:15px;}

hr.xs{
  margin-top:10px;
  margin-bottom:10px;}


hr.dotted{
  border-style:dashed;}

hr.clean{
  border:0px;}


/*****************************
Tabs with panel
*****************************/

.panel.tab-pane.tabs-up{
  border-top:0px;
  border-top-left-radius:0px;
  border-top-right-radius:0px;}








/****************************************
=========================================
Responsive Stying
=========================================
*****************************************/

@media (max-width: 768px) {



  body aside.left-panel {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: -260px !important;
    width: 250px !important;
    height: 100vh !important;
    z-index: 9999 !important;
    box-shadow: none !important;
    transition: left 0.3s ease !important;
  }

  body aside.left-panel.collapsed {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0px !important;
    width: 250px !important;
    height: 100vh !important;
    z-index: 9999 !important;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5) !important;
    transition: left 0.3s ease !important;
  }

  body, html {
    overflow-x: hidden !important;
  }

  .navbar-header,
  .navbar-toggle {
    position: relative !important;
    z-index: 10005 !important;
  }

  section.content {
    margin-left: 0px !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    position: static !important;
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
  }

  aside.left-panel + .content,
  aside.left-panel.collapsed + .content,
  body aside.left-panel.collapsed + .content,
  aside.left-panel.mobile-open + .content {
    margin-left: 0px !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    position: static !important;
    transform: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
  }

  .content > .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-header h1 {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
  }

  .page-header h1 span {
    display: none;
  }

  .page-header h1 .visible-xs-block {
    display: block !important;
    margin-top: 5px;
  }

  .page-header h1 small {
    display: block;
    margin-top: 5px;
    font-size: 14px;
  }

  .col-xs-6 {
    width: 50% !important;
    float: left;
  }

}





@media (max-width: 450px) {
  .dropdown-menu{
    min-width:280px !important;}

  .messages-dropdown{
    right:-80px !important;}

  .messages-dropdown.arrow.arrow-top-right:after{
    right:85px;}
  .messages-dropdown.arrow.arrow-top-right:before{
    right:84px;}

  .notifications{
    right:-40px !important;}

  .notifications.arrow.arrow-top-right:after{
    right:45px;}
  .notifications.arrow.arrow-top-right:before{
    right:44px;}

}





/****************************************
=========================================
Just For Demo / Showcase
=========================================
*****************************************/

.showcase-btn li, .showcase-btn{
  margin-bottom:10px;}

.showcase-switch-button{
  margin-right:15px;}

.showcase-pagination{
  margin-top:10px;
  margin-bottom:10px;}





.showcase-icons div{
  line-height:40px;
  cursor:pointer;
  height:40px;}

.showcase-icons i{

  transition: font-size 0.2s ease 0s;
  text-align:center;
  width:40px;}

.showcase-icons > div:hover i{
  font-size:26px;}
