@charset "utf-8";
* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: 16px; /*for using em&rem*/
  margin: 0px;
  padding: 0px;
  
}

img,
object,
embed,
video {
  max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

body {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  
  background-color: rgba(255, 255, 255, 0.8);

  overscroll-behavior: contain;
  object-fit: contain;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  
}

#wrapper {
  /*margin: 25px auto 0; */
  /* [disabled]clear: both; */
  clear: both;
  height: auto;

  width: 98vw;
  max-width: 98vw;
 
  margin: 0.3rem auto;
  padding: 0;
  text-align: left;
  /*position: relative; try transfer to gridcontainer*/
  background-color: transparent;
}

/*grid start*/
:root {
  --main-radius: 5px;
  --main-padding: 5px;
  --bg-circle: 38%; /*.mainSubDivDetl*/

  --btn-fontfam: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  --col-theme: #EC2089;
  --col-divbg: #ffbfd3;
  --col-theme-15: #004853; /* btn login,itemgrp,atc,uprice */
  --col-theme-15-bdr: #007E80;
  --col-theme-60: rgba(236, 32, 137, 0.5); /*neutral or base color*/
  --col-theme-30: #3575A8; /*primary brand */
  --col-theme-10: #EC2188; /* button */

  /*for slider of items like starbucks*/
  --w-imgholder: 500px;
  --calculate: calc(3 / 2); /*so image width x 1.5 for next image slider*/
 }

.hr1 {
  margin: 5px 0;
  border-top: 1px thin #CCC;
}

#gridContainer {
  position: relative;

  display: grid;
  min-height: 95vh;
  grid-template-columns: 1fr 1fr calc(var(--w-imgholder) + 32px) 80px;
  grid-template-rows: minmax(auto, 12vh) minmax(64vh, 70vh) minmax(auto, 16vh);
  grid-template-areas:
    "nav nav nav nav"
    "sidebar sidebar mainContent foot"
    "maincontentnav maincontentnav maincontentnav maincontentnav";
  grid-gap: 0.2rem;
  color: #111;
  text-align: center;
}

#gridMainContentNavDiv, #gridMainContentNav {
  display: block;
}

/*search item group nav*/
#divULItemGrpNav {
  margin: 0;
  padding: 0;
  max-width: 95vw;
  height: 100%;

  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  
  background-color: transparent;
  border-radius: 5px;
  
  overflow: auto;
  white-space: nowrap;

  position: relative;
}

#divULItemGrpNav::-webkit-scrollbar {
width: 0px;
background: transparent; /* make scrollbar transparent */
}
#ulItemGrpNav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  width: auto;
}

#ulItemGrpNav li {
  font-family: var(--btn-fontfam);
  font-size: 16px;

  display: inline-block;
  color: var(--col-theme-15);
  border-radius: 5px;
  
  font-weight: normal;
  text-align: center;
  padding: 0.19em 1em;
  margin: 0 4px;
  text-transform:capitalize;
  cursor: pointer;
  width: auto;
  text-align: center;
  
  transition: 0.5s; 
}

#ulItemGrpNav li:hover {
  transform: translateY(-8px);
  background-color: rgba(238, 238, 238, 0.4);
}

#ulItemGrpNav li:active {
  background-color: #589d62;
}

#ulItemGrpNav li .liItemGrpImg{
  min-height:50px;
  min-width:50px;
  max-height:50px;
  max-width:50px;
  
  border: 2px solid rgba(241, 241, 241, 0.8);
  padding: 2px;
  background-color: #fff;
  border-radius: 50%;
  
}

/*scroll button LR*/
#divULItemGrpNav {
  scroll-behavior: smooth;
}

#gridMainContentNav {
  display: flex;
  position: relative;
}

#gridMainContentNav ul { 
-ms-overflow-style: none;
scrollbar-width: none;
scroll-behavior: smooth;
}

#gridMainContentNav > #divArrowLeft {
  display: flex;
  justify-content: flex-start;
  position: absolute;
  top: 5px;
  left: 0.2em;
  padding: 0.9px 11px 1.4px 9px;
  border-radius: 50%;
  background-color: #06491d;
  font-size: 1.3em;
  color: #EAFDE6;
  border: 1px solid #fff;
  border-width: thin;
  opacity: 0.7;
  display:none; 
}

#gridMainContentNav > #divArrowRight {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 5px;
  right: 0.2em;
  padding: 0.9px 10px 1.4px;
  border-radius: 50%;
  background-color: #06491d;
  font-size: 1.3em;
  color: #EAFDE6;
  border: 1px solid #fff;
  border-width: thin;
  opacity: 0.7;
 
}
/*end scroll botton LR*/
/*end search item group nav*/
#gridNav {
  grid-area: nav;
  /*border-bottom: solid thin rgba(239, 239, 239, 1); */
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
#gridNav nav {
  width: auto;
  height: auto;

  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin-bottom: 0;
  margin-top: 1em;
}
#gridNav nav #divCompLogo {
  width: auto;
  max-width: 80px;
  padding: 0;
  align-self: end; /*place to bottom*/
  margin-left: 12px;
}

#gridNav nav .menu-main {
  flex-grow: 1;
}

#gridNav nav .menu-main #companyName {
  font-size: 1.2em;
  color: var(--col-theme-30);
  text-decoration: none;
}

#menu-nav-accordion {
  display: none;
}

#gridNav nav .menu-nav {
  display: flex;
  flex-basis: calc(var(--w-imgholder) + 16px);
  flex-grow: 0;
  flex-flow: row nowrap;
  justify-content: flex-end;
  gap: 12px;
}

#gridNav nav .menu-nav a {
  color: #111;
}
#gridNav nav .menu-nav a:last-child {
  margin-right: 8px;
}

#gridNav nav .menu-member {
  display: flex;
  flex-basis: calc((var(--w-imgholder) * var(--calculate) / 3) - 13px);
  flex-grow: 0;
  flex-flow: row nowrap;
  justify-content: flex-start; 
}

#gridNav nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#gridNav nav ul li {
  float: left;
  padding-bottom: 4px;
  height: 99%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#gridNav nav ul li a {
  display: block;
  /*color: #fff;*/
  color: #095540;
  font-size: 1em;
  font-weight: normal;

  text-align: center;
  padding: 0.19em;
  text-decoration: none;
}

.header-login-a {
  /*make like a button*/
  height: auto;
  width: auto;
  font-size: 1.1em;
  padding: 0.13rem 0.6rem !important;
  color: #fff !important;
  
  background-color: var(--col-theme-15);
  border: 1.5px solid var(--col-theme-15-bdr);
  border-radius: 50px / 50px;
}
.header-login-a:hover {
  text-decoration: none;
}

.franchise-a {
  font-family: var(--btn-fontfam);
  font-size: 20px;
  height: auto;
  width: auto;
  padding: 8px 16px;
  color: #fff;
  background-color: var(--col-theme-10);
  border: 1.5px solid var(--col-divbg);
  border-radius: 50px;
  text-decoration: none;
  margin-right: 8px;
}
.franchise-a:hover {
  border: 1.5px solid #fff;
}

.branches-a {
  /*make like a button*/
  font-family: var(--btn-fontfam);
  font-size: 20px;
  height: auto;
  width: auto;
  padding: 8px 16px;
  color: #fff;
  background-color: var(--col-theme-30);
  border: 1.5px solid var(--col-divbg);
  border-radius: 50px;
  text-decoration: none;
}
.branches-a:hover {
  border: 1.5px solid #fff;
}

.header-signup-a {
  /*make like a button*/
  height: auto;
  width: auto;
  font-size: 1.1em;
  padding: 0.13rem 0.6rem !important;
  color: #fff !important;
  background-color: 	var(--col-theme-10);
  border: 1.5px solid var(--col-divbg);
  border-radius: 50px / 50px;
}

.header-signup-a:hover {
  text-decoration: none;
}

#gridNav nav ul li a:hover {
  text-decoration: underline;
}

#gridNav nav ul li input,
button {
  display: block;
  color: #000;
  font-size: 0.9em;
  font-weight: normal;
  padding: 2px;
  float: left;
}

#mainNav nav .menu-main {
  display: flex;
  margin: 0;
  padding-top: 4px; 
  padding-bottom: 2px;
}

#gridNav nav .menu-main li {
  margin: 0;
}

#gridNav nav .menu-member {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  
}
#gridNav nav .menu-member li {
  margin: 0 0.6em;
}

#mainNav nav .push-right {
  margin-left: auto;
}
/*end mainNav*/

#gridCustInfoNav {
  font-size: 1rem;	
  border: 1px solid #e8e8e8;
  background: #fff;
  
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex: 1;
  
  height:auto;
  width: 76.5rem;
  position: fixed;
  bottom: 0vh;
}

#gridCustInfoNav p {
  color: #fff;
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
}

#gridCustInfoNav > #gridCustInfoNav-profile {
  float: right;
  background: #FF8A00;
  padding: 0;
  width: 20%;
  height: 1.6rem;
  cursor: pointer;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
#gridCustInfoNav > #gridCustInfoNav-trans {
  float: right;
  background: #007E80;
  padding: 0;
  width: 20%;
  height: 1.6rem;
  cursor: pointer;
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
#gridCustInfoNav > #gridCustInfoNav-inbox {
  float: right;
  background: #004853;
  padding: 0;
  width: 20%;
  height: 1.6rem;
  cursor: pointer;
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
#gridCustInfoNav > #gridCustInfoNav-pd {
  float: right;
  background: #00B9BD;
  padding: 0;
  width: 20%;
  height: 1.6rem;
  cursor: pointer;
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex: 1;
}

#gridCustInfoNav > #gridCustInfoNav-ap {
  float: right;
  background: #719A4E;
  padding: 0;
  width: 20%;
  height: 1.6rem;
  cursor: pointer;
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex: 1;
}


/*sub details of Customer Info Nav - Tab Type*/
.gridCustInfoNav-subdetl {
  font-size: 1rem;	
  border: none;
  background: transparent;
  
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  flex: 1;
  
  height:auto;
  width: 76.5rem;
  
  position: fixed;
  top: 20px;
  left: 5px;
}

.gridCustInfoNav-subdetl p {
  color: #fff;
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  border-radius: 5px;
  margin-right: 5px;
  
}
.gridCustInfoNav-subdetl p:hover{
  color: red;
  padding-left: 0.5em;
}
.gridCustInfoNav-subdetl p:active{
  color: red;
  padding-left: 0.5em;
}

.gridCustInfoNav-subdetl > .gridCustInfoNav-subdetl-box {
  float: left;
  background: #26ADE4;
  padding: 2px 5px;
  border-right: 1px solid #fff;
  width: auto;
  min-width: 5em;
  height: 1.6rem;
  cursor: pointer;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
/*end gridCustInfoNav*/

/*left & right content*/
#gridHdr {	
  background-color: transparent;
  width: 98%;
  height: 180px;
  margin-bottom: 0;
  overflow: -webkit-sticky;
  overflow: hidden;
}
/*var slideImg classList*/
#gridHdr img.displaySlide {
  animation-name: imgFadeIn;
  animation-duration: 3.5s;
}
@keyframes imgFadeIn {
   from {opacity: .2}
   to {opacity: 1}
}

/*ads start*/
#gridHdrAds {
  width: 98%;
  height: 80px;
  flex-grow: 0;
  margin-top: 4px;
  border: none;
  background-color: transparent;
  padding: 1px;
  margin-top: 4px;
  margin-bottom: 0.3rem;
  
  border-radius: 2px;
  overflow: hidden; 
  overflow-x: auto; 
  overflow: -webkit-sticky;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  
  gap: 0 8px;
}

#gridHdrAds::-webkit-scrollbar {
  scrollbar-width: thin;
  background: transparent;
}

#gridHdrAds .adsSubDiv {
  border: 1px solid #D3D3D3;
  background-color: #FFF;
  border-radius: 15%;
  padding: 4px 6px;
  height: auto;
  
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gridHdrAds .adsSubDiv:hover {
  border: 1px solid #A9A9A9;
  box-shadow: rgba(0, 149, 58, 0.2) 0px 2px;
}
#gridHdrAds .adsSubDiv:active {
  border: 1px solid #00C176;
}

#gridHdrAds .adsSubDiv .adsImg {
  min-height: 30px;
  max-height: 30px;
  min-width: 35px;
  max-width: 35px;
  cursor: pointer;
} 
#gridHdrAds .adsSubDiv .imgAdsCaption {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 0.8em;
  text-align: center;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 40px; /*100%*/
  margin-top: 0;

  line-height: 1.2;
  cursor: pointer;
}

#divAdsInfoDetl > #divBranches {
  width: 98%;
  max-height: 82vh;
  flex-grow: 0;
  padding-top: 2px;
  padding-left: 8px;
  background: #fff;

  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start; /*baseline*/
  align-content: flex-start;
  
  overflow: hidden; 
  overflow-y: auto; 
  overflow: -webkit-sticky;
  margin-left: auto;
  margin-right: auto;
}
#divAdsInfoDetl #divBranches::-webkit-scrollbar {
  scrollbar-width: thin;
  background: transparent;
}

#divAdsInfoDetl #divBranches .imgBranchArea {
  min-width: 98%;
  padding: 16px 2px 4px;
  border-bottom: 1px solid #f1f1f1;
  font-size: 1em;
  color: #111;
  text-align: left;
  margin-bottom: 8px;
}

#divAdsInfoDetl #divBranches .imgBranchName {
  min-width: 150px;
  max-width: 200px;
  padding: 8px;
  font-size: 1em;
  color: #fff;
  background-color: var(--col-theme-30);
  border: 2px solid #fff;
  border-radius: 8px;
  text-align: center;
  flex-grow: 1;
  margin-bottom: 8px;
  margin-right: 8px;
  cursor: pointer;
}

.btnCopyText {
  clear: both;
  width: 100%;
  text-align: center;
  color: var(--col-divbg);
  font-size: 1em;
}
.btnCopyText:hover {
  font-size: 1.1em;
  text-decoration: underline;
}  

#navCompInfoContent #divSnapshotContent {
  /*holder only to avoid conflict*/
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: flex-start;
  border: none;
  height: 100%;
  width: 100%;
  background-color: rgb(241, 241, 241, 0.4);
  border-radius: 2px;
  padding-top: 8px;
  padding-bottom: 16px;
  /*
  background-image: url("../_images/comp/wallpaper/ice_cream_wall_1.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  */
   
  position: relative;
  overflow: hidden; 
  overflow-y: auto; 
  overflow: -webkit-sticky;
}
#divSnapshotContent::-webkit-scrollbar {
  scrollbar-width: thin;
  background: transparent;
}

#divSnapshotContent .snapshotSubDiv {
  border: 4px solid #FFF;
  height: auto;
  width: auto;
  max-height: 150px;
  max-width: 260px;
  margin-left: 2px;

}
#divSnapshotContent .snapshotSubDiv .snapshotImg {
  min-height: 150px;
  max-height: 150px;
  min-width: 200px;
  max-width: 260px;
  cursor: pointer;
}
#divSnapshotContent #boardCaption {
  display:none;
  width: auto;
  position: absolute;
  left: 4px;
  top: 16px;
  font-size: 2em;
  line-height: 1.2;
  padding: 0 4px;
  font-family: Papyrus, fantasy;
  background-color: rgb(243, 162, 162, 0.5);
  color: #fff;
}
/*end left & right content*/

/*ads overlay details*/
#myFullNavAdsInfoDetl #divAdsInfoDetl {
	margin-top:10vh;
	padding:8px;
	border: 1px solid #D3D3D3;
	border-radius: 8px;
	width: 50vw; height: 50vh;
	margin-left: auto;
	margin-right: auto;
	background-color: var(--col-theme-30);
}
/*ads end*/

/*major clientd start*/
#gridClients {
  /*grid-area: clients;*/
  border-top: 1px solid #D3D3D3;
  background-color: transparent;
  padding: 16px 8px;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex: 1;
  gap: 16px 50px;
  flex-wrap: wrap;
}
/*
#gridHdrCleints::-webkit-scrollbar {
  scrollbar-width: thin;
  background: transparent;
}
*/
#gridClients #gridClientsTitle {
  clear:both; 
  width:100%; 
  font-size: 1.3em;
  color:#00953a;
  margin-bottom: 1em;
}

#gridClients .clientsSubDiv {
  border: none;
  background-color: #FFF;
  border-radius: 4px;
  padding: 4px;
  height: auto;
  
  display: flex;
  flex-direction: column;
}

#gridClients .clientsSubDiv .clientsImg {
  min-height: 70px;
  max-height: 70px;
  min-width: 100px;
  max-width: auto;  
} 

/*major clients end*/


#gridHdrMobile {
  display:none;
}

#txtItemGrpSearchNav {
  display: none;
}
#btnItemGrpSearchNav {
  display: none;
}

#gridSidebar {
  /*
  border-right: solid thin rgba(239, 239, 239, 1);;
  */
  grid-area: sidebar;
  font-size: 1.2em;
  font-weight: normal;
  letter-spacing: 2px;
  background: transparent;
  
  padding-top: var(--main-padding);
  padding-left: 8px;
  overflow: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
}

#gridSidebar #divSlogan {
  width: auto; 
  height: auto;
  max-width: 25em;
  max-height: 80%;
  font-size: 1.1em;
  text-align: left;
  padding: 16px 8px 16px 16px;
  background-color: var(--col-divbg);
  border: 4px solid var(--col-divbg);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#gridSidebar #divSlogan .sloganCaption {
  font-family: 'Nunito', Sans-serif;
  width: 100%;
  text-align: left;
  font-size: 1.5em;
  color: var(--col-theme-30);
  margin-bottom: 16px;
  line-height: 1.2;
}
#gridSidebar #divSlogan .sloganDetl {
  font-family: 'Sans-serif', serif;
  width: 100%;
  text-align: left;
  font-size: 1em;
  color: var(--col-theme-10);
}

#gridSidebar #divSlogan #divSloganNav {
	margin-top: 32px;
  width: 100%;
	height: auto;
	border: none;
  display: flex;
  justify-content: space-between;
}

#gridSidebar::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}

#gridSidebar > div {
  /*border-bottom: 1px solid #e1e1e1;*/
  width: 90%;
  height: auto;
  padding: 2px 2px 5px 2px;
  margin: 5px auto 10px;
  display: flex;
  justify-content: center;
}

#gridSidebar > .sbH1 {
  font-size: 1em;
  letter-spacing: 1px;
  color: #9ED54C;
  text-transform: capitalize;
}

#gridSidebar .sidebarTbl {
  width: 90%;
  max-width: 95%;
  border-collapse: collapse;
  font-size: 0.9em;
  color: #fff;
  
}
#gridSidebar .sidebarTbl tr td {
  /*border-bottom: 1px solid #808080;*/
  border-bottom: solid thin #fff;
  line-height: 98%;
  text-align: left;
  padding: 5px 0 5px 3px;
  /*	display: inline-block;*/
  white-space: nowrap;
  word-wrap: break-word;
  cursor: pointer;
  text-transform: capitalize !important;
}

#gridSidebar .sidebarTbl tr td:hover {
  background-color: #095540;
  color: #fff;
  padding-left: 8px;
  transition: all 0.3s ease;
}

#sidebarTblCartCheckOut #CartCheckOut p::after {
	content: url("../_images/program/icons/shop-cart.png");
	padding:0;
  margin-left: 2px;
    height: 20px;
    width: 25px;
    object-fit: contain;
    
    background-repeat: no-repeat;
    background-size: cover;
}

#divMenu {
  width: 97vw;
  height: 99%;
  background-color: transparent;	
  padding-top: 3px;
  padding-bottom: var(--main-padding);
  padding-left: 5px;
  padding-right: 5px;
  
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: flex-start;

  /*scroll*/
  overflow: hidden;
  white-space: nowrap;
  position: inherit;

  overflow-y: auto;
  overflow: -webkit-sticky; /*for safari*/
  scrollbar-width: thin;

  scroll-behavior: smooth;
}
#divMenu > .mainSubDiv {
  min-height: 70vh;
  max-width: calc(var(--w-imgholder) - 16px);
  margin-right: 6px;
  border: 1px solid rgba(53, 117, 168, 0.6);
  border-radius: 8px;
  margin-bottom: 8px;
}
#divMenu > .mainSubDiv > .mainSubDivDetl{
  background-color: rgba(241, 241, 241, 0.5);
  border: 1px solid rgba(241, 241, 241, 0.6);
}

#gridMainContentHolder {
  grid-area: mainContent;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative; 
  width: calc(var(--w-imgholder) + 8px);
  
}  
.gridMainContent {
  width: auto;
  height: 100%;
  background-color: transparent;	
  padding-top: 3px;
  padding-bottom: var(--main-padding);
  padding-left: 5px;
  padding-right: 5px;

  /*scroll*/
  overflow: hidden;
  white-space: nowrap;
  position: inherit;

  scroll-behavior: smooth;
}

#gridMainContentHolder .btnPrevSlide {
	position: absolute;
	top: 50%;
	transform: translateY(-50%); /*function to button height*/
	left: 16px;
	
	padding: 0.9px 10px 1.4px 9px;
	border-radius: 50%;
	color: #d3d3d3;
  background-color: transparent;
	font-size: 1.3em;
	border: transparent;
	cursor: pointer;
  z-index: 1000;
  transition: 0.2s ease-in-out;
}
#gridMainContentHolder .btnPrevSlide:hover {
	background-color: var(--col-theme-30);
  border: 2px solid #f1f1f1;
	color: #FFF;
  
}	
#gridMainContentHolder .btnNextSlide {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 8px;

	padding: 0.9px 10px 1.4px;
	border-radius: 50%;
	color: #d3d3d3;
  background-color: transparent;
	font-size: 1.3em;
	border: transparent;
	cursor: pointer;
  z-index: 1001;
}
#gridMainContentHolder .btnNextSlide:hover {
  background-color: var(--col-theme-30);
  border: 2px solid #f1f1f1;
	color: #FFF;
}

#gridFoot {	
  grid-area: foot;
  /*
  border-right: solid thin rgba(239, 239, 239, 1);
  */
  background-color: transparent;
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
    
#gridFoot > .footSubDiv {
    background-color: transparent;
	  height:auto;
	  min-height: 3rem;
	  width: 100%;
	  
	  font-size: 1rem;
	  font-weight: normal;
	  text-align: left;
	  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	}

.multiMedia {
  width: 25px;
  height: 25px;
  max-width: 25px;
  max-height: 25px;
  border: 2px solid #f1f1f1;
  border-radius: 50%;
  background-color: #FFF;
  background-repeat: no-repeat;
  cursor: pointer;
}

.multiMedia:hover {
  border-color: #D3D3D3;
}

#gridFoot > .footSubDiv > ul{
  margin-top: 10px;
  list-style: none;
  text-align: left;
  font-size: 1rem;
}

#gridFoot > .footSubDiv > ul li:not(:last-child){
  margin-bottom: 0.5rem;
}
#gridFoot > .footSubDiv > ul li a{
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  font-size: 0.9em;
  line-height: 1;
  letter-spacing: 1px;
  white-space: pre-wrap;
  width:100%;
  text-decoration: none;
  
  color: #808080;
  display: block;
  transition: all 0.3s ease;
}
#gridFoot > .footSubDiv > ul li a:hover{
  color: #111;
  padding-left: 0.3em;
  
}
#gridFoot > .footSubDiv > ul li a:active{
  /*color: #A69779;*/
  color: #FF8A00;
  padding-left: 0.5em;
}
/*grid end*/

/*atc checkout details*/
#container-hdr {
  height: auto;
  width: 98vw;
  /*padding: 0 10px 2px 1px; */
  padding-bottom: 2px;
  clear: both;
  margin: 0px auto 2px;
  background: #fff;
}

#container-hdr-div-col1 #rtxtATCNote {
  padding:2px; 
  resize:none; 
  border:none;
}
	
#container-detl {
  height: auto;
  width: 98vw;
  max-height:50vh;
  margin-top: 5px;
  margin-bottom: 2px;
  background: #fff;
  clear: both;

  overflow: hidden;
  overflow-y: auto;
  overflow: -webkit-sticky; /*for safari*/
  scrollbar-width: thin;

}

#container-footer {
  height: auto;
  width: 98vw;
  background-color: #FFF;
  border-top: 0.5px solid #848884;
  margin-bottom: 0.3rem; 
}

#container-footer > .flexRow > #btnSaveSODetl{
	height: auto;
	font-size: 1.2em;
	color: #fff;
	background-color: var(--col-theme-30);
	/* background-color:#095540; */
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 0.3rem;
	margin: 0.4rem 0 0.3rem;
}

#container-footer > .flexRow > .btnUpdateCancelSODetl{
	height: auto;
	font-size: 1.2em;
	color: #fff;
	background-color: var(--col-theme-30);
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 0.3rem;
	margin: 0.4rem 0 0.3rem;
	display:none;
}

#container-hdr .container-hdr-div {
  height: auto;
  float: left;
  background: #fff;
  /*display: table; causing autosize of img*/
  width: 98vw;
}

.flexRow {
  font-size: 1rem;	
  width: 100%;
  height: auto;
  /* border-bottom: 1px solid #f6f6f6; */
  border: none;
  padding: 1px;
  margin-bottom: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.flexRow:last-child {
  margin-bottom: 3px;
}

p.formTitle {
  font-family: Arial, sans-serif;
  /*orig 2em, ideal use vw*/
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 10px 0 5px;
  color: var(--col-theme-30);
}

[class*="fcol-"] {
  float: left;
  height: 1.5rem;
  padding: 0 0 0 2px;
  font-size: 0.8rem;
  font-weight: normal;

  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap; /*auto down */
  flex-direction: row;
  justify-content: flex-start; /*flex-start/center/flex-end/stretch/space-evenly/space-between/space-around.. horizontal*/
  align-items: flex-end; /*vertical align-content = all items*/
  /* align-items: stretch; To Fill Height and Width of Cell */
}
/*base 1226px width*/
.fcol-lbl0 {width: 2rem;}
.fcol-lbl1 {width: 4rem;}
.fcol-lbl2 {width: 6rem;}
.fcol-lbl3 {width: 8rem; justify-content: flex-end;}
.fcol-cont-xs {width: 2rem;}
.fcol-cont-s {width: 4rem;}
.fcol-cont-m {width: 8rem;}
.fcol-cont-l {width: 19rem;}
.fcol-cont-xl {width: 38rem;}
.fcol-cont-xxl {width: 76rem;}
.fcol-cont-az {width: 98%;}
.fcol-sideinfo {width: 13rem; justify-content: flex-end;} /*flex-shrik/grow/basis*/

#container-hdr .flexRow input[type="text"] {
  line-height: 97%;
  text-align: left;
  vertical-align: middle;
  padding: 1px 0 0 2px;
  width: auto;
}
	
/*end atc checkout detl*/

/*add to cart details*/
.tblViewDetl {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 98vw;
  height:auto;
  font-size: 1rem;

  margin-left: auto;
  margin-right: auto;
}

.tblViewDetl td,
.tblViewDetl th {
   border: 1px solid #ddd; 
   padding: 1px; 
  word-wrap: break-word;
}

.tblViewDetl thead th {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  text-align: center;
  background-color: #fff;
  color: #005F6B;
  font-size: 0.8em;
  font-weight: normal;
  position: sticky;
  
  border: none;
  margin-bottom: 5px;
  
}

.tblViewDetl tr:click {
  background-color: #ddd;
}

.tblViewDetl tbody tr td:nth-child(1) {
  padding: 0 1px;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  width:2em;
}

.tblViewDetl tbody tr td #myBtnIDRemRow {
  border: none;
  background-color: transparent;
  color: red;
  width: 2em;
  margin-left: 0;
  margin-right: 0;
}

.tblViewDetl tbody tr td #qtyDec{
  border-style: solid;
  border-width: thin;
  border-color: #ddd;
  width: 2em;
}

.tblViewDetl tbody tr td #qtyInc {
  border-style: solid;
  border-width: thin;
  border-color: #ddd;
  width: 2em;
}

.tblViewDetl tbody tr:last-child { 
  border: none;
  font-size: 1em;
  font-weight: bold;
}

.tblViewDetl tfoot tr td {
  height: auto;
  background-color: #A9DB66;
  border-bottom: 1px solid #556910;
  padding: 2px;
  margin-bottom: 2px;
  justify-content: center;
  align-items: center;
}

.tblViewDetl tr td input {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 0.9em;
}
.tblViewDetl tr td textarea {
   font-size: 0.8em;
   overflow: hidden;
   overflow-y: auto;
  overflow: -webkit-sticky; /*for safari*/
  scrollbar-width: thin;
}

#imgInfo {
	border: 1px solid #f5f5f5;
	width: 99vw;
	height: 85vh;
	padding-left: 5px;
	padding-bottom: 10px;
	background-color: #fff;
	margin-left: auto;
	margin-right: auto;
}

#custNavInfoDetlDiv {
	border: 1px solid #f5f5f5;
	width: 99vw;
	height: auto;
	padding-left: 5px;
	background-color: #fff;
	margin-left: 0;
	margin-right: 0;
}

.tblViewSubInfo-Head {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 98vw;
  height:auto;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  clear: both;
  overflow: auto;
}

.tblViewSubInfo-Head td,
.tblViewSubInfo-Head th {
  border: 1px solid #ddd;
  padding: 1px;
  word-wrap: break-word;
}

.tblViewSubInfo-Head thead tr th {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  text-align: center;
  background-color: #fff;
  color: #111;
  font-size: 0.8em;
  font-weight: normal;
  position: sticky; 
}	

.tblViewSubInfo-Head tbody tr td {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  text-align: right;
  background-color: #fff;
  color: #111;
  font-size: 0.8em;
  font-weight: normal; 
}

.tblViewSubInfo-Head tbody tr:nth-child(odd) { 
	background-color: #f5f5f5;
}

.tblViewSubInfo-Head tfoot tr { 
	background-color: #ddd;
}

/*on click tblViewSubInfo-Head show details*/
.tblViewSubInfo-Detl {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 98vw;
  height:auto;
  font-size: 1rem;
  margin-bottom: 1rem;
  clear: both;
}

.tblViewSubInfo-Detl td,
.tblViewSubInfo-Detl th {
  border: 1px solid #ddd;
  padding: 1px;
  word-wrap: break-word;
}

.tblViewSubInfo-Detl thead th {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  text-align: center;
  background-color: #fff;
  color: #111;
  font-size: 0.8em;
  font-weight: normal;
  position: sticky; 
}	

.tblViewSubInfo-Detl tbody td {
  padding: 2px 0.4em;
  text-align: left;
  background-color: #fff;
  color: #111;
  font-size: 0.8em;
  font-weight: normal; 
}

.tblViewSubInfo-Detl tbody tr:nth-child(odd) { 
	background-color: #ddd;
}

.tblViewSubInfo-Detl tfoot tr { 
	background-color: #ddd;
}

.tblViewSubInfo-Search {
  padding: 2px 0 2px 8px; 
  text-align: left; 
  border:1px solid #008C9E; 
  border-radius: 5px; 
  font-size: 0.8em; 
  width: 50vw;
}

/*cart checkout qty*/
.cartQty {	
  width: auto;
  padding: 2px 8px 2px 0;
  position: relative;
  display: inline-block;
  margin-right: 8px;
  text-align: left;
  background-color: transparent;
}

.cartQty p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;	
  width: auto;
  margin-right: 1em;
  /*background-color: #04aa6d;*/
  color: var(--col-theme-15);
  cursor: pointer;
  padding-left: 0;
}

.cartQty:hover {
  background: transparent;
}

.cartQty .cartBadge {
  position: absolute;
  top: -16px;
  right: -14px;

  text-align:center;
  width: 25px;
  height: 20px;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 20px;
   
  background-color: rgba(159,222,215, 1);
  color: #fff;
}

/*end cart checkout qty*/

#myBtnIDRemRow {
  height: 1.5rem;
  width: 1.5rem;
}

#qtyInc, #qtyDec {
    height: 1.5rem;
    width: 1.5rem;
    border:1px solid #ddd;
    border-radius:5px;
}

#qtyInc:hover{
    background-color:green;    
    border:none;
}
#qtyDec:hover{
    background-color:red;
    border:none;
}

#myBtnIDRemRow:hover{
    background-color:red;
    border:none;
}
/*end atc details*/

.gridMainContent > .mainSubDiv {
  
  float: left;
  min-height: 99%;
  min-width: var(--w-imgholder);
  /*remove causing error to slider
    margin-left: 5px;
    */
  margin-bottom: 5px;
  padding: 1px 1px 5px 1px;
  overflow: hidden;
  background: transparent;
  
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;

  position: relative;
  flex: 1;  
}
.gridMainContent > .mainSubDiv > .imgitemtagdiv {
  order: 0;
  display: none;
  width: 100px;
  height:20px;
  padding: 4px 2px 2px;
  border-radius: 0% 15% 15% 0% / 0% 50% 50% 50%;
  
  margin-top: 0;
  z-index: 1;

  position: absolute;
  top: 16px;
  left: 8px;
  
  border: none;
  font-family: Arial;
  font-size: 1em;
  background-color: var(--col-theme);
  color: #fff;
  text-align: center;
  opacity: 0;
}

#divMenu > .mainSubDiv > .imgitemtagdiv {
  opacity: 1;
}

#gridMainContent .imgitemtagdiv.changeBorder {
  animation-name: tagChange;
  animation-duration: 5s;
  animation-timing-function: ease-out;
}
@keyframes tagChange {
   from {
    opacity: 0.9;
   }
   to {
     opacity: 1;
  }
}

.gridMainContent > .mainSubDiv > .smallImg {
  order: 1;
  float: right;
  height: auto;
  max-height: calc(var(--w-imgholder) / 2);
  width: calc(var(--w-imgholder) / 2);
  /*this will avoid stretching image*/
  object-fit: contain;

  background-repeat: no-repeat; 
  cursor: pointer;
  background: transparent;
  
  /*fancy border radius (github)*/
  /*border-radius: 50% 50% 49% 51% / 25% 26% 74% 75%;*/
  border-radius: 50%;
  border: 2px solid rgba(238, 238, 238, 0.5);
  padding: 2px;
  background-color: #fff;
  /*
  position: absolute;
  bottom: 38%;
  */
}

.gridMainContent > .mainSubDiv > .mainSubDivDetl {
  order: 2;
  font-size: 0.9rem;
  float: right;
  height: auto;
  max-height: 12em;
  width: calc(var(--w-imgholder) - 32px);
  background: #fff;
  margin-left: 5px;
  margin-top: 8px;
  padding: 1px;
  overflow: hidden;
  background-color: transparent;
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  /*
  position: absolute;
  bottom: 4px;
  */
  border: 1px solid rgba(238, 238, 238, 0.5);
  background-color: rgba(238, 238, 238, 0.5);
  border-radius: 8px;
}

.gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgStockName {
  margin-top: 16px;
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  font-size: 1.2em;
  line-height: 1;
  letter-spacing: 1px;
  white-space: pre-wrap;
  width:100%;
  background-color: transparent;
  color:var(--col-theme-10);
  clear:both;
}
.gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgModelApp::before {
  content: "Flavors: ";
  color: #111;
  font-size: 1em;
}

.gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgModelApp {
  margin-top: 4px;
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.2;
  letter-spacing: 1px;
  white-space: pre-wrap;
  width:100%;
  background-color: transparent;
  color: #111;
  clear:both;
}
.gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgUPrice {
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  font-size: 1.2em;
  white-space: pre-wrap;
  width: 100%;
  background-color: transparent;
  color: var(--col-theme-30);
  
  margin-top: 5px;
  clear:both;
  
}

.gridMainContent > .mainSubDiv > .mainSubDivDetl > #imgOldUPrice {
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  text-decoration: line-through;
  font-size: 0.8em;
  white-space: pre-wrap;
  width: auto;
  background-color: #fff;
  color: red;
  
  margin-top: 0.3rem; 
}

.gridMainContent > .mainSubDiv > .mainSubDivDetl > #btnATCAddToCart {
  width:80%;
  background-color: var(--col-theme-15);
  border: 1.5px solid var(--col-theme-15-bdr);
  color: #fff; 
  font-size: 1em;
  cursor: pointer;
  border-radius: 50px / 50px;
  padding: 0.5em 0;
  margin-top: 0.3rem;
  margin-bottom: 8px;
  clear: both;
}

#divPriceTblQty {
  width:100%;
  height:auto;
  display: inline-block;
  padding:0;
  margin-top: 0.3rem;
  display:flex;
  justify-content: center;
}

#divPriceTblQty > #txtPriceTblQty {
  width:4em;
  border:1px solid #ccc;
  text-align:center;
  padding: 0.19em 0;
  margin: 0 0.13rem;
  float:left;
  font-size: 1.1em;
}
#divPriceTblQty > #btnPriceTblQtyDec {
  width:1.5em;
  border:1px solid #ccc;
  background-color: #fff;
  color: #6C7068;
  font-size:1.3em;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0.13em 0.3em;
  float:left;
}
#divPriceTblQty > #btnPriceTblQtyInc {
  width:1.5em;
  border:1px solid #ccc;
  background-color: #fff;
  color: #6C7068;
  font-size:1.3em;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0.13em 0.3em;
  float:left;	
}

#divPriceTblQty > #btnPriceTblATC {
 margin-left: 8px;
 padding-left: 8px ;
 padding-right: 8px;
 border: 1px solid #89CFF0;
 border-radius: 4px;
  background-color: var(--col-theme-30);
  color: #fff; 
  font-size: 1em;
  cursor: pointer;
}

/*price table*/
#divPriceTbl {
   display: flex;
   justify-content: center;
}
#divPriceTbl #divPriceTblHolder {
  width:auto;
  max-width: 350px;
  
  display: flex;
  flex-direction: column;
  gap: 4px;

  overflow: hidden;	
  overflow-y: auto;
  overflow: -webkit-sticky; /*for safari*/
}
#divPriceTblHolder::-webkit-scrollbar {
  scrollbar-width: thin;
  background: transparent;
}

#divPriceTbl .divPriceTblSubSet {
	width: 100%;
	clear:both;
	text-align:left;
	border-top: none;
  display:flex;
  justify-content: flex-start;
}
#divPriceTbl .divPriceTblSubSet .divPriceTblSubSet-title {
   color: var(--col-theme-30);
   margin-right: 16px;
}

#divPriceTbl #txtPriceTblSelItem {
  width: 98%;
  color: var(--col-theme);
  font-size: 1.1em;
  padding: 8px 0 6px;
  border: thin solid rgba(238, 238, 238, 0.1);
  border-radius: 4px 4px 0 0;
  background-color: rgba(238, 238, 238, 0.2);
  margin-bottom: 16px;
}

#cboPriceTblFlavor {
  border: transparent;
  font-size: 1em;
  font-weight: normal;
  flex-grow: 1;
}

.tblPriceTblSubSet {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  height:auto;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  clear: both;
  overflow: auto;
}

.tblPriceTblSubSet caption {
  color: var(--col-theme-30);
  text-align: left;
}

.tblPriceTblSubSet td,
.tblPriceTblSubSet th {
  border: none;
  border-bottom: thin solid #f1f1f1;
  padding: 1px;
  word-wrap: break-word;
}

.tblPriceTblSubSet thead tr th {
  color: var(--col-theme-30);
  font-size: 1em;
  font-weight: normal;
  text-align: left;
  padding: 0.4em 4px;
  position: sticky; 
}
.tblPriceTblSubSet thead tr th:nth-child(2) {
  text-align: right;
  width: 4em;
  font-size: 0.8em;
  color: #808080;
}	

.tblPriceTblSubSet tbody tr td {
  padding: 8px 6px 4px 16px;
  text-align: left;
  background-color: #fff;
  color: #111;
  font-size: 16px;
  font-weight: normal; 
}
.tblPriceTblSubSet tbody tr td:nth-child(2) { 
	text-align: right;
  width: 4em;
}
.tblPriceTblSubSet tbody tr td input[type="radio"] {
  margin-right: 8px;
}
.tblPriceTblSubSet tbody tr td input[type="checkbox"] {
  margin-right: 8px;
}

/*gen.printed variation*/
#divVariationHdr {
	width:98vw; 
	clear: both; 
	height: auto; 
	border: none; 
	background: #fff; 
	text-align:center;
	
	margin-bottom:5px;	
}
#divVariationHdr #divVariationHdrTitle {
	font-family: Roboto, Tahoma, Geneva, sans-serif;
	font-size: 1.2em;
  letter-spacing: 2px;
	color: #990100;
	margin: 5px auto;
}

#divVariation {
  width:98vw; 
  height: 80vh; 
  border: none;
  padding-top: 10px;
  
  overflow: hidden;	
  overflow-y: auto;
  overflow: -webkit-sticky; /*for safari*/
  margin-left: auto;
  margin-right: auto;
  
}

#divVariation > .divVariationChild {
  border: 1px solid #d8d6d6;
  float: left;
  height: 80%;
  max-height:150px;
  width: 32%;
  background: #fff;
  border-radius: var(--main-radius);
  margin-left: 5px;
  margin-bottom: 5px;
  padding: 1px 1px 5px 1px;
  overflow: hidden;
  
  justify-content: space-evenly;
  align-items: center;
  
}

#divVariation > .divVariationChild:hover {
	/* neon-green #49fb35 */
	border: 1px solid #00C176;
}

#divVariation > .divVariationChild > .varImg {
  float: right;
  height: 95%;
  width: 35%;
  max-width: 150px;
  object-fit: contain;
  
  background-repeat: no-repeat; 
  cursor: pointer;
  /*border-radius: var(--main-radius);*/
}

#divVariation > .divVariationChild > .imgitemtagdiv {
  display: none;
  width: auto;
  min-width: 12%;
  max-width: 20%;
  height:auto;
  padding: 3px;
  border-top-left-radius: 5px;
  
  margin-top: 0;
  z-index: 1;
  top: 0;
  left: 2px;
  
  border: none;
  font-family: Arial;
  font-size: 0.6em;
  /*background-color: #00C176;*/
  background-color: #FF5733;
  color: #fff;
  text-align: center;
}

#divVariation > .divVariationChild > .divVariationChildDetl {
  /*font-family: Roboto, Tahoma, Geneva, sans-serif;*/
  font-size: 0.9rem;
  float: right;
  height: 95%;
  width: 60%;
  max-width: 350px;
  background: #fff;
  margin-left: 5px;
  padding: 1px;
  overflow: hidden;
  
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  flex: 1; 
}

#divVariation > .divVariationChild > .divVariationChildDetl > #imgStockName {
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  font-size: 0.9em;
  line-height: 1;
  letter-spacing: 1px;
  white-space: pre-wrap;
  width:100%;
  background-color:#fff;
  color:#111;
  clear:both;
}
#divVariation > .divVariationChild > .divVariationChildDetl > #imgModelApp {
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  font-size: 0.9em;
  line-height: 1;
  letter-spacing: 1px;
  white-space: pre-wrap;
  width:100%;
  background-color:#fff;
  color:#111;
  clear:both;
}
#divVariation > .divVariationChild > .divVariationChildDetl > #imgUPrice {
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  font-weight: normal;
  font-size: 1em;
  white-space: pre-wrap;
  width: 100%;
  background-color: #fff;
  color: #F64E15;
  
  margin-top: 5px;
  clear:both;
  
}

#divVariation > .divVariationChild > .divVariationChildDetl > #btnATCAddToCart {
  width:100%;
  border: 1px solid #89CFF0;
  background-color: var(--col-theme-30);
  color: #fff; 
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  padding: 0.3em 0;
  margin-top: 0.3rem;
  clear: both;
}

#divVariation > .divVariationChild > .divVariationChildDetl > #imgQtyOrdDiv {
  width:100%;
  height:auto;
  display: inline-block;
  padding:0;
  margin-top: 0.3rem;
  display:flex;
  justify-content: center;
}

#divVariation > .divVariationChild > .divVariationChildDetl > #imgQtyOrdDiv > #imgQtyOrd {
  width:4em;
  border:1px solid #ccc;
  text-align:center;
  padding: 0.19em 0;
  margin: 0 0.13rem;
  float:left;
  font-size: 1.1em;
}
#divVariation > .divVariationChild > .divVariationChildDetl > #imgQtyOrdDiv > #imgQtyOrdBtnMinus {
  width:1.5em;
  border:1px solid #ccc;
  background-color: #fff;
  color: #6C7068;
  font-size:1.3em;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0.13em 0.3em;
  float:left;
}
#divVariation > .divVariationChild > .divVariationChildDetl > #imgQtyOrdDiv > #imgQtyOrdBtnPlus {
  width:1.5em;
  border:1px solid #ccc;
  background-color: #fff;
  color: #6C7068;
  font-size:1.3em;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0.13em 0.3em;
  float:left;	
}
/*end gen.printed variations*/


.bg {
  background-image: url(../_images/program/login.jpg);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


#compLogoHdr {
/*orig 70x57*/ 	
  height: 63px;
  width: 99%;
  max-width: 80px;
  object-fit: contain;
  border-radius: var(--main-radius);
  
  float: left;
}

.compName {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 1.2rem; 
	font-weight:700;
	line-height: 1.2;
	letter-spacing: 1px;
	display: flex;
	margin: 0;
}

h1 {
  color: #fff;
  font-family: Monaco, Palatino, sans-serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 30px;
  margin: 20px 0 10px;
  padding-top: 10px;
  text-align: center;
  /*text-shadow: -5px 5px 0px #005F6B, -10px 10px 0px #008C9E, -15px 15px 0px #00B4CC;*/
  text-shadow: -5px 5px 0px #005f6b, -10px 10px 0px #008c9e;
}
h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 10px;
  margin: 0 0 2px;
  text-shadow: 1px 1px 1px #c1c1c1;
}
h3 {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: normal;
  line-height: 5px;
  margin: 0 0 5px;

  text-shadow: -5px 5px 0px #00e6e6, -10px 10px 0px #01cccc,
    -15px 15px 0px #00bdbd;
  color: #fff;
  /* background: #203252; */
}

p {
  font-size: 16px;
  font-family: Roboto;
  color: #000;
  line-height: 20px;
}

caption {
  text-decoration: none;
  word-spacing: 1.5px;
  font-weight: normal;
  line-height: 20px;
  padding: 3px 0;
  color: #000;
}

hr {
	height:1px;
	border-width:0;
	color:gray;
	background-color:gray	
}

#dialogoverlay {
  display: none;
  opacity: 0.8;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #fff;
  width: 100%;
  z-index: 10;
}
#dialogbox {
  display: none;
  position: fixed;
  background: #095540;
  border-radius: 7px;
  width: 300px;
  z-index: 10;
}

#dialogbox > div {
  background: #fff;
  margin: 8px;
}
#dialogbox > div > #dialogboxhead {
  color: #00953a;
  font-size: 1.5em;
  background: #fff;
  padding: 5px;
  border-bottom: 1.5px solid #095540;
}

#dialogbox > div > #dialogboxbody {
  background-color: #fff;
  padding: 5px 1px 5px;
  display: flex;
  justify-content: center;
}

#dialogbox > #dialogboxbody > #signupdiv, 
#dialogbox > #dialogboxbody > #logindiv {
  border: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 2px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.tblSignLogDetl {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  height:auto;
  padding:0;
  margin: 10px 0;
  font-size: 1em;
}

.tblSignLogDetl td,
.tblSignLogDetl th {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 1px;
  word-wrap: break-word;
}

.tblSignLogDetl th {
  width: 38%;
  text-align: left;
  color: #00953a;
  font-size: 0.9em;
  font-style: normal;
  font-weight: normal;
}
.tblSignLogDetl td {
  width: 62%;
}

.tblSignLogDetl tr td:last-child {
  padding: 5px 1px;
  background: #fff;
  text-align: center;
  vertical-align: middle;
} 

.tblSignLogDetl tr td #btnSignup, .tblSignLogDetl tr td #btnCancelSignup, .tblSignLogDetl tr td #btnUpdateProfile, 
.tblSignLogDetl tr td #btnLogin, .tblSignLogDetl tr td #btnCancelLogin {
  height: auto;
  font-size: 0.9em;
  color: #fff;
  background-color:#095540;
  border: 1px solid #666;
  border-radius: 2px;
  padding: 3px 5px;
  margin-right: 8px;
}

.tblSignLogDetl tr td #btnLogin, .tblSignLogDetl tr td #btnCancelLogin {
  margin-top: 10px;
  margin-bottom: 10px;
}

.captchaCodeImg {
  text-align:center;
  background: yellow;
  border: none;
  font-size: 1.1em;
  font-weight:700;
  letter-spacing: 2px;
  padding: 8px 0;
  border-radius: 5px;
}

#dialogbox > div > #dialogboxfoot {
  background: #666;
  padding: 8px 5px;
  text-align: center;
}

/*fullscreen nav overlay*/
.fullNav {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  font-family: "Lato", sans-serif;
  height: 100vh;
  width: 0;
  padding: 5px 0 5px 0;
  display:none;

  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 1); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.fullNav .fullNav-content {
  position: relative;
  top: 15vh; /* 25% from the top */
  width: 99vw;
  text-align: center; /* Centered text/links */
  margin-top: 3px; /* 30px top margin to avoid conflict with the close button on smaller screens */
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  min-height: 70vh;
  background-color: transparent;
  
  display: flex;
  justify-content: center;
}

.fullNav .fullNav-content #divSpinner {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  display: none;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fullNav .fullNav-content #fullNav-content-hdr {
  font-size: 1.2em; 
  letter-spacing: 3px; 
  font-weight: bold; 
  color: #fff; 
  text-shadow: 2px 2px 4px #000000;
}

.fullNav .fullNav-content .content-hdr {
  border: 0;
  padding: 5px 2px;
  margin-bottom: 2px;
  background: #333;
  color: #fff;
  text-align: center;
}

.fullNav .fullNav-content .content-hdr 
#dtATCSO::-webkit-inner-spin-button, 
#dtATCSO::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.fullNav .fullNav-content .content-hdr input[type="date"] {
  font-size: 0.9em;
}

/* Position the close button (top right corner) */
.fullNav .closebtnFullNav {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 40px;
  color: #111;
}
.fullNav .closebtnLeftFullNav {
  position: absolute;
  top: 15px;
  left: 32px;
  font-size: 40px;
  color: #111;
}

#atcAlert-content {
  background-color: transparent;
}

#atcAlertDetl {
  font-size: 0.9em;
  width: 12em;
  height: 12em;
  background-color: var(--col-theme-30); 
  border:3px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  position:absolute; 
  top:5vh; 
  margin-left: auto;
  margin-right: auto;
  padding: 0
}

#atcAlertIcon {
	font-size:2em;
	color:#fff;
  width: 100%;
  margin-bottom: 5px;
}
#atcAlertNote {
	font-size: 1.2em; 
	letter-spacing: 3px; 
	color: #fff;
  text-align: center;
    width: 100%;

}

/*sideNavRight Overlay*/
.sidenavRight {
  font-family: "Lato", sans-serif;
  display: none;
  height:100vh;
  width: 100vw;
  padding: 5px; 
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #818181;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
  border-radius:5px;
}

.sidenavRight button {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
}

.sidenavRight button:hover {
  color: #e8e8e8;
}

.sidenavRight .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #fff;
  text-decoration: none;
}
/*end sideNavRight Overlay*/

/*start sideNavLeft Overlay*/
.sidenavLeft {
  font-family: "Lato", sans-serif;
  display: none;
  height:100vh;
  width: 100vw;
  padding: 5px; 
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 1);
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
  border-radius:5px;
}

.sidenavLeft a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
}

.sidenavLeft .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  color: #808080;
}	

.sidenavLeft .closebtn:hover {
  color: #111;
}

.sidenavLeft .sidenavLeftDetl {
  position: absolute;
  top:7vh; 
  padding:2px; 
  border: 1px solid #D3D3D3; 
  border-radius: 8px; 
  background-color: #fff; 
  height:90vh; 
  width: 98vw;
  margin-left: 1vw;
  margin-right: 1vw;
  overflow:hidden;
}
/**/

/*start popup/popover Overlay*/
.popupOverlay {
  display: none;
  max-height:30vh;
  max-width: 30vw;
  margin-left: auto;
  margin-right: auto;
  padding: 5px; 
  position: fixed;
  z-index: 1;
  bottom: 10vh;
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  border-radius:8px;
  padding-top: 1em;
}
.popupOverlayContainer {
	border: none;
	width: 25vw;
	height: 25vh;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	position: relative;
    border-radius: 8px;
}
.popupOverlay .closebtn {
  position: absolute;
  top: -4vh;
  right: 16px;
  margin-left: 4px;
  text-decoration: none;
  
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  padding:1.5px 3px 4px;
  height: 27px;
  width: 25px;
  border-radius: 50%;
}
.popupOverlay .closebtn:hover {
  color:#fff;
  background-color: #808080;
}

#myFullNavPopUpLeft {
  display: none;
  max-height:78px;
  max-width: 78px;
  padding: 4px;
  position: fixed;
  left: 1vw;
  bottom: 5vh;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  border-radius:8px;
  padding-top: 1em;
}
#myFullNavPopUpLeft #divPopUpLeft {
	border: none;
	width: 70px;
	height: 70px;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	position: relative;
    border-radius: 4px;
}
#myFullNavPopUpLeft .closebtnLeft {
  position: absolute;
  top: -4vh;
  left: 8px;
  margin-left: 4px;
  text-decoration: none;
  
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 20px;
  padding:1.5px 3px 4px;
  height: 23px;
  width: 21px;
  border-radius: 50%;
}

#myFullNavPopUpRight {
  display: none;
  max-height:78px;
  max-width: 78px;
  padding: 4px;
  right: 1vw;
  position: fixed;
  z-index: 1;
  bottom: 5vh;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.5s;
  border-radius:8px;
  padding-top: 1em;
}
#myFullNavPopUpRight #divPopUpRight {
	border: none;
	width: 70px;
	height: 70px;
	margin-left: auto;
	margin-right: auto;
	background-color: transparent;
	position: relative;
    border-radius: 4px;
}
#myFullNavPopUpRight .closebtnRight {
  position: absolute;
  top: -4vh;
  right: 8px;
  margin-left: 4px;
  text-decoration: none;
  
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 20px;
  padding:1.5px 3px 4px;
  height: 23px;
  width: 21px;
  border-radius: 50%;
}

/*end popup*/

#divReqSample {
	width: 60vw;	
}

#navCompInfoContent {
  width: 97vw;
  height: 90vh;
  margin-left: 1vw;
  margin-right: 1vw;
  background-color: #fff;
}
/*end sideNavLeft Overlay*/
/*end default*/


/* 2000px or less but not <= 1000px it will fall to mobile*/
@media (max-width: 2000px) {	
	#downloadApp::after{
		content: " - 1";	
	}
    
    #gridContainer {
	  position: relative;
	  display: grid;
	  min-height: 95vh;
	  grid-template-columns: 1fr 1fr calc(var(--w-imgholder) + 32px) 80px;
	  grid-template-rows: minmax(auto, 12vh) minmax(64vh, 70vh) minmax(auto, 16vh);
	  grid-template-areas:
	  "nav nav nav nav"
      "sidebar sidebar mainContent foot"
      "maincontentnav maincontentnav maincontentnav maincontentnav";
	  grid-gap: 0.2rem;
	  color: #111;
	  text-align: center;
	}
	
  #gridMainContentNavDiv {
    grid-area: maincontentnav;
    /*container only to avoid conflict of display:flex & none; of #gridMainContentNav*/
    padding:0;
    margin: 0;
    padding-bottom: 4px;
    /*
    border-top: solid thin rgba(239, 239, 239, 1);
    border-bottom: solid thin rgba(239, 239, 239, 1);
    */
    overflow: hidden; 
	  overflow-x: auto; 
	  overflow: -webkit-sticky;
  }
	#gridMainContentNavDiv::-webkit-scrollbar {
	    scrollbar-width: thin;
	    background: transparent;
	}
  #gridMainContentNavDiv #divArrowLeft {
    display: none;
  }
  #gridMainContentNavDiv #divArrowRight {
    display: none;
  }
  
  #gridMainContentNav {
    
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
	#gridMainContentNavDiv { 
	  display: block;
	}

	#gridHdrMobile {
	  display:none;
	}
	
	#txtItemGrpSearchNav {
	  display: none;
	}
	#btnItemGrpSearchNav {
	  display: none;
	}
	
	#gridNav {
	  grid-area: nav;
	}
  
    
    #gridSidebar {
    	display:block;
      grid-area: sidebar;
      display: flex;
      flex-basis: calc(100vw - calc(var(--w-imgholder) * var(--calculate))); 
      flex-grow: 1; /*occufy extra space*/
      flex-flow: column nowrap;
    }
    #gridMainContentHolder {
      grid-area: mainContent;
      
      display: flex;
      flex-basis: calc(var(--w-imgholder) * var(--calculate));
      flex-grow: 0;
    } 
    .gridMainContent {
      display: flex;
      width: auto;
      /*
      flex-basis: calc(var(--w-imgholder) * var(--calculate));
      flex-grow: 0;
      */
      flex-flow: row nowrap;
      justify-content: flex-start;
    }
	
	
    #gridFoot {	
	  grid-area: foot;
	  background-color: transparent;
	  
	  display: flex;
	  justify-content: center;
	  flex-direction: column;
    }
    
    #gridFoot > .footSubDiv { 
	  background-color: transparent;
      height:auto;
	  min-height: 3rem;
	  width: 100%;
	  
	  font-size: 1rem;
	  font-weight: normal;
	  text-align: left;
	  
	}
    
    #gridSidebar #divItemGrpSearch  #txtItemGrpSearch {
		max-height: 25px;
	}
	#gridSidebar #divItemGrpSearch  #btnItemGrpSearch {
	    max-height: 27px;
	}
	
	.sidenavLeft #divReqSample {
	  width: 60vw;	
    }
}

/* 1000px or less but not <= 767px it will fall to mobile*/
@media screen and (max-width: 1023px) {	
	#downloadApp::after{
		content: " - 2";	
	}
	
   #gridHdrAds {
	    width: 98%;
		max-width: 485px;
		height: 80px;
		flex-grow: 0;
	    padding-bottom: 0;
    }

    #gridHdrAds::-webkit-scrollbar {
	    scrollbar-width: thin;
	    background: transparent;
    }

	#gridHdrAds .adsSubDiv {
	    font-family: "Calibri", sans-serif;
	    font-size: 0.8rem;
	    border: 1px solid #D3D3D3;
	}
	
	#gridSidebar {
      min-width: 6vw;
	  overflow: hidden; 
	  overflow-x: auto; 
	  overflow: -webkit-sticky;
    }

	#gridSidebar::-webkit-scrollbar {
	    scrollbar-width: thin;
	    background: transparent;
	}
}	


/* 767px width or less (mobile) */
@media screen and (max-width: 767px) {
  #downloadApp::after{
	content: " - 3";	
  }
  
  .header-login-a { 
  	font-size: 1em;
  	padding: 0.13rem 0.6rem !important;
    margin-left: 8px;
  }
  .header-signup-a {
  	font-size: 1em;
  	padding: 0.13rem 0.6rem !important;
  }
  
  .compName {
  	font-family: Arial, Helvetica, sans-serif;
  	font-size: 1em; 
  	font-weight:700;
    display: flex;
    margin: 0;
    line-height: 1.2;   
  }
  
   html,
   body {
	  margin: 0px;
	  padding: 0px;
   }
   
   body {
    font-size: 16px;
    background: #fff;
   }
  
  /*customer info table*/
  .fullNav .closebtnFullNav {
     font-size: 2rem;
     margin-bottom: 1px;
  }
  .fullNav .closebtnLeftFullNav {
    font-size: 2rem;
    margin-bottom: 1px;
 }

  .fullNav .fullNav-content {
	  position: relative;
	  top: 10%; /* 25% from the top */
	  margin-top: 3px; /* 30px top margin to avoid conflict with the close button on smaller screens */
	  background: #fff;
  }
  
  #wrapper {
  	padding: 0 !important;
  	margin-left: 0 !important;
  	margin-right: 0 !important;
  	width: 100vw !important;
    
    clear: both;
    height: auto;
    overflow: hidden;
  }
 
  #gridContainer { 
  	width: 99vw !important;  
  }

  #gridContainer {
    min-height: 85vh;
    grid-template-columns: 98vw;
    grid-template-rows: minmax(auto, 3rem) minmax(auto, 3rem) minmax(auto, 7rem) minmax(35rem, auto) auto 7rem;
    grid-template-areas:
      "nav"
      "hdrmobile"
      "maincontentnav"
      "maincontent"
      "sidebar"
      "foot";
    grid-gap: 0.1em;
    font-weight: normal;
    font-size: 1rem;
  }
  
  #gridSidebar {
    grid-area: sidebar;  
  }

  #gridNav {
    grid-area: nav;
    justify-content: space-between;
    align-items: end;
  }

  #gridNav nav {
    margin-top: 2px !important;
    margin-bottom: 0 !important;
    padding-top: 5px;
  }

  #compLogoHdr {
    /*
  	display: none;
  	opacity: 0 !important;
    */

    height: 35px;
    width: 25.5px;
    object-fit: contain;
    margin: 4px 2px 0 10px;
    float: left;
  }
  
  #divCompLogo {
    display: none;
  }
  #gridNav nav .menu-nav {
    display: none; 
  }
  
  #gridNav nav .menu-member {
    display: none;
  }

  #menu-nav-accordion {
    display: block;
  }
  #menu-nav-accordion a.icon {
    background: transparent;
    text-align: center;
    padding: 6px 8px 8px 8px; 
    margin-top:0;
    margin-bottom:0;
    text-decoration: none;
    outline: none;
    font-size: 16px;
    font-weight: 900;
    color: var(--col-theme-30);
    
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  #myLinks {
    overflow-y: auto; 
    background-color: #333; 
    position: absolute; 
    height:auto; 
    width: auto;
    padding: 1em; 
    z-index:99999; 
    top: 5vh; 
    right: 1vw;
  }
  #myLinks a {
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    font-size: 12px;
    display: block;
  }
  
  #gridNav nav .menu-main li {
    margin: 0 1px;
  }
  #gridNav nav .menu-main li a {
    padding: 1px;
  }
  #gridNav nav .menu-main #companyName {
    font-size: 0.9em;
  }  
  
  #gridNav nav .menu-member li {
    margin: 0 1px;
  }
 #gridNav nav .menu-member li a {
    font-size: 0.6em;
    padding: 1px;
  }

  #gridCustInfoNav {
    font-size: 0.7em;	
    width: 99%;
    position: fixed; 
    bottom:0vh;
  }
  
  /*ads start*/
 #gridHdrAds {
    gap: 12px;
    padding-left: 1em;
    padding-bottom: 0;
    /* 
    border-top: 1px solid #D3D3D3;
    */
    border-top: 0;
    border-bottom: 0;
    
    overflow: hidden; 
  	overflow-x: auto; 
  	overflow: -webkit-sticky;
  }

  #gridHdrAds::-webkit-scrollbar {
    scrollbar-width: thin;
    background: transparent;
  }

  #gridHdrAds .adsSubDiv {
    font-family: "Calibri", sans-serif;
    font-size: 0.8rem;
    border: 1px solid #D3D3D3;
  }
  
   /*ads overlay details*/
	#myFullNavAdsInfoDetl #divAdsInfoDetl {
		top:20vh;
		padding:2px;
		width: 94vw; height: 50vh;
	}

  /*major clients start*/
  #gridClients {
    /*grid-area: clients;*/
    gap: 16px 16px;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    border-top: 1px solid #D3D3D3;
    
    overflow: hidden; 
    overflow-y: auto; 
    overflow: -webkit-sticky;
  }

  #gridClients::-webkit-scrollbar {
    scrollbar-width: thin;
    background: transparent;
  }

  #gridClients #gridClientsTitle { 
    font-size: 1.1em;
    color:#06491d;
  }

  #gridClients .clientsSubDiv {
    font-family: "Calibri", sans-serif;
    font-size: 0.8rem;
    border: none;
  }
  /*major clients end*/
  
  #gridHdrMobile {
    display: block;
    grid-area: hdrmobile;
    background-color: transparent;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 5px;
    
    display: flex;
    justify-content: flex-end;
    /*
    flex-direction: column;
    flex: 1;
    */
  }
  
  /*mobile search*/
  #txtItemGrpSearchNav {
  	display:block !important;	
  	width: 43vw; 
  	/*padding-left: 2px;*/
  	border-color: #c5cfc6;
    border-style: solid;
    border-width: thin;
  	padding-top:2px;
	  padding-bottom: 2px;

    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
	
	  margin-right: 0;
	  margin-top: 0;
	  margin-bottom: 0;
	
    font-size: 1em;
    height: auto;
    text-align: center;
	  align-items:center;
	  outline:none;
  }
  #btnItemGrpSearchNav {
    display:block !important;	
    background-color: transparent;
    color: green;
    border-style: solid;
    border-width: thin;
    border-color: #c5cfc6;
    width: 3em;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    
    font-size: 1em;
    height: auto; 
    margin-top: 0;

    padding-top:2px;
	  padding-bottom: 2px;
    margin-right: 9px;
	  margin-bottom: 0;
  }
  
  #gridMainContentNavDiv {
    grid-area: maincontentnav;
    /*container only to avoid conflict of display:flex & none; of #gridMainContentNav*/
    padding:0;
    margin: 0;

    background-color: rgba(241, 241, 241, 0.3); 
    margin-bottom: 0.7rem; 
    border-top-left-radius: 2px 2px; 
    border-top-right-radius: 2px 2px; 
    border-bottom-left-radius: 2px 2px; 
    border-bottom-right-radius: 2px 2px;
  }

  #gridMainContentNavDiv, #gridMainContentNav {
    display: block;
  }
  
  /*search item group nav*/
  #divULItemGrpNav {
    margin: 0;
    padding: 0;
    max-width: 95vw;
    
    background-color: transparent;
    border-radius: 5px;
    float: left;
    overflow: auto;
    white-space: nowrap;

    position: relative;
}

#divULItemGrpNav::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}
  #ulItemGrpNav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    width: auto;
  }
  #ulItemGrpNav li {
    display: inline-block;
    color: white;
    background-color: #033464;
    font-size: 1em;
    font-weight: normal;
    text-align: center;
    padding: 0.19em 1em;
    margin: 0 2px;
    text-transform:capitalize;
    
    border: 1px solid  var(--col-theme-30);
    border-radius: 5px;
  }
  
  #ulItemGrpNav li:active {
    background-color: #589d62;
  }

  /*scroll button LR*/
  #divULItemGrpNav {
  	scroll-behavior: smooth;
  }
  
  #gridMainContentNav {
    display: flex;
    position: relative;
  }
  
  #gridMainContentNav ul { 
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  }

  #gridMainContentNav > #divArrowLeft {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    top: 32px;
    left: 0.2em;
    padding: 0.9px 11px 1.4px 9px;
    border-radius: 50%;
    background-color: #06491d;
    font-size: 1.3em;
    color: #EAFDE6;
    border: 1px solid #fff;
	  border-width: thin;
    opacity: 0.7;
    display:none; 
  }

  #gridMainContentNav > #divArrowRight {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 32px;
    right: 0.2em;
    padding: 0.9px 10px 1.4px;
	  border-radius: 50%;
	  background-color: #06491d;
	  font-size: 1.3em;
	  color: #EAFDE6;
	  border: 1px solid #fff;
	  border-width: thin;
    opacity: 0.7;
   
  }
/*end scroll botton LR*/

/*end search item group nav*/

	.menuIconBar1, .menuIconBar2, .menuIconBar3 {
	  width: 17px;
	  height: 3px;
	  background-color: #fff;
	  margin: 3px 0;
	  transition: 0.4s;
	}
	
  /*end menu icon*/
  
  #gridMainContentNav {
    width: auto;
    height: auto;
    margin-top: 0.5rem;
    padding: 6px 10px 6px 6px;
    margin-top: auto;
    margin-bottom: auto;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  
  #gridHdrMobile > .push-left {
    border: none;
    width: 50px;
    margin-left: 5px;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 5px;
  
    display: flex;
    justify-content: center;
  }
  
  #gridHdrMobile > .push-right {
    border: none;
    width: auto;
    margin-left: auto;
    margin-right: 5px;
    margin-top: auto;
	  margin-bottom: auto;
  
    display: flex;
    justify-content: center;
  }
  
  #gridHdrMobile .cartImg {
    padding:0;
    margin-right: 5px;
    margin-left: 2px;
    height: 20px;
    width: 25px;
    object-fit: contain;
    
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    
    background-image: url("../_images/program/icons/shop-cart-dgreen.png");
  }

  #gridMainContentNav .cartImg {
    padding:0;
    margin-right: 10px;
    margin-left: 2px;
    height: 20px;
    width: 25px;
    object-fit: contain;
    
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    
    background-image: url("../_images/program/icons/shop-cart.png");
  }
  
  #gridMainContentHolder {
    grid-area: mainContent;
    overflow: hidden;
    position: absolute;
    top: 23vh;
    left: 1vw;
    width: 98vw;
    height: 50vh;
  } 
  .gridMainContent {
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    padding-top: 3px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: var(--main-padding);
    
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #fff;
  }

  .gridMainContent > .mainSubDiv {
    float: left;
    height: 8.5rem;
    width: 95%;
    /*remove causing error to slider
    margin-left: 5px;
    */
    margin-bottom: 5px;
    
    justify-content: space-evenly;
    align-items: center;
  }
  .gridMainContent > .mainSubDiv > .smallImg {
    float: right;
    height: 98%;
    width: 35%;
    max-width: 150px;
    
  }
  .gridMainContent > .mainSubDiv > .mainSubDivDetl {
    font-family: Roboto, Tahoma, Geneva, sans-serif;
    float: right;
    height: 98%;
    width: 60%;
    max-width: 350px;
    background: #fff;
    margin-left: 5px;
    padding: 1px; 
  }
  #divPriceTblQty{
  margin-top: 2px;
  font-size: 1em;
  }
  #divPriceTblQty > #txtPriceTblQty , #btnPriceTblQtyInc , #btnPriceTblQtyDec{
    padding: 2px 0;
    border: 1px solid #ddd;	  
  }
  
/*gen.printed variations*/
#divVariation > .divVariationChild {
  float: left;
  height: 8.5rem;
  width: 95%;
  border-radius: var(--main-radius);
  margin-left: 5px;
  margin-bottom: 5px;
  
  justify-content: space-evenly;
  align-items: center;
}
#divVariation > .divVariationChild > .varImg {
  float: right;
  height: 98%;
  width: 35%;
  max-width: 150px;
}
#divVariation > .divVariationChild > .divVariationChildDetl {
  font-family: Roboto, Tahoma, Geneva, sans-serif;
  float: right;
  height: 98%;
  width: 60%;
  max-width: 350px;
  background: #fff;
  margin-left: 5px;
  padding: 1px; 
}
#divVariation > .divVariationChild > .divVariationChildDetl > #imgUPrice , #btnATCAddToCart , #imgQtyOrdDiv{
  margin-top: 2px;
  font-size: 1em;
}
#divVariation > .divVariationChild > .divVariationChildDetl > #imgQtyOrdDiv > #imgQtyOrd , #imgQtyOrdBtnMinus , #imgQtyOrdBtnPlus{
    padding: 2px 0;
    border: 1px solid #ddd;	  
}
/*end gen.printed variations*/
  
  #gridCustInfoNav {	
	width: 98vw !important; 
  bottom: 0vh;
	/*bottom: calc(100vh - 1.7rem);*/
  }

  #gridFoot {
    grid-area: foot;
    margin-top: 5px;
  	padding-left: 0;
  	padding-right: 0;
  	background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    flex: 1;
    gap: 4px 2px;
    flex-wrap: wrap;

  }
  #gridFoot > .footSubDiv {
    min-height: 2.5rem;
    height:auto;
    min-width: 43%;
    
    font-size: 1rem;
    font-weight: normal;
    
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
  }
 
  #gridFoot > .footSubDiv > ul{
    margin-top: 0.3rem;
    width: 98vw;
    text-align: center;
  }

  #gridFoot > .footSubDiv > ul > li {
    display: inline-block;
    margin: 0.5em;
  }
  
  #gridFoot > .footSubDiv > ul li:not(:last-child){
    margin-bottom: 0.5rem;
  }
  #gridFoot > .footSubDiv > ul li a{
    font-size: 0.8em;
  }
  #gridFoot > .footSubDiv > ul li a:hover{
    padding-left: 0.3em;
  }

  p.formTitle {
    font-size: 1rem;	
   }
   
   /*start tblviewdetl*/
   .tblViewDetl {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    height:auto;
    font-size: 0.8rem;
   }
   .tblViewDetl thead th {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-size: 0.8em;
    font-weight: normal;
    border: none;
   }

   .tblViewDetl tbody tr {
    margin-top: 5px;
    border: none;
    border-bottom: 0.5px solid #ddd;
    border-collapse: collapse;
   }
   .tblViewDetl tbody td {
    border: none;
    font-size: 1em;
    padding-top: 5px;
    padding-bottom: 5px;
    vertical-align: bottom;
   }
   
   .tblViewDetl tbody tr td:nth-child(1) {
    padding: 0 1px;
    background: #fff;
    text-align: center;
    vertical-align: top;
    width:2em;
   }
   .tblViewDetl tbody tr td #myBtnIDRemRow {
    font-family: "Calibri", sans-serif;
    font-size: 0.8em;
    text-align:center;
    width: 20px;
    height: 20px;
    margin-top: 5px;
    margin-left: auto;
	  margin-right: auto;
    border:solid 1px #f5f5f5;
    border-radius: 20px;
    
    background-color: #636363;
    color: #fff;
	}
	
   .tblViewDetl tbody tr td #qtyDec{
    background-color: transparent;
    color: green;
    border-style: solid;
    border-width: thin;
    width: 2em;

   }
   .tblViewDetl tbody tr td #qtyInc {
    background-color: transparent;
    color: green;
    border-style: solid;
    border-width: thin;
    width: 2em;
   }
   
   .tblViewDetl tbody tr:last-child { 
    border: none;
    font-size: 0.9em;
    font-weight: bold;
    background-color: #fff;
   }
   .tblViewDetl tfoot tr td {
    padding: 1em;
    margin-bottom: 1em;
   }
   .tblViewDetl tr td input {
     font-family: Arial, Helvetica, sans-serif;
     font-size: 0.9em;
     background-color: transparent;
     /* pointer-events: none; */
   }
   
   .tblViewDetl tbody tr td .txtDNetPrice {
     color: #029DAF; 
   }
   
   .tblViewDetl tbody tr td .txtDUPrice {
     color: #F64E15;
   }
   .tblViewDetl tbody tr td .txtDUOM {
     color: #F64E15;
   }
   .tblViewDetl tbody tr td .txtDImgUOM {
    color: #F64E15;
  }
   
   .tblViewDetl tr td textarea {
     font-size: 0.9em;
     background-color: transparent;
   }
   #container-footer > .flexRow > #btnSaveSODetl{
    font-size: 0.8em;
    border-radius: 5px;
   }
   #container-footer > .flexRow > .btnUpdateCancelSODetl{
    font-size: 0.8em;
    border-radius: 5px;
   }
   /*end .tblViewDetl*/
   
   #container-hdr {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row;
    font-size: 1rem;
  }
 
  #container-hdr-div-col1 {
    width: 98vw;
    float:left;
  }
  #container-hdr-div-col2 {
    width: 49vw;
    float:left;
  }
  #container-hdr-div-col1 #rtxtATCNote {
    padding:2px; 
    resize:none; 
    border:none;
  }

  .tblViewSubInfo-Head {
    width: 98vw;
    font-size: 0.9rem;
  }
  .tblViewSubInfo-Head td,
  .tblViewSubInfo-Head th {
    padding-left: 0.5em;
    padding-left: 0.5em;
  }

  .tblViewSubInfo-Detl {
    width: 98vw;
    font-size: 0.9rem;
  }

  [class*="fcol-"] {
    font-size: 12px;
   }	
  .fcol-lbl1 {width: 2rem; font-size: 0.7em;}
  .fcol-lbl2 {width: 3rem; font-size: 0.7em;}
  .fcol-cont-s {width: 7rem;}
  .fcol-cont-m {width: 10em;} /*for s.o no*/
  .fcol-cont-l {width: 23rem;} 
  .fcol-cont-az {width: 98%;}
  .fcol-cont-s #dtATCSO, .fcol-cont-s #dtATCExpDO {
    font-size: 1em;
    width: 5.6rem;
  }
  
  .sidenavLeft #divReqSample {
	width: 95vw;	
  }
  
  .popupOverlay {
	max-height:30vh;
	max-width: 50vw;
	bottom: 20vh;
  }
  .popupOverlayContainer {
	height: 25vh;
	width: 45vw;
  }

}

