/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 26 2025 | 07:19:30 */
/** Getwid Progress Bars, utility classes for bar colors **/
.wp-block-getwid-progress-bar.sw-red {
	--sw-progress-bar-color: var(--theme-palette-color-9, red);
}
.wp-block-getwid-progress-bar.sw-yellow {
	--sw-progress-bar-color: var(--theme-palette-color-10, yellow);
}
.wp-block-getwid-progress-bar.sw-green {
	--sw-progress-bar-color: var(--theme-palette-color-11, green);
}
.wp-block-getwid-progress-bar.sw-blue {
	--sw-progress-bar-color: var(--theme-palette-color-12, blue);
}
/** Progress bar background color is slightly transparent */
.wp-block-getwid-progress-bar__bar {
	background: #78716c30;
}
/* Set progress bar color, default to tailwind slate gray */
.wp-block-getwid-progress-bar__progress {
	color: var(--sw-progress-bar-color, #64748b);
}
/***
POST; Blocksy Single Post Elements
***/
/** FEATURED IMAGE **/
/* Figcaption font size was fixed 14px, use preset instead and same margin as other captions*/
DISABLED_.ct-featured-image figcaption {
	margin-top: 10px;
	font-size: var(--theme-font-size);
}
/** COMMENT SECTION **/
/* Replace red asterix on required form with inherited colour */
DISABLED_#comments .comment-form .required {
	color: var(--theme-palette-color-9, red);
}
/* Comment Reply Title; Use preset font size */
DISABLED_#comments #reply-title {
	font-size: var(--wp--preset--font-size--large);
}
/* Comment Form Note; Use preset font size */
DISABLED_#comments .logged-in-as, #comments .comment-notes {
	font-size: var(--wp--preset--font-size--small);
}
/* Comment Form Lavel; Use preset font size */
DISABLED_#comments label {
	font-size: var(--wp--preset--font-size--medium);
}
/** AUTHOR SECTION **/
/* Balance wrap of author bio */
DISABLED_[data-prefix="single_blog_post"] .author-box .author-box-bio {
	text-wrap: balance;
}
