/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.question {
	padding: 5px;
	text-align: left !important;
}
.answer{
   display: none;
   font-size: 18px;
   text-align: left !important;
}
img{
	user-select: none !important;
	pointer-events: none !important;
}
.column ul{
	display:block;
	text-align:left;
}
.column li {
	list-style-type: none;
	/* Removes default bullets */
	padding-left: 0;
	/* Removes any padding */
}
/* Modal Styles */
.no-scroll {
	overflow: hidden;
}
.header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
 font-weight: bold;   
}

.modal {
  margin-top: 20px;
  display: none;
  position: fixed;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 70%;   /* Adjust the width */
  height: auto;
  display: flex;  /* This helps with centering content inside the modal */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


.modal-content {
  background-color: #fff;
  padding: 20px;
  max-height: 80vh; 
  overflow: hidden; 
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.close {
  font-size: 24px;
  cursor: pointer;
}
.modal-body {
  max-height: 80vh;  /* Limit height of body */
  overflow-y: auto;  /* Enable vertical scrolling */
  padding-right: 10px; /* Add right padding to prevent content from hiding under scrollbar */
}
/* end modal */
/* Status Bar Styles */
.status-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 10px; 
  padding: 10px;
  background-color: #fff;
  color: #000;
  position: relative;
  width: 100%;
}

.grid-item {
  display: flex;
  flex-direction: column; 
  align-items: center;     
  justify-content: center;
  gap: 10px; 
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.grid-item img {
  width: 70px;
  height: 70px;
  object-fit: contain; 
}

.grid-item:hover {
  background-color: #E0F2F1;
}

.image {
	background-repeat: no-repeat;
	background-color: white;
	background-size: cover;
	background-position:center;
	height: 100% !important;
	min-height: 800px;
	user-select: none;
	background-image: url('/website/pos/assets/images/pos_landing.jpg');
}



.grid-item div {
  font-size: 14px; 
  color: #000;
  margin: -5px;
}

.first-content,
.second-content,
.third-content,
.slider-container,
.faq-content {
	display: flex;
	justify-content: center;
	align-content: flex-start;
}

.first-content .column,
.second-content .column,
.slider-container .column{
	text-align: left;
	
}
.third-content .column{
	padding: 20px;
	text-align: left;
}
.column {
	padding: 3.125rem; /* 50px */
	text-align: center;
	max-width: 50%;
	font-size: 19px;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.row .column {
	text-align: center;
}
figure {
	position: relative;
	display: inline-block;
	width: 100%;
}

figcaption {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;  
	width: 100%; 
	color: white;
	font-weight: bold;
	font-size: 16px;
	margin: 15px 10; 
	padding: 15px;
	border-radius: 30px; 
}


figure {
	border-radius: 10px;
	user-select: none;
	
}

figure img {
	border-radius: 30px;
	pointer-events: none;
	object-fit: contain;
}

.slider-container {
	width: 80%;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.slider {
	position: relative;
}

.slider img {
	width: 80vw;
	height: 80vh;
	object-fit: cover;
	object-position: center; 
	transition: opacity 0.5s ease-in-out;
	border-radius: 30px;
}

.captions {
	position: absolute; 
	bottom: 0; 
	left: 50%; 
	transform: translateX(-50%); 
	display: flex; 
	justify-content: space-between;
	align-items: left; 
	width: 100%; 
	z-index: 10; 
	padding: 10px; 
	background: rgba(0, 0, 0, 0.5);
	border-bottom-left-radius: 30px; 
	border-bottom-right-radius: 30px;
}

.caption {
	padding: 10px 15px;
	margin: 0 15px; 
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.424);
	color: white;
	max-width: 33.3%; 
	font-size: 16px; 
	text-align: left;
	border-radius: 10px;
	transition: background-color 0.3s ease;
	
}

.caption:hover {
	background-color: rgba(78, 78, 78, .6); 
}
.active {
	background-color: rgba(122, 121, 121, 0.607); 
}
.image-container {
  display: flex;
  justify-content: center;  
  align-items: center;      
  
}
.hidden{
	display: none;
}
.btn{
	font-weight: bold;
}
/* Device Compatability */
@media (min-width: 300px) and (max-width: 412px) { 
/* iPhone SE */
.modal {
width:100%;
left: 60% !important;
}
.modal-content {
	width: 80%;
}
.faq-content > .column > h1{
	font-size: 2.5rem !important;
}
.faq-content > .column{
	width: 100% !important;
	padding: 10px !important;
}
.first-content, .second-content, .third-content, .fourth-content, .faq-content, .slider-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap; 
	width: 100% !important;
	height: auto;
}
.third-content{
	width: 90%;
}
#sliderheading{
	font-size: 1.8rem !important;
}
.third-content .column {
	border-radius: 30px!important;
	width: 100% !important;
	font-size: .8rem;
	max-width: 100%;
}
.second-content#buystand .column{
	margin-top: 0px;
	border-radius: 30px !important;
	padding: 30px;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	flex-direction: row !important;
	flex-wrap: wrap; 
}
.second-content#buystand .column:first-child{
	width: 100% !important;
	margin-bottom: 30px;
}
#buystand > .column > h1 {
	font-size:3rem !important; 
}
#buystand > .column > p:first-of-type {
	font-size:5rem !important; 
}
#buystand > .column > .row > .column h3{
	font-size:1.2rem !important; 
}
#buystand > .column > .row > .column p{
	font-size:1rem !important; 
}
#buystand > .column > .row > .column{
	padding: 0px !important;
	margin: 0px !important;
}
#buystand > .column:nth-child(2) > img{
	max-width: 100% !important;
	width: 100% !important;
	padding: 0px !important;
	object-fit: cover !important;
}
#buystand > .column:nth-of-type(2){
	padding: 0px !important;
	margin-top: 30px;
}

.second-content#buystand {
width: 100% !important;
flex-wrap: wrap; 
}
.second-content#buystand .column .row .column{
width: 100% !important;
padding: 20px !important;
}
.second-content#banner{
	width: 90% !important;
	display: flex !important;
	flex-direction: row !important;
	justify-content: center !important;
	align-content: flex-start !important;
	flex-wrap: wrap; 
}
.second-content#banner img{
	/* margin-left: -50px !important; */
	max-width: 100% !important;
	width: 100% !important;
	height: auto !important;
	border-top-right-radius: 30px !important; 
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0;
}
.second-content#banner .column {
	text-align: left;
	max-width: 100% !important;
	font-size: 19px;
}
#accessories > .column > p:first-of-type{
	font-size: 2.8rem !important;
}
#accessories > img{
	object-fit: contain !important;
}
.slider , #slider-image{
	width: 100% !important;
	border-radius: 0px !important;
}
.captions {
	position: absolute; 
	bottom: 0; 
	left: 50%; 
	transform: translateX(-50%); 
	display: flex; 
	flex-direction: column;
	justify-content: space-around;
	align-items: left; 
	width: 100%; 
	z-index: 10; 
	padding: 5px; 
	border-radius: 0px !important;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.2);

}
.caption {
	padding: 10px 10px;
	margin: 0px; 
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.424);
	color: white;
	min-width: 100%; 
	font-size: 12px; 
	text-align: center;
	border-radius: 10px;
	transition: background-color 0.3s ease;
	
}

.caption > h4{
	font-size: 18px;
}

.fourth-content{
	padding: 40px !important;
}
.fourth-content > p:first-of-type{
	font-size: 1.5rem !important;
	width: 100% !important;
}
.fourth-content > p{
	width: 100% !important;
	font-size: 1rem !important;
}
#banner > .column > h1{
	font-size: 1.7rem;
}
#banner > .column > p{
	font-size: 1.2rem !important;
}
.row .column{
	flex-direction: row !important;
	flex-wrap: wrap !important; 
	width: 20% !important;
	
}
figure img {
	width: 100%;
	max-height: 400px;
	object-fit: cover; /* cover,contain */
	object-position: top left;
}
figure figcaption {
	width: 100%;
	text-shadow: 0 0 20px #ccc;
}

.first-content .column{
	width: 100% !important;
}
.first-content .column p{
	font-size: 50px!important;
	white-space: nowrap;
}
.first-content .column button{
	padding: 10px 18px; 
	font-size: 15px;    
	margin: 5px;
}
.column {
	padding: 10px;
	text-align: left;
	max-width: 100%;
	width: 100%;
	font-size: 19px;  
	margin: 10px;
	border-radius: 0px!important;
}
.status-bar {
	margin-top: -25px!important;
	width: 100% !important;
	grid-template-columns: repeat(2, 1fr);
}
.image-container > img {
	width: 100% !important;
	border-radius: 0px !important;
	height: 220px !important;
	object-fit: fill !important;
}

} 

@media (min-width: 412px) and (max-width: 767px) {
	/* Noraml Mobile Screens iPhone xs Pixel 7 and S20 Ultra*/
	.modal {
	width:100%;
	left: 60% !important;
	}
	.modal-content {
		width: 80%;
	}
		.faq-content > .column > h1{
			font-size: 2.5rem !important;
		}
		.faq-content > .column{
			width: 100% !important;
			padding: 10px !important;
		}
		.first-content, .second-content, .third-content, .fourth-content, .faq-content, .slider-container {
			display: flex;
			flex-direction: row;
			flex-wrap: wrap; 
			width: 100% !important;
			height: auto;
		}
		.third-content{
			width: 90%;
		}
		#sliderheading{
			font-size: 1.8rem !important;
		}
		.third-content .column {
			border-radius: 30px!important;
			width: 100% !important;
			font-size: .8rem;
			max-width: 100%;
		}
		.second-content#buystand .column{
			margin-top: 0px;
			border-radius: 30px !important;
			padding: 30px;
			width: 100% !important;
			max-width: 100% !important;
			height: auto !important;
			flex-direction: row !important;
			flex-wrap: wrap; 
		}
		.second-content#buystand .column:first-child{
			width: 100% !important;
			margin-bottom: 30px;
		}
		#buystand > .column > h1 {
			font-size:3rem !important; 
		}
		#buystand > .column > p:first-of-type {
			font-size:5rem !important; 
		}
		#buystand > .column > .row > .column h3{
			font-size:1.2rem !important; 
		}
		#buystand > .column > .row > .column p{
			font-size:1rem !important; 
		}
		#buystand > .column > .row > .column{
			padding: 0px !important;
			margin: 0px !important;
		}
		#buystand > .column:nth-child(2) > img{
			max-width: 100% !important;
			width: 100% !important;
			padding: 0px !important;
			object-fit: cover !important;
			object-position: center !important;
		}
		#buystand > .column:nth-of-type(2){
			padding: 0px !important;
			margin-top: 30px;
		}
		
		.second-content#buystand {
		width: 100% !important;
		flex-wrap: wrap; 
		}
		.second-content#buystand .column .row .column{
		width: 100% !important;
		padding: 20px !important;
		}
		.second-content#banner{
			width: 90% !important;
			display: flex !important;
			flex-direction: row !important;
			justify-content: center !important;
			align-content: flex-start !important;
			flex-wrap: wrap; 
		}
		.second-content#banner img{
			max-width: 100% !important;
			width: 100% !important;
			height: auto !important;
			border-top-right-radius: 30px !important; 
			border-bottom-left-radius: 0 !important;
			border-bottom-right-radius: 0;
		}
		.second-content#banner .column {
			text-align: left;
			max-width: 100% !important;
			font-size: 19px;
		}
		#accessories > .column > p:first-of-type{
			font-size: 2.8rem !important;
		}
		#accessories > img{
			object-fit: contain !important;
		}
		.slider , #slider-image{
			width: 100% !important;
			border-radius: 0px !important;
		}
		.captions {
			position: absolute; 
			bottom: 0; 
			left: 50%; 
			transform: translateX(-50%); 
			display: flex; 
			flex-direction: column;
			justify-content: space-around;
			align-items: left; 
			border-radius: 0px !important;
			width: 100%; 
			z-index: 10; 
			padding: 5px; 
			min-height: 100%;
			background: rgba(0, 0, 0, 0.2);
		
		}
		.caption {
			padding: 10px 10px;
			margin: 0px; 
			cursor: pointer;
			background-color: rgba(0, 0, 0, 0.424);
			color: white;
			min-width: 100%; 
			font-size: 14px; 
			text-align: center;
			border-radius: 10px;
			transition: background-color 0.3s ease;
			
		}
		
		.caption > h4{
			font-size: 18px;
		}

		.fourth-content{
			padding: 40px !important;
		}
		.fourth-content > p:first-of-type{
			font-size: 1.5rem !important;
			width: 100% !important;
		}
		.fourth-content > p{
			width: 100% !important;
			font-size: 1rem !important;
		}
		#banner > .column > h1{
			font-size: 1.7rem;
		}
		#banner > .column > p{
			font-size: 1.2rem !important;
		}
		.row .column{
			flex-direction: row !important;
			flex-wrap: wrap !important; 
			width: 20% !important;
			
		}
		figure img {
			width: 100%;
			max-height: auto !important;
			object-fit: cover; /* cover,contain */
			object-position: top left;
		}
		figure figcaption {
			width: 100%;
			text-shadow: 0 0 20px #ccc;
			font-size: 1rem;
		}
		
		.first-content .column{
			width: 100% !important;
		}
		.first-content .column p{
			font-size: 50px!important;
			white-space: nowrap;
		}
		.first-content .column button{
			padding: 10px 18px; 
			font-size: 15px;    
			margin: 5px;
		}
		.column {
			padding: 10px;
			text-align: left;
			max-width: 100%;
			width: 100%;
			font-size: 19px;  
			margin: 10px;
			border-radius: 0px!important;
		}
		.status-bar {
			margin-top: -25px!important;
			width: 100% !important;
			grid-template-columns: repeat(2, 1fr);
		}
		.image-container > img {
			width: 100% !important;
			border-radius: 0px !important;
			height: 220px !important;
			object-fit: fill !important;
		}
}
@media (min-width: 768px) and (max-width: 820px) {
	/* iPad Mini	 */
		.first-content, .second-content, .third-content, .fourth-content, .faq-content {
			display: flex;
			flex-direction: row;
			flex-wrap: wrap; 
			width: 100%;
			height: auto;
		}
		.third-content{
			width: 100%;
		}
		#sliderheading{
			font-size: 2.8rem !important;
		}
		.third-content .column {
			border-radius: 30px!important;
			width: 50% !important;
			font-size: .8rem;
			max-width: 80%;
		}
		.second-content#buystand .column{
			margin-top: 0px;
			border-radius: 30px !important;
			padding: 50px;
			width: 100% !important;
			max-width: 100% !important;
			height: auto !important;
			flex-direction: row !important;
			flex-wrap: wrap; 
		}
		.second-content#buystand .column:first-child{
			width: 87% !important;
			margin-bottom: 30px;
		}
	
		.second-content#buystand {
		width: 90% !important;
		flex-wrap: wrap; 
		}
		.second-content#buystand .column .row .column{
		width: 100% !important;
		padding: 20px !important;
		}
		.second-content#banner{
			width: 90% !important;
			display: flex !important;
			flex-direction: row !important;
			justify-content: center !important;
			align-content: flex-start !important;
			flex-wrap: wrap; 
		}
		.second-content#banner img{
			margin-left: -50px !important;
			max-width: 50% !important;
		}
		.second-content#banner .column {
			text-align: left;
			max-width: 45% !important;
			font-size: 19px;
		}
		.captions {
			position: absolute; 
			bottom: 0; 
			left: 50%; 
			transform: translateX(-50%); 
			display: flex; 
			justify-content: space-between;
			align-items: left; 
			width: 100%; 
			z-index: 10; 
			padding: 5px; 
			background: rgba(0, 0, 0, 0.5);
			border-bottom-left-radius: 30px; 
			border-bottom-right-radius: 30px;
		}
		
		.caption {
			padding: 10px 10px;
			margin: 0 5px; 
			cursor: pointer;
			background-color: rgba(0, 0, 0, 0.424);
			color: white;
			font-size: 16px; 
			text-align: left;
			border-radius: 10px;
			transition: background-color 0.3s ease;
			
		}
		.caption > h4{
			font-size: 18px;
		}
		.caption {
			font-size: 14px;
		}
		.fourth-content > p:first-of-type{
			font-size: 1.8rem !important;
		}
		.fourth-content > p{
			font-size: 1rem !important;
		}
		#banner > .column > h1{
			font-size: 1.7rem;
		}
		#banner > .column > p{
			font-size: 1.2rem !important;
		}
		.row .column{
			flex-direction: row !important;
			flex-wrap: wrap !important; 
			width: 20% !important;
			
		}
		figure img {
			width: 100%;
			max-height: 400px;
			object-fit: cover; /* cover,contain */
			object-position: top left;
		}
		figure figcaption {
			width: 100%;
			font-size: .8rem;
			text-shadow: 0 0 20px #ccc;
		}
		.first-content .column:first-child{
			width: 25%!important;
		}
		.first-content .column{
			width: 70%;
		}
		.first-content .column p{
			font-size: 50px!important;
		}
		.first-content .column button{
			padding: 10px 18px; 
			font-size: 15px;    
			margin: 5px;
		}
		.column {
			padding: 10px;
			text-align: left;
			max-width: 100%;
			width: 100%;
			font-size: 19px;  
			margin: 10px;
			border-radius: 0px!important;
		}
		.status-bar {
			margin-top: -25px!important;
		    grid-template-columns: repeat(4, 1fr);
			width: 50% !important;
		}
	}
		
@media (min-width: 820px) and (max-width: 1024px) {
/* iPad Air	 */

	.first-content, .second-content, .third-content, .fourth-content, .faq-content {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap; 
		width: 100%;
		height: auto;
	}
	.third-content{
		width: 100%;
	}
	#sliderheading{
		font-size: 2.8rem !important;
	}
	.third-content .column {
		border-radius: 30px!important;
		width: 50% !important;
		font-size: .8rem;
		max-width: 80%;
	}
	.second-content#buystand .column{
		margin-top: 0px;
		border-radius: 30px !important;
		padding: 50px;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		flex-direction: row !important;
		flex-wrap: wrap; 
	}
	.second-content#buystand .column:first-child{
		width: 87% !important;
		margin-bottom: 30px;
	}

	.second-content#buystand {
	width: 90% !important;
	flex-wrap: wrap; 
	}
	.second-content#buystand .column .row .column{
	width: 100% !important;
	padding: 20px !important;
	}
	.second-content#banner{
		width: 90% !important;
		display: flex !important;
		flex-direction: row !important;
		justify-content: center !important;
		align-content: flex-start !important;
		flex-wrap: wrap; 
	}
	.second-content#banner img{
		margin-left: -50px !important;
		max-width: 50% !important;
	}
	.second-content#banner .column {
		text-align: left;
		max-width: 45% !important;
		font-size: 19px;
	}
	.captions {
		position: absolute; 
		bottom: 0; 
		left: 50%; 
		transform: translateX(-50%); 
		display: flex; 
		justify-content: space-between;
		align-items: left; 
		width: 100%; 
		z-index: 10; 
		padding: 5px; 
		height: auto;
		background: rgba(0, 0, 0, 0.5);
		border-bottom-left-radius: 30px; 
		border-bottom-right-radius: 30px;
	}
	
	.caption {
		padding: 10px 10px;
		margin: 0 5px; 
		cursor: pointer;
		background-color: rgba(0, 0, 0, 0.424);
		color: white;
		font-size: 16px; 
		text-align: ce;
		border-radius: 10px;
		transition: background-color 0.3s ease;
		
	}
	.caption > h4{
		font-size: 18px;
	}
	.caption {
		font-size: 14px;
	}
	.fourth-content > p:first-of-type{
		font-size: 1.8rem !important;
	}
	.fourth-content > p{
		font-size: 1rem !important;
	}
	#banner > .column > h1{
		font-size: 1.7rem;
	}
	#banner > .column > p{
		font-size: 1.2rem !important;
	}
	.row .column{
		flex-direction: row !important;
		flex-wrap: wrap !important; 
		width: 20% !important;
		
	}
	figure img {
		width: 100%;
		max-height: 400px;
		object-fit: cover; /* cover,contain */
		object-position: top left;
	}
	figure figcaption {
		width: 100%;
		font-size: .8rem;
		text-shadow: 0 0 20px #ccc;
	}
	.first-content .column:first-child{
		width: 25%!important;
	}
	.first-content .column{
		width: 70%;
	}
	.first-content .column p{
		font-size: 50px!important;
	}
	.first-content .column button{
		padding: 10px 18px; 
		font-size: 15px;    
		margin: 5px;
	}
	.column {
		padding: 10px;
		text-align: left;
		max-width: 100%;
		width: 100%;
		font-size: 19px;  
		margin: 10px;
		border-radius: 0px!important;
	}
	.status-bar {
		margin-top: -25px!important;
	  grid-template-columns: repeat(4, 1fr);
	  width: 50% !important;
	}
}
@media (min-width: 1024px) and (max-width: 1366px) { 
	/* iPad Pro */
	
	.first-content, .second-content, .third-content, .fourth-content, .faq-content {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap; 
		width: 100%;
		height: auto;
	}
	.third-content{
		width: 100%;
	}
	
	.third-content .column {
		border-radius: 30px!important;
		width: 30% !important;
		font-size: .8rem;
		max-width: 80%;
	}
	.second-content#buystand .column{
		margin-top: 0px;
		border-radius: 30px !important;
		padding: 50px;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		flex-direction: row !important;
		flex-wrap: wrap; 
	}
	.second-content#buystand .column:first-child{
		width: 87% !important;
		margin-bottom: 30px;
	}
	.second-content#buystand {
	width: 90% !important;
	flex-wrap: wrap; 
	}
	.second-content#buystand .column .row .column{
	width: 100% !important;
	padding: 20px !important;
	}
	.second-content#banner{
		width: 90% !important;
		display: flex !important;
		flex-direction: row !important;
		justify-content: center !important;
		align-content: flex-start !important;
		flex-wrap: wrap; 
	}
	.second-content#banner img{
		margin-left: -50px !important;
		max-width: 50% !important;
	}
	.second-content#banner .column {
		text-align: left;
		max-width: 45% !important;
		font-size: 19px;
	}
	.row .column{
		flex-direction: row !important;
		flex-wrap: wrap !important; 
		width: 20% !important;
		
	}
	figure img {
		width: 100%;
		/* max-height: 400px; */
		object-fit: cover; /* cover,contain */
	}
	figure figcaption {
		width: 100%;
		text-shadow: 0 0 20px #ccc;
		font-size: .8rem;
	}
	.first-content .column:first-child{
		width: 25%!important;
	}
	.first-content .column{
		width: 70%;
	}
	.first-content .column p{
		font-size: 50px!important;
	}
	.first-content .column button{
		padding: 10px 18px; 
		font-size: 15px;    
		margin: 5px;
	}
	.column {
		padding: 10px;
		text-align: left;
		max-width: 100%;
		width: 100%;
		font-size: 19px;  
		margin: 10px;
		border-radius: 0px!important;
	}
	.status-bar {
		margin-top: -25px!important;
	  grid-template-columns: repeat(4, 1fr);
	  
	}
	.caption > h4{
		font-size: 18px;
	}
	.caption {
		font-size: 14px;
	}
	
}




