@import url('https://fonts.bunny.net/css2?family=Nunito:wght@400;600;700&display=swap');

body {
  font-family: 'Nunito', sans-serif;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain;
}

.pc-header .pcm-logo img {
  max-width: 160px;
  max-height: 65px;
}

.border-dashed {
  border: 1px dashed #dfdfdf;
}

.border-dashed .card-body {
  margin: 5px;
  border: 1px dashed #dfdfdf;
}

.border-dashed .card-header {
  margin: 5px;
  border: 1px dashed #dfdfdf;
}

.border-dashed .card-footer {
  margin: 5px;
  border: 1px dashed #dfdfdf;
}

.border-dashed:has(.card-header) .card-body {
  margin-top: 0px;
  border-top: 0px dashed #dfdfdf;
}

.border-dashed:has(.card-body) .card-header {
  margin-bottom: 0px;
  border-bottom: 1px solid #f2f4f9;
}

.border-dashed:has(.card-footer) .card-body {
  margin-bottom: 0px;
  border-bottom: 0px dashed #dfdfdf;
}

.border-dashed:has(.card-body) .card-footer {
  margin-top: 0px;
  border-top: 1px solid #f2f4f9;
}

.swal-sm{
  width: 24em;
}

/* Product Page Dashboard */
.product-img-div{
  background-position: center center;
  background-size: cover;
}
.product-img-div img{
  object-fit: contain;
  backdrop-filter: blur(20px);
  height: 220px;
}


/* Tree CSS::START */
.genealogy.nav:not(.single)::before {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: #5d0c0c;
}

.genealogy.nav li:first-child::before {
  content: '';
  display: block;
  position: relative;
  top: -2px;
  height: 2px;
  width: 50%;
  background: #ffffff;
}

.genealogy.nav li:last-child::before {
  content: '';
  display: block;
  position: relative;
  top: -2px;
  left: calc(50% + 2px);
  height: 2px;
  width: 50%;
  background: #ffffff;
}

li:has(ul)>.genealogy_row::after {
  content: '';
  display: block;
  height: 12px;
  width: 2px;
  margin-left: 50%;
  background: #5d0c0c;
}

.genealogy .genealogy_row .img::before {
  content: '';
  display: block;
  height: 12px;
  width: 2px;
  margin-left: 50%;
  background: #5d0c0c;
  position: relative;
  top: -2px;
}

.genealogy_row .member_img {
  transition: 300ms;
}

.genealogy_row:hover .member_img {
  box-shadow: 0 5px 14px -3px #3f3f3f;
}
/* Tree CSS::END */