/* Subpage Banner CSS */
.product-detail-page #Banner-Container-S {
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}
/* A product's main image is catalog photography, not a purpose-shot wide
   banner — it can't be relied on to have a dark region for the white banner
   text to sit on, so a gradient scrim guarantees legibility regardless of
   what image is behind it. */
.product-detail-page #Banner-Container-S::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(270deg, rgba(20, 30, 40, 0.75) 0%, rgba(20, 30, 40, 0.35) 55%, rgba(20, 30, 40, 0.05) 100%);
}
.product-detail-page .banner-info {
	width: 600px;
	position: absolute;
	top: 45px;
	right: 0;
	padding: 10px 10px;
	color: #fff;
	z-index: 1;
}
.product-detail-page .banner-info h1 {
	font: normal 36px/38px 'Parkinsans';
	padding: 0 0 10px 0;
}
.product-detail-page .banner-info .product-tag {
	font: 500 16px/24px 'Parkinsans';
	padding: 10px 0 10px 0;
}
.product-detail-page .banner-info .product-dis {
	font: 300 15px/24px 'Parkinsans';
	padding: 10px 0 10px 0;
}
.product-detail-page .banner-info .ban-btn {
	font: 500 16px/26px 'Parkinsans';
	padding: 10px 0 10px 0;
}
.product-detail-page .banner-info .ban-btn li {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 10px 0;
}
.product-detail-page .banner-info .ban-btn li:first-child {
	margin-right: 15px;
}
.product-detail-page .banner-info .ban-btn li a {
	display: block;
	padding: 10px 30px;
	border-radius: 25px;
	background: #1c78ae;
	border: 1px solid #167cb7;
}
.product-detail-page .banner-info .ban-btn li a:hover {
	background: var(--black-color) !important;
	border-color: #000;
}
.product-detail-page .banner-info .ban-btn li a::before {
	background: #000;
}
.product-detail-page .banner-info .ban-btn li:last-child a {
	background: none;
}
/* .product-detail-page .banner-info .ban-btn li:last-child a:hover {
	background: #1c78ae;
} */
.product-detail-page .banner-info .ban-links {
	font: 500 16px/26px 'Parkinsans';
	padding: 10px 0 0px 0;
}
.product-detail-page .banner-info .ban-links li {
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.product-detail-page .banner-info .ban-links li::after {
	content: '|';
	padding: 0 15px;
}
.product-detail-page .banner-info .ban-links li:last-child::after {
	display: none;
}
.product-detail-page .banner-info .ban-links li a {
	display: inline-block;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.product-detail-page .banner-info .ban-links li a:hover {
	color: #c3e2ff;
}
/* AI Software */
#PP-AI-Software .section-inside {
	padding: 100px 0 40px 0;
}
#PP-AI-Software .flex-div {
	gap: 35px;
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	align-items: stretch;
}
.pp-ai-soft-pic {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 815px;
}
.pp-ai-soft-pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.pp-ai-soft-pic:hover img {
	transform: var(--t-scale);
}
.pp-ai-soft-text {
	background: var(--bg-color-bl);
	border-radius: var(--radius-lg);
	padding: 75px 75px 30px 85px;
}
.pp-ai-soft-text h2 {
	font: 300 40px/46px 'Parkinsans';
	padding: 10px 0 15px 0;
}
.pp-ai-soft-text h2 span {
	font: bold 24px/32px 'Parkinsans';
	display: block;
}
.pp-ai-soft-text p {
	padding: 15px 0;
}
.pp-ai-soft-text .more-link {
	font: normal 16px/21px 'Parkinsans';
	padding: 15px 0;
	color: #fff;
}
.pp-ai-soft-text .more-link a {
	display: inline-block;
	padding: 10px 30px;
	background: #167cb7;
	border-color: #167cb7;
}
.pp-ai-soft-text .more-link a:hover {
	color: #167cb7;
}
.pp-ai-soft-text .more-link a::before {
	background: #c3e2ff;
}
/* Product Img Detail */
#PP-Product-Img-Detail .section-inside {
	padding: 30px 0 100px 0;
}
#PP-Product-Img-Detail h2 {
	font: 300 44px/52px 'Parkinsans';
	text-align: center;
	padding: 10px 10px 60px 10px;
}
#PP-Product-Img-Detail ul li.flex-div {
	gap: 23px;
	margin: 0 0 25px 0;
}
#PP-Product-Img-Detail ul li .pid-text {
	font: 300 15px/24px 'Parkinsans';
	flex: 1;
	border-radius: var(--radius-lg);
	background: var(--bg-color-lb);
	padding: 40px 50px 20px 50px;
	order: 1;
}
#PP-Product-Img-Detail ul li .pid-text h3 {
	font: 500 30px/36px 'Parkinsans';
	color: #167cb7;
	padding: 0px 0 10px 0;
}
#PP-Product-Img-Detail ul li .pid-text h3 span {
	display: block;
	font: 400 16px/24px 'Parkinsans';
	color: #2d2f2f;
}
#PP-Product-Img-Detail ul li .pid-text p {
	padding: 10px 0;
}
#PP-Product-Img-Detail ul li .pid-pic {
	width: 716px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	order: 2;
	position: relative;
	min-height: 320px;
}
#PP-Product-Img-Detail ul li .pid-pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
#PP-Product-Img-Detail ul li .pid-pic:hover img {
	transform: var(--t-scale);
}
#PP-Product-Img-Detail ul li:nth-child(even) .pid-text {
	order: 2;
}
#PP-Product-Img-Detail ul li:nth-child(even) .pid-pic {
	order: 1;
}
/* Models in This Series */
#PP-Models-Series .section-inside {
	padding:30px 0 80px 0;
}
#PP-Models-Series h2 {
	font: 300 44px/50px 'Parkinsans';
	padding: 10px 0 60px 0;
	text-align:center;
}
#PP-Models-Series .flex-div {
	gap:64px;
}
.model-item {
	flex:1;
	text-align:center;
	padding:40px 50px;
	border-radius:var(--radius-lg);
	box-shadow: 0px 10px 15px 0px rgba(114, 165, 204, 0.2);
	font: normal 15px/26px 'Parkinsans';
}
.model-item h3 {
	font: normal 24px/30px 'Parkinsans';
	color:#167cb7;
	padding:15px 0;
}
.model-item .view-product {
	font: 500 14px/20px 'Parkinsans';
	color: #167cb7;
	padding: 15px 30px;
}
.model-item .view-product a::after {
	content: '\2192';
	font-weight: 800;
	font-size: 18px;
	margin: 0px 5px;
}
.model-item .view-product a:hover::after {
	margin: 0px 5px 0 10px;
}
/* Product Clinical Use */
#PP-Product-Clinical-Use {
	background: var(--bg-color-lb);
}
#PP-Product-Clinical-Use .section-inside {
	padding: 50px 0 100px 0;
}
#PP-Product-Clinical-Use h2 {
	font: 300 44px/52px 'Parkinsans';
	text-align: center;
	padding: 10px 10px 60px 10px;
}
#PP-Product-Clinical-Use h2 span {
	font: 300 16px/24px 'Parkinsans';
	display: block;
	margin: 10px auto 0 auto;
  max-width: 750px;
}
#PP-Product-Clinical-Use .flex-div {
	gap: 35px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	align-items: stretch;
}
#PP-Product-Clinical-Use .pcu-pic {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	width: 515px;
	min-height: 100%;
}
#PP-Product-Clinical-Use .pcu-pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
#PP-Product-Clinical-Use .pcu-pic:hover img {
	transform: var(--t-scale);
}
#PP-Product-Clinical-Use .pcu-text {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	align-content: start;
}
.pcu-text .pcu-item {
	background: var(--bg-color-bl);
	padding: 20px 20px 20px 50px;
	border-radius: var(--radius-lg);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.pcu-text .pcu-item h3 {
	font: 600 18px/22px 'Parkinsans';
	padding: 60px 0 5px 0;
}
.pcu-text .pcu-item .pcu-icon {
	position: absolute;
	width: 55px;
	height: 55px;
	border-radius: 10px;
	/* background-color: #fff; */
	background-position: center center;
	background-repeat: no-repeat;
	left: 50px;
	top: 20px;
	overflow: hidden;
}
.pcu-text .pcu-item p {
	font: 300 14px/20px 'Parkinsans';
	padding: 5px 0;
}
.pcu-text .pcu-item:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	padding: 25px 20px 20px 128px;
}
.pcu-text .pcu-item:last-child:nth-child(odd) .pcu-icon {
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
}
.pcu-text .pcu-item:last-child:nth-child(odd) h3 {
	padding: 5px 0;
}
/* Technical Specifications */
#PP-Tech-Spec {
	background: var(--bg-color-db);
}
#PP-Tech-Spec .section-inside {
	padding: 80px 0 100px 0;
}
#PP-Tech-Spec h2 {
	font: 300 44px/52px 'Parkinsans';
	text-align: center;
	padding: 10px 10px 60px 10px;
	color: #fff;
}
#PP-Tech-Spec h2 span {
	font: 300 16px/24px 'Parkinsans';
	display: block;
	padding: 10px 0 0 0;
}
.tech-spec-center-img {
	text-align: center;
	margin-bottom: 40px;
}
.tech-spec-center-img img {
	max-width: 100%;
	border-radius: var(--radius-lg);
}
.tech-spec-tbl ul li {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #dedede;
	background: #fff;
}
.tech-spec-tbl ul li:nth-child(odd) {
	background: #f0f8fd;
}
.tech-spec-tbl ul li div {
	padding: 18px 40px;
}
.tech-spec-tbl ul li div:nth-child(1) {
	font: 600 16px/24px 'Parkinsans';
	border-left: 1px solid #dedede;
	border-right: 1px solid #dedede;
	width: 290px;
}
.tech-spec-tbl ul li div:nth-child(2) {
	font: normal 15px/24px 'Parkinsans';
	border-right: 1px solid #dedede;
	flex: 1;
}
.tech-spec-tbl ul li:first-child {
	border-radius: 20px 20px 0 0;
	border: 0px !important;
}
.tech-spec-tbl ul li:first-child div {
	font-weight: 600 !important;
	font-size: 18px !important;
	background: #292929 !important;
	color: #fff !important;
	border: 0px !important;
}
.tech-spec-tbl ul li:first-child div:nth-child(1) {
	border-radius: 20px 0 0 0;
}
.tech-spec-tbl ul li:first-child div:nth-child(2) {
	border-radius: 0 20px 0 0;
}
.tech-spec-tbl ul li:last-child {
	border-radius: 0 0 20px 20px;
}
.tech-spec-tbl ul li:last-child div:nth-child(1) {
	border-radius: 0 0 0 20px;
}
.tech-spec-tbl ul li:last-child div:nth-child(2) {
	border-radius: 0 0 20px 0;
}
.tech-spec-note {
	font: 300 14px/22px 'Parkinsans';
	color: #fff;
	text-align: center;
	padding-top: 24px;
}
/* Consumables & Accessories */
#PP-Consumables-Accessories .section-inside {
	padding:50px 0 80px 0;
}
#PP-Consumables-Accessories h2 {
	font: 300 44px/52px 'Parkinsans';
	text-align: center;
	padding: 10px 10px 50px 10px;
}
#PP-Consumables-Accessories .cas-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 17px;
}
#PP-Consumables-Accessories .cas-item {
  text-align: center;
  width: 185px;
  margin: 0;
  padding: 10px 10px 20px 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.5) 0px 0px 5px -1px, rgba(0, 0, 0, 0.5) 0px 1px 3px -1px;
}
#PP-Consumables-Accessories .cas-item .cas-image {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 10px;
}
#PP-Consumables-Accessories .cas-item .cas-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
#PP-Consumables-Accessories .cas-item h4 {
	font: 600 14px/18px 'Parkinsans';
	padding: 0 0 4px 0;
}
#PP-Consumables-Accessories .cas-item p {
	font: normal 12px/16px 'Parkinsans';
	color: #666;
}
/* Compare Section */
#PP-Compare-Sec {
	background: var(--bg-color-lb);
}
#PP-Compare-Sec .section-inside {
	padding: 80px 0 100px 0;
	overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#PP-Compare-Sec h2 {
	font: 300 44px/52px 'Parkinsans';
	text-align: center;
	padding: 10px 10px 60px 10px;
}
#PP-Compare-Sec h2 span {
	font: 300 16px/24px 'Parkinsans';
	display: block;
	padding: 10px 0 0 0;
}
#PP-Compare-Sec .section-inside ul {
	text-align: left;
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  width: max-content;
  margin: 0 auto;
}
#PP-Compare-Sec .section-inside ul ul {
  width: 100%;
  display: block;
}
#PP-Compare-Sec ul > li {
	border-radius: var(--radius-lg);
}
.current-product {
	background: #fff;
	position: sticky;
  left: 0;
  z-index: 10;
}
.pp-compare-item {
	width: 290px;
	padding: 20px 0;
	text-align: left;
	height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pp-compare-item .compare-item-pic {
	text-align: center;
}
.pp-compare-item h3 {
	font: normal 24px/30px 'Parkinsans';
	color: #167cb7;
	padding: 10px 30px 15px 30px;
	min-height: 72px;
	display: flex;
  align-items: center;
}
.pp-compare-item h3 span {
	font: normal 18px/22px 'Parkinsans';
	display: none;
}
.pp-compare-item ul {
	padding: 0px 30px;
	font: normal 15px/24px 'Parkinsans';
	min-height: 220px;
}
.pp-compare-item ul li {
	padding: 0 0 15px 25px;
	position: relative;
}
.pp-compare-item ul li span {
	font-weight: 600;
}
.pp-compare-item ul li::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #167cb7;
	left: 0px;
	top: 7px;
}
.pp-compare-item .view-product {
	font: 500 14px/20px 'Parkinsans';
	color: #167cb7;
	padding: 5px 30px;
}
.pp-compare-item .view-product a::after {
	content: '\2192';
	font-weight: 800;
	font-size: 18px;
	margin: 0px 5px;
}
.pp-compare-item .view-product a:hover::after {
	margin: 0px 5px 0 10px;
}
/* Product Page See the Product in Use Section CSS */
#PP-See-the-Product-Use-Section-In {
	text-align: center;
	padding-top: 87px;
	padding-bottom: 102px;
}
#PP-See-the-Product-Use-Section-In h2 {
	font: 300 44px/60px 'Parkinsans';
	color: #141414;
	margin-bottom: 60px;
}
#PP-See-the-Product-Use-Section-In .splide__track--nav > .splide__list > .splide__slide {
	border: none;
}
#PP-See-the-Product-Use-Thumbnails-slider {
	margin-top: 30px;
}
#PP-See-the-Product-Use-slider {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	overflow: hidden;
}
.pp-see-the-product-use-list-preview-img {
	border-radius: inherit;
	-webkit-border-radius: inherit;
	-moz-border-radius: inherit;
	-ms-border-radius: inherit;
	-o-border-radius: inherit;
	position: relative;
	aspect-ratio: 16 / 6.52;
}
.pp-see-the-product-use-list-preview-img img, .pp-see-the-product-use-list-preview-img iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.pp-see-the-product-use-list-thumbnail-img {
	width: 296px;
	margin: 0 auto 2px auto;
	position: relative;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border: 2px solid transparent;
	overflow: hidden;
  height: 194px;
}
.pp-see-the-product-use-list-thumbnail-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}
#PP-See-the-Product-Use-wrapper .is-active ul li.is-active .pp-see-the-product-use-list-thumbnail-img {
	border-color: #167cb7;
}
.pp-see-the-product-use-list-thumbnail-img::before {
	position: absolute;
	content: '';
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 38"><circle cx="16" cy="16" r="11" fill="none" stroke="%23ffffff" stroke-width="3"/><line x1="24" y1="24" x2="33" y2="33" stroke="%23ffffff" stroke-width="3" stroke-linecap="round"/></svg>') no-repeat center;
	width: 38px;
	height: 38px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.pp-product-vieo-thumbnail::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 20px;
	border-color: transparent transparent transparent #ffffff;
	transition: all 0.3s ease;
	background: none;
}
#PP-See-the-Product-Use-wrapper ul li:not(:first-child) {
	display: none;
}
#PP-See-the-Product-Use-wrapper .is-active ul li {
	display: block;
}
#PP-See-the-Product-Use-wrapper .progress-bar-container {
	display: flex;
	align-items: center;
	height: 7px;
	margin-top: 35px;
}
#PP-See-the-Product-Use-wrapper .progress-track {
	width: 100%;
	height: 2px;
	background: #c3e2ff;
	position: relative;
}
#PP-See-the-Product-Use-wrapper .progress-fill {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 5px;
	background: #167cb7;
	width: 0%;
	border-radius: 2px;
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Product Page Product Support Section CSS */
#PP-Product-Support-Section-In {
	text-align: center;
	padding-top: 80px;
	padding-bottom: 93px;
}
#PP-Product-Support-Section-In h2 {
	font: 300 48px/54px 'Parkinsans';
	color: #222222;
}
#PP-Product-Support-Section-In p {
	font: 300 18px/28px 'Parkinsans';
	color: #494949;
	margin-top: 22px;
}
.pp-product-support-list {
	margin-top: 50px;
}
.pp-product-support-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}
.pp-product-support-list ul li a {
	display: block;
	font: normal 18px/24px 'Parkinsans';
	color: #000;
	letter-spacing: 0.2px;
	border-color: #167cb7;
	padding: 13px 52px;
}
.pp-product-support-list ul li a.btn-hvr-b::before {
	background: #167cb7;
}
.pp-product-support-list ul li a.btn-hvr-b:hover {
	color: #fff;
}
.pp-product-support-list ul li a.btn-hvr-w::before {
	background: #fff;
}
.pp-product-support-list ul li a.btn-hvr-w:hover {
	color: #000;
	background: none;
}
.pp-product-support-list ul li:nth-child(even) a {
	background: #167cb7;
	color: #fff;
}

/* Product Page FAQs Section CSS */
.pp-faqs-accordion .accordion-container {
	width: 100%;
	height: fit-content;
}
.pp-faqs-accordion .accordion-trigger {
	width: 100%;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	text-align: left;
	background: none;
	padding: 0;
	transition: color 0.2s ease, background 0.2s ease;
}
.pp-faqs-accordion .accordion-text {
	flex: 1;
}
.pp-faqs-accordion .accordion-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pp-faqs-accordion .accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#PP-FAQs-Section {
	background: #f4f9ff;
}
#PP-FAQs-Section-In {
	padding-top: 83px;
	padding-bottom: 104px;
}
#PP-FAQs-Section-In h2 {
	text-align: center;
	font: 300 44px/50px 'Parkinsans';
	color: #000;
}
.pp-faqs-accordion .accordion-item {
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	border: 1px solid #e3f2ff;
	background: #fff;
	overflow: hidden;
}
.pp-faqs-accordion .accordion-item.active {
	box-shadow: 0px 2px 6px 0px rgba(22, 124, 183, 0.2);
}
.pp-faqs-accordion .accordion-text {
	font: 500 18px/24px 'Parkinsans';
	color: #000;
}
.pp-faqs-accordion .accordion-text strong {
	font-weight: inherit;
	margin-right: 16px;
}
.pp-faqs-accordion .accordion-trigger {
	padding: 18px 52px 18px 137px;
	flex-wrap: wrap;
	position: relative;
}
.pp-faqs-accordion .active .accordion-trigger {
	background: #167cb7;
}
.pp-faqs-accordion .active .accordion-text {
	color: #fff;
}
.pp-faqs-accordion .accordion-container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 12px;
	padding: 0 5px;
}
.pp-faqs-accordion {
	margin-top: 63px;
}
.pp-faqs-accordion .accordion-icon {
	background: url('../images/pp-faqs-down-arrow.png') no-repeat;
	width: 32px;
	height: 33px;
	position: absolute;
	right: 53px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.pp-faqs-accordion .active .accordion-icon {
	rotate: 180deg;
}
.pp-faqs-accordion .accordion-content {
	font: normal 16px/30px 'Parkinsans';
	color: #000;
	padding: 0 155px 0 138px;
}
.pp-faqs-accordion .active .accordion-content {
	max-height: 2000px;
	padding-top: 28px;
	padding-bottom: 31px;
}
/* Product Page Related Products Section CSS */
#PP-Related-Products-In {
	padding-top: 72px;
	padding-bottom: 98px;
}
#PP-Related-Products-In h2 {
	font: 300 44px/50px 'Parkinsans';
	color: #000;
}
.pp-related-products-list {
	margin-top: 62px;
}
.pp-related-products-list-in {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pp-related-products-list ul li:not(:first-child) {
	display: none;
}
.pp-related-products-list .is-active ul li {
	display: block;
}
.pp-related-products-list-in-txt h3 {
	font: normal 23px/29px 'Parkinsans';
	color: #167cb7;
	padding-bottom:10px;
}
.pp-related-products-list-in-txt p {
	font: 500 15px/25px 'Parkinsans';
	color: #000;
}
.pp-related-products-list-rdmr {
	padding-top:10px;
}
.pp-related-products-list-rdmr a {
	display: inline-block;
	font: 500 14px/20px 'Parkinsans';
	color: #167cb7;
	position: relative;
	padding-right: 34px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.pp-related-products-list-rdmr a::after {
	position: absolute;
	content: '';
	background: url('../images/pp-blue-arrow.png') no-repeat;
	width: 14px;
	height: 12px;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: transform 0.3s ease;
	-webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	-o-transition: transform 0.3s ease;
}
.pp-related-products-list-rdmr a:hover {
	color: #000;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.pp-related-products-list-rdmr a:hover:after {
	transform: translateX(5px);
	background: url('../images/pp-black-arrow.png') no-repeat;
}
.pp-related-products-list-in {
	width: 381px;
	margin: 0 auto;
	border-radius:20px;
	overflow:hidden;
}
.pp-related-products-list-in-txt {
	border: 1px solid #d9e7f7;
	border-top: 0;
	border-radius: 0 0 20px 20px;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	-ms-border-radius: 0 0 20px 20px;
	-o-border-radius: 0 0 20px 20px;
	padding: 40px 47px 53px 51px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	/*height: 270px;*/
}
.pp-related-products-list-in-img {
	background: var(--bg-color-lb);
}
.pp-related-products-list .splide__arrows {
	position: absolute;
	top: -114px;
	right: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.pp-related-products-list .splide__arrow {
	width: 54px;
	height: 55px;
	opacity: 1;
	position: static;
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
}
.pp-related-products-list .splide__arrow svg {
	display: none;
}
.pp-related-products-list .splide__arrow--prev {
	background: url('../images/our-core-products-left-arrow.png') no-repeat;
}
.pp-related-products-list .splide__arrow--next {
	background: url('../images/our-core-products-right-arrow.png') no-repeat;
}
/* Media Query For Different Screens */
@media screen and (max-width : 1200.99px) {
}
@media screen and (max-width : 1199.99px) {
}
@media screen and (max-width : 1169.99px) {
}
@media screen and (max-width : 1023.99px) {
/* Tablet: fixed-width side-by-side layouts become fluid single columns. */
.product-detail-page .banner-info {
	width: 100%;
	position: static;
	padding: 30px 20px;
}
#PP-AI-Software .flex-div,
#PP-Product-Clinical-Use .flex-div {
	grid-template-columns: 1fr;
}
.pp-ai-soft-pic,
#PP-Product-Clinical-Use .pcu-pic {
	width: 100%;
	min-height: 360px;
}
#PP-Product-Img-Detail ul li .pid-pic {
	width: 100%;
}
.tech-spec-tbl ul li div:nth-child(1) {
	width: 220px;
}
}
@media screen and (max-width : 979.99px) {
#PP-Consumables-Accessories .cas-grid {
	grid-template-columns: repeat(3, 1fr);
}
}
@media screen and (max-width : 767.99px) {
/* Mobile: alternating image/text rows and the tech-spec table stack. */
#PP-Product-Img-Detail ul li.flex-div,
#PP-Product-Img-Detail ul li:nth-child(even).flex-div {
	flex-direction: column;
}
#PP-Product-Img-Detail ul li .pid-text,
#PP-Product-Img-Detail ul li:nth-child(even) .pid-text {
	order: 2;
}
#PP-Product-Img-Detail ul li .pid-pic,
#PP-Product-Img-Detail ul li:nth-child(even) .pid-pic {
	order: 1;
	min-height: 220px;
}
#PP-Product-Clinical-Use .pcu-text {
	grid-template-columns: 1fr;
}
.tech-spec-tbl ul li {
	flex-direction: column;
}
.tech-spec-tbl ul li div:nth-child(1),
.tech-spec-tbl ul li div:nth-child(2) {
	width: 100%;
	border-left: 0;
}
.tech-spec-tbl ul li:first-child {
	display: none; /* the "Specification | Details" header row only makes sense as two columns */
}
.pp-compare-item {
	width: 100%;
}
.pp-related-products-list-in {
	width: 100%;
}
}
@media screen and (max-width : 640.99px) {
#Content,  #Sidebar {
	display: block;
}
#Sidebar {
	margin: 0px auto;
}
.contactTable .table-cell {
	display: block;
	width: 100%;
}
.contact-address {
	border-radius: 10px 10px 0px 0px;
}
.contact-map {
	height: 250px;
	border-radius: 0px 0px 10px 10px;
}
.textMain .useFul li {
	width: 95%;
}
.textMain .schemaTable .table-cell {
	display: block;
	margin: 0px auto;
}
}
@media screen and (max-width : 639.99px) {
}
@media screen and (max-width : 479.99px) {
/* Small phones: full-width stacked buttons and cards. */
.product-detail-page .banner-info .ban-btn li,
.product-detail-page .banner-info .ban-btn li a {
	display: block;
	width: 100%;
	text-align: center;
}
.product-detail-page .banner-info .ban-btn li:first-child {
	margin-right: 0;
}
.pp-product-support-list ul li,
.pp-product-support-list ul li a {
	display: block;
	width: 100%;
	text-align: center;
}
#PP-Consumables-Accessories .cas-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width : 359.99px) {
}
@media screen and (max-width : 319.99px) {
}
