@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap');

body {
	margin     : 0;
	padding    : 0;
	font-size  : 14px;
	font-family: 'IBM Plex Sans', sans-serif;
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
i {
	text-decoration   : none;
	outline           : none;
	-moz-transition   : all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition        : all 300ms ease-in-out;
}

img {
	max-width         : 100%;
	-moz-transition   : all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	transition        : all 300ms ease-in-out;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Oswald', sans-serif;
}

/*-------------------------------
 Css Start here
-------------------------------*/

.comntitle {
	font-size     : 22px;
	text-transform: capitalize;
	font-weight   : bold;
	margin-top    : 0;
	margin-bottom : 15px;
	font-family: 'Oswald', sans-serif;
}

.comntitle::after {
	content   : "";
	background: #4eae4a;
	width     : 50px;
	height    : 3px;
	display   : block;
	margin-top: 10px;
}

.contant_part {
	position: relative;
	padding : 50px 15px;
	width   : 1170px;
	margin  : auto;
	display : flex;
}

.listview {
	width: 75%;
}

.sidebar {
	width       : 29%;
	padding-left: 30px;
}

.listview ul {
	display        : flex;
	flex-wrap      : wrap;
	justify-content: space-between;
	margin-left: 0;
}

.listview li {
	width        : 31.5%;
	text-align   : center;
	border       : 1px solid #ddd;
	box-shadow   : 0 0 5px #ddd;
	margin-bottom: 30px;
}

.listview li:hover .date span{
	background: #4eae4a;
	color     : #fff;
}
.listview li h3 {
	color             : #222222;
	font-size         : 17px;
	text-transform    : capitalize;
	font-weight       : bold;
	line-height       : 26px;
	margin-top        : 10px;
	margin-bottom     : 15px;
	overflow          : hidden;
	display           : -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	padding           : 0 10px;
	font-family: 'Oswald', sans-serif;
}

.listview li p {
	font-size         : 14px;
	color             : #222222;
	overflow          : hidden;
	display           : -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	padding           : 0 10px;
	margin-bottom     : 20px;
}

.date {
	border-top: 1px solid #ddd;
	display   : flex;
}

.date span {
	color     : #222222;
	width     : 50%;
	text-align: center;
	padding   : 10px 5px;
}

.date span:last-child {
	border-left: 1px solid #ddd;
}

.date span i {
	display      : block;
	font-size    : 18px;
	margin-bottom: 5px;
}

.catebox li a {
	padding       : 14px 7px;
	border-bottom : 1px solid #ddd;
	font-size     : 16px;
	display       : block;
	color         : #222222;
	letter-spacing: 1px;
	text-transform: capitalize;
	font-weight: 500;
}
.catebox li a:hover{
	color: #fff;
	background: #4eae4a;
}

.catebox li:last-child a {
	border-bottom: none;
}

.recent_post {
	margin-top: 30px;
}

.recent_post li a {
	display      : flex;
	align-items  : flex-start;
	padding      : 15px 0;
	border-bottom: 1px solid #ddd;

}

.recent_post li:last-child a {
	border-bottom : none;
	padding-bottom: 0;
}

.recent_post li img {
	width                : 70px;
	margin-right         : 15px;
	border-radius        : 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius   : 50%;
	-ms-border-radius    : 50%;
	-o-border-radius     : 50%;
}

.recent_post li span {
	display       : block;
	color         : #223655;
	font-weight   : bold;
	text-transform: capitalize;
	margin-bottom : 10px;
}
.recent_post li:hover span,
.recent_post li:hover small{
	color         : #4eae4a;
}
.recent_post li small {
	display: block;
	color  : #223655;
}

.side_CTA {
	position       : relative;
	margin-bottom  : 30px;
	background     : url("../images/cta-bg.jpg") no-repeat;
	background-size: cover;
	color          : #fff;
	padding        : 30px 20px;
	text-align     : center;
	display        : flex;
	align-items    : center;
	justify-content: center;
	flex-direction : column;
	min-height     : 300px;
}

.side_CTA h4 {
	font-size     : 22px;
	text-transform: capitalize;
	margin-bottom : 15px;
	font-family: 'Oswald', sans-serif;
	color: #fff;
}

.side_CTA p {
	font-size: 16px;
}

.side_CTA a {
	background    : #ff8c00;
	color         : #fff;
	padding       : 10px 25px;
	text-transform: capitalize;
	margin-top    : 20px;
	border        : 2px solid #000;
	box-shadow    : 0 0 0px 2px #ff8c00;
}
.side_CTA a:hover{
	background    : #4eae4a;
	color         : #fff;
	box-shadow    : 0 0 0px 2px #4eae4a;
}

/* .detail_contant_part {
	background: #edf7ed;
	margin    : 50px auto;
} */

.blog_detail {
	width     : 75%;
	background: #fff;
}

.detail_sidebar .catebox,
.detail_sidebar .recent_post {
	background: #fff;
	padding   : 15px;
}

.spacediv {
	padding: 25px;
}

.addate span {
	margin-right: 20px;
}

.blog_detail h1 {
	text-transform: capitalize;
    font-weight: bold;
    margin-bottom: 30px !important;
    font-size: 1.5em;
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
}

.blog_detail p {
	font-size  : 16px;
	line-height: 26px;
}

.imglist {
	display        : flex;
	justify-content: space-between;
	margin         : 30px 0;
}

.imglist img {
	width: 48.5%;
}

.blog_detail aside {
	background    : #152138;
	color         : #fff;
	padding       : 30px;
	border-left   : 5px solid #01b761;
	font-size     : 16px;
	letter-spacing: 1px;
	margin        : 25px 0;
}

.blog_detail aside small {
	display    : block;
	font-size  : 16px;
	font-weight: bold;
}

 .blogbtn {
	border        : none;
	background    : #01b761;
	color         : #fff;
	text-transform: uppercase;
	font-weight   : bold;
	font-size     : 16px;
	padding       : 13px 25px;
	display       : table;
	margin        : 25px auto;
}

.blogbtn:hover,
.blogbtn:focus {
	background: #152138;
	color: #fff;
}
.blogbtn i{
	margin-right: 15px;
}
.banner{
	position: relative;
}
.banner img{
	height: 120px;
	object-fit: cover;
	width: 100%;
}
.caption {
    color: #fff;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 36px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social {
    text-align: center;
    width: 1170px;
    margin: auto;
    padding: 0px 0 40px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 40px;
}
.social a{
	font-size:18px;
	margin: 0 10px;
	color: #222222;
}
.social a i{
	font-size: 24px;
	margin-right: 8px;
}
/*-------------------------------
 Css End here
-------------------------------*/

/* Add custom css 25-05-2021 */

.site-content ol li, .site-content ul li {
    list-style: none;
}

h2.widget-title.subheading.heading-size-3 {
    font-size: 22px;
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
	font-family: 'Oswald', sans-serif;
}

h2.widget-title.subheading.heading-size-3::after {
    content: "";
    background: #4eae4a;
    width: 50px;
    height: 3px;
    display: block;
    margin-top: 10px;
}

.sidebar .widget {
    margin-bottom: 0;
}
.archive .archive-header, .page-template-default .archive-header, .single-post .archive-header {
    padding-bottom: 0 !important;
}
.recent_post li img{ height: 70px; }

.cr-all-reviews-pagination {
    text-align: center;
    font-size: 18px;
}
.cr-all-reviews-pagination .page-numbers {
    margin: 0 15px;
}
.cr-all-reviews-pagination .page-numbers.current {
    margin: 0px 15px;
}
span.ivole-voting-cont {
    text-align: right;
}
div.cr-all-reviews-shortcode ol.commentlist li .comment-text {
	border-bottom: 1px solid #e4e1e3;
}
a.ivole-a-button {
    border-style: none !important;
    font-size: 12px;
}


/* Css Add 30-11-21  16:55 */
.BNB_banner .elementor-element-populated{
    padding: 0 !important;
}
.basic .item a {
    position: absolute;
    bottom: 50px;
    left: 14.5%;
    font-family: "IBM Plex Sans", Sans-serif;
    background-color: #3bb54a;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    border-radius: 2px 2px 2px 2px;
    padding: 15px 35px;
}
.basic .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 3px;
    display: inline-block;
    border: 2px solid #d2d2d2;
    border-radius: 50%;
    background: #d2d2d2;
}
.basic .owl-dot.active {
    background-color: #3bb54a;
    border-color: #3bb54a;
}

/*====================== 02-12-2021 ====================*/
.Trustpilot_div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
    font-size: 18px;
}
.Trustpilot_div i{
    color: #00b67a;
}
.Trustpilot_div a {
    display: inline-block;
    margin: 0 5px;
}
.Trustpilot_div a i{
    background: #00b67a;
    color: #fff;
    padding: 3px;
    font-size: 14px;
}
.Trustpilot_div span{
    font-weight: 600;
}
.Trustpilot_div strong ,
.Trustpilot_div span{
	display:inline-block;
    margin: 0 5px;
}
.basic  .owl-prev {
    font-size: 26px;
    color: #fff;
    background: #222;
    width: 30px;
    text-align: center;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.basic  .owl-next {
    font-size: 26px;
    color: #fff;
    background: #222;
    width: 30px;
    text-align: center;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.basic .item a.lastbtn {
    left: 23%;
}

body.woocommerce-cart table.shop_table tr.bundled_table_item {
    display: table-row;
    background: #efefef;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
}



/* ************************** CUSTOM CSS  ****************************/

/* sticky search : 24032025 */
@media (max-width: 990px){
	#site-navigation li.bestdealpro {
    border-radius: 10px;
}
	#site-navigation li.bestdealpro.dropdown-open {
    border-radius: 10px;
}
	.main-navigation ul.menu>li.menu-item-has-children>span.caret {
    top: 8px;
}
}

/* Age Popup CSS : 05-05-2025 */

#pum-30495 .pum-container, #pum-30495 .pum-container {
    border-radius: 8px !important;
    border: 2px solid #FCB041 !important;
    box-shadow: 0px 0px 3px 0px #FCB041 !important;
}
.pum-theme-8910, .pum-theme-default-theme {
    background-color: rgba(0, 0, 0, 0.60);
}


/* 15-05-25 CSS */

.rs_social_buttons {
    display: flex;
    gap: 5px;
    align-items: center;
}
#filters , #change-page-sizes{
	width:38%;
}
#mainsubmi{
	padding:8px;
	margin-left: 10px;
}
.woocommerce-error{
	margin-top:12px !important;
}
.sumo_reward_points_notice,
.cart_totals .shop_table,
.woocommerce-cart-form {
	margin-top: 20px;
}
.woocommerce-info, .woocommerce-noreviews {
  background-color: #3bb54a;
}

#alg_wc_ev_send_verify{
	  display: inline-block;
    padding: 5px 15px;
    background-color: #3bb54a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 10px;
}
#alg_wc_ev_send_verify:hover {
  background-color: #009245;
}

@media screen and (max-width: 576px) {
  #filters , #change-page-sizes{
	   width:100%;
  }
}

#my_account_referral_link_static th.referral-number_static , #my_account_referral_link_static td:first-child{
    display: none;
}

.copy_clip_icon {
    display: flex;
    align-items: center;
    gap: 10px; 
}
