/* 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_store {
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #EFEFEF;
	padding-bottom: 9px;
	margin: 9px 0 18px;
}
.kb_product_store .the-price {
	font-weight: 700;
	font-size: 23px;
	line-height: 28px;
}
.kb_product_store .the-price span {
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #666;
}
.kb_product_store .the-logo {
	margin-left: auto;
}
.kb_product_store .the-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_store {
		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_store {
		display: block;
		overflow: hidden;
		text-align: center;
		border-top: 2px solid #EFEFEF;
		border-bottom: 0;
		padding: 18px 0 0;
	}
	.kb-multiproduct .kb_product_store .the-price {
		float: left;
		font-size: 19px !important;
		line-height: 24px;
	}
	.kb-multiproduct .kb_product_store .the-price span {
		margin-top: -16px;
	}
	.kb-multiproduct .kb_product_store .the-logo {
		float: right;
		height: 24px;
	}
	.kb-multiproduct .kb_product_store .the-logo 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 */


/* LINKS TO REVIEWS */
.gcm_product_reviews {
	margin: 18px 0;
}
.gcm_product_reviews .reviews_link {
	font-weight: 500 !important;
	font-size: 12px !important;
	line-height: 15px !important;
	display: flex;
	cursor: pointer;
}
.gcm_product_reviews .reviews_link span {
	color: var(--kb-color-primary, #54a0ff);
}
.gcm_product_reviews .reviews_link span:hover {
	color: var(--kb-color-primary, #54a0ff);
	text-decoration: underline;
}
.gcm_product_reviews .reviews_link svg {
	fill: var(--kb-color-primary, #54a0ff);
	width: 15px;
	height: 15px;
	margin-right: 6px;
}
.gcm_product_reviews .reviews_link.user_reviews svg {
	padding-right: 2px;
}
/* LINKS TO REVIEWS END */


/* REVIEWS BAR */
.reviews-bar {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.reviews-bar .product br,
.reviews-bar .product p:empty {
	display: none;
}
.reviews-bar .product {
	padding: 9px 9px 18px;
	display: flex;
	flex: 1 0 auto;
	flex-wrap: wrap;
}
.reviews-bar .product > * {
	padding: 9px;
}
.reviews-bar .product .img {
	width: 33.333%;
	text-align: center;
}
.reviews-bar .product .img img {
	max-height: 150px;
}
.reviews-bar .product .info {
	width: 66.666%;
	line-height: 130%;
}
.reviews-bar .product .info .title a {
	font-weight: 700;
	font-size: 16px;
	line-height: 23px;
	color: var(--kb-color-primary-3, #222F3E);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reviews-bar .product .info .store {
	display: flex;
	flex-wrap: wrap;
	border-top: 2px solid var(--kb-color-neutral-2, #E2E2E2);
	line-height: 22px;
	margin-top: 18px;
	padding-top: 9px;
}
.reviews-bar .product .info .store .price {
	font-size: 16px;
	padding-right: 9px;
	margin-right: auto;
}
.reviews-bar .product .info .store .logo {
	max-width: 74px;
	max-height: 40px;
}
.reviews-bar .product .info .store .logo:empty {
	width: 58px;
	height: 24px;
	background: url('../img/amazon-logo.png') !important;
	background-size: contain !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
}
.reviews-bar .product .btn {
	width: 100%;
	text-align: center;
}
.reviews-bar .product .btn a {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	padding: 6px 14px;
	color: white;
	border-radius: 16px;
	border: 2px solid var(--kb-color-primary, #54A0FF);
	background: var(--kb-color-primary, #54A0FF);
	margin-top: 18px;
	transition: 0.2s;
}
.reviews-bar .product .btn a svg {
	display: none;
}
.reviews-bar .product .btn a:hover {
	color: var(--kb-color-primary, #54A0FF);
	background: white;
}
.reviews-bar .loading-reviews {
	background: linear-gradient(var(--kb-color-neutral-1, #F4F4F4), white);
	padding: 18px;
	text-align: center;
}
.reviews-bar .loading-reviews i {
	display: inline-block;
	width: 9px;
	height: 4px;
	background-color: var(--kb-color-primary, #54a0ff);
	margin: 6px 2px 0;
	border-radius: 2px;
	opacity: .6;
}
.reviews-bar .loading-reviews i:first-of-type {
	animation: load-dot .9s 0s infinite;
}
.reviews-bar .loading-reviews i {
	animation: load-dot .9s .3s infinite;
}
.reviews-bar .loading-reviews i:last-of-type {
	animation: load-dot .9s .6s infinite;
}
@keyframes load-dot {
	00% { height: 4px; opacity: 0.6; }
	05% { height: 6px; opacity: 1.0; }
	30% { height: 6px; opacity: 1.0; }
	35% { height: 4px; opacity: 0.6; }
}
.reviews-bar .review {
	background: var(--kb-color-neutral-1, #F4F4F4);
	margin: 0 0 18px;
	padding: 18px;
	font-size: 12px;
	line-height: 150%;
}
.reviews-bar .review:last-of-type {
	margin: 0;
}
.reviews-bar .review .author {
	display: flex;
	margin-bottom: 18px;
}
.reviews-bar .review .author .logo {
	max-width: 168px;
	max-height: 48px;
}
.reviews-bar .review .author .name {
	font-weight: bold;
	font-size: 16px;
	line-height: 150%;
	color: var(--kb-color-primary-3, #222F3E);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.reviews-bar .review .excerpt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.reviews-bar .review .excerpt > p {
	margin: 8px 0 18px;
	width: 100%;
}
.reviews-bar .review .excerpt > div {
	color: var(--kb-color-neutral-4, #737373);
}
.reviews-bar .review .excerpt > a {
	color: var(--kb-color-primary, #54a0ff);
	font-weight: 700;
}
@media (min-width: 576px) {
	.reviews-bar .product .store .logo {
		max-width: 70px;
		max-height: 55px;
	}
}
/* REVIEWS BAR END */


/* REVIEWS SHARE DROPDOWN */
.gcm_product .share-dropdown {
	display: none;
}
.share-dropdown .copied-text {
  position: absolute;
  top: 38px;
  right: -34px;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  color: var(--kb-color-primary-3, #222F3E);
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
  padding: 0 8px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: .2s;
}
.share-dropdown.copied .copied-text {
  opacity: 1;
  transition: .2s;
}
/* REVIEWS SHARE DROPDOWN END */

/* REVIEWS BLOCK SHORTCODE */
.entry-content .gcm-reviews-block p {
	margin: 0;
}
.gcm-reviews-block {
	margin-bottom: 4.5rem;
}
.gcm-reviews-block div.review a {
	font-weight: 700;
    border-bottom: none !important;
    color: var(--kb-color-complement, #54A0FF);
}
.gcm-reviews-block .review {
	background: var(--kb-color-neutral-1, #F4F4F4);
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	margin: 0 0 18px;
	padding: 13px;
}
.gcm-reviews-block .review > * {
	padding: 5px;
}
.gcm-reviews-block .review .reviewer span {
	font-weight: 700;
    font-size: 24px;
    color: var(--kb-color-primary-3, #222F3E);
}
.gcm-reviews-block .review .reviewer img {
    max-width: 200px;
    max-height: 60px;
    vertical-align: middle;
}
.gcm-reviews-block .review .excerpt > div + div {
	margin-top: 10px;
}
.gcm-reviews-block .review .source {
	color: var(--kb-color-neutral-4, #737373);
}
@media (min-width: 768px) {
	.gcm-reviews-block .review {
		display: grid;
		grid-template-columns: 1fr 2.5fr;
		grid-template-rows: 1fr auto;
		grid-template-areas:
			"col1a col2"
			"col1b col2";
	}
	.gcm-reviews-block .review .reviewer {
		grid-area: col1a;
	}
	.gcm-reviews-block .review .excerpt {
		grid-area: col2;
	}
	.gcm-reviews-block .review .source {
		grid-area: col1b;
	}
}
/* REVIEWS BLOCK SHORTCODE END */