@font-face {
	font-family: 'Futura Std Bold';
	src: url('https://stryker-assets.s3.us-west-2.amazonaws.com/Fonts/Primary+Fonts/FuturaStd-Bold.ttf');
	font-weight: normal;
	font-style: normal;
}

.futurabold {
	font-family: 'Futura Std Bold';
}

@font-face {
	font-family: 'Futura Std Book';
	src: url('https://stryker-assets.s3.us-west-2.amazonaws.com/Fonts/Primary+Fonts/FuturaStd-Book.ttf');
	font-weight: normal;
	font-style: normal;
}

.futurabook {
	font-family: 'Futura Std Book';
}

@font-face {
	font-family: 'HumstSlab712 BT';
	src: url('https://stryker-assets.s3.us-west-2.amazonaws.com/Fonts/Primary+Fonts/HumanistSlabserif712BT-Roman.ttf');
	font-weight: normal;
	font-style: normal;
}

.hmnst {
	font-family: 'HumstSlab712 BT';
}

@font-face {
	font-family: 'HumstSlab712 Blk BT';
	src: url('https://stryker-assets.s3.us-west-2.amazonaws.com/Fonts/Primary+Fonts/HumanistSlabserif712BT-Black.ttf');
	font-weight: normal;
	font-style: normal;
}

.hmnstbold {
	font-family: 'HumstSlab712 Blk BT';
}

@font-face {
	font-family: 'EgyptienneURWLig';
	src: url('https://stryker-assets.s3.us-west-2.amazonaws.com/Fonts/Primary+Fonts/EgyptienneURW-Lig.ttf');
	font-weight: normal;
	font-style: normal;
}

.egyptienne {
	font-family: 'EgyptienneURWLig';
}

body,
h1,
h2,
p {
	margin: 0;
}

h1 {
	font-size: 40px;
}

h2 {
	font-family: 'Futura Std Bold';
}

canvas {
	width: 100%;
	height: 100px;
	display: block;
}

.arrow-down {
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid rgb(0 0 0 / 50%);
	margin: 0 auto;
}

.annotation {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	color: #fff;
	display: none;
	flex-direction: column;
	align-items: center;
}

.hotspot {
	width: 30px;
	height: 30px;
	border: 2px solid #ffb500;
	border-radius: 50%;
	font-size: 16px;
	text-align: center;
	background: rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	cursor: pointer;
}

.hotspotCircle {
	width: 15px;
	height: 15px;
	border: 2px solid #fff;
	border-radius: 50%;
	text-align: center;
	background: #ffb500;
	pointer-events: none;
}

.pulse {
	animation: pulse-animation 1s infinite;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px #ffb50080;
	}

	100% {
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
}

.annotation:hover .label {
	display: block;
}

.annotation2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	color: #fff;
}

.annotation2::before {
	content: "2";
	position: absolute;
	top: -30px;
	left: -30px;
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
}

.annotation2:hover .label {
	display: block;
}

.annotation3 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	color: #fff;
}

.annotation3::before {
	content: "2";
	position: absolute;
	top: -30px;
	left: -30px;
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
}

.annotation3:hover .label {
	display: block;
}

.label {
	background: rgb(0 0 0 / 50%);
	padding: 12px 15px;
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
	text-align: center;
}
.labelRight {
	position: absolute;
	font-size: 13px;
	left: 40px;
	white-space: nowrap;
	top: 5px;
	color: black;
	font-family: 'Futura Std Book';
}
.labelRight.moveLabel {
    top: -25px; /* 10px up */
    left: -58px; /* 10px left */
}
.labelLeft {
	position: absolute;
	font-size: 13px;
	left: -130px;
	white-space: nowrap;
	top: 5px;
	color: black;
	text-align: right;
	font-family: 'Futura Std Book';
}

.close {
    position: absolute;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.number {
	position: absolute;
	z-index: -1;
}

#cameraPositionButton {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	color: #fff;
}

.annotation:hover {
	z-index: 5;
}

.annotation:hover .popover {
	display: flex;
	opacity: 1;
	z-index: 5;
}

.annotation.active {
	z-index: 5;
}

.annotation.active .popover {
	display: flex;
	opacity: 1;
}

.annotation.active .close {
	display: flex;
}

.annotation.active .productModal {
	display: block;
}

.popover {
	position: absolute;
	transition: opacity 0.5s;
	display: none;
	opacity: 0;
	flex-direction: column;
	align-items: center;
	top: -42px;
}

.productModal {
	display: none;
	position: absolute;
	top: -500%;
	left: 300%;
	z-index: 1;
	color: #000;
	max-width: 400px;
}

.productModal.alignTop {
	top: -100%;
}
/* charcot */
#hindFoot .productModal{
	top: -700%;
	left: 1200%;
}
#fooTAndAnkleGeneral .productModal {
	top: -600%;
	left: 500%;
}
#midFootMedialColumn .productModal {
	top: -900%;
	left: 600%;
}
#midFootReconstruction .productModal {
	top: -300%;
	left: 500%;
}
#midFootLateralColumn .productModal {
	top: -500%;
	left: 400%;
}

#midFootReconstruction .labelRight.moveLabel {
	top: 0px; /* 10px up */
}

.white {
	color: #FFFFFF;
}
.subTitle {
	width: 1740px;
}


.productModalContent {
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 10px;
	box-shadow: 5px 5px 12px #00000029;
	min-width: 400px;
}

.productModalHeader {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.modalHeaderBorder {
    width: 100%;
    height: 4.5px;
    margin-top: 21.5px;
    margin-bottom: 19px;
    background-color: #FFB500;
}

.plateNames {
	font-size: 22px;
	line-height: 24px;
	font-weight: bold;
	color: #000;
	padding: 20px 15px;
	padding-bottom: 0;
	text-align: center;
}
.productModalHeaderTitle {
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	color: #000;
    padding-top: 22px;
	padding-bottom: 0;
	text-align: center;
}

.productModalContentTitle {
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 14px;
    text-align: center;
    color: black;
}

.productModalHeaderTitlePadding {
	font-size: 20px;
	font-weight: bold;
	color: #000;
	padding: 15px 15px;
	text-align: center;
}

.productModalBody {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0px 15px;
	padding-top: 0;
}

.productModalBodyContent {
	font-size: 12px;
	/* line-height: 30px; */
	font-family: 'HumstSlab712 BT';
	max-height: 425px;
	overflow-x: auto;
	padding: 0 20px;
	margin: 0 -10px;
	margin-bottom: 10px;
    text-align: center;
}

.productModalBodyContentImage {
	width: 100%;
	margin: auto;
	margin-top: 10px;
}

.productModalBodyContentImage img {
	width: inherit;
	max-height: 100%;
	border: 1px solid #B2B4AE;
}

.productModalBodyContentImage video {
	width: inherit;
	max-height: 100%;
}

.productModalBodyContentButton {
	font-size: 12px;
	color: #000;
	padding: 10px;
	background: #ffb500;
	text-align: center;
}

.modalSlideControls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.productModalBodyContentText {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: bla;
	font-size: 14px;
}

.productModalBodyContentTextTitle {
	font-size: 20px;
	font-weight: bold;
	color: #000;
}

.productModalBodyContentTextDescription {
	font-size: 14px;
	color: #000;
}

.loadingOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 5;
}

.loadingBar {
	width: 300px;
	height: 5px;
	background: #00000030;
}

#loadingBarFill {
	width: 0%;
	height: 100%;
	background: #ffb500;
}

.text-highlight {
	color: #ffb500;
	/*	font-family: 'HumstSlab712 BT'; */
	/*    font-family: 'HumstSlab712 Blk BT'; */
	font-family: 'Futura Std Bold';
	font-size: 90%;
	/* only needed for Future Bold */
}

#loadingBarText {
	font-size: 12px;
	color: #fff;
	margin-top: 5px;
	text-align: center;
}

.titleContainer {
	width: fit-content;
	margin: 0 auto;
/* 	margin-top: 25px; */
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 255px;
	text-align: center;
}

.titleCarousel {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
}

.carouselIndicator {
	width: 46px;
	height: 46px;
	min-width: 46px;
	min-height: 46px;
	border-radius: 50%;
	background: #B2B4AE;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	cursor: pointer;
	border: .5px solid #707070;
	/* Added a light grey border */
}

.selectionContainer {
	max-width: 397px;
	width: 100%;
	margin: 0 35px;
}
.fs-42 {
	font-size: 42px;
}
.fs-50 {
	font-size: 50px;
}
.fs-16 {
	font-size: 16px;
}
.fs-20 {
	font-size: 20px;
}
.fs-24 {
	font-size: 24px;
}

.selectionText {
	/* width: 100%; */
	height: 60px;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 2px solid #ffb500;
	font-size: 22px;
	overflow: hidden;
	backdrop-filter: blur(20px);
	padding: 0 10px;
}

.selectionText.selected {
	display: flex;
}
.mb-24 {
	margin-bottom: 24px;
}
.mb-19 {
	margin-bottom: 19px;
}
.mb-9{
	margin-bottom: 9px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-44 {
	margin-bottom: 44px;
}
.mt-28{
	margin-top: 28px;
}
.m-15 {
margin: 15px 0;
}

.scene {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 1350px;
	z-index: 2;
	display: none;
	overflow: hidden;
	/*	background: linear-gradient(0deg, #bbb, transparent); */
	background: transparent;
}

.scene.selected {
	display: block;
}

.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.chevron {
	max-width: 50%;
	max-height: 100%;
	filter: invert(1);
}

.chevron.left {
	transform: rotate(180deg);
}

.contentContainer {
	max-width: 1350px;
	margin: 0 auto;
	position: relative;
	height: 900px;
}

/* triangle */

/* triangle */
.triangle {
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 5px solid #000;
    margin: 0 auto;
}

.triangle.left {
    transform: rotate(90deg);
    margin-left: 1px;
}

.triangle.right {
    transform: rotate(-90deg);
    margin-right: 1px;
}

.triangle.rightC {
    transform: rotate(-90deg);
    margin-right: 4px;
}

.modalSlide {
    display: none;
    flex-direction: column;
}

.modalSlide.selected {
    display: flex;
}
/* End triangle */

.contentHeader {
	position: absolute;
	width: 100%;
	z-index: 5;
}

.contentFooter {
	position: absolute;
	z-index: 5;
	bottom: 0;
	left: 0;
	margin-bottom: 5px;
	margin-left: 5px;
	font-size: 12px;
	color: #474747;
}

.flex {
	display: flex;
	align-items: baseline;
}

.flex-ac {
	display: flex;
	align-items: center;
}

.flex-sa {
	display: flex;
	justify-content: space-around;
}

.ta-c {
	text-align: center;
}

.mr-5 {
	margin-right: 5px;
}

.popover.linebreak {
	top: -65px;
}

sup {
	line-height: 0;
	font-size: 70%;
}

.modalSlideControls {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    border-top: 1px solid #707070;
    /* margin: 0px 15px; */
    font-family: 'Futura Std Book';
    font-size: 10px;
    padding-top: 12px;
    padding-bottom: 21px;
    position: relative;
}
.productModalBodyContentText {
    position: absolute;
    margin: auto;
    text-align: center;
    width: 100%;
	font-size: 10px;
}
.pointer {
    cursor: pointer;
}
.modalSlideControls .nav {

    position: absolute;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    width: 100%;
}
/* Grid Container */
.grid-container {
    display: grid;
    gap: 9px;
    padding-top: 20px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-content: start;
}

.grid-item {
    text-align: center;
    font-size: 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-item.empty {
    background-color: transparent;
    border: none;
}

.item1 {
    grid-column: 1 / span 3;
    width: 100%
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 10px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.imageLarge {
    width: 100%;
    height: auto;
	border: 1px solid #b2b4ae;
}

.imageSmall {
    height: auto;
    width: 100%;
	border: 1px solid #b2b4ae; 
}

.title {
    text-align: center;
    font-size: 11px;
    color: #000;
	padding-top: 5px;
}

.titleContainer .custom-paragraph {
	font-size: 25px;
}
#hindFoot .labelLeft {
	left: -250%;
}
.Circle {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	/* background: #B2B4AE;  */
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-right: 5px;
	border: .5px solid #70707080;
}

/* media queries at 1050 and 500 */
@media screen and (max-width: 985px) {
	.productModal {
		top: 1500%;
		left: -900%;
		z-index: 1;
		color: #000;
		max-width: 400px;
	}
	.productModalBodyContent {
		font-size: 12px;
		/* line-height: 30px; */
		font-family: 'HumstSlab712 BT';
		max-height: 400px;
		overflow-x: auto;
		padding: 0 20px;
		margin: 0 -10px;
		margin-bottom: 10px;
		text-align: center;
		}
	.popover.linebreak {
		top: -35px;
	}
	.popover {
		margin-top: -25px;
	}
	.hotspot {
	width: 30px;
	height: 30px;
	border: 2px solid #ffb500;
	border-radius: 50%;
	font-size: 16px;
	text-align: center;
	background: rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	cursor: pointer;
}

.hotspotCircle {
	width: 15px;
	height: 15px;
	border: 2px solid #fff;
	border-radius: 50%;
	text-align: center;
	background: #ffb500;
	pointer-events: none;
}

	#hindFoot .productModal {
		top: 200%;
		left: 200%;
	}
	#fooTAndAnkleGeneral .productModal {
		top: 200%;
		left: -300%;
	}
	#midFootMedialColumn .productModal {
		top: 180%;
		left: -400%;
	}
	#midFootReconstruction .productModal {
		top: 200%;
		left: -200%;
	}
	#midFootLateralColumn .productModal {
		top: 200%;
		left: -400%;
	}
	/* .labelLeft {
		display: none;
	}
	.labelRight {
		display: none;
	} */
	.selectionText {
	font-size: 14px;
	}
		.titleContainer {
			padding: 0px;
		}

}

@media screen and (min-width: 985px) {
	


}

@media screen and (max-width: 500px) {
	.productModal {
		top: 1500%;
		left: -900%;
		z-index: 1;
		color: #000;
		max-width: 340px;
	}

	.productModal.alignTop {
		top: 150%;
	}
	.selectionText {
		font-size: 14px;
	}

	.productModalContent {
		min-width: 270px;
	}
	#PeriPROFemur2 .productModal{
		top: 1000%;
	}
		.titleContainer {
			padding: 0px;
		}
}

.titleContainer h1 {
	margin-top: 28px;
}


@media screen and (max-width: 500px) {
	.titleContainer h1 {
		font-size: 25px;
	}
		.titleContainer {
			padding: 0px;
		}
	/* .titleContainer h1 {
		font-size: 25px;
	}

	.titleContainer p {
		font-size: 12px;
	}

	.titleContainer .custom-paragraph {
		font-size: 15px;
	} */
}
.close {
    top: -25px;
    left: 0;
    font-size: 12px;
}

.modalSlide {
	display: none;
	flex-direction: column;
}

.modalSlide.selected {
	display: flex;
}