/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.menu .app-brand.demo {
  height: 64px;
  margin-top: 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 to .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 74px !important;
}
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 62px !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;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 231px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* 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;
}
.box-circle
{
  margin: 0;
  padding:20px 0 0;
  display: flex;
  flex-wrap: wrap;
}
.box-circle li
{
  flex: 0 0 auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  list-style: none;
  line-height: 100px;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0px 10px 20px;
  border: 2px solid #000;
  border-bottom: 4px solid #F00;
  z-index: 1;
  position: relative;
}
.box-circle li a
{
  background: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 6px 6px 4px rgb(0 0 0 / 19%);
}
.box-circle li a *
{
  position: relative;
  z-index: 100;
}

.box-circle li::after
{
  content: '';
  position: absolute;
  width: 120px;
  height: 16px;
  background: #f5f5f9;
  left: 3px;
  bottom: 18px;
  z-index: -1;
}
.box-circle li a::before
{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid #000;
  left: 2px;
  bottom: 26px;
  border-radius: 50%;
  z-index: 100;
}
.box-circle li a::after
{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border: 2px solid #000;
  right: 2px;
  bottom: 26px;
  border-radius: 50%;
  z-index: 100;
}
.box-circle li a i
{
  position: absolute;
  top: -17px;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
}
.box-circle li a p
{
  font-size: 14px;
  line-height: normal;
  margin-bottom: 10px;
  color: #000;
}
.box-circle li a h4
{
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: normal;
  margin-bottom: 0;
}
.box-circle li.yellow
{
  border-bottom-color: #fd8558;
}
.box-circle li.sky-blue
{
  border-bottom-color: #367ffb;
}
.box-circle li.orange
{
  border-bottom-color: #dc78a4;
}
.box-circle li.red
{
  border-bottom-color: #f4546a;
}
.box-circle li.purple
{
  border-bottom-color:#9c6dbb;
}
.box-circle li.yellow-light
{
  border-bottom-color:#fea309
}


.box-circle li.yellow a i
{
  background: #fd8558;
}
.box-circle li.sky-blue a i
{
  background: #367ffb;
}
.box-circle li.orange a i
{
  background: #dc78a4;
}
.box-circle li.red a i
{
  background: #f4546a;
}
.box-circle li.purple a i
{
  background:#9c6dbb;
}
.box-circle li.yellow-light a i
{
  background:#fea309
}
.box-circle li.yellow a::before,
.box-circle li.yellow a::after
{
  border-color: #fd8558;
}
.box-circle li.sky-blue a::before,
.box-circle li.sky-blue a::after
{
  border-color: #367ffb;
}
.box-circle li.orange a::before,
.box-circle li.orange a::after
{
  border-color: #dc78a4;
}
.box-circle li.red a::before,
.box-circle li.red a::after
{
  border-color: #f4546a;
}
.box-circle li.purple a::before,
.box-circle li.purple a::after
{
  border-color: #9c6dbb;
}
.box-circle li.yellow-light a::before,
.box-circle li.yellow-light a::after
{
  border-color:#fea309;
}
.card-separator
{
  /* border-right: 1px solid #d9dee3; */
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.card-separator::before
{
  content: '';
  position: absolute;
  width: 220px;
  height: 280px;
  left: 0;
  top: 0;
  background: url(../img/illustrations/yellow-bac.png);
  background-size:cover;
  transform: scaleX(-1);
  opacity: 0.7;
  z-index: -1;
}





.card-separator h3
{
  font-size: 18px;
  /* font-weight: bold; */
  color: #000;
}
.card-separator h2
{
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}
.card-separator h2 span
{
  font-size: 13px;
  background: #e21f64;
  border-radius: 20px;
  color: #fff;
  font-weight: normal;
  padding: 2px 10px;
  display: inline-block;
  line-height: 10px;
}
.card-separator p
{
  color: #000;
}
.full-colored.card
{
  /* padding: 10px; */
  margin-right: 15px;
  margin-bottom: 15px;
}
.full-colored.card .card-body
{
  padding: 20px;
}
.full-colored.card .avatar .avatar-initial
{
  background-color: #ffe9f0 !important;
  color: #e21f64 !important;
}
.full-colored.card p
{
  color: #000;
}
.full-colored.card h4
{
  color: #635d5f;
  font-weight: bold;
  font-size: 20px;
}
/* .full-colored.card
{
  --bg-different:#000;
  background: var(--bg-different);
  padding: 16px;
  border-radius: 1px;
  margin-right: 5px;
  width: 32%;
}
.full-colored .card-body
{
  background-color: #fff;
}
.full-colored .card-body h4
{
  color: #000;
  font-weight: bold;
}
.full-colored.card.purple
{
  --purple:#8281c5;
  background:var(--purple);
}
.full-colored.card.purple .card-body
{
  border: 3px solid #8281c5;
  box-shadow: 8px 8px 10px rgb(0 0 0 / 19%), 2px -1px 10px rgb(0 0 0 / 14%);
}
.full-colored.card.yellow
{
  --yellow:#ffbf09;
  background:var(--yellow);
}
.full-colored.card.yellow .card-body
{
  border: 3px solid #ffbf09;
  box-shadow: 8px 8px 10px rgb(0 0 0 / 19%), 2px -1px 10px rgb(0 0 0 / 14%);
}
.full-colored.card.green
{
  --green:#728a7c;
  background:var(--green);
}
.full-colored.card.green .card-body
{
  border: 3px solid #728a7c;
  box-shadow: 8px 8px 10px rgb(0 0 0 / 19%), 2px -1px 10px rgb(0 0 0 / 14%);
}

.full-colored.card.orange
{
  --orange:#ffa463;
  background-color: var(--orange);
}
.full-colored.card.orange .card-body
{
  border: 3px solid #ffa463;
  box-shadow: 8px 8px 10px rgb(0 0 0 / 19%), 2px -1px 10px rgb(0 0 0 / 14%);
}
.full-colored.card p
{
  color: #000;
  text-align: center;
}
.full-colored.card.sky-blue
{
  --sky-blue:#7fd1ff;
  background-color: var(--sky-blue);
}
.full-colored.card.sky-blue .card-body
{
  background-color: #7fd1ff;
  border: 3px solid #7fd1ff;
  box-shadow: 8px 8px 10px rgb(0 0 0 / 19%), 2px -1px 10px rgb(0 0 0 / 14%);
}*/
.background-image
{
  background: url(../img/illustrations/event.jpeg);
  background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
} 
.background-image::before
{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background:rgba(0,0,0,0.3);
}
.background-image *
{
  position: relative;
}