.flex-container-center {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.flex-container-center-start {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}

.flex-container-space-around {
  display: flex;
  justify-content: space-around;
}

.flex-container-space-betweenColumn {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.flex-container-space-betweenColumn > div {
  height: 187px;
}

.flex-container-space-betweenRow {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.flex-container-column {
	display: flex;
	flex-direction: column;
}

.card {
	margin-bottom: 30px;
}

.top_counter .content {
    height: 70px;
}

/* ===== Modern Page Loader Overlay ===== */
.page-loader-wrapper {
    background: rgba(10, 14, 22, 0.82) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    backdrop-filter: blur(6px) !important;
    display: none;
}

/* Absolutely centered container — works with display:block set by jQuery */
.kh-loader-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    -webkit-user-select: none;
    user-select: none;
}

/* ── Audio-wave / equalizer bars ── */
.kh-spinner {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 52px;
}

.kh-spinner span {
    display: block;
    width: 7px;
    border-radius: 4px;
    animation: khBar 1.1s ease-in-out infinite;
}

/* Outer bars — light tint */
.kh-spinner span:nth-child(1) { height: 18px; background: #F07BBE; animation-delay: 0.0s; }
/* Mid bars — brand colour */
.kh-spinner span:nth-child(2) { height: 34px; background: #DA2E86; animation-delay: 0.15s; }
/* Centre bar — deep anchor */
.kh-spinner span:nth-child(3) { height: 52px; background: #B01D6A; animation-delay: 0.3s; }
/* Mid bars — brand colour */
.kh-spinner span:nth-child(4) { height: 34px; background: #DA2E86; animation-delay: 0.45s; }
/* Outer bars — light tint */
.kh-spinner span:nth-child(5) { height: 18px; background: #F07BBE; animation-delay: 0.6s; }

@keyframes khBar {
    0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
    50%       { transform: scaleY(1);    opacity: 1; }
}

.kh-loader-msg {
    color: #cccccc;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.kh-dots::after {
    display: inline-block;
    animation: khDots 1.5s steps(4, end) infinite;
    content: '';
    width: 18px;
    text-align: left;
}

@keyframes khDots {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
}

/* SweetAlert2 tweaks */
.swal2-popup {
    border-radius: 12px !important;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
    border-radius: 6px !important;
    padding: 8px 24px !important;
}

.swal2-title {
    font-size: 1.2em !important;
}