/*
 * Changes only the theme's tricolour orientation.
 * Iranian flag order: green on top, white in the middle, red on the bottom.
 */

.shk-site-intro__progress span,
.footer-pattern,
.topbar::after,
.hero::after,
.hero__content::after,
.value-card::before,
.campaign__box::after {
	background: linear-gradient(
		180deg,
		#07883f 0 33.333%,
		#ffffff 33.333% 66.666%,
		#d71920 66.666% 100%
	) !important;
}

.flag-lines {
	display: grid !important;
	grid-template-columns: 1fr !important;
	grid-template-rows: repeat(3, 1fr) !important;
}

.flag-lines i:nth-child(1) {
	background: #07883f !important;
}

.flag-lines i:nth-child(2) {
	background: #ffffff !important;
}

.flag-lines i:nth-child(3) {
	background: #d71920 !important;
}
