.pbf-product{
	display: flex;
	border:3px solid #333;
	background: #fff;
	align-items: center;
	padding: 20px;
	box-shadow: 1px 1px 4px 1px rgb(51 51 51 / 13%);
    transition: 0.25s;
    border-radius: 8px;
}
.pbf-product:Hover {
    box-shadow: 1px 1px 26px -10px rgb(0 0 0 / 31%);
    transition: 0.25s;
}
.pbf-heading{
	font-size:26px;
	font-weight: 600;
	margin-top:25px;
}
.pbf-heading .num {
    background: #464646;
    height: 50px;
    width: 50px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size:18px;
}
.pbf-title .num{
    background: #464646;
    height: 40px;
    width: 40px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size:16px;
}
.pbf-product .pbf-img{
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.pbf-product .pbf-info{
	width: 70%;
    padding-left:8px;
    padding-right: 8px;
}
.pbf-product .pbf-info .pbf-title{
	font-size:18px;
	font-weight: 600;
	margin-bottom: 15px;
}
.pbf-product .pbf-info .pbf-title a{
	color: #333;
}
.pbf-product .pbf-info ul{
	padding: 0;
	margin-left: 12px;
	font-size:16px;
}
.pbf-product .pbf-features li::marker {
    font-family: 'FontAwesome';
    content: "\f067";
    font-size: 15px;
}
.pbf-product .pbf-features li {
    padding-left: 6px;
}
.pbf-small-heading{
	font-size:18px;
	font-weight: 600;
}
.pbf-pros-cons{
	display: flex;
	margin-top: 25px;
	flex-wrap: wrap;
}
.pbf-pros-cons .pbf-pros-cons-container{
	width: 50%;
}
.pbf-pros-cons ul{
	list-style: none;
	padding: 0;
	margin:0;
}
.pbf-pros-cons ul li{
	font-size:18px;
	margin-right: 15px;
}
.pbf-pros-cons ul li::before{
	margin-right: 15px;
}
.pbf-pros-cons ul.pbf-pros li::before{
	content: "\f00c";
	font-family: FontAwesome;
	color:#4CAF50;
}
.pbf-pros-cons ul.pbf-cons li::before{
	content: "\f00d";
	font-family: FontAwesome;
	color:#ff3535;
}
.pbf-detailed-review{
	margin: 25px 0 !important;
}
.pbf-button{
	padding: 6px 12px;
	background: #333;
	color:#fff;
	text-decoration: none;
}
.pbf-ratings{
	background-image: url('../imgs/stars-bg.svg');
	height: 22px;
	width: 120px;
	display: block;
}
.pbf-ratings span{
	width: 80%;
	height: 100%;
	display: block;
	background-image: url('../imgs/stars.svg');
}
table .pbf-buy-now{
	margin-top:0;
}
.pbf-buy-now{
	width: 100%;
    display: block;
    padding: 12px 12px;
    background: #ffcd00;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: 0.25s;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 7px;
	border-bottom: 2px solid #deb303;
}
.pbf-buy-now:hover,
.pbf-buy-now:focus{
	transition: 0.25s;
    color: #333;
    text-decoration: none !important;
    opacity: 0.9;
}
.pbf-specs-container {
    border: 2px solid #333;
    border-radius: 8px;
}
.pbf-specs-container .pbf-specs-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1px;
    background: #333;
    color: #fff;
    padding: 4px 11px;
}
.pbf-specs-container .pbf-specs {
    margin: 0;
    list-style: none;
    padding: 3px 11px;
}
.pbf-specs-container .pbf-specs li {
    margin-right: 15px;
    line-height: 2;
    font-size: 16px;
}
.pbf-specs-container .pbf-specs li::before {
    content: "\f005";
    font-family: "FontAwesome";
    margin-right: 7px;
    color: #333;
}
.pbf-products-list{
	display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    gap: 2%;
}
.pbf-products-list .pbf-products-list-item{
	flex-basis: 49%;
}

.pbf-products-list .pbf-products-list-item .pbf-products-list-item-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: 0.25s;
    position: relative;
    width: 100%;
    box-shadow: 1px 1px 4px 1px rgb(51 51 51 / 13%);
    transition: 0.25s;
    overflow: hidden;
}
.pbf-products-list .pbf-products-list-item .pbf-products-list-item-box:hover {
    box-shadow: 1px 1px 26px -10px rgb(0 0 0 / 20%);
    transition: 0.25s;
}
.pbf-products-list .pbf-products-list-item .product--featured {
    background: #e41000;
    position: absolute;
    top: -33px;
    color: #fff;
    padding: 4px 13px;
    border-radius: 12px;
    height: 48px;
    z-index: -1;
    left: 30px;
}
.pbf-products-list .pbf-products-list-item .pbf-products-list-item-inner{
	display: flex;
	max-height: 136px;
}
.pbf-products-list .pbf-products-list-item .pbf-products-list-item-inner-main{
	width: 60%;
	padding-bottom: 15px;
}
.pbf-products-list .pbf-products-list-item .pbf-products-list-item-inner-main .title{
	font-weight: 600;
	color: #000;
	margin-top: 15px;
	margin-left: 20px;
	font-size: 18px;
}
.pbf-products-list .pbf-products-list-item .pbf-products-list-item-inner-main .title a{
	/* color: #da0e0a;
	text-decoration: underline; */
	color:#333;
}
.pbf-products-list .read-review {
    margin-left: 10px;
    color: #000;
    text-decoration: underline;
    font-weight: 600;
    font-size:18px;
}

.pbf-products-list .pl-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.pbf-products-list .pl-buy img {
    max-height: 78px;
}
.pbf-products-list .pl-buy>img {
    margin-right: 60px;
}
.pbf-products-list .pl-buy .amabuy {
    background: transparent;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    right: -3px;
    position: absolute;
    height: 100%;
    flex-direction: column;
    padding-top: 24px;
    text-decoration: none;
}
.pbf-products-list .pl-buy .amabuy::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 137px;
    height: 100%;
    box-sizing: border-box;
    border-color: #333 #d3d3d3 #ffcd00 #ddd0;
    border-width: 0 0 137px 85px;
    border-style: solid;
    z-index: 1;
    transition: 0.25s;
}
.pbf-products-list .pl-buy .amabuy span {
    z-index: 6;
    color: #000;
}
.pbf-products-list .pl-buy .amabuy span {
    z-index: 6;
    color: #000;
}
.pbf-products-list .pl-buy a.amabuy:hover::before {
    right: -17px !important;
    transition: 0.25s;
}
.pbf-products-list .pbf-products-list-item .pbf-products-list-item-buy{
	width: 40%;
}
.pbf-products-list .pbf-ratings{
	display: inline-block;
	margin-left: 15px;
}
.pbf-products-block .best {
    position: absolute;
    top: -35px;
    left: 50px;
    background: #333;
    padding: 10px 21px;
    color: #fff;
    border-radius: 14px 16px 0 0;
    z-index: -1;
    line-height: 1;
    padding-bottom: 16px;
}
.vertical-divider {
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    background: #d4d4d4;
}
.pbf-products-block{
	display: flex;
	gap:15px;
	margin-top:15px;
    flex-wrap: wrap;
}
.pbf-products-block .pbf-products-block-item{
	width: 32.33%;
	position: relative;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner {
    background: #fff;
    padding: 25px;
    margin-bottom: 55px;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0px 6px 12px -11px #000000; */
    transition: 0.25s;
    position: relative;
    /* border: 1px solid #d3d3d3; */
	box-shadow: 1px 1px 4px 1px rgb(51 51 51 / 13%);
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner:hover{
	box-shadow: 1px 1px 26px -10px rgb(0 0 0 / 20%);
	transition: 0.25s;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main{
	display: flex;
	flex-direction: column;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main .image{
	display: flex;
	align-items: center;
	width: 100%;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main .list-info{
	width: 100%;
	position: relative;
	margin-top:15px;
}

.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main .list-info ul{
	list-style: none;
	padding: 0;
	margin-left:0px;
	margin-bottom: 15px;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main .list-info li{
	font-size:16px;
	margin-right: 15px;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main .list-info li::before{
	content: "\f067";
	font-family: FontAwesome;
	color:#333;
	margin-right: 8px;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 12px;
}
.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .title a{
	color:#333;
	font-weight: 600;
}
.pbf-products-block .pbf-products-block-item .btns {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    align-items: center;
}
.pbf-products-block .pbf-products-block-item .btns .pbf-buy-now{
	margin-top:0;
	display: inline-block;
	width: auto;
}
.pbf-products-block .pbf-products-block-item .btns a{
	font-size:18px;
}
.pbf-products-block .pbf-products-block-item .btns .read-review{
	color:#333;
	font-weight: 600;
    text-decoration: underline;
}
.pbf-comparison-table{
	border-left: 5px solid #333 !important;
	border-radius: 8px;
    overflow: hidden;
}
.pbf-comparison-table thead {
    background: #2b2b2b;
}
.pbf-comparison-table thead tr th {
    border: 0;
    font-size: 14px;
    padding: 6px 14px;
    color: #fff;
    font-weight: 400;
    text-align: left;
}
.pbf-comparison-table tbody tr td {
    font-size: 16px;
    padding: 12px 12px;
    vertical-align: middle;
}
.pbf-comparison-table ul{
	padding: 0;
	margin:0;
}
.pbf-comparison-table ul li{
	list-style: none;
}
.pbf-comparison-table ul li::before{
	content:"\f067";
	font: normal normal normal 14px/1 FontAwesome;
	margin-right:5px;
}
.pbf-comparison-table a.gtl {
    display: block;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-decoration: underline;
}
table.pbf-comparison-table img {
    max-width: 65px;
}
.pbf-detailed-comparison .box-header, .pbf-detailed-comparison .box {
    display: flex;
    position: relative;
    margin-bottom: 7px;
}
.pbf-detailed-comparison .info {
    display: flex;
    width: 70%;
    margin-right: 4px;
}
.pbf-detailed-comparison .main{
	width: 15%;
	font-size:16px;
	display: flex;
    align-items: center;
    padding-left: 12px;
}
.pbf-detailed-comparison .box {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 25px;
	transition: 0.25s;
	max-height: 136px;
	border: 1px solid #d3d3d3;
}

.pbf-detailed-comparison .box .title {
	font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
}
.pbf-detailed-comparison .pbf-buy-now{
	padding:6px;
}
.pbf-detailed-comparison .box img {
	max-width: 100%;
}

.pbf-detailed-comparison .box .read-review {
	margin-left: 10px;
	color: #000;
	text-decoration: underline;
	font-weight: 600;
}

.pbf-detailed-comparison .box:hover {
	box-shadow: 1px 1px 26px -10px rgba(0, 0, 0, 0.2);
	transition: 0.25s;
}
.pbf-detailed-comparison .box {
	margin-bottom: 12px;
}

.pbf-detailed-comparison .box .items--position {
	align-items: center;
}

.pbf-detailed-comparison .box .item {
	border-bottom: 1px solid #e4e4e4;
}

.pbf-detailed-comparison .box .info-item {
	word-wrap: break-word;
	font-size: 14px;
	display: flex;
	border-right: 1px solid #d3d3d3;
	width: 16.666%;
    align-items: center;
    padding:4px 12px;
}
.pbf-detailed-comparison .box-header .info-item,
.pbf-detailed-comparison .box-header .main{
	padding: 0 14px;
	font-size: 13px;
    font-weight: 600;
}
.pbf-detailed-comparison .info-item {
    width: 16.666%;
}
.pbf-detailed-comparison .box .read-review {
	margin-left: 20px;
}
.pbf-detailed-comparison .pbf-buy-now{
	width: auto;
	margin:0;
}

.pbf-detailed-comparison .box .title a {
    color: #333;
    font-weight: 600;
}
.pbf-detailed-comparison .buy a {
    padding: 5px;
}

.pbf-detailed-comparison .buy {
    display: flex;
    align-items: center;
}
.pbf_tab::before {
    content: "Table of Content";
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 17px;
    display: block;
}

.pbf_tab a {
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #d3d3d3;
	text-decoration: none;
}
.pbf_tab ul ul {
    margin-left: 27px;
}
.pbf_tab ul {
    margin-left: 0 !important;
    list-style: none;
}
.pbf_tab {
    padding: 20px 40px;
    background: linear-gradient(
180deg
, #e8e8e8, transparent);
    border: 2px solid #333;
    border-radius: 8px;
	margin-bottom: 25px;
}
.pbf-mb-5 {
	margin-bottom: 15px;
}
@media (max-width: 768px){
	.pbf-products-list .pbf-products-list-item{
		width: 100%;
	}
	.pbf-pros-cons .pbf-pros-cons-container{
		width: 100%;
		margin-bottom: 20px;
	}
	.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main .list-info{
		width: 100%;
		margin-bottom: 15px;
	}
	.vertical-divider{
		display: none;
	}
	.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main .list-info ul{
		margin:0;
	}
	.pbf-products-block .pbf-products-block-item .pbf-products-block-item-inner .inner-main{
		flex-direction: column;
	}
	.pbf-comparison-table thead{
		display: none;
	}
	.pbf-comparison-table tr td {
	    display: flex;
	    flex-direction: column;
	    width: 100% !important;
	    margin-bottom: 0;
	}
	.pbf-comparison-table tr{
		margin-bottom: 15px;
	}
	.pbf-product{
		flex-direction:column;
	}
	.pbf-product .pbf-info, .pbf-product .pbf-img {
		width: 100%;
	}
	.pbf-products-list{
		flex-direction:column;
	}
	.pbf-products-block {
		flex-direction: column;
	}
	

}
@media (max-width: 1180px){
	.pbf-detailed-comparison .box, .pbf-detailed-comparison .info-item {
	    width: 100% !important;
	    max-height: none;
	}

	.pbf-detailed-comparison .box, .pbf-detailed-comparison .info {
	    flex-direction: column;
	    width: 100%;
	}
	.pbf-detailed-comparison .main {
	    width: 100%;
	}
	.pbf-detailed-comparison .info, .pbf-detailed-comparison .info-item {
	    border: 0 !important;
	}
	.pbf-detailed-comparison .box-header {
	    display: none;
	}
	.pbf-detailed-comparison .box{

	    padding: 12px;
	}
	.pbf-detailed-comparison .box .buy{
	    padding: 10px;
	}
	.pbf-detailed-comparison .box .title a {
	    font-size: 16px;
	    display: block;
	    margin-bottom: 12px;
	    margin-top: 10px;
	}
}