/* HORIZONTAL PRODUCT BOX */
.kb_product p:empty, .kb_product br,
.kbgb p:empty, .kbgb br {
	display: none;
}
.kb_product p {
	margin: 0;
}
.kb_product a, .kb_product a:hover {
	text-decoration: none;
	border-bottom: none !important;
	color: #222F3E;
}
/* RANKED PRODUCT BOX */
.kb_ranked {
	position: relative;
	margin: 15px 0 -2px;
	border-bottom: 6px solid #f4f4f4;
	z-index: 1;
}
.kb_ranked > div {
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	padding: 8px 10px 2px;
	width: calc(28% + 64px);
	background: #f4f4f4;
	color: #737373;
	color: var(--kb-color-neutral-4);
}
.kb_ranked.kb_top_rank {
	border-bottom: 6px solid #222F3E;
}
.kb_ranked.kb_top_rank > div {
	background: #222F3E;
	color: white;
}
.kb_ranked + div.kb_product {
	border-width: 2px !important;
	margin: 0 0 40px !important
}
@media (max-width: 575px) {
	.kb_ranked > div {
		width: 100%;
	}
}
/* RANKED PRODUCT BOX END */
.kb_product {
	color: #222F3E;
	position: relative;
	display: flex;
	padding: 40px;
	border: 1px solid #EFEFEF;
	margin: 15px 0 40px;
}
.kb_product_image {
	display: flex;
	flex-direction: column;
	width: 28%;
	text-align: center;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}
.kb_product_image::before,
.kb_product_image::after {
	display: block;
	content: '';
	position: relative;
	flex-grow: 1;
	flex-shrink: 1;
}
.kb_product_image::before {
	max-height: 36px;
}
.kb_product_image a {
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
}
.kb_product_image img {
	width: 100%;
	object-fit: contain;
	background: #FFF;
	max-height: 250px;
	vertical-align: middle;
}
.kb_product_image_hover img.kb_product_hover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #FFF;
	object-fit: contain;
	opacity: 0;
	z-index: 3;
	transition: .3s ease;
}
.kb_product_image_hover figure:hover .kb_product_hover {
	opacity: 1;
}
/* PRODUCT IMAGE SLIDER */
.kb_product_image_slider {
	margin: 0 -40px;
	width: calc(28% + 80px);
}
.kb_product_image_slider figure {
	padding: 0 40px;
}
.kb_product_image_slider .slick-initialized .slick-track {
    display: flex;
    align-items: center;
}
.kb_product_image_slider ul.slick-dots {
	justify-content: center;
	font-size: 0;
	line-height: 0;
	margin: 20px 0 0;
	list-style: none;
	transition: .15s;
}
.kb_product_image_slider ul.slick-dots li {
	margin: 0;
	padding: 0;
	font-size: 0;
}
.kb_product_image_slider ul.slick-dots li::before {
	display: none;
}
.kb_product_image_slider ul.slick-dots li {
	display: inline-block;
	margin: 0 3px;
	padding: 0;
	font-size: 0;
	line-height: 0;
}
.kb_product_image_slider ul.slick-dots li button {
	padding: 0;
	font-size: 0;
	background: #E2E2E2;
	height: 8px;
	width: 8px;
	border-radius: 50%;
}
.kb_product_image_slider ul.slick-dots li.slick-active button {
	background: #54A0FF;
	background: var(--kb-color-primary);
}
.kb_product_image_slider .product_slider_arrow {
	position: absolute;
	line-height: 0;
	width: 24px;
	height: 24px;
	bottom: 50%;
	opacity: 0;
	z-index: 5;
	cursor: pointer;
	transition: .15s;
}
.kb_product_image_slider:hover .product_slider_arrow {
	opacity: 1;
}
.kb_product_image_slider .product_slider_arrow svg {
	stroke: #E2E2E2;
	width: 24px;
	height: 24px;
	transition: .1s;
}
.kb_product_image_slider .product_slider_arrow:hover svg {
	stroke: #C4C4C4;
}
.kb_product_image_slider .product_slider_arrow:active svg {
	opacity: .75;
	transition: 0;
}
.kb_product_image_slider .product_slider_arrow.prev {
	left: 10px;
}
.kb_product_image_slider .product_slider_arrow.prev svg {
    transform: rotate(90deg);
}
.kb_product_image_slider .product_slider_arrow.next {
	right: 10px;
}
.kb_product_image_slider .product_slider_arrow.next svg {
    transform: rotate(-90deg);
}
@media (max-width: 575px) {
	.kb_product_image_slider {
		margin: 0;
	}
	.kb_product_image_slider figure {
		padding: 0;
	}
	.kb_product_image_slider ul.slick-dots {
		margin: 18px 0 0;
	}
}
/* PRODUCT IMAGE SLIDER END */
.kb_product hr {
	border: 0;
	margin: 0 40px;
	width: 4px;
	height: unset;
	flex-shrink: 0;
	background: #54A0FF;
	background: var(--kb-color-neutral-2);
}
.kb_product_body {
	font-size: 14px;
	line-height: 17px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.kb_product_tags {
	display: flex;
	margin-bottom: 9px;
}
.kb_product_affiliate {
	margin-left: auto;
	color: #E2E2E2;
	border-right: 8px solid #E2E2E2;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	padding: 0 4px;
}
.kb_product_body a {
	word-break: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	-moz-hyphens: auto;
	margin: 0 0 9px;
}
.kb_product_body a {
	font-weight: 700;
	font-size: 20px;
	line-height: 27px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.kb_product_body a:hover {
	text-decoration: underline;
}
.kb_product_price {
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #EFEFEF;
	padding-bottom: 9px;
	margin: 9px 0 18px;
}
.kb_product_price .kb_product_price_1 {
	font-weight: 700;
	font-size: 23px;
	line-height: 28px;
}
.kb_product_price .kb_product_price_1 span {
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #666;
}
.kb_product_price .kb_product_logo {
	margin-left: auto;
}
.kb_product_price .kb_product_logo img {
	vertical-align: middle;
	height: 100%;
	min-width: 30px;
	max-width: 130px;
	min-height: 25px;
	max-height: 40px;
	object-fit: contain;
}
.kb_product_btn {
	text-align: right;
}
.kb_product_btn a {
	display: inline-block;
	text-align: center;
	vertical-align: bottom;
	color: #FFF !important;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	padding: 12px 18px !important;
	border-radius: 23px;
	border: 2px solid #54A0FF !important;
	border: 2px solid var(--kb-color-primary) !important;
	background: #54A0FF;
	background: var(--kb-color-primary);
	transition: .2s;
	margin: 0;
}
.kb_product_btn a svg {
	vertical-align: bottom;
	margin-right: 6px;
	width: 16px;
	height: 17px;
	fill: #FFF !important;
	transition: .2s;
}
.kb_product_btn a:hover {
	text-decoration: none;
	color: #54A0FF !important;
	color: var(--kb-color-primary) !important;
	border: 2px solid #54A0FF !important;
	border: 2px solid var(--kb-color-primary) !important;
	background: transparent;
}
.kb_product_btn a:hover svg {
	fill: #54A0FF !important;
	fill: var(--kb-color-primary) !important;
}

.kb_price_compare {
	border-top: 2px solid #EFEFEF;
	margin: 9px 0 0;
}
.kb_price_compare_item {
	margin-top: 18px;
	display: flex;
	justify-content: space-between;
}
.kb_price_compare_item a:hover {
	text-decoration: none;
	border-bottom: unset;
}
.kb_compare_store {
	margin: 0 18px 0 0;
	align-self: center;
}
.kb_compare_store img {
	max-height: 40px;
	max-width: 76px;
	vertical-align: middle;
}
a.kb_compare_btn {
	flex-grow: 1;
	max-width: 220px;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	padding: 4px 10px !important;
	border-radius: 23px;
	color: #FFF !important;
	background: #5C5F68;
	border: 2px solid #5C5F68 !important;
	transition: .2s;
	margin: 0;
}
a.kb_compare_btn:hover {
	color: #5C5F68 !important;
	background: transparent;
	border: 2px solid #5C5F68 !important;
}
.kb_price_compare_item_best a.kb_compare_btn {
	color: #FFF !important;
	background: #54A0FF;
	border: 2px solid #54A0FF !important;
}
.kb_price_compare_item_best a.kb_compare_btn:hover {
	color: #54A0FF !important;
	background: transparent;
	border: 2px solid #54A0FF !important;
}
a.kb_compare_btn span {
	font-weight: 400;
	font-size: 14px;
	vertical-align: top;
	margin-right: 5px;
}
@media (max-width: 767px) {
	.kb_price_compare_item {
		flex-direction: column;
	}
	.kb_compare_store {
		margin: 0 auto 9px 0;
	}
	a.kb_compare_btn {
		max-width: 100%;
	}
}
@media (max-width: 575px) {
	.kb_product {
		padding: 18px !important;
		flex-direction: column;
	}
	.kb_product_image {
		width: 100%;
		padding-top: 0;
	}
	.kb_product_image img {
		max-height: 240px;
	}
	.kb_product hr {
		margin: 18px 0;
		width: 100%;
		height: 4px;
	}
	.kb_product_body a {
		-webkit-line-clamp: 5;
	}
	.kb_product_price {
		display: block;
		text-align: center;
	}
	.kb_product_btn a {
		display: block;
	}
	.kb_compare_store {
		margin: 0 auto 9px;
	}
	.kb_compare_store img {
		max-height: 48px;
	}
}
/* HORIZONTAL PRODUCT BOX END */


/* PRODUCT GRID */
.kb-product-grid p {
	font-size: 0;
	margin: 0;
}
.kb-product-grid:not(.kb-product-slider) {
	display: flex;
	flex-wrap: wrap;
}
.kb-product-grid {
	margin: 0 -6px 36px;
}
.kb-product-grid .kbgb {
	width: calc(100% - 1px);
	color: #222F3E;
	border: 1px solid #E2E2E2;
	margin: 6px;
	position: relative;
}
.kb-product-grid .slick-track {
	margin-left: 0;
}
.kb-product-grid .kbgb figure {
	position: relative;
	overflow: hidden;
	margin: 0;
}
.kb-product-grid .kbgb figure img {
	width: 100%;
	height: 270px;
	padding: 24px 16px 16px;
	object-fit: contain;
}
.kb-product-grid .kbgb .fig_hover .kb_product_hover {
	display: none;
}
.kb-product-grid .kbgb_tags {
	overflow: hidden;
	padding: 9px 16px;
}
.kb-product-grid .kbgb_tags .kbgb_affiliate {
	float: right;
	color: #E2E2E2;
	font-weight: 500;
	font-size: 12px;
	line-height: 20px;
	padding-right: 3px;
	border-right: 8px solid #E2E2E2;
}
.kb-product-grid .kbgb figcaption {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	padding: 16px 18px;
	line-height: 17px;
	box-sizing: border-box;
	background: #F4F4F4;
	width: 100%;
	max-height: 120px;
	left: 0;
}
.kb-product-grid .kbgb figcaption > a {
	color: #222F3E;
	text-decoration: none;
	border-bottom: none;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 34px;
	-webkit-line-clamp: 2;
}
.kb-product-grid .kbgb figcaption > span {
	display: block;
	margin-top: 10px;
	font-weight: 400;
}
.kb-product-grid .kbgb figcaption > span small {
	color: #666666;
	font-size: 12px;
}
.kb-product-grid .kbgb figcaption > span strike {
	color: #666666;
	font-size: 12px;
	margin-left: 6px;
}
.kb-product-grid .kbgb figcaption > div {
	position: absolute;
	height: calc(100% - 32px);
	width: calc(100% - 36px);
	top: 16px;
	left: 18px;
	background: #F4F4F4;
	transition: .15s ease;
	opacity: 0;
}
.kb-product-grid .kbgb:hover figcaption > div {
	opacity: 1;
}
.kb-product-grid .kbgb figcaption > div a {
	position: absolute;
	text-decoration: none;
	color: #222F3E;
	color: #FFF;
	top: 50%;
	transform: translateY(-50%);
	line-height: 18px;
	padding: 7px 12px;
	border-radius: 18px;
	width: calc(100% - 36px);
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background: #54A0FF;
	background: var(--kb-color-primary);
	border: 2px solid #54A0FF !important;
	border: 2px solid var(--kb-color-primary) !important;
	transition: .15s;
}
.kb-product-grid .kbgb figcaption > div a svg {
	width: 16px;
	height: 17px;
	margin: -3px 7px -1px 0;
	vertical-align: middle;
	fill: #FFF;
}
.kb-product-grid .kbgb figcaption > div a:hover {
	color: #54A0FF;
	color: var(--kb-color-primary);
	background: transparent;
}
.kb-product-grid .kbgb figcaption > div a:hover svg {
	fill: #54A0FF;
	fill: var(--kb-color-primary);
}
.kb-product-grid ul.slick-dots {
	text-align: center;
	margin: 0;
	list-style: none;
	transition: .15s;
}
.kb-product-grid ul.slick-dots li {
	margin: 0;
	padding: 0;
	font-size: 0;
}
.kb-product-grid ul.slick-dots li::before {
	display: none;
}
.kb-product-grid ul.slick-dots li {
	display: inline-block;
	margin: 0 4px;
	padding: 0;
	font-size: 0;
	line-height: 0;
}
.kb-product-grid ul.slick-dots li button {
	padding: 0;
	font-size: 0;
	background: #E2E2E2;
	height: 10px;
	width: 10px;
	border-radius: 50%;
}
.kb-product-grid ul.slick-dots li.slick-active button {
	background: #54A0FF;
}
@media screen and ( min-width: 768px ) {
	.kb-product-grid .kbgb {
		float: left;
		width: calc(100% / 3 - 12px);
		margin: 6px;
	}
	.kb-product-grid .kbgb .fig_hover .kb_product_hover {
		background: #FFF;
		position: absolute;
		top: 0;
		z-index: 1;
		opacity: 0;
		transition: .3s ease;
	}
	.kb-product-grid .kbgb .fig_hover:hover .kb_product_hover {
		transition-delay: .2s;
		opacity: 1;
	}
	.kb-product-grid .kbgb figcaption a {
		max-height: 51px;
		-webkit-line-clamp: 3;
	}
	.product_grid_arrow {
		position: absolute;
		top: 151px;
		width: 31px;
		height: 31px;
		border-radius: 50%;
		cursor: pointer;
		z-index: 1;
	}
	.product_grid_arrow.prev {
		left: -9px;
	}
	.product_grid_arrow.next {
		right: -9px;
	}
	.product_grid_arrow svg {
		position: relative;
		stroke-linecap: round;
		stroke-width: 1;
		stroke: #808080;
		background: #FFF;
		border-radius: 50%;
		transition: .1s;
		border: 1px solid #E2E2E2;
	}
	.product_grid_arrow:hover svg {
		background: #F4F4F4;
		stroke: #54A0FF;
	}
}
/* PRODUCT GRID END */


/* MULTIPRODUCT */
.kb-multiproduct .kb_product_body ul {
	display: none;
}
.kb-multiproduct .kb_product_image_wide {
	padding-top: unset;
}
@media screen and ( min-width: 768px ) {
	.kb-multiproduct {
		display: flex;
		flex-wrap: wrap;
		overflow: hidden;
		margin: 16px -6px 24px;
	}
	.kb-multiproduct .kb_product {
		margin: 6px;
		width: calc(100% / 3 - 12px);
		padding: 18px;
		flex-direction: column;
	}
	.kb-multiproduct .kb_product_image {
		width: 100%;
		height: 200px;
		flex-direction: row;
	}
	.kb-multiproduct .kb_product_image figure {
		width: 100%;
	}
	.kb-multiproduct .kb_product_image a {
		height: 100%;
		display: block;
	}
	.kb-multiproduct .kb_product_image img {
		position: absolute;
		object-fit: contain;
		width: 100%;
		height: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.kb-multiproduct .kb_product hr {
		margin: 18px 0;
		width: 100%;
		height: 4px;
	}
	.kb-multiproduct .kb_product_price {
		display: block;
		overflow: hidden;
		text-align: center;
		border-top: 2px solid #EFEFEF;
		border-bottom: 0;
		padding: 18px 0 0;
	}
	.kb-multiproduct .kb_product_logo {
		height: 40px;
	}
	.kb-multiproduct .kb_product_price_1 {
		float: left;
		font-size: 19px !important;
		line-height: 24px;
	}
	.kb-multiproduct .kb_product_price_1 span {
		margin-top: -16px;
	}
	.kb-multiproduct .kb_product_price_2 {
		float: right;
		height: 24px;
	}
	.kb-multiproduct .kb_product_price_2 a {
		margin: 0 !important;
		height: 21px !important;
	}
	.kb-multiproduct .kb_product_btn a {
		display: block;
	}
}
/* descripction */
.kb_product_description {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
  }
/* MULTIPRODUCT END */

/* comment amazon */

.kb_product_reviews_gcm{
	color: var(--kb-color-primary) !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    line-height: 15px !important;
    margin: 9px 0 !important;
	display: flex !important;
}

a.kb_product_reviews_gcm:hover {
	text-decoration: underline !important;
	border-bottom: none !important;
	color: var(--kb-color-text, #282828) !important;
}