
html, body {
	font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrolling on the body */
	overscroll-behavior-y: contain; /* prevents pull-down-refresh on Mobile devices */
}

.container {
    position: relative; /* Set container position to relative */
    text-align: center;
    height: 100vh; /* Set container height to 100% of viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; /* Prevent scrolling on the container */
}

img {
    position: relative; /* Set image position to relative */
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}


#startBtn {
    position: absolute; /* Set button position to absolute */
    top: 55%; /* Align button vertically to the center */
    left: 62%; /* Align button horizontally to the center */
    transform: translate(-50%, -50%); /* Center button using translation */
    z-index: 1; /* Ensure button appears on top of the image */
	border:outset;
	font-size:30px;
}

#menuBtn {
    position: absolute; /* Set menu button position to absolute */
    top: 10px; /* Adjust top position as needed */
    left: 10px; /* Adjust left position as needed */
    z-index: 1; /* Ensure button appears on top of the image */
	border:outset;
}

#mymenuBtn {
    position: absolute; /* Set menu button position to absolute */
    top: 1px; /* Adjust top position as needed */
    left: 2px; /* Adjust left position as needed */
    z-index: 2; /* Ensure button appears on top of the image */
	border:outset;
	/*height:40px;
	padding:2px;*/
}

.menu {
    display: none; /* Hide the menu by default */
    position: absolute;
    top: 1px; /* this positioning allows the cursor to be inside menu upon expansion*/
    left: 0px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	list-style-type: none;
	padding:10px;
}

.menu button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: left;
    /*border: none;*/
	border:outset;
	/*border-radius: 5px;*/
    background: none;
    cursor: pointer;
	color:black;
}

.menu button:hover {
    background-color: #f0f0f0;
}

ul {
  /* Remove default margin and padding from the ul element */
  margin: 0;
  padding: 0;
  padding-right: 20px;
}

h3 {
  /* Remove default margin and padding from the ul element */
  margin: 0;
  padding: 0;
  padding-bottom:10px;
  color:blue;
  font-size:18px;
  font-weight:bold;
}

li {
  /* Add margin-bottom to create space between list items */
  margin-bottom: 10px; /* Adjust the value as needed */
  padding-left:20px;
  cursor:pointer;
}


li:hover {
    background-color: #f0f0f0;
}

.show {
    display: block; /* Show the menu when toggled */
}


h1 {
    font-size: 40px;
	font-weight: bold;
    color: #ffd700; /* Golden Color */
    text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.5), -2px -2px 2px rgba(0, 0, 0, 0.5);
}

p {
    color: #666;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 20px;
    /*background-color: #007bff; /* Deep Blue Color */
	background-color: #006400; /* Deep Green Color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3; /* Darker shade of Deep Blue Color */
}

.subcontainer {
    display: none; /* Initially hide the subcontainer */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: auto;
	max-width: 100%;
    overflow-x: hidden; 
}
.subcontainer h2{
	font-size:18px;
	text-align:center;
	padding: 10px;
	color:blue;
	font-weight:bold;
}

.authentication {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.authentication button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
	border:outset;
}

.entry-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.entry-form button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
	border:outset;
}

.profile-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.profile-form button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
	border:outset;
}
.profile-form label {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
	color:blue;
	font-weight:bold;
}

.profile-form input {
    margin: 5px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
	/*border:outset;*/
	color:black;
	font-weight:bold;
	width:300px;
	border-radius:10px;
}

.profile-form select {
    margin: 5px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
	/*border:outset;*/
	color:black;
	font-weight:bold;
	width:300px;
	border-radius:10px;
}

input:hover {
    background-color: #EFEFEF; /* input hover bg color */
}

select:hover {
    background-color: cyan; /* input hover bg color */
}

.profile-form h2 {
    margin: 10px;
    padding: 10px 20px;
    font-size: 20px;
	color:blue;
	font-weight:bold;
}

.profile-form p {
    margin: 0px;
    padding: 0px 0px;
}
/* Computer UI: 6 items per row css */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/*
.product-item {
    width: calc(16.66% - 20px); /* 16.66% ensures six items fit evenly in a row, minus 20px for margin */
   /* margin-bottom: 20px;
    text-align: center;
}*/

.product-item {
    width: calc(16.00% - 20px); /* 16.00% ensures six items fit evenly in a row, minus 20px for margin */
    margin-bottom: 20px;
    text-align: center;
}

.product-image {
    height: 160px;
    width: 100%;
    object-fit: scale-down;
    margin-bottom: 20px; /* Increase the bottom margin to add more space */
    margin-left: 10px; /* Example: Add left margin */
    margin-right: 10px; /* Example: Add right margin */
	transition: transform 0.3s ease; /* Add smooth transition effect */
}

.product-item {
	/*font-weight: bold;*/
	font-size: 16px;
	text-align:justify;
	margin-bottom: 40px; /* Increase the bottom margin to make space for the icon */
    padding-bottom: 60px; /* Add padding to create space between the product name and the icon */
    position: relative; /* Add relative positioning to the product item */
	margin-left: 5px;
	padding-right:10px;
	padding-left:10px;
}

.checkout-icon {
    font-size: 24px;
    color: #007bff; /* Example color, change as needed */
    cursor: pointer;
    position: absolute; /* Position the checkout icon relative to its parent */
    bottom: 5px; /* Adjust the bottom position as needed */
    left: 50%; /* Align the checkout icon horizontally at the center */
    transform: translateX(-50%); /* Center the checkout icon horizontally */
}

.checkout-icon:hover {
    color: green;
}

.product-image:hover {
    transform: scale(2); /* Double the size of the image on hover */
}

.product-item:hover {
    font-size: 14px; /* half the size of the item text on hover */
	cursor:pointer;
	font-weight: bold;
}
/* product search */
.search-row {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width:70%;
  margin: auto; /* to center the div*/
}

.search-cnt {
	margin:auto;
	width:70%;
	padding-top:5px;
}

.search-row input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px;
  border-radius: 5px;
}

.search-row button {
  background-color: #007bff;
  color: #fff;
  border: none;
  outline: none;
  padding: 8px 12px;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
}

.search-row button:hover {
  background-color: #0056b3;
}
.checkout-button{
	width: 94%;
	background-color: darkred;
	color: white;
	cursor: pointer;
	border: none;
	outline: none;
	padding: 8px 12px;
	border-radius: 5px;
	position: absolute; /* Position the checkout icon relative to its parent */
    bottom: 5px; /* Adjust the bottom position as needed */
    left: 30px; /* Align the checkout icon horizontally at the center */
    transform: translateX(-10%); /* Center the checkout icon horizontally */
}

/* Computer UI: 4 items per row css */
.product-item4 {
    width: calc(24.00% - 20px); /* 24.00% ensures four items fit evenly in a row, minus 20px for margin */
    margin-bottom: 20px;
    text-align: center;
}

.product-image4 {
    height: 200px;
    width: 100%;
    object-fit: scale-down;
    margin-bottom: 20px; /* Increase the bottom margin to add more space */
    margin-left: 10px; /* Example: Add left margin */
    margin-right: 10px; /* Example: Add right margin */
	transition: transform 0.3s ease; /* Add smooth transition effect */
}

.product-item4 {
	/*font-weight: bold;*/
	font-size: 16px;
	text-align:justify;
	margin-bottom: 40px; /* Increase the bottom margin to make space for the icon */
    padding-bottom: 60px; /* Add padding to create space between the product name and the icon */
    position: relative; /* Add relative positioning to the product item */
	margin-left: 5px;
	padding-right:10px;
	padding-left:10px;
}

.product-image4:hover {
    transform: scale(2); /* Double the size of the image on hover */
}

.product-item4:hover {
    font-size: 14px; /* half the size of the item text on hover */
	cursor:pointer;
	font-weight: bold;
}
/* Mobile Device  */
.product-item-mobile {
    width: calc(100.00% - 20px); /* 96.00% ensures 1 item fit evenly in a row, minus 20px for margin */
    margin-bottom: 20px;
    text-align: center;
}

.product-image-mobile {
    height: 200px;
    width: 100%;
    object-fit: scale-down;
    margin-bottom: 20px; /* Increase the bottom margin to add more space */
    margin-left: 10px; /* Example: Add left margin */
    margin-right: 10px; /* Example: Add right margin */
	transition: transform 0.3s ease; /* Add smooth transition effect */
}

.product-item-mobile {
	font-size: 16px;
	text-align:justify;
	margin-bottom: 40px; /* Increase the bottom margin to make space for the icon */
    padding-bottom: 80px; /* Add padding to create space between the product name and the icon */
    position: relative; /* Add relative positioning to the product item */
	margin-left: 5px;
	padding-right:10px;
	padding-left:10px;
}

.product-image-mobile:hover {
    /*transform: scale(2);*/ /* Double the size of the image on hover */
}

.product-item-mobile:hover {
    font-size: 14px; /* half the size of the item text on hover */
	cursor:pointer;
	font-weight: bold;
}
.checkout-button-mobile{
	width: 96%;
	background-color: darkred;
	color: white;
	cursor: pointer;
	border: none;
	outline: none;
	padding: 8px 12px;
	border-radius: 5px;
	position: absolute; /* Position the checkout icon relative to its parent */
    bottom: 5px; /* Adjust the bottom position as needed */
	
	margin: 0;
	/*-ms-transform: translateY(-50%);*/
	transform: translateY(-50%);
	margin-right:10px;
}
/* Apply margin between options */
label {
  margin-right: 10px; /* Adjust the value as needed */
}

.radio-class {
	font-size: 16px;
	text-align:justify;
	margin-left: 10px;
	padding-left: 10px;
	padding-top: 20px;
	cursor:pointer;
}

.insertproduct-form {
    padding: 10px 20px;
    font-size: 16px;
	font-weight:bold;
	width:92%;
	margin:auto;
}
.insertproduct-form label {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
	color:blue;
	font-weight:bold;
}

.insertproduct-form h2 {
    margin: auto;
    padding: 10px 20px;
    font-size: 24px;
	color:blue;
	font-weight:bold;
	text-align:center;
}

.insertproduct-form input {
    margin: 5px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
	color:black;
	font-weight:bold;
	width:300px;
	border-radius:10px;
}

.insertproduct-form select {
    margin: 5px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
	color:black;
	font-weight:bold;
	width:300px;
	border-radius:10px;
}

.insertproduct-form button {
    margin: 5px;
    font-size: 20px;
    cursor: pointer;
	color:white;
	background-color:green;
	font-weight:bold;
	width:180px;
	border-radius:10px;
}
.insertproduct-form button:hover{
	background-color: #007bff;
}
.page-navigation {
	margin-top:10px;
	margin-bottom:10px;
	float: right;
}

#prevnextid{
	display:none; /* hide it initially */
}

.page-navigation  button{
	padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	width:130px;
}
.page-navigation  input{
	padding: 10px 20px;
    font-size: 20px;
	font-weight:bold;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	width:50px;
}

.profile-template {
	font-size: 18px;
	padding:20px;
}

.profile-template input{
	border-radius: 5px;
    cursor: pointer;
}

.help-information {
	padding: 20px;
	font-size: 16px;
	font-weight:bold;
    color: black;
}
.help-information h3{
	margin-top:40px;
	font-size: 20px;
	font-weight:bold;
    color: blue;
}
.help-information h4{
	padding-left: 30px;
	font-size: 18px;
	font-weight:bold;
    color: darkred;
	text-align:left;
}
.help-information p{
	padding-left: 50px;
	padding-right: 20px;
	font-size: 18px;
	font-weight:bold;
    color: black;
	text-align:justify;
}
.help-information button{
    border: none;
	border:outset;
	border-radius: 15px;
    background: none;
    cursor: pointer;
	color:blue;
	font-size: 20px;
	font-weight:bold;
	width:300px;
	margin-top:20px;
}
.help-information btn{
	color:red;
	font-size: 20px;
	font-weight:bold;
}
.help-information blueh4{
	color:blue;
	font-size: 18px;
	font-weight:bold;
}

/* Switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider (round) */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

/* Rounded sliders (on and off) */
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

/* When checked, change the background color of the slider */
input:checked + .slider {
  background-color: #2196F3;
}

/* When checked, translate the slider to the right */
input:checked + .slider:before {
  transform: translateX(26px);
}

.about-us{
	background-color:white;
	text-align:justify;
	margin:20px;
	margin-top:10%;
	font-size:20px;
	font-weight:bold;
	border-radius:15px;
	padding:20px;
}
.about-us h2{
	font-size:24px;
	text-align:center;
}

/* Product Price */
.product-price {
	margin-top:10px;
    background-color: #cccccc;
    text-align: center;
	border-radius:15px;
	padding:5px;
	font-weight:bold;
}

.select-discount{
	display:block;
	margin:auto;
	text-align: center;
	border-radius:15px;
}

.fab {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #007bff;
	color: white;
	border-radius: 50%;
	padding: 15px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	border:outset;
}
.fab img {
	width: 24px;
	height: 24px;
	border-radius:30%;
}

.fab i:hover {
	color:darkred;
	font-size:30px;
	font-weight:bold;
}

.associate-identity{
	text-align:center;
	font-size:12px;
	font-weight:bold;
}