.mylife_bar_info .mylife_info_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.mylife_bar_info .my_life_progress {
  width: 100%;
  background-color: #e9ecef !important;
  height: 16px;
  text-align: center;
  position: relative;
  border-radius: 30px;
}

.my_life_progress .progress-bar {
  width: 0%;
  background-color: rgba(25, 135, 84, 1) !important;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
  height: 16px;
  border-radius: 30px;
}

.mylife_bar_info .progress-value {
  font-size: 12px;
  position: absolute;
  color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#mylife_sub_menu_content {
  display: none;
}
.dashboard_overall .chart {
  margin-bottom: -10px;
}

.dashboard_overall {
  width: 500px;
  background-color: #fff7f8;
  padding: 15px;
  border-radius: 1rem;
}

.dashboard_overall h3 {
  font-size: 1rem;
  font-weight: 600;
}

.dashboard_sideber_overall .chart {
  margin-bottom: 4px;
  font-size: 11.5px !important;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard_sideber_overall {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
}

.dashboard_sideber_overall h3 {
  font-size: 1rem;
  font-weight: 600;
}

.dashboard_sideber_overall .my_life_progress .progress-bar {
  background-color: rgba(255, 193, 7, 1) !important;
}

.quiz_locker_icon {
  fill: #212529;
}
.quiz_locker_icon.inactive {
  fill: #ff7c7c !important;
}

.qz_premium_pack_card {
  cursor: pointer;
}

.woocommerce-additional-fields {
  display: none;
}

#customer_details .col-1 {
  width: 100%;
}

.qz_premium_pack_card {
  position: relative;
  overflow: hidden;
}

/* Loading Animation */
.qz_premium_pack_card.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);

  /* Spinner */
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 99;
}

.qz_premium_pack_card.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
  margin-top: -22.5px;

  border-radius: 50%;
  background: conic-gradient(#16a34a, #16a34a66, #16a34a22, transparent);
  mask: radial-gradient(farthest-side, transparent 60%, black 62%);
  animation: spin 0.8s linear infinite;
  z-index: 100;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.qz_premium_pack_card.loading {
  pointer-events: none;
  cursor: default !important;
}

.woocommerce-page #payment #place_order,
[name="apply_coupon"] {
  background-color: #d50000 !important;
  color: #fff !important;
  font-size: 0.875rem !important;
}

#dp-countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}
#dp-countdown .dp-box {
  background: #d50000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
  min-width: 80px;
}
#dp-countdown span {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
.dp-expired {
  color: #d50000;
  font-weight: bold;
  font-size: 20px;
}

/* .dashboard_overall {
	width: 50%;
} */

@media (max-width: 767px) {
	#quiz-dash-sidebar {
		position: absolute; 
		z-index: 200;
		width: 0;
		left: -500px;
		transition: left 0.6s ease, width 0.6s ease;
	}

	#quiz-dash-sidebar.active {
		position: absolute; 
		width: 100%;
		left: 0;
	}
	
	.dashboard_overall{
		width: 100%;
	}
}

