
*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
}
:root{
	--baseColor: #0BAC4B;
	--secondaryColor: #405cb3;
	--lightColor: #FFFFFF;
	--grayColor: #F7F7F7;
	--darkColor: #222222;

	--baseFont: "Open Sans", sans-serif;
	--secondaryFont: SFProDisplay;
}


/* ===== CSS For "Common Cases" Starts Here ===== */
a{
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover{
	text-decoration: none;
}
img{
	max-width: 100%;
}

/* ======================== */

.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}

/* ======================== */

.cta_btn_wrap{
	margin-top: 20px;
}
.cta_btn{
	color: var(--lightColor);
	background: var(--baseColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 18px;
	border: 1px solid #098A3C;
	border-bottom: 3px solid #04461E;
	border-radius: 5px;
	min-width: 200px;
	text-align: center;
	display: block;
	padding: 10px 15px;
	padding-bottom: 12px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.cta_btn:hover{
	color: var(--lightColor);
	text-decoration: none;
	background: #067131;
}
.cta_btn span {
	font-weight: 400;
	font-size: 36px;
	line-height: 20px;
	position: relative;
	top: 5px;
	margin-left: 5px;
	display: inline-block;
}

/* ======================== */

.heading{
	margin-bottom: 20px;
}
.heading h3{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 670;
	font-size: 29px;
	margin-bottom: 0px;
}

/* ======================== */

.para_texts p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18.8px;
	line-height: 1.5;
	margin-bottom: 15px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
.para_texts p .bold_texts{
	font-weight: 700;
}

.para_texts p a{
	color: var(--secondaryColor);
	font-weight: 700;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.para_texts p a:hover{
	color: #1139b5;
}

.para_texts p .green_texts{
	color: #088300;
	font-weight: 700;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Header" Starts Here ===== */
.header{
	border-bottom: 1px solid rgba(0, 0, 0, 0.059);
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.071);
}
.header .top{
	background: #344A5F;
	padding: 5px 0px;
}
.header .top p{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 10px;
	text-transform: uppercase;
	margin-bottom: 0px;
}
.header .top p .advertorial_texts{
	color: #B3B3B4;
	font-weight: 400;
	text-transform: capitalize;
}

.header .bottom_wrap{
	padding: 12.5px 0px;
}
.header .bottom{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 10px 160px;
    grid-template-columns: 1fr 160px;
    grid-auto-rows: auto;
    gap: 10px;
}

.header .bottom .logo a{
	text-decoration: none;
	display: inline-block;
	line-height: 1;
}
.header .bottom .logo img{
	max-width: 30px;
	margin-right: 5px;
	display: inline-block;
	vertical-align: top;
}
.header .bottom .logo .logo_texts{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 30px;
	display: inline-block;
	letter-spacing: -2px;
}
.header .bottom .logo .logo_texts .product_name{
	color: #1582c5;
	font-weight: 600;
	font-size: 22px;
	position: relative;
	top: -4px;
}
.header .bottom .logo .logo_texts .vertical_bar{
	color: #D6D6D6;
	font-weight: 300;
	font-size: 20px;
	margin: 0px 5px;
	position: relative;
	top: -4px;
}

.header .bottom .trending{
	text-align: right;
}
.header .bottom .trending h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 0px;
}
.header .bottom .trending img{
	max-width: 30px;
	margin-left: 5px;
}
/* ===== CSS For "Header" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Update Banner" Starts Here ===== */
.update_banner{
	background: #FFF0C7;
	margin: 15px 0px;
	padding: 15px;
	text-align: center;
}
.update_banner p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 0px;
}
.update_banner p .bold_texts{
	font-weight: 700;
}
.update_banner p a{
	color: var(--secondaryColor);
	font-weight: 700;
	text-decoration: underline;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.update_banner p a:hover{
	color: #1139b5;
}
/* ===== CSS For "Update Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Main Article" Starts Here ===== */
.article_wrap{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 280px;
	grid-template-columns: 1fr 280px;
	grid-auto-rows: auto;
	gap: 30px;
	padding: 15px 0px;
}

.main_article .article_info{
	margin-bottom: 20px;
}

.main_article .article_info .article_title h2{
	color: #2f2f2f;
	font-family: var(--baseFont);
	font-weight: 670;
	font-size: 42px;
	line-height: 1.38;
	letter-spacing: -1px;
	margin-bottom: 0px;
}

.main_article .article_info .limited_time_sale{
	margin: 10px 0px;
}
.main_article .article_info .limited_time_sale a{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 380;
	font-size: 21px;
	display: inline-block;
	text-decoration: underline;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.main_article .article_info .limited_time_sale a .bold_texts{
	font-weight: 700;
}
.main_article .article_info .limited_time_sale a:hover{
	color: #1139b5;
}

.main_article .published_info{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 5px 70px;
    grid-template-columns: 1fr 70px;
    grid-auto-rows: auto;
    gap: 5px;
}

.main_article .published_info .rating_author_info h6{
	color: #808080;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 0px;
}
.main_article .published_info .rating_author_info h6 .star_rating{
	max-width: 100px;
	margin-top: -5px;
	margin-right: 6px;
}
.main_article .published_info .rating_author_info .author_pic{
	width: 25px;
	height: 25px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
	margin: 0px 5px;
}

.main_article .published_info .rating_author_info .author_name{
	font-weight: 700;
}

.main_article .published_info .like_info{
	text-align: right;
}
.main_article .published_info .like_info h6{
	color: #808080;
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 0px;	
}
.main_article .published_info .like_info img{
	position: relative;
	top: -2px;
}
/* ===== CSS For "Main Article" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "The Article" Starts Here ===== */
.the_article .single_part{
	margin-bottom: 30px;
}
.the_article .single_part:last-child{
	margin-bottom: 0px;
}

.the_article .single_part .preview_media{
	margin-bottom: 20px;
}

.the_article .single_part .preview_media video {
	width: 100%;
	vertical-align: middle;
}
.the_article .single_part .preview_media img{
	width: 100%;
}

/* ============================== */

.the_article .numbered_points h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 18.8px;
	margin-bottom: 15px;
}
.the_article .numbered_points ul{
	margin-bottom: 0px;
	background: #FBFBFB;
	border: 1px solid #F1F1F1;
	padding: 20px 25px;
}
.the_article .numbered_points ul li{
	color: rgb(45,49,69);
	list-style: none;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18.8px;
	counter-increment: the-counter;
	position: relative;
	padding-left: 35px;
	margin-bottom: 15px;
}
.the_article .numbered_points ul li:last-child{
	margin-bottom: 0px;
}
.the_article .numbered_points ul li:before {
	content: counter(the-counter) "";
	
	background: #16C60C;
	border: 1px solid #0E9140;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	line-height: 21px;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: var(--lightColor);
	position: absolute;
	left: 0px;
	top: 5px;
}

/* ============================== */

.the_article .check_points h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 17.8px;
	margin-bottom: 15px;
}
.the_article .check_points ul{
	margin-bottom: 0px;
	background: #fefbf4;
	border: 1px solid #fff3cd;
	padding: 20px 25px;
}
.the_article .check_points ul li{
	color: rgb(45,49,69);
	list-style: none;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18.8px;
	counter-increment: the-counter;
	position: relative;
	padding-left: 35px;
	margin-bottom: 15px;
}
.the_article .check_points ul li .bold_texts{
	font-weight: 700;
}
.the_article .check_points ul li:last-child{
	margin-bottom: 0px;
}
.the_article .check_points ul li:before {
	content: "\2713";
	
	background: #16C60C;
	border: 1px solid #0E9140;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	line-height: 21px;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: var(--lightColor);
	position: absolute;
	left: 0px;
	top: 5px;
}

.the_article .check_points ul li .break{
	display: block;
}
/* ===== CSS For "The Article" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "FB Posts" Starts Here ===== */
.fb_posts{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
}
.fb_posts .single_post{
	margin-bottom: 0px;
	background: #F0F2F5;
	padding: 10px;
	padding-bottom: 0px;
}
.fb_posts .single_post:last-child{
	margin-bottom: 0px;
	padding-bottom: 10px;
}
.fb_posts .single_post a{
	background: var(--lightColor);
	display: block;
	padding: 10px;
	border-radius: 7.5px;
}

/* ============================== */

.fb_posts .post_header{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 5px 20px;
    grid-template-columns: 1fr 20px;
    grid-auto-rows: auto;
    gap: 5px;
	margin-bottom: 10px;
}
.fb_posts .post_header .user_info{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 35px 10px 1fr;
    grid-template-columns: 35px 1fr;
    grid-auto-rows: auto;
    gap: 10px;
}
.fb_posts .post_header .user_info .profile_pic img{
	width: 35px;
	height: 35px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
.fb_posts .post_header .user_info h5{
	color: #3f5893;
	font-family: var(--secondaryFont);
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	margin-bottom: 5px;
}
.fb_posts .post_header .user_info h6{
	color: #62676f;
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	margin-bottom: 0px;
}
.fb_posts .post_header .user_info h6 i{
	color: #303030;
	position: relative;
	top: 2px;
}
.fb_posts .post_header .three_dots{
	text-align: right;
}
.fb_posts .post_header .three_dots i{
	color: #61676F;
	font-size: 18px;
}

/* ============================== */

.fb_posts .post_texts{
	margin-bottom: 10px;
}
.fb_posts .post_texts p{
	color: #1e2128;
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.25;
	margin-bottom: 0px;
}

/* ============================== */

.fb_posts .post_image{
	margin: 0px -10px;
}

/* ============================== */

.fb_posts .react_comment{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 5px;
	margin: 10px 0px;
}
.fb_posts .react_comment .reacts h6{
	margin-bottom: 0px;
	font-size: 0px;
}
.fb_posts .react_comment .reacts h6 img{
	width: 20px;
}
.fb_posts .react_comment .reacts h6 img:nth-child(1){
	position: relative;
	z-index: 3;
}
.fb_posts .react_comment .reacts h6 img:nth-child(2){
	position: relative;
	left: -3px;
	z-index: 2;
}
.fb_posts .react_comment .reacts h6 img:nth-child(3){
	position: relative;
	left: -6px;
	z-index: 1;
}
.fb_posts .react_comment .reacts h6 span{
	color: #62676f;
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 12px;
	display: inline-block;
	position: relative;
	top: 5px;
}
.fb_posts .react_comment .comment h6{
	color: #62676f;
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 12px;
	text-align: right;
	margin-bottom: 0px;
}

/* ============================== */

.fb_posts .like_comment{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 5px;
	text-align: center;
	border-top: 1px solid #CED0D4;
	border-bottom: 1px solid #CED0D4;
	padding: 7.5px 0px;
	margin-bottom: 15px;
}
.fb_posts .like_comment h6{
	color: #718096;
	font-family: var(--secondaryFont);
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 0px;
}
.fb_posts .like_comment h6 img{
	width: 18px;
	position: relative;
}

/* ============================== */

.fb_posts .s_p_comment{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 35px 5px 1fr;
    grid-template-columns: 35px 1fr;
    grid-auto-rows: auto;
    gap: 5px;
	margin-bottom: 10px;
}
.fb_posts .s_p_comment:last-child{
	margin-bottom: 0px;
}

.fb_posts .s_p_comment.s_comments_reply{
	padding-left: 40px;
}

.fb_posts .s_p_comment .profile_pic img{
	width: 35px;
	height: 35px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
.fb_posts .s_p_comment .comment_txts{
	background: #F0F2F5;
	border-radius: 10px;
	padding: 5px 10px;
}
.fb_posts .s_p_comment .comment_txts h6{
	color: #000000;
	font-family: var(--secondaryFont);
	font-weight: 500;
	font-size: 13px;
	line-height: 1;
	margin-bottom: 5px;
}
.fb_posts .s_p_comment .comment_txts p{
	color: var(--darkColor);
	font-family: var(--secondaryFont);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.25;
	margin-bottom: 0px;
}
.fb_posts .s_p_comment .comment_info{
	margin-top: 10px;
}
.fb_posts .s_p_comment .comment_info h6{
	color: #65676b;
	font-family: var(--secondaryFont);
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	margin-bottom: 0px;
}
.fb_posts .s_p_comment .comment_info h6 small{
	font-weight: 400;
	font-size: 12;
}
/* ===== CSS For "FB Posts" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "As Of Box" Starts Here ===== */
.the_article .as_of_box{
	background: #FFF7E5;
	border: 3px dashed #000000;
	padding: 20px;
	margin: 20px 0px;
}
/* ===== CSS For "As Of Box" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Rating Box" Starts Here ===== */
.cs_rating_box{
	border: 1px solid #F1F1F1;
	border-radius: 4px;
}
.cs_rating_box .top_info{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 200px;
    grid-template-columns: 1fr 200px;
    grid-auto-rows: auto;
    gap: 5px;
	background: #FAFAFA;
	padding: 15px;
	padding-bottom: 20px;
}

.cs_rating_box .top_info .lt_rating_info h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 25px;
	line-height: 1;
	margin-bottom: 10px;
}
.cs_rating_box .top_info .lt_rating_info h6{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	margin-bottom: 10px;
}
.cs_rating_box .top_info .lt_rating_info h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 25px;
	line-height: 1;
	margin-bottom: 0px;
}
.cs_rating_box .top_info .lt_rating_info h5 img{
	max-width: 110px;
}
.cs_rating_box .top_info .lt_rating_info h5 .excellent{
	font-weight: 400;
	font-size: 18px;
}
.cs_rating_box .top_info .lt_rating_info h5 .mean_rating{
	position: relative;
	top: 3px;
}

.cs_rating_box .top_info .brans_logo{
	text-align: right;
}
.cs_rating_box .top_info .brans_logo img{
	max-width: 30px;
	position: relative;
	top: -2px;
	margin-right: 3px;
}
.cs_rating_box .top_info .brans_logo h5{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 24px;
	letter-spacing: -2px;
	line-height: 1;
	margin-bottom: 0px;
}

.cs_rating_box .progress_bars{
	background: #EFEFEF;
	padding: 15px;
}
.cs_rating_box .progress_bars .single_bar{
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 15px 115px;
    grid-template-columns: 1fr 115px;
    grid-auto-rows: auto;
    gap: 15px;
	margin-bottom: 20px;
}
.cs_rating_box .progress_bars .single_bar:last-child{
	margin-bottom: 0px;
}

.cs_rating_box .progress_bars .single_bar .main_bar{
	width: 100%;
	height: 20px;
	background: #C5C5C5;
	border-radius: 25px;
}
.cs_rating_box .progress_bars .single_bar .main_bar .filled_bar{
	width: 0%;
	height: 20px;
	background: #195CA3;
	border-radius: 25px;
	position: relative;
}
.cs_rating_box .progress_bars .single_bar .main_bar .filled_bar.nine{
	width: 90%;
}
.cs_rating_box .progress_bars .single_bar .main_bar .filled_bar.ten{
	width: 100%;
}
.cs_rating_box .progress_bars .single_bar .main_bar .filled_bar.eight{
	width: 80%;
}
.cs_rating_box .progress_bars .single_bar .main_bar .filled_bar span {
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 14px;
	position: absolute;
	right: 15px;
	top: 2px;
	line-height: 1;
}

.cs_rating_box .progress_bars .single_bar .bar_name h6{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 17px;
	line-height: 1;
	margin-bottom: 0px;
}
/* ===== CSS For "Rating Box" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Sidebar" Starts Here ===== */
.sidebar_box_outer{
	padding-top: 10px;
}
.sidebar_box{
	border: 1px solid #E5E5E5;
	border-radius: 5px;
	padding: 10px;
	text-align: center;
}
.sidebar_box .box_header{
	background: #F3F3F3;
	padding: 10px;
}
.sidebar_box .box_header h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 670;
	font-size: 20px;
	margin-bottom: 10px;
}
.sidebar_box .box_header h4 .break{
	display: block;
}
.sidebar_box .box_header h6{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 0px;
}
.sidebar_box .box_header h6 img{
	max-width: 80px;
	margin-top: -3px;
	margin-right: 6px;
}

.sidebar_box .box_body .product_image{
	padding: 10px 15px;
}
.sidebar_box .box_body h5{
	color: var(--secondaryColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 0px;
}
.sidebar_box .box_body h5 a{
	color: var(--secondaryColor);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.sidebar_box .box_body h5 a:hover{
	color: #1139b5;
}
.sidebar_box .box_body .cta_btn_wrap{
	margin-top: 10px;
}
/* ===== CSS For "Sidebar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "FB Comments" Starts Here ===== */
.fb_comments_wrap {
	margin-bottom: 50px;
}
.fb_comments_wrap .sub_heading{
	max-width: calc(100% - 310px);
	border-top: 1px solid #E5E5E5;
	margin-top: 15px;
	padding-top: 20px;
	margin-bottom: 20px;
}
.fb_comments_wrap .sub_heading h4{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 0px;
}
.fb_comments_wrap .fb_comments{
	max-width: calc(100% - 310px);
}

.fb_comments .sf_comment{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 10px 1fr;
    grid-template-columns: 50px 1fr;
    grid-auto-rows: auto;
    gap: 10px;
	margin-bottom: 20px;
}
.fb_comments .sf_comment:last-child{
	margin-bottom: 0px;
}

.fb_comments .sf_comment .profile_pic img{
	position: relative;
	top: 3px;
}

.fb_comments .profile_name{
	margin-bottom: 5px;
}
.fb_comments .profile_name h6{
	color: #3658a6;
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 0px;
}
.fb_comments .profile_name h6 .location{
	color: #999999;
	font-weight: 400;
	font-size: 12px;
	display: inline-block;
	margin: 0px 5px;
}
.fb_comments .profile_name h6 img{
	max-width: 17px;
}

.fb_comments .leave_com{
	margin-bottom: 5px;
}
.fb_comments .leave_com p{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.25;
	margin-bottom: 0px;
}
.fb_comments ul{
	margin-bottom: 0px;
	line-height: 1;
}
.fb_comments ul li{
	list-style: none;
	display: inline-block;
	margin-right: 10px;
	color: #3658a6;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 13px;
}
.fb_comments ul li:last-child{
	margin-right: 0px;
}
.fb_comments ul li a{
	color: #3658a6;
}
.fb_comments ul li small{
	color: #666666;
	font-size: 13px;
}
.fb_comments ul li img{
	position: relative;
	top: -2px;
	max-width: 18px;
}
/* ===== CSS For "FB Comments" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: #121212;
	padding: 30px 0px;
	text-align: center;
}
.footer .legal_links{
	margin-bottom: 20px;
}
.footer .legal_links ul{
	margin-bottom: 0px;
	text-align: center;
}
.footer .legal_links ul li{
	list-style: none;
	display: inline-block;
	margin-right: 20px;
}
.footer .legal_links ul li:last-child{
	margin-right: 0px;
}
.footer .legal_links ul li a{
	color: #808080;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 12px;
	text-transform: uppercase;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.footer .legal_links ul li a:hover{
	color: var(--lightColor);
}

.footer .disclaimer_texts{
	max-width: 1010px;
	margin: 0px auto;
	margin-bottom: 20px;
}
.footer .disclaimer_texts p{
	color: #4D4D4F;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 12px;
	margin-bottom: 15px;
}
.footer .disclaimer_texts p:last-child{
	margin-bottom: 0px;
}

.footer .copyright{
	margin-bottom: 20px;
}
.footer .copyright p{
	color: #4D4D4F;
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 0px;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */