/*
Theme Name: So-Rig Institute
Theme URI: https://soriginstitute.com.au
Author: So-Rig Institute
Author URI: https://soriginstitute.com.au
Description: Modern, practical and student-focused healthcare training theme for So-Rig Institute. v4 introduces a fully dynamic Course Management System (CPT, categories, native meta boxes, archive/single/taxonomy templates, AJAX filter/search, related courses, CF7 enrolment).
Version: 4.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sorig-institute
Tags: education, training, healthcare, one-page, custom-logo, custom-menu, featured-images, theme-options
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ============================================================
	 SO-RIG PAGE LOADER
	 ============================================================ */
#sorig-loader,
.sorig-loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sorig-loader-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sorig-loader-logo {
	display: block;
	max-width: 100%;
	height: auto;
	animation: sorig-breathe 2s ease-in-out infinite;
	transform-origin: center;
}

@keyframes sorig-breathe {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.08);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

#sorig-loader.sorig-loader-hidden {
	opacity: 0;
	visibility: hidden;
}

#sorig-loader.sorig-loader-done {
	display: none !important;
}

@media (max-width: 768px) {
	.sorig-loader-logo {
		width: 110px !important;
		height: 110px !important;
	}
}
