| Server IP : 104.171.130.249 / Your IP : 216.73.216.146 Web Server : nginx/1.25.5 System : Linux 0dac65491b7e 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/matreshka/assets/css/ |
Upload File : |
/* ═══════════════════════════════════════════
* Matreshka — Checkout Order Loader Overlay
* ═══════════════════════════════════════════ */
.matreshka-checkout-loader,
.matreshka-page-loader {
position: fixed;
inset: 0;
z-index: 99999;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.72);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
opacity: 0;
visibility: hidden;
transition: opacity 0.35s ease, visibility 0.35s ease;
}
.matreshka-checkout-loader.active,
.matreshka-page-loader.active {
opacity: 1;
visibility: visible;
}
.matreshka-page-loader.is-hiding {
pointer-events: none;
}
/* ── Spinner ring ─────────────────────────── */
.mcl-spinner {
display: grid;
place-items: center;
width: 72px;
height: 72px;
margin-bottom: 28px;
}
.mcl-spinner-ring {
grid-area: 1 / 1;
box-sizing: border-box;
width: 72px;
height: 72px;
border-radius: 50%;
border: 4px solid rgba(169, 34, 49, 0.12);
border-top-color: #A92231;
animation: mcl-spin 0.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.mcl-spinner-icon {
grid-area: 1 / 1;
display: block;
width: 28px;
height: 28px;
color: #A92231;
animation: mcl-pulse 1.6s ease-in-out infinite;
}
@keyframes mcl-spin {
to { transform: rotate(360deg); }
}
@keyframes mcl-pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.88); }
}
/* ── Text block ───────────────────────────── */
.mcl-text {
text-align: center;
padding: 0 24px;
}
.mcl-title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 18px;
color: #1a1a1a;
margin: 0 0 8px;
}
.mcl-subtitle {
font-family: 'Montserrat', sans-serif;
font-weight: 500;
font-size: 14px;
color: #888;
margin: 0 0 20px;
}
.mcl-countdown {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 14px;
color: #A92231;
}
/* ── Progress bar ─────────────────────────── */
.mcl-progress {
width: 200px;
height: 4px;
border-radius: 4px;
background: rgba(169, 34, 49, 0.12);
overflow: hidden;
margin-top: 4px;
}
.mcl-progress-bar {
height: 100%;
border-radius: 4px;
background: linear-gradient(90deg, #A92231 0%, #E02842 100%);
width: 0%;
transition: width 1s linear;
}
/* ── Small screen tweaks ──────────────────── */
@media (max-width: 576px) {
.mcl-spinner {
width: 56px;
height: 56px;
margin-bottom: 20px;
}
.mcl-spinner-ring {
width: 56px;
height: 56px;
}
.mcl-spinner-icon {
width: 22px;
height: 22px;
}
.mcl-title {
font-size: 16px;
}
.mcl-progress {
width: 160px;
}
}
@media (prefers-reduced-motion: reduce) {
.matreshka-checkout-loader,
.matreshka-page-loader,
.mcl-progress-bar {
transition-duration: 0.01ms;
}
.mcl-spinner-ring,
.mcl-spinner-icon {
animation-duration: 1.8s;
}
}