/*icon in css*/
.blink-hard {
	animation: blinker 1s step-end infinite;
}
.blink-soft {
	animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
	50% {
		opacity: 0;
	}
}
.dropdown .dropdown-toggle:after {
	content: "\F286" !important;
	font-family: "bootstrap-icons" !important;
	font-weight: 900 !important;
}
.dropup .dropdown-toggle:after {
	content: "\F286" !important;
	font-family: "bootstrap-icons" !important;
	font-weight: 900 !important;
}

.navbar-expand-xl .dropdown-toggle:after {
	content: "\F282" !important;
	font-family: "bootstrap-icons" !important;
	margin-left: 0.35rem !important;
	font-weight: 900 !important;
}
.navbar-expand-xl .lang:after {
	content: "" !important;
	font-family: "bootstrap-icons" !important;
	margin-left: 0.35rem !important;
	font-weight: 900 !important;
}

.navbar-expand-xl .dropdown-submenu.dropend .dropdown-toggle:after {
	content: "\F285" !important;
	font-family: "bootstrap-icons" !important;
	margin-left: 0.35rem !important;
	font-weight: 900 !important;
}
.navbar-expand-xl .dropdown-submenu.dropstart .dropdown-toggle:before {
	content: "\F285" !important;
	font-family: "bootstrap-icons" !important;
}

.modeswitch-wrap .modeswitch-item .modeswitch-icon:before {
	content: "\F1D1";
	font-family: "bootstrap-icons" !important;
	font-weight: 900 !important;
}
/*icon in css*/



/*Navbar*/
.navbar-transparent {
	background: #fff !important;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: rgb(0 0 0 / 7%) 0px 4px 6px -1px !important;
	transition: transform 280ms ease 0s;
}
.navbar-brand {
	padding-top: 5px;
	padding-bottom: 2px;
	margin-right: 1rem;
	font-size: 1.25rem;
	white-space: nowrap;
}


@media (min-width: 1200px) {
  header.navbar-sticky-on {
    position: fixed !important;
    z-index: 1020;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff !important;
    -webkit-animation: fadeInDown 0.5s;
    animation: fadeInDown 0.5s;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  header.navbar-sticky-on .navbar-top {
    display: none !important;
  }

  header.navbar-sticky-on .navbar-brand {
    padding: 0px 0;
  }

  header.navbar-sticky-on .navbar-brand .navbar-brand-item {
    height: 40px;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1200px) {

 .navbar-expand-xl .navbar-brand .navbar-brand-item {
  height: 50px;
  max-height: 50px;
  display: block;
  width: auto;
}
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl .navbar-brand .navbar-brand-item {
    height: 50px;
  }
  .navbar-expand-xl .navbar-brand {
        padding: 2px 0;
    padding-top: 6px;
  }


  header.navbar-sticky-on {
    background-color: #fff !important;
    box-shadow: 0 1px 3px rgb(3 0 71 / 9%) !important;/*Tambahan*/
  }

  .fixed-top {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }

  /*menu form left*/

  @media (max-width: 992px) {

    .navbar-collapse.collapsing {
      left: -75%;
      transition: height 0s ease;
    }

    .navbar-collapse.show {
      left: 0;
      transition: left 300ms ease-in-out;
    }

    .navbar-toggler.collapsed ~ .navbar-collapse {
      transition: left 500ms ease-in-out;
    }
  }

}

/*FONT SIZE*/
.fs-6{
  font-size: 6px !important;
}
.fs-7{
  font-size: 7px !important;
}
.fs-8{
  font-size: 8px !important;
}
.fs-9{
  font-size: 9px !important;
}
.fs-10{
  font-size: 10px !important;
}
.fs-11{
  font-size: 11px !important;
}
.fs-12{
  font-size: 12px !important;
}
.fs-13{
  font-size: 13px !important;
}
.fs-14{
  font-size: 14px !important;
}
.fs-15{
  font-size: 15px !important;
}
.fs-16{
  font-size: 16px !important;
}
.fs-17{
  font-size: 17px !important;
}
.fs-18{
  font-size: 18px !important;
}
.fs-19{
  font-size: 19px !important;
}
.fs-20{
  font-size: 20px !important;
}
/*FONT SIZE*/

/*ANIMATION CSS*/
.shake {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation-name: shakeMe;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  color: #4caf50;
}

@keyframes shakeMe {
  2%, 18% {
    transform: translate3d(-5px, 0, 0);
    color: #e91e63;
  }

  4%, 16% {
    transform: translate3d(5px, 0, 0);
  }

  6%, 10%, 14% {
    transform: translate3d(-5px, 0, 0);
  }

  8%, 12% {
    transform: translate3d(5px, 0, 0);
  }

  18.1% {
    transform: translate3d(0px, 0, 0);
  }
}

.shake-n {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation-name: shakeMen;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes shakeMen {
  2%, 18% {
    transform: translate3d(-5px, 0, 0);
  }

  4%, 16% {
    transform: translate3d(5px, 0, 0);
  }

  6%, 10%, 14% {
    transform: translate3d(-5px, 0, 0);
  }

  8%, 12% {
    transform: translate3d(5px, 0, 0);
  }

  18.1% {
    transform: translate3d(0px, 0, 0);
  }
}
/*ANIMATION CSS*/

/*POSTminimalis*/
.list-card .count-number {
  margin: 4px 0 0 0;
  display: inline-block;
}

.list-card img {
  max-height: 200px;
}

.list-card a,
.list-card h6 {
  color: inherit;
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
}
.double {
  color: inherit !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  text-transform: capitalize !important;
  white-space: normal !important;
}

.border-produk {
  border-bottom: 1px solid #f7f8f8!important;
}

.list-card a:hover {
  color: #0091bc;
}

.list-card .star {
  right: 8px;
  bottom: 8px;
}

.list-card .star .badge {
  font-size: 11px;
  padding: 5px 5px;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
}

.list-card .member-plan {
  left: 8px;
  top: 8px;
}

.list-card .member-plan .badge {
  font-size: 11px;
  padding: 5px 5px;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
}

.list-card .list-card-image {
  position: relative;
}

.list-card .favourite-heart {
  right: 8px;
  top: 8px;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075)!important;
}

.list-card .favourite-heart i {
  background: #fff;
  width: 23px;
  height: 23px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  border-radius: 50px;
}

.list-card .favourite-heart b {
  background: #fff;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  line-height: 28px;
  border-radius: 50%;
  border: 1px solid #ffc107;
}

.list-card.d-flex .list-card-image {
  width: 120px;
  height: 110px;
  min-width: 120px;
  max-width: 120px;
}

.list-card.d-flex .list-card-image-hot {
    width: 120px;
    height: 110px;
    min-width: 80px;
    max-width: 80px;
}

.list-card.d-flex .list-card-image .item-img {
  height: 110px;
  object-fit: cover;
  object-position: left;
}

.list-card.d-flex .list-card-image-hot .item-img {
  height: 110px;
  object-fit: cover;
  object-position: left;
}

.list-card .list-card-body p.text-gray {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
}

.list-card .p-3 {
  overflow: hidden;
}

.list-card.d-flex .list-card-body span.float-right.text-black-50 {
  display: none;
}

.h-85 {
  height: 85% !important;
}


.hot-count {
    border-radius: 100%;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    text-align: center;
    border: 5px solid rgba(255, 255, 255, 0.6);
    position: absolute;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    left: 0px;
    top: 60px;
    z-index: 9;
}

.text-truncate-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg-opacity-05 {
    --bs-bg-opacity: 0.05 !important;
}
/*Postminimalis*/

/*Detail Post*/

.bacalain { position: relative; margin-bottom: 20px; margin-top: 20px; border-left: 5px solid #009688 !important; }

.bacalain td { border: none; padding: 0; }

.bacalain strong { font-size: 17px; }

.bacalain a { font-size: 14px; color: #009688; }

.bacalain .bacajuga { padding-left: 20px; }

.bacalain .bacajuga strong { display: block; margin-bottom: 8px; }

.bacalain .bacajuga a { display: block; }


.post_detail table {
  padding: 0.3rem 0.5rem !important;
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(36, 41, 45, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
  caption-side: bottom;
}
.post_detail table > :not(caption) > * > * {
  padding: 0.3rem 0.5rem !important;
  background-color: var(--bs-table-bg);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.btn-round.btn-sm i, .btn-group-sm > .btn-round.btn i {
    font-size: 12px !important;
}
/*Detail Post*/

/*ADMIN*/
.sidebar.navbar-expand-xl .sidebar-content .navbar-nav .nav-link {
  color: #009688 !important;
}

