/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
*{
  font-family: "Poppins", sans-serif;
}
.fas, .fa-classic, .fa-solid, .far, .fa-regular {
    font-family: "Font Awesome 6 Free";
}
body{
  font-family: "Poppins", sans-serif;
  background: #F9FFFF;
  color: #202020;
}

.menu .app-brand.demo {
  height: 64px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.app-brand-logo.demo svg {
  width: 22px;
  height: 38px;
}

.app-brand-text.demo {
  font-size: 1.75rem;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 76px !important;
}

/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks>* {
  display: block !important;
}

.demo-inline-spacing>* {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing>* {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg>* {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}

.layout-demo-placeholder img {
  width: 900px;
}

.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}




/* new style by naveed */
.fw-700 {
  font-weight: 700;
}

.card_border_left {
  border-left: 4px solid #7174ff;
}

.tile_icon_main {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;

}

.tile_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.border_info_cs {
  border-color: #bbeaf5 !important;
  transition: 0.3s all;
}

.border_info_cs:hover {
  border-color: #03c3ec !important;
}

.border_primary_cs {
  border-color: rgb(191, 191, 238) !important;
  transition: 0.3s all;
}

.border_primary_cs:hover {
  border-color: rgb(105, 108, 255) !important;
}

.border_danger_cs {
  border-color: #edb5ac !important;
  transition: 0.3s all;
}

.border_danger_cs:hover {
  border-color: #ff3e1d !important;
}

.border_success_cs {
  border-color: #c3efad !important;
  transition: 0.3s all;
}

.border_success_cs:hover {
  border-color: #3FC976 !important;
}

.highcharts-credits {
  display: none !important;
}

.card_primary {
  background-color: #60A0CE;
}

.card_success {
  background-color: #169D54;
}
.card_warning {
  background-color: #E6B52C;
}
.card_danger {
  background-color: #7850b1;
}

.icon_primary {
  color: #60A0CE;
}

.icon_success {
  color: #169D54;
}

.icon_warning {
  color: #E6B52C;
}
.icon_danger {
  color: #7850b1;
}
.text_primary {
  color: #60A0CE;
}
.bg_label_primary{
  background-color: #DFF4FF;
  color: #60A0CE;
}

.text_success {
  color: #169D54;
}
.bg_label_success {
  background-color: #E3FFF9;
  color: #169D54;
}

.text_warning {
  color: #E6B52C;
}
.bg_label_warning{
  background-color: #FFF6DD;
  color: #E6B52C;
}
.text_danger {
  color: #7850b1;
}
.bg_label_danger {
  background-color: #FFE6E5;
  color: #7850b1;
}