/*
* © Seddike Tanvir
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


.light_theme {

	/* background color */
	--bgColor01: #d5d5d9;
	/* --bgColor01: #dddddd; */


	/* text color */
	--textColor01: #000000;
	--textColor02: #029707;
	/* --textColor01: #ffffffd7; */


	/* button txt color */
	--btnTxtColor01: #000000c9;
	/* --btnTxtColor02: #181818; */
	/* --btnTxtColor01: #ffffffc9; */


	/* button txt color :HOVER */
	--btnTxtColorOnHover01: #181818;
	/* --btnTxtColorOnHover02: #ffffff; */
	/* --btnTxtColorOnHover01: #181818c9; */


	/* button background color */
	--btnBgColor01: #000000d7;
	/* --btnBgColor02: #ffffff; */
	/* --btnBgColor01: #000000; */


	/* button border color */
	--btnBorderColor01: #0000005b;
	/* --btnBgColor02: #ffffff; */
	/* --btnBgColor01: #000000; */


	/* button background color :hover */
	--btnBgColorOnHover01: #000000;
	/* --btnBgColorOnHover02: #000000d7; */
	/* --btnBgColorOnHover01: #ffffffd5; */


	/* header background color */
	--headerBgColor01: #ffffff;


	/* box-shadow color */
	--boxShadowColor01: #0000001a;
	--boxShadowColor02: #00000044;
	/* --boxShadowColor01: #ffffff1a; */


	/* footer credit text color */
	--footerCreditTxtColor01: #0663b9;
	/* --footerCreditTxtColor02: #0663b9; */
	/* --footerCreditTxtColor01: #ffffff85; */


	/* inline <a href> tag text colir*/
	--inlineAHrefTagTextColor01: #1f9aff;
	/* --inlineAHrefTagTextColor01: #1ae635e7; */


	/* <a href> tag text color */
	--aHrefTagTextColor01: #000000ef;
	/* --aHrefTagTextColor01: #ffffffb9; */


	/* <a href> tag text color :hover */
	--aHrefTagTextColorOnHover01: #085edf;
	/* --aHrefTagTextColorOnHover01: #3385ff; */


	/* mapline  " >> "  color*/
	--maplineIndicatorColor: #00000086;
	/* --maplineIndicatorColor: #ffffff75; */


	/* card background color */
	--cardBgColor01: #ffffff;
	/* --cardBgColor01: #191e24; */


	/* pricing chart > all border color */
	--pricingChartBorderColor01: #006dd3;
	/* --pricingChartBorderColor01: #afd9ff2f; */


	/* pricing chart > header background color */
	--pricingChartHeaderBgColor01: #006dd3;
	/* --pricingChartHeaderBgColor01: #001e3a; */


	/* pricing chart > odd body background color */
	--pricingChartOddBodyBgColor01: #f3fcf8;
	/* --pricingChartOddBodyBgColor01: #293a5715; */


	/* pricing chart > even body background color */
	--pricingChartEvenBodyBgColor01: #fff9f0;
	/* --pricingChartEvenBodyBgColor01: #f5c5c507; */


	/* pricing chart > text color */
	--pricingChartTextColor01: #ffffff;


	/* pricing chart > sub-text color */
	--pricingChartSubTextColor01: #dfdfdf;
	/* --pricingChartSubTextColor01: #dfdfdf; */


	/* footer border top color */
	--footerTopBorderColor01: #00000046;
	;
	/* --footerTopBorderColor01: #ffffff27;; */


}


.theme_changer i {
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

body.light_theme .theme_changer i {
	color: orange;
}

body:not(.light_theme) .theme_changer i {
	color: #ffffffcc;
}

.theme_changer:hover i {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: -webkit-transform 0.2s ease;
	transition: -webkit-transform 0.2s ease;
	-o-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
	transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}